@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600&family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Serif+TC:wght@400;500;600;700&display=swap");
@import url("scss/plugins/lightgallery.css");
@import url("scss/plugins/lg-zoom.css");
@import url("scss/plugins/slick.css");
@import url("scss/plugins/slick-theme.css");
@import url("scss/plugins/jquery.fancybox.min.css");
@import url("scss/plugins/swiper-bundle.min.css");
@import url("scss/plugins/mCustomScrollbar.css");
@import url("font/css/fontello.css");
/* line 7, scss/plugins/_simple-calendar.scss */
.calendar {
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
  font: 15px/1em inherit;
  color: #1a1a1a;
  border: 1px solid #D9D9D9;
}
/* line 15, scss/plugins/_simple-calendar.scss */
.calendar a {
  text-decoration: none;
  color: inherit;
}
/* line 20, scss/plugins/_simple-calendar.scss */
.calendar header {
  background-color: #173077;
  position: relative;
}
/* line 23, scss/plugins/_simple-calendar.scss */
.calendar header .simple-calendar-btn {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  top: 50%;
}
/* line 37, scss/plugins/_simple-calendar.scss */
.calendar header .simple-calendar-btn:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  content: '\e819';
  position: absolute;
  font-size: 13px;
}
/* line 51, scss/plugins/_simple-calendar.scss */
.calendar header .btn-prev {
  left: 29px;
  transform: translateY(-50%);
}
/* line 56, scss/plugins/_simple-calendar.scss */
.calendar header .btn-next {
  right: 29px;
  transform: translateY(-50%) rotateY(-180deg);
}
/* line 61, scss/plugins/_simple-calendar.scss */
.calendar header .month {
  height: 70px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial,sans-serif;
}
/* line 71, scss/plugins/_simple-calendar.scss */
.calendar header .month .year {
  order: -1;
}
/* line 77, scss/plugins/_simple-calendar.scss */
.calendar table {
  width: 100%;
  border-spacing: 0px;
  border: 28px solid #fff;
  border-top: none;
}
/* line 85, scss/plugins/_simple-calendar.scss */
.calendar thead td {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: "Noto Sans TC", 'Noto Sans SC', sans-serif;
  padding-top: 20px;
  padding-bottom: 57px;
}
/* line 95, scss/plugins/_simple-calendar.scss */
.calendar td {
  font-size: 18px;
  font-family: Arial,sans-serif;
  padding: 5px 4px;
}
/* line 101, scss/plugins/_simple-calendar.scss */
.calendar .day {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2.2em;
  line-height: 2.2em;
  cursor: pointer;
}
/* line 111, scss/plugins/_simple-calendar.scss */
.calendar .day.today {
  background: #F6F8FA;
}
/* line 117, scss/plugins/_simple-calendar.scss */
.calendar .day.wrong-month {
  color: #CBD1D2;
}
/* line 124, scss/plugins/_simple-calendar.scss */
.calendar .day.has-event {
  color: #173077;
}
/* line 126, scss/plugins/_simple-calendar.scss */
.calendar .day.has-event:hover {
  background: #F6F8FA;
}
/* line 131, scss/plugins/_simple-calendar.scss */
.calendar .day.disabled {
  cursor: default;
}
/* line 137, scss/plugins/_simple-calendar.scss */
.calendar .event-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px;
  background: #545A5C;
  box-sizing: border-box;
}
/* line 148, scss/plugins/_simple-calendar.scss */
.calendar .event-container .event-wrapper {
  overflow-y: auto;
  max-height: 100%;
}
/* line 153, scss/plugins/_simple-calendar.scss */
.calendar .event-container .close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
/* line 161, scss/plugins/_simple-calendar.scss */
.calendar .event-container .close:before, .calendar .event-container .close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #CBD1D2;
}
/* line 170, scss/plugins/_simple-calendar.scss */
.calendar .event-container .close:before {
  transform: rotate(45deg);
}
/* line 173, scss/plugins/_simple-calendar.scss */
.calendar .event-container .close:after {
  transform: rotate(-45deg);
}
/* line 178, scss/plugins/_simple-calendar.scss */
.calendar .event-container .event {
  position: relative;
  width: 100%;
  padding: 1em;
  margin-bottom: 1em;
  background: #6691CC;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  text-align: left;
  color: white;
}
/* line 190, scss/plugins/_simple-calendar.scss */
.calendar .event-container .event-date {
  margin-bottom: 1em;
}
/* line 194, scss/plugins/_simple-calendar.scss */
.calendar .event-container .event-hour {
  float: right;
}
/* line 198, scss/plugins/_simple-calendar.scss */
.calendar .event-container .event-summary {
  font-weight: 600;
}
/* line 204, scss/plugins/_simple-calendar.scss */
.calendar .filler {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #545A5C;
  transform: translate(-50%, -50%);
}

/* line 215, scss/plugins/_simple-calendar.scss */
.has-event {
  cursor: pointer !important;
  background: #F6F8FA !important;
}

/* line 219, scss/plugins/_simple-calendar.scss */
.day.day-active {
  color: #DA3B2B !important;
  font-weight: bold;
}

/* line 223, scss/plugins/_simple-calendar.scss */
.day.today {
  background-color: transparent !important;
}

/* line 2, scss/config/_config.scss */
.Cormorant {
  font-family: 'Cormorant', "Noto Sans TC", 'Noto Sans SC', sans-serif;
  letter-spacing: 0em !important;
}

/* line 7, scss/config/_config.scss */
.notoSansTC {
  font-family: "Noto Sans TC", 'Noto Sans SC', sans-serif;
}

/* line 11, scss/config/_config.scss */
.notoSerifTC {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}

/* line 16, scss/config/_config.scss */
.font-weight-300 {
  font-weight: 300;
}

/* line 20, scss/config/_config.scss */
.font-weight-400 {
  font-weight: 400;
}

/* line 24, scss/config/_config.scss */
.font-weight-500,
.fw-500 {
  font-weight: 500;
}

/* line 29, scss/config/_config.scss */
.font-weight-600 {
  font-weight: 600;
}

/* line 33, scss/config/_config.scss */
.font-weight-700 {
  font-weight: 700;
}

/* line 37, scss/config/_config.scss */
.font-weight-800 {
  font-weight: 800;
}

/* line 41, scss/config/_config.scss */
.fw-bold {
  font-weight: bold;
}

/* line 47, scss/config/_config.scss */
.lh1 {
  line-height: 1;
}

/* line 51, scss/config/_config.scss */
.lh14 {
  line-height: 1.4;
}

/* line 57, scss/config/_config.scss */
.z-1 {
  z-index: 1;
}

/* line 61, scss/config/_config.scss */
.z-2 {
  z-index: 2;
}

/* line 65, scss/config/_config.scss */
.text-underline {
  text-decoration: underline;
}

/* line 69, scss/config/_config.scss */
.text-center {
  text-align: center;
}

/* line 74, scss/config/_config.scss */
.text-262626 {
  color: #262626;
}

/* line 78, scss/config/_config.scss */
.text-333333,
.color-333333 {
  color: #333333;
}

/* line 83, scss/config/_config.scss */
.text-4D4D4D {
  color: #4D4D4D;
}

/* line 87, scss/config/_config.scss */
.text-646464 {
  color: #646464;
}

/* line 91, scss/config/_config.scss */
.text-969696 {
  color: #969696;
}

/* line 95, scss/config/_config.scss */
.text-808080 {
  color: #808080;
}

/* line 99, scss/config/_config.scss */
.text-fff {
  color: #fff;
}

/* line 103, scss/config/_config.scss */
.text-416F1F {
  color: #416F1F;
}

/* line 107, scss/config/_config.scss */
.text-B72000 {
  color: #B72000;
}

/* line 111, scss/config/_config.scss */
.text-173077 {
  color: #173077;
}

/* line 115, scss/config/_config.scss */
.text-mainBlue {
  color: #173077;
}

/* line 119, scss/config/_config.scss */
.text-mainRed {
  color: #DA3B2B;
}

/* line 123, scss/config/_config.scss */
.text-CE3C2B {
  color: #CE3C2B;
}

/* line 127, scss/config/_config.scss */
.text-hover-yellow {
  transition: all 0.3s;
}
/* line 129, scss/config/_config.scss */
.text-hover-yellow:hover {
  color: #FCAE07;
}

/* line 134, scss/config/_config.scss */
.bgc-fff {
  background-color: #fff !important;
}

/* line 138, scss/config/_config.scss */
.bg-416F1F {
  background-color: #416F1F;
}

/* line 142, scss/config/_config.scss */
.bg-B72000 {
  background-color: #B72000;
}

/* line 146, scss/config/_config.scss */
.bg-173077 {
  background-color: #173077;
}

/* line 153, scss/config/_config.scss */
.blank {
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 767px) {
  /* line 153, scss/config/_config.scss */
  .blank {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* line 162, scss/config/_config.scss */
.unblank {
  margin-right: -30px;
  margin-left: -30px;
}
@media (max-width: 767px) {
  /* line 162, scss/config/_config.scss */
  .unblank {
    margin-right: -20px;
    margin-left: -20px;
  }
}

/* line 171, scss/config/_config.scss */
.wp-100 {
  width: 100%;
  overflow: hidden;
}

/* line 176, scss/config/_config.scss */
.wp1600 {
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  /* line 176, scss/config/_config.scss */
  .wp1600 {
    max-width: 1400px;
  }
}

/* line 184, scss/config/_config.scss */
.wp1500 {
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  /* line 184, scss/config/_config.scss */
  .wp1500 {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  /* line 184, scss/config/_config.scss */
  .wp1500 {
    max-width: 600px;
  }
}

/* line 195, scss/config/_config.scss */
.wp1430 {
  max-width: 1430px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  /* line 195, scss/config/_config.scss */
  .wp1430 {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  /* line 195, scss/config/_config.scss */
  .wp1430 {
    max-width: 600px;
  }
}

/* line 206, scss/config/_config.scss */
.wp1400 {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  /* line 206, scss/config/_config.scss */
  .wp1400 {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  /* line 206, scss/config/_config.scss */
  .wp1400 {
    max-width: 600px;
  }
}

/* line 217, scss/config/_config.scss */
.wp1300 {
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  /* line 217, scss/config/_config.scss */
  .wp1300 {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  /* line 217, scss/config/_config.scss */
  .wp1300 {
    max-width: 600px;
  }
}

/* line 228, scss/config/_config.scss */
.wp1634 {
  width: 90%;
  max-width: 1634px;
  margin: 0 auto;
}

/* line 234, scss/config/_config.scss */
.wp1520 {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
}

/* line 240, scss/config/_config.scss */
.les05 {
  letter-spacing: 0.5px;
}

/* line 244, scss/config/_config.scss */
.les1 {
  letter-spacing: 1px;
}

/* line 248, scss/config/_config.scss */
.les2 {
  letter-spacing: 2px;
}

/* line 252, scss/config/_config.scss */
.les5 {
  letter-spacing: 5px;
}

/* line 256, scss/config/_config.scss */
.background-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* line 262, scss/config/_config.scss */
.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 270, scss/config/_config.scss */
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 278, scss/config/_config.scss */
.line4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 286, scss/config/_config.scss */
.line5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 294, scss/config/_config.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 298, scss/config/_config.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 302, scss/config/_config.scss */
.pr17 {
  padding-right: 17px;
}

@media (min-width: 1400px) {
  /* line 307, scss/config/_config.scss */
  .d-xxl-flex {
    display: flex !important;
  }

  /* line 310, scss/config/_config.scss */
  .d-xxl-block {
    display: block !important;
  }

  /* line 313, scss/config/_config.scss */
  .d-xxl-inline-block {
    display: inline-block !important;
  }

  /* line 316, scss/config/_config.scss */
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }

  /* line 319, scss/config/_config.scss */
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }

  /* line 322, scss/config/_config.scss */
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }

  /* line 325, scss/config/_config.scss */
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }

  /* line 328, scss/config/_config.scss */
  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
/* line 335, scss/config/_config.scss */
.mb-30 {
  margin-bottom: 30px;
}

/* line 339, scss/config/_config.scss */
.img-object {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* line 347, scss/config/_config.scss */
.relative {
  position: relative;
}

/* line 351, scss/config/_config.scss */
.cursor {
  cursor: pointer;
}

/* line 355, scss/config/_config.scss */
.hidden {
  overflow: hidden;
}

/* line 359, scss/config/_config.scss */
.rwd-hidden {
  overflow: hidden;
}

/* line 364, scss/config/_config.scss */
.flex-grow {
  flex-grow: 1;
}

/* line 368, scss/config/_config.scss */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 374, scss/config/_config.scss */
.flex-align-center {
  display: flex;
  align-items: center;
}

/* line 379, scss/config/_config.scss */
.flex-align-end {
  display: flex;
  align-items: flex-end;
}

/* line 384, scss/config/_config.scss */
.flex-justify-space-between {
  display: flex;
  justify-content: space-between;
}

/* line 389, scss/config/_config.scss */
.flex-justify-center {
  display: flex;
  justify-content: center;
}

/* line 394, scss/config/_config.scss */
.flex-wrap {
  flex-wrap: wrap;
}

/* line 398, scss/config/_config.scss */
.flex-column {
  flex-direction: column;
}

/* line 406, scss/config/_config.scss */
.h-681414:hover {
  background-color: #681414 !important;
}

/* line 410, scss/config/_config.scss */
.h-B78830:hover {
  background-color: #B78830 !important;
}

/* line 414, scss/config/_config.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 420, scss/config/_config.scss */
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 429, scss/config/_config.scss */
.row {
  margin-left: -10px;
  margin-right: -10px;
}
/* line 432, scss/config/_config.scss */
.row:before, .row:after {
  display: table;
  content: " ";
}
/* line 437, scss/config/_config.scss */
.row:after {
  clear: both;
}
/* line 440, scss/config/_config.scss */
.row > div {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 446, scss/config/_config.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

@media (min-width: 550px) {
  /* line 455, scss/config/_config.scss */
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  /* line 463, scss/config/_config.scss */
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  /* line 469, scss/config/_config.scss */
  .container {
    max-width: 1360px;
  }
}
@media (min-width: 1600px) {
  /* line 475, scss/config/_config.scss */
  .container {
    max-width: 1560px;
  }
}
/* line 480, scss/config/_config.scss */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 534, scss/config/_config.scss */
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

/* line 549, scss/config/_config.scss */
.col-xs-12 {
  width: 100%;
}

/* line 553, scss/config/_config.scss */
.col-xs-11 {
  width: 91.6666666667%;
}

/* line 557, scss/config/_config.scss */
.col-xs-10 {
  width: 83.3333333333%;
}

/* line 561, scss/config/_config.scss */
.col-xs-9 {
  width: 75%;
}

/* line 565, scss/config/_config.scss */
.col-xs-8 {
  width: 66.6666666667%;
}

/* line 569, scss/config/_config.scss */
.col-xs-7 {
  width: 58.3333333333%;
}

/* line 573, scss/config/_config.scss */
.col-xs-6 {
  width: 50%;
}

/* line 577, scss/config/_config.scss */
.col-xs-5 {
  width: 41.6666666667%;
}

/* line 581, scss/config/_config.scss */
.col-xs-4 {
  width: 33.3333333333%;
}

/* line 585, scss/config/_config.scss */
.col-xs-3 {
  width: 25%;
}

/* line 589, scss/config/_config.scss */
.col-xs-2 {
  width: 16.6666666667%;
}

/* line 593, scss/config/_config.scss */
.col-xs-1 {
  width: 8.3333333333%;
}

/* line 597, scss/config/_config.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 601, scss/config/_config.scss */
.col-xs-pull-11 {
  right: 91.6666666667%;
}

/* line 605, scss/config/_config.scss */
.col-xs-pull-10 {
  right: 83.3333333333%;
}

/* line 609, scss/config/_config.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 613, scss/config/_config.scss */
.col-xs-pull-8 {
  right: 66.6666666667%;
}

/* line 617, scss/config/_config.scss */
.col-xs-pull-7 {
  right: 58.3333333333%;
}

/* line 621, scss/config/_config.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 625, scss/config/_config.scss */
.col-xs-pull-5 {
  right: 41.6666666667%;
}

/* line 629, scss/config/_config.scss */
.col-xs-pull-4 {
  right: 33.3333333333%;
}

/* line 633, scss/config/_config.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 637, scss/config/_config.scss */
.col-xs-pull-2 {
  right: 16.6666666667%;
}

/* line 641, scss/config/_config.scss */
.col-xs-pull-1 {
  right: 8.3333333333%;
}

/* line 645, scss/config/_config.scss */
.col-xs-pull-0 {
  right: 0;
}

/* line 649, scss/config/_config.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 653, scss/config/_config.scss */
.col-xs-push-11 {
  left: 91.6666666667%;
}

/* line 657, scss/config/_config.scss */
.col-xs-push-10 {
  left: 83.3333333333%;
}

/* line 661, scss/config/_config.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 665, scss/config/_config.scss */
.col-xs-push-8 {
  left: 66.6666666667%;
}

/* line 669, scss/config/_config.scss */
.col-xs-push-7 {
  left: 58.3333333333%;
}

/* line 673, scss/config/_config.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 677, scss/config/_config.scss */
.col-xs-push-5 {
  left: 41.6666666667%;
}

/* line 681, scss/config/_config.scss */
.col-xs-push-4 {
  left: 33.3333333333%;
}

/* line 685, scss/config/_config.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 689, scss/config/_config.scss */
.col-xs-push-2 {
  left: 16.6666666667%;
}

/* line 693, scss/config/_config.scss */
.col-xs-push-1 {
  left: 8.3333333333%;
}

/* line 697, scss/config/_config.scss */
.col-xs-push-0 {
  left: 0;
}

/* line 701, scss/config/_config.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

/* line 705, scss/config/_config.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

/* line 709, scss/config/_config.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

/* line 713, scss/config/_config.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 717, scss/config/_config.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

/* line 721, scss/config/_config.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

/* line 725, scss/config/_config.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 729, scss/config/_config.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

/* line 733, scss/config/_config.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

/* line 737, scss/config/_config.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 741, scss/config/_config.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

/* line 745, scss/config/_config.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

/* line 749, scss/config/_config.scss */
.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 754, scss/config/_config.scss */
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
    position: relative;
  }

  /* line 769, scss/config/_config.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 772, scss/config/_config.scss */
  .col-sm-11 {
    width: 91.6666666667%;
  }

  /* line 775, scss/config/_config.scss */
  .col-sm-10 {
    width: 83.3333333333%;
  }

  /* line 778, scss/config/_config.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 781, scss/config/_config.scss */
  .col-sm-8 {
    width: 66.6666666667%;
  }

  /* line 784, scss/config/_config.scss */
  .col-sm-7 {
    width: 58.3333333333%;
  }

  /* line 787, scss/config/_config.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 790, scss/config/_config.scss */
  .col-sm-5 {
    width: 41.6666666667%;
  }

  /* line 793, scss/config/_config.scss */
  .col-sm-4 {
    width: 33.3333333333%;
  }

  /* line 796, scss/config/_config.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 799, scss/config/_config.scss */
  .col-sm-2 {
    width: 16.6666666667%;
  }

  /* line 802, scss/config/_config.scss */
  .col-sm-1 {
    width: 8.3333333333%;
  }

  /* line 805, scss/config/_config.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 808, scss/config/_config.scss */
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

  /* line 811, scss/config/_config.scss */
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  /* line 814, scss/config/_config.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 817, scss/config/_config.scss */
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

  /* line 820, scss/config/_config.scss */
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  /* line 823, scss/config/_config.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 826, scss/config/_config.scss */
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

  /* line 829, scss/config/_config.scss */
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  /* line 832, scss/config/_config.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 835, scss/config/_config.scss */
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

  /* line 838, scss/config/_config.scss */
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  /* line 841, scss/config/_config.scss */
  .col-sm-pull-0 {
    right: 0;
  }

  /* line 844, scss/config/_config.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 847, scss/config/_config.scss */
  .col-sm-push-11 {
    left: 91.6666666667%;
  }

  /* line 850, scss/config/_config.scss */
  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  /* line 853, scss/config/_config.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 856, scss/config/_config.scss */
  .col-sm-push-8 {
    left: 66.6666666667%;
  }

  /* line 859, scss/config/_config.scss */
  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  /* line 862, scss/config/_config.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 865, scss/config/_config.scss */
  .col-sm-push-5 {
    left: 41.6666666667%;
  }

  /* line 868, scss/config/_config.scss */
  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  /* line 871, scss/config/_config.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 874, scss/config/_config.scss */
  .col-sm-push-2 {
    left: 16.6666666667%;
  }

  /* line 877, scss/config/_config.scss */
  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  /* line 880, scss/config/_config.scss */
  .col-sm-push-0 {
    left: 0;
  }

  /* line 883, scss/config/_config.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }

  /* line 886, scss/config/_config.scss */
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 889, scss/config/_config.scss */
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 892, scss/config/_config.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 895, scss/config/_config.scss */
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 898, scss/config/_config.scss */
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 901, scss/config/_config.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 904, scss/config/_config.scss */
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 907, scss/config/_config.scss */
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 910, scss/config/_config.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 913, scss/config/_config.scss */
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 916, scss/config/_config.scss */
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 919, scss/config/_config.scss */
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  /* line 925, scss/config/_config.scss */
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  /* line 939, scss/config/_config.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 942, scss/config/_config.scss */
  .col-md-11 {
    width: 91.6666666667%;
  }

  /* line 945, scss/config/_config.scss */
  .col-md-10 {
    width: 83.3333333333%;
  }

  /* line 948, scss/config/_config.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 951, scss/config/_config.scss */
  .col-md-8 {
    width: 66.6666666667%;
  }

  /* line 954, scss/config/_config.scss */
  .col-md-7 {
    width: 58.3333333333%;
  }

  /* line 957, scss/config/_config.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 960, scss/config/_config.scss */
  .col-md-5 {
    width: 41.6666666667%;
  }

  /* line 963, scss/config/_config.scss */
  .col-md-4 {
    width: 33.3333333333%;
  }

  /* line 966, scss/config/_config.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 969, scss/config/_config.scss */
  .col-md-2 {
    width: 16.6666666667%;
  }

  /* line 972, scss/config/_config.scss */
  .col-md-1 {
    width: 8.3333333333%;
  }

  /* line 975, scss/config/_config.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 978, scss/config/_config.scss */
  .col-md-pull-11 {
    right: 91.6666666667%;
  }

  /* line 981, scss/config/_config.scss */
  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  /* line 984, scss/config/_config.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 987, scss/config/_config.scss */
  .col-md-pull-8 {
    right: 66.6666666667%;
  }

  /* line 990, scss/config/_config.scss */
  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  /* line 993, scss/config/_config.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 996, scss/config/_config.scss */
  .col-md-pull-5 {
    right: 41.6666666667%;
  }

  /* line 999, scss/config/_config.scss */
  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  /* line 1002, scss/config/_config.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 1005, scss/config/_config.scss */
  .col-md-pull-2 {
    right: 16.6666666667%;
  }

  /* line 1008, scss/config/_config.scss */
  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  /* line 1011, scss/config/_config.scss */
  .col-md-pull-0 {
    right: 0;
  }

  /* line 1014, scss/config/_config.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 1017, scss/config/_config.scss */
  .col-md-push-11 {
    left: 91.6666666667%;
  }

  /* line 1020, scss/config/_config.scss */
  .col-md-push-10 {
    left: 83.3333333333%;
  }

  /* line 1023, scss/config/_config.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 1026, scss/config/_config.scss */
  .col-md-push-8 {
    left: 66.6666666667%;
  }

  /* line 1029, scss/config/_config.scss */
  .col-md-push-7 {
    left: 58.3333333333%;
  }

  /* line 1032, scss/config/_config.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 1035, scss/config/_config.scss */
  .col-md-push-5 {
    left: 41.6666666667%;
  }

  /* line 1038, scss/config/_config.scss */
  .col-md-push-4 {
    left: 33.3333333333%;
  }

  /* line 1041, scss/config/_config.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 1044, scss/config/_config.scss */
  .col-md-push-2 {
    left: 16.6666666667%;
  }

  /* line 1047, scss/config/_config.scss */
  .col-md-push-1 {
    left: 8.3333333333%;
  }

  /* line 1050, scss/config/_config.scss */
  .col-md-push-0 {
    left: 0;
  }

  /* line 1053, scss/config/_config.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }

  /* line 1056, scss/config/_config.scss */
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 1059, scss/config/_config.scss */
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 1062, scss/config/_config.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 1065, scss/config/_config.scss */
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 1068, scss/config/_config.scss */
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 1071, scss/config/_config.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 1074, scss/config/_config.scss */
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 1077, scss/config/_config.scss */
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 1080, scss/config/_config.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 1083, scss/config/_config.scss */
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 1086, scss/config/_config.scss */
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 1089, scss/config/_config.scss */
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  /* line 1095, scss/config/_config.scss */
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  /* line 1109, scss/config/_config.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 1112, scss/config/_config.scss */
  .col-lg-11 {
    width: 91.6666666667%;
  }

  /* line 1115, scss/config/_config.scss */
  .col-lg-10 {
    width: 83.3333333333%;
  }

  /* line 1118, scss/config/_config.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 1121, scss/config/_config.scss */
  .col-lg-8 {
    width: 66.6666666667%;
  }

  /* line 1124, scss/config/_config.scss */
  .col-lg-7 {
    width: 58.3333333333%;
  }

  /* line 1127, scss/config/_config.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 1130, scss/config/_config.scss */
  .col-lg-5 {
    width: 41.6666666667%;
  }

  /* line 1133, scss/config/_config.scss */
  .col-lg-4 {
    width: 33.3333333333%;
  }

  /* line 1136, scss/config/_config.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 1139, scss/config/_config.scss */
  .col-lg-2 {
    width: 16.6666666667%;
  }

  /* line 1142, scss/config/_config.scss */
  .col-lg-1 {
    width: 8.3333333333%;
  }

  /* line 1145, scss/config/_config.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 1148, scss/config/_config.scss */
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

  /* line 1151, scss/config/_config.scss */
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  /* line 1154, scss/config/_config.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 1157, scss/config/_config.scss */
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

  /* line 1160, scss/config/_config.scss */
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  /* line 1163, scss/config/_config.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 1166, scss/config/_config.scss */
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

  /* line 1169, scss/config/_config.scss */
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  /* line 1172, scss/config/_config.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 1175, scss/config/_config.scss */
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

  /* line 1178, scss/config/_config.scss */
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  /* line 1181, scss/config/_config.scss */
  .col-lg-pull-0 {
    right: 0;
  }

  /* line 1184, scss/config/_config.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 1187, scss/config/_config.scss */
  .col-lg-push-11 {
    left: 91.6666666667%;
  }

  /* line 1190, scss/config/_config.scss */
  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  /* line 1193, scss/config/_config.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 1196, scss/config/_config.scss */
  .col-lg-push-8 {
    left: 66.6666666667%;
  }

  /* line 1199, scss/config/_config.scss */
  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  /* line 1202, scss/config/_config.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 1205, scss/config/_config.scss */
  .col-lg-push-5 {
    left: 41.6666666667%;
  }

  /* line 1208, scss/config/_config.scss */
  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  /* line 1211, scss/config/_config.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 1214, scss/config/_config.scss */
  .col-lg-push-2 {
    left: 16.6666666667%;
  }

  /* line 1217, scss/config/_config.scss */
  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  /* line 1220, scss/config/_config.scss */
  .col-lg-push-0 {
    left: 0;
  }

  /* line 1223, scss/config/_config.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }

  /* line 1226, scss/config/_config.scss */
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  /* line 1229, scss/config/_config.scss */
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  /* line 1232, scss/config/_config.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 1235, scss/config/_config.scss */
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  /* line 1238, scss/config/_config.scss */
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  /* line 1241, scss/config/_config.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 1244, scss/config/_config.scss */
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  /* line 1247, scss/config/_config.scss */
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  /* line 1250, scss/config/_config.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 1253, scss/config/_config.scss */
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  /* line 1256, scss/config/_config.scss */
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  /* line 1259, scss/config/_config.scss */
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_5 {
    padding-top: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_5 {
    padding-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_5 {
    padding-top: 4px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_5 {
    padding-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_5 {
    padding-bottom: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_5 {
    padding-bottom: 3px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_5 {
    padding-bottom: 4px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_5 {
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_5 {
    margin-top: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_5 {
    margin-top: 3px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_5 {
    margin-top: 4px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_5 {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_5 {
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_5 {
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_5 {
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_5 {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_15 {
    padding-top: 9px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_15 {
    padding-top: 9px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_15 {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_15 {
    padding-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_15 {
    padding-bottom: 9px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_15 {
    padding-bottom: 9px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_15 {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_15 {
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_15 {
    margin-top: 9px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_15 {
    margin-top: 9px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_15 {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_15 {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_15 {
    margin-bottom: 9px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_15 {
    margin-bottom: 9px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_15 {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_15 {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_25 {
    padding-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_25 {
    padding-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_25 {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_25 {
    padding-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_25 {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_25 {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_25 {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_25 {
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_25 {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_25 {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_25 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_25 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_25 {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_25 {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_25 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_25 {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_35 {
    padding-top: 21px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_35 {
    padding-top: 21px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_35 {
    padding-top: 28px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_35 {
    padding-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_35 {
    padding-bottom: 21px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_35 {
    padding-bottom: 21px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_35 {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_35 {
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_35 {
    margin-top: 21px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_35 {
    margin-top: 21px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_35 {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_35 {
    margin-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_35 {
    margin-bottom: 21px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_35 {
    margin-bottom: 21px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_35 {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_35 {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_45 {
    padding-top: 27px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_45 {
    padding-top: 27px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_45 {
    padding-top: 36px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_45 {
    padding-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_45 {
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_45 {
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_45 {
    padding-bottom: 36px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_45 {
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_45 {
    margin-top: 27px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_45 {
    margin-top: 27px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_45 {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_45 {
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_45 {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_45 {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_45 {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_45 {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_55 {
    padding-top: 33px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_55 {
    padding-top: 33px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_55 {
    padding-top: 44px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_55 {
    padding-top: 55px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_55 {
    padding-bottom: 33px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_55 {
    padding-bottom: 33px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_55 {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_55 {
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_55 {
    margin-top: 33px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_55 {
    margin-top: 33px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_55 {
    margin-top: 44px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_55 {
    margin-top: 55px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_55 {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_55 {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_55 {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_55 {
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_65 {
    padding-top: 39px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_65 {
    padding-top: 39px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_65 {
    padding-top: 52px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_65 {
    padding-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_65 {
    padding-bottom: 39px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_65 {
    padding-bottom: 39px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_65 {
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_65 {
    padding-bottom: 65px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_65 {
    margin-top: 39px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_65 {
    margin-top: 39px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_65 {
    margin-top: 52px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_65 {
    margin-top: 65px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_65 {
    margin-bottom: 39px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_65 {
    margin-bottom: 39px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_65 {
    margin-bottom: 52px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_65 {
    margin-bottom: 65px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_75 {
    padding-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_75 {
    padding-top: 45px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_75 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_75 {
    padding-top: 75px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_75 {
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_75 {
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_75 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_75 {
    padding-bottom: 75px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_75 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_75 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_75 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_75 {
    margin-top: 75px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_75 {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_75 {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_75 {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_75 {
    margin-bottom: 75px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_85 {
    padding-top: 51px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_85 {
    padding-top: 51px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_85 {
    padding-top: 68px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_85 {
    padding-top: 85px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_85 {
    padding-bottom: 51px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_85 {
    padding-bottom: 51px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_85 {
    padding-bottom: 68px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_85 {
    padding-bottom: 85px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_85 {
    margin-top: 51px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_85 {
    margin-top: 51px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_85 {
    margin-top: 68px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_85 {
    margin-top: 85px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_85 {
    margin-bottom: 51px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_85 {
    margin-bottom: 51px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_85 {
    margin-bottom: 68px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_85 {
    margin-bottom: 85px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_95 {
    padding-top: 57px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_95 {
    padding-top: 57px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_95 {
    padding-top: 76px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_95 {
    padding-top: 95px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_95 {
    padding-bottom: 57px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_95 {
    padding-bottom: 57px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_95 {
    padding-bottom: 76px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_95 {
    padding-bottom: 95px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_95 {
    margin-top: 57px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_95 {
    margin-top: 57px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_95 {
    margin-top: 76px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_95 {
    margin-top: 95px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_95 {
    margin-bottom: 57px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_95 {
    margin-bottom: 57px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_95 {
    margin-bottom: 76px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_95 {
    margin-bottom: 95px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_195 {
    padding-top: 117px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_195 {
    padding-top: 117px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_195 {
    padding-top: 156px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_195 {
    padding-top: 195px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_195 {
    padding-bottom: 117px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_195 {
    padding-bottom: 117px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_195 {
    padding-bottom: 156px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_195 {
    padding-bottom: 195px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_195 {
    margin-top: 117px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_195 {
    margin-top: 117px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_195 {
    margin-top: 156px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_195 {
    margin-top: 195px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_195 {
    margin-bottom: 117px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_195 {
    margin-bottom: 117px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_195 {
    margin-bottom: 156px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_195 {
    margin-bottom: 195px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_230 {
    padding-top: 138px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_230 {
    padding-top: 138px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_230 {
    padding-top: 184px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1283, scss/config/_config.scss */
  .pd_top_230 {
    padding-top: 230px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_230 {
    padding-bottom: 138px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_230 {
    padding-bottom: 138px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_230 {
    padding-bottom: 184px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1297, scss/config/_config.scss */
  .pd_btm_230 {
    padding-bottom: 230px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_230 {
    margin-top: 138px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_230 {
    margin-top: 138px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_230 {
    margin-top: 184px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1311, scss/config/_config.scss */
  .mg_top_230 {
    margin-top: 230px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_230 {
    margin-bottom: 138px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_230 {
    margin-bottom: 138px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_230 {
    margin-bottom: 184px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1325, scss/config/_config.scss */
  .mg_btm_230 {
    margin-bottom: 230px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_10 {
    margin-top: 4px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_10 {
    margin-top: 5px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_10 {
    margin-top: 6px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_10 {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_10 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_10 {
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_10 {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_10 {
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_10 {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_10 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_10 {
    padding-top: 4px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_10 {
    padding-top: 5px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_10 {
    padding-top: 6px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_10 {
    padding-top: 8px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_10 {
    padding-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_10 {
    padding-bottom: 4px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_10 {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_10 {
    padding-bottom: 6px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_10 {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_10 {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_20 {
    margin-top: 8px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_20 {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_20 {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_20 {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_20 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_20 {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_20 {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_20 {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_20 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_20 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_20 {
    padding-top: 8px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_20 {
    padding-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_20 {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_20 {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_20 {
    padding-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_20 {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_20 {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_20 {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_20 {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_20 {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_30 {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_30 {
    margin-top: 15px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_30 {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_30 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_30 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_30 {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_30 {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_30 {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_30 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_30 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_30 {
    padding-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_30 {
    padding-top: 15px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_30 {
    padding-top: 18px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_30 {
    padding-top: 24px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_30 {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_30 {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_30 {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_30 {
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_30 {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_30 {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_40 {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_40 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_40 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_40 {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_40 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_40 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_40 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_40 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_40 {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_40 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_40 {
    padding-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_40 {
    padding-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_40 {
    padding-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_40 {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_40 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_40 {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_40 {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_40 {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_40 {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_40 {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_50 {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_50 {
    margin-top: 25px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_50 {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_50 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_50 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_50 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_50 {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_50 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_50 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_50 {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_50 {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_50 {
    padding-top: 25px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_50 {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_50 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_50 {
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_50 {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_50 {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_50 {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_50 {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_50 {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_60 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_60 {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_60 {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_60 {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_60 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_60 {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_60 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_60 {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_60 {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_60 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_60 {
    padding-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_60 {
    padding-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_60 {
    padding-top: 36px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_60 {
    padding-top: 48px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_60 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_60 {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_60 {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_60 {
    padding-bottom: 36px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_60 {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_60 {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_70 {
    margin-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_70 {
    margin-top: 35px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_70 {
    margin-top: 42px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_70 {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_70 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_70 {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_70 {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_70 {
    margin-bottom: 42px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_70 {
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_70 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_70 {
    padding-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_70 {
    padding-top: 35px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_70 {
    padding-top: 42px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_70 {
    padding-top: 56px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_70 {
    padding-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_70 {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_70 {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_70 {
    padding-bottom: 42px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_70 {
    padding-bottom: 56px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_70 {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_80 {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_80 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_80 {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_80 {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_80 {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_80 {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_80 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_80 {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_80 {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_80 {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_80 {
    padding-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_80 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_80 {
    padding-top: 48px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_80 {
    padding-top: 64px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_80 {
    padding-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_80 {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_80 {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_80 {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_80 {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_80 {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_90 {
    margin-top: 36px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_90 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_90 {
    margin-top: 54px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_90 {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_90 {
    margin-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_90 {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_90 {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_90 {
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_90 {
    margin-bottom: 72px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_90 {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_90 {
    padding-top: 36px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_90 {
    padding-top: 45px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_90 {
    padding-top: 54px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_90 {
    padding-top: 72px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_90 {
    padding-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_90 {
    padding-bottom: 36px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_90 {
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_90 {
    padding-bottom: 54px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_90 {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_90 {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_100 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_100 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_100 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_100 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_100 {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_100 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_100 {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_100 {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_100 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_100 {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_100 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_100 {
    padding-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_100 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_100 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_100 {
    padding-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_100 {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_100 {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_100 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_100 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_100 {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_110 {
    margin-top: 44px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_110 {
    margin-top: 55px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_110 {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_110 {
    margin-top: 88px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_110 {
    margin-top: 110px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_110 {
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_110 {
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_110 {
    margin-bottom: 66px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_110 {
    margin-bottom: 88px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_110 {
    margin-bottom: 110px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_110 {
    padding-top: 44px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_110 {
    padding-top: 55px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_110 {
    padding-top: 66px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_110 {
    padding-top: 88px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_110 {
    padding-top: 110px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_110 {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_110 {
    padding-bottom: 55px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_110 {
    padding-bottom: 66px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_110 {
    padding-bottom: 88px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_110 {
    padding-bottom: 110px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_120 {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_120 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_120 {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_120 {
    margin-top: 96px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_120 {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_120 {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_120 {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_120 {
    margin-bottom: 72px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_120 {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_120 {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_120 {
    padding-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_120 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_120 {
    padding-top: 72px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_120 {
    padding-top: 96px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_120 {
    padding-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_120 {
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_120 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_120 {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_120 {
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_120 {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_130 {
    margin-top: 52px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_130 {
    margin-top: 65px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_130 {
    margin-top: 78px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_130 {
    margin-top: 104px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_130 {
    margin-top: 130px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_130 {
    margin-bottom: 52px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_130 {
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_130 {
    margin-bottom: 78px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_130 {
    margin-bottom: 104px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_130 {
    margin-bottom: 130px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_130 {
    padding-top: 52px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_130 {
    padding-top: 65px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_130 {
    padding-top: 78px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_130 {
    padding-top: 104px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_130 {
    padding-top: 130px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_130 {
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_130 {
    padding-bottom: 65px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_130 {
    padding-bottom: 78px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_130 {
    padding-bottom: 104px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_130 {
    padding-bottom: 130px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_140 {
    margin-top: 56px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_140 {
    margin-top: 70px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_140 {
    margin-top: 84px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_140 {
    margin-top: 112px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_140 {
    margin-top: 140px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_140 {
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_140 {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_140 {
    margin-bottom: 84px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_140 {
    margin-bottom: 112px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_140 {
    margin-bottom: 140px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_140 {
    padding-top: 56px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_140 {
    padding-top: 70px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_140 {
    padding-top: 84px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_140 {
    padding-top: 112px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_140 {
    padding-top: 140px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_140 {
    padding-bottom: 56px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_140 {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_140 {
    padding-bottom: 84px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_140 {
    padding-bottom: 112px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_140 {
    padding-bottom: 140px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_150 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_150 {
    margin-top: 75px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_150 {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_150 {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_150 {
    margin-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_150 {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_150 {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_150 {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_150 {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_150 {
    margin-bottom: 150px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_150 {
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_150 {
    padding-top: 75px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_150 {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_150 {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_150 {
    padding-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_150 {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_150 {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_150 {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_150 {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_150 {
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_160 {
    margin-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_160 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_160 {
    margin-top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_160 {
    margin-top: 128px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_160 {
    margin-top: 160px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_160 {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_160 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_160 {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_160 {
    margin-bottom: 128px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_160 {
    margin-bottom: 160px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_160 {
    padding-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_160 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_160 {
    padding-top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_160 {
    padding-top: 128px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_160 {
    padding-top: 160px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_160 {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_160 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_160 {
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_160 {
    padding-bottom: 128px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_160 {
    padding-bottom: 160px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_170 {
    margin-top: 68px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_170 {
    margin-top: 85px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_170 {
    margin-top: 102px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_170 {
    margin-top: 136px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_170 {
    margin-top: 170px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_170 {
    margin-bottom: 68px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_170 {
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_170 {
    margin-bottom: 102px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_170 {
    margin-bottom: 136px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_170 {
    margin-bottom: 170px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_170 {
    padding-top: 68px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_170 {
    padding-top: 85px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_170 {
    padding-top: 102px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_170 {
    padding-top: 136px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_170 {
    padding-top: 170px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_170 {
    padding-bottom: 68px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_170 {
    padding-bottom: 85px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_170 {
    padding-bottom: 102px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_170 {
    padding-bottom: 136px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_170 {
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_180 {
    margin-top: 72px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_180 {
    margin-top: 90px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_180 {
    margin-top: 108px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_180 {
    margin-top: 144px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_180 {
    margin-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_180 {
    margin-bottom: 72px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_180 {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_180 {
    margin-bottom: 108px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_180 {
    margin-bottom: 144px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_180 {
    margin-bottom: 180px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_180 {
    padding-top: 72px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_180 {
    padding-top: 90px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_180 {
    padding-top: 108px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_180 {
    padding-top: 144px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_180 {
    padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_180 {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_180 {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_180 {
    padding-bottom: 108px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_180 {
    padding-bottom: 144px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_180 {
    padding-bottom: 180px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_190 {
    margin-top: 76px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_190 {
    margin-top: 95px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_190 {
    margin-top: 114px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_190 {
    margin-top: 152px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_190 {
    margin-top: 190px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_190 {
    margin-bottom: 76px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_190 {
    margin-bottom: 95px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_190 {
    margin-bottom: 114px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_190 {
    margin-bottom: 152px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_190 {
    margin-bottom: 190px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_190 {
    padding-top: 76px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_190 {
    padding-top: 95px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_190 {
    padding-top: 114px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_190 {
    padding-top: 152px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_190 {
    padding-top: 190px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_190 {
    padding-bottom: 76px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_190 {
    padding-bottom: 95px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_190 {
    padding-bottom: 114px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_190 {
    padding-bottom: 152px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_190 {
    padding-bottom: 190px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_200 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_200 {
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_200 {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_200 {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_200 {
    margin-top: 200px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_200 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_200 {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_200 {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_200 {
    margin-bottom: 160px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_200 {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_200 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_200 {
    padding-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_200 {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_200 {
    padding-top: 160px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_200 {
    padding-top: 200px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_200 {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_200 {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_200 {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_200 {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_200 {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_210 {
    margin-top: 84px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_210 {
    margin-top: 105px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_210 {
    margin-top: 126px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_210 {
    margin-top: 168px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1342, scss/config/_config.scss */
  .mg_top_210 {
    margin-top: 210px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_210 {
    margin-bottom: 84px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_210 {
    margin-bottom: 105px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_210 {
    margin-bottom: 126px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_210 {
    margin-bottom: 168px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1359, scss/config/_config.scss */
  .mg_btm_210 {
    margin-bottom: 210px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_210 {
    padding-top: 84px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_210 {
    padding-top: 105px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_210 {
    padding-top: 126px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_210 {
    padding-top: 168px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1376, scss/config/_config.scss */
  .pd_top_210 {
    padding-top: 210px;
  }
}

@media screen and (max-width: 767px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_210 {
    padding-bottom: 84px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_210 {
    padding-bottom: 105px;
  }
}
@media screen and (min-width: 992px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_210 {
    padding-bottom: 126px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_210 {
    padding-bottom: 168px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 1393, scss/config/_config.scss */
  .pd_btm_210 {
    padding-bottom: 210px;
  }
}

/* line 1412, scss/config/_config.scss */
.text_center {
  text-align: center;
}

/* line 1416, scss/config/_config.scss */
.text_right {
  text-align: right;
}

/* line 1420, scss/config/_config.scss */
.text_left {
  text-align: left;
}

/* line 1424, scss/config/_config.scss */
.uppercase {
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  /* line 1428, scss/config/_config.scss */
  .pc_box {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  /* line 1434, scss/config/_config.scss */
  .mob_box {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  /* line 1442, scss/config/_config.scss */
  .inline-block {
    font-size: 0;
  }
  /* line 1445, scss/config/_config.scss */
  .inline-block > div {
    display: inline-block;
    vertical-align: middle;
    float: initial;
  }
  /* line 1451, scss/config/_config.scss */
  .inline-block.top_type > div {
    vertical-align: top;
  }
  /* line 1456, scss/config/_config.scss */
  .inline-block.bottom_type > div {
    vertical-align: bottom;
  }
}
@media screen and (max-width: 767px) {
  /* line 1462, scss/config/_config.scss */
  .inline-block > div {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  /* line 1468, scss/config/_config.scss */
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  /* line 1476, scss/config/_config.scss */
  .flex > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 1498, scss/config/_config.scss */
.color1 {
  color: #681414;
}

/* line 1502, scss/config/_config.scss */
.color2 {
  color: #B78830;
}

/* line 1506, scss/config/_config.scss */
.color3 {
  color: #C3B8A2;
}

/* line 1510, scss/config/_config.scss */
.gary {
  color: #828282;
}

/* line 1, scss/config/_fontSize.scss */
.font-90 {
  font-size: 90px;
}

/* line 5, scss/config/_fontSize.scss */
.font-88 {
  font-size: 88px;
}

/* line 9, scss/config/_fontSize.scss */
.font-80 {
  font-size: 80px;
}

/* line 13, scss/config/_fontSize.scss */
.font-70 {
  font-size: 70px;
}

/* line 17, scss/config/_fontSize.scss */
.font-64 {
  font-size: 64px;
}

/* line 21, scss/config/_fontSize.scss */
.font-60 {
  font-size: 60px;
}

/* line 25, scss/config/_fontSize.scss */
.font-55 {
  font-size: 55px;
}

/* line 29, scss/config/_fontSize.scss */
.font-50 {
  font-size: 50px;
}

/* line 33, scss/config/_fontSize.scss */
.font-48 {
  font-size: 48px;
}

/* line 37, scss/config/_fontSize.scss */
.font-43 {
  font-size: 43px;
}

/* line 41, scss/config/_fontSize.scss */
.font-42 {
  font-size: 42px;
}

/* line 45, scss/config/_fontSize.scss */
.font-40 {
  font-size: 40px;
}

/* line 49, scss/config/_fontSize.scss */
.font-36 {
  font-size: 36px;
}

/* line 53, scss/config/_fontSize.scss */
.font-35 {
  font-size: 35px;
}

/* line 57, scss/config/_fontSize.scss */
.font-32 {
  font-size: 32px;
}

/* line 61, scss/config/_fontSize.scss */
.font-30 {
  font-size: 30px;
}

/* line 65, scss/config/_fontSize.scss */
.font-28 {
  font-size: 28px;
}

/* line 69, scss/config/_fontSize.scss */
.font-26 {
  font-size: 26px;
}

/* line 73, scss/config/_fontSize.scss */
.font-25 {
  font-size: 25px;
}

/* line 77, scss/config/_fontSize.scss */
.font-24,
.fz-24 {
  font-size: 24px;
}

/* line 82, scss/config/_fontSize.scss */
.font-22 {
  font-size: 22px;
}

/* line 86, scss/config/_fontSize.scss */
.font-21 {
  font-size: 21px;
}

/* line 90, scss/config/_fontSize.scss */
.font-20 {
  font-size: 20px;
}

/* line 94, scss/config/_fontSize.scss */
.font-19 {
  font-size: 19px;
}

/* line 98, scss/config/_fontSize.scss */
.font-18,
.fz-18 {
  font-size: 18px;
}

/* line 103, scss/config/_fontSize.scss */
.font-17 {
  font-size: 17px;
}

/* line 107, scss/config/_fontSize.scss */
.font-16,
.fz-16 {
  font-size: 16px;
}

/* line 112, scss/config/_fontSize.scss */
.font-15 {
  font-size: 15px;
}

/* line 116, scss/config/_fontSize.scss */
.font-14 {
  font-size: 14px;
}

/* line 120, scss/config/_fontSize.scss */
.font-13 {
  font-size: 13px;
}

/* line 124, scss/config/_fontSize.scss */
.font-12 {
  font-size: 12px;
}

@media (max-width: 1599px) {
  /* line 129, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 72px;
  }

  /* line 132, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 72px;
  }

  /* line 135, scss/config/_fontSize.scss */
  .font-70 {
    font-size: 65px;
  }

  /* line 138, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 54px;
  }

  /* line 141, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 52px;
  }

  /* line 144, scss/config/_fontSize.scss */
  .font-55 {
    font-size: 50px;
  }

  /* line 147, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 42px;
  }

  /* line 150, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 36px;
  }

  /* line 153, scss/config/_fontSize.scss */
  .font-40 {
    font-size: 36px;
  }

  /* line 156, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 32px;
  }

  /* line 159, scss/config/_fontSize.scss */
  .font-28 {
    font-size: 26px;
  }

  /* line 162, scss/config/_fontSize.scss */
  .font-24 {
    font-size: 22px;
  }

  /* line 165, scss/config/_fontSize.scss */
  .font-22 {
    font-size: 20px;
  }
}
@media (max-width: 1399px) {
  /* line 171, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 64px;
  }

  /* line 174, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 64px;
  }

  /* line 177, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 48px;
  }

  /* line 180, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 48px;
  }

  /* line 183, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 36px;
  }

  /* line 186, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 32px;
  }

  /* line 189, scss/config/_fontSize.scss */
  .font-40 {
    font-size: 30px;
  }

  /* line 192, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 28px;
  }

  /* line 195, scss/config/_fontSize.scss */
  .font-35 {
    font-size: 28px;
  }

  /* line 198, scss/config/_fontSize.scss */
  .font-28 {
    font-size: 24px;
  }

  /* line 201, scss/config/_fontSize.scss */
  .font-26 {
    font-size: 24px;
  }

  /* line 204, scss/config/_fontSize.scss */
  .font-24 {
    font-size: 22px;
  }

  /* line 207, scss/config/_fontSize.scss */
  .font-22 {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  /* line 213, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 70px;
  }

  /* line 216, scss/config/_fontSize.scss */
  .font-88 {
    font-size: 70px;
  }

  /* line 219, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 64px;
  }

  /* line 222, scss/config/_fontSize.scss */
  .font-70 {
    font-size: 60px;
  }

  /* line 225, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 46px;
  }

  /* line 228, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 45px;
  }

  /* line 231, scss/config/_fontSize.scss */
  .font-55 {
    font-size: 45px;
  }

  /* line 234, scss/config/_fontSize.scss */
  .font-50 {
    font-size: 42px;
  }

  /* line 237, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 34px;
  }

  /* line 240, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 30px;
  }

  /* line 243, scss/config/_fontSize.scss */
  .font-42 {
    font-size: 30px;
  }

  /* line 246, scss/config/_fontSize.scss */
  .font-40 {
    font-size: 30px;
  }

  /* line 249, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 28px;
  }

  /* line 252, scss/config/_fontSize.scss */
  .font-32 {
    font-size: 28px;
  }

  /* line 255, scss/config/_fontSize.scss */
  .font-30 {
    font-size: 28px;
  }

  /* line 258, scss/config/_fontSize.scss */
  .font-28 {
    font-size: 24px;
  }

  /* line 261, scss/config/_fontSize.scss */
  .font-26 {
    font-size: 24px;
  }

  /* line 264, scss/config/_fontSize.scss */
  .font-25 {
    font-size: 24px;
  }

  /* line 267, scss/config/_fontSize.scss */
  .font-24 {
    font-size: 20px;
  }

  /* line 270, scss/config/_fontSize.scss */
  .font-22 {
    font-size: 18px;
  }

  /* line 273, scss/config/_fontSize.scss */
  .font-20 {
    font-size: 18px;
  }

  /* line 276, scss/config/_fontSize.scss */
  .font-18 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  /* line 282, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 70px;
  }

  /* line 285, scss/config/_fontSize.scss */
  .font-88 {
    font-size: 60px;
  }

  /* line 288, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 56px;
  }

  /* line 291, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 44px;
  }

  /* line 294, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 42px;
  }

  /* line 297, scss/config/_fontSize.scss */
  .font-55 {
    font-size: 42px;
  }

  /* line 300, scss/config/_fontSize.scss */
  .font-50 {
    font-size: 38px;
  }

  /* line 303, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 36px;
  }

  /* line 306, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 30px;
  }

  /* line 309, scss/config/_fontSize.scss */
  .font-42 {
    font-size: 30px;
  }

  /* line 312, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 24px;
  }

  /* line 315, scss/config/_fontSize.scss */
  .font-35 {
    font-size: 24px;
  }

  /* line 318, scss/config/_fontSize.scss */
  .font-30 {
    font-size: 22px;
  }

  /* line 321, scss/config/_fontSize.scss */
  .font-28 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  /* line 327, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 50px;
  }

  /* line 330, scss/config/_fontSize.scss */
  .font-88 {
    font-size: 50px;
  }

  /* line 333, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 50px;
  }

  /* line 336, scss/config/_fontSize.scss */
  .font-70 {
    font-size: 50px;
  }

  /* line 339, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 42px;
  }

  /* line 342, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 38px;
  }

  /* line 345, scss/config/_fontSize.scss */
  .font-55 {
    font-size: 38px;
  }

  /* line 348, scss/config/_fontSize.scss */
  .font-50 {
    font-size: 36px;
  }

  /* line 351, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 34px;
  }

  /* line 354, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 32px;
  }

  /* line 357, scss/config/_fontSize.scss */
  .font-42 {
    font-size: 32px;
  }

  /* line 360, scss/config/_fontSize.scss */
  .font-40 {
    font-size: 28px;
  }

  /* line 363, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 26px;
  }

  /* line 366, scss/config/_fontSize.scss */
  .font-35 {
    font-size: 26px;
  }

  /* line 369, scss/config/_fontSize.scss */
  .font-30 {
    font-size: 24px;
  }

  /* line 372, scss/config/_fontSize.scss */
  .font-28 {
    font-size: 22px;
  }

  /* line 375, scss/config/_fontSize.scss */
  .font-26 {
    font-size: 22px;
  }

  /* line 378, scss/config/_fontSize.scss */
  .font-25 {
    font-size: 20px;
  }

  /* line 381, scss/config/_fontSize.scss */
  .font-24 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  /* line 387, scss/config/_fontSize.scss */
  .font-90 {
    font-size: 36px;
  }

  /* line 390, scss/config/_fontSize.scss */
  .font-80 {
    font-size: 33px;
  }

  /* line 393, scss/config/_fontSize.scss */
  .font-70 {
    font-size: 30px;
  }

  /* line 396, scss/config/_fontSize.scss */
  .font-64 {
    font-size: 30px;
  }

  /* line 399, scss/config/_fontSize.scss */
  .font-60 {
    font-size: 30px;
  }

  /* line 402, scss/config/_fontSize.scss */
  .font-55 {
    font-size: 30px;
  }

  /* line 405, scss/config/_fontSize.scss */
  .font-50 {
    font-size: 30px;
  }

  /* line 408, scss/config/_fontSize.scss */
  .font-48 {
    font-size: 30px;
  }

  /* line 411, scss/config/_fontSize.scss */
  .font-43 {
    font-size: 30px;
  }

  /* line 414, scss/config/_fontSize.scss */
  .font-42 {
    font-size: 30px;
  }

  /* line 417, scss/config/_fontSize.scss */
  .font-40 {
    font-size: 28px;
  }

  /* line 420, scss/config/_fontSize.scss */
  .font-36 {
    font-size: 24px;
  }

  /* line 423, scss/config/_fontSize.scss */
  .font-35 {
    font-size: 24px;
  }

  /* line 426, scss/config/_fontSize.scss */
  .font-24 {
    font-size: 20px;
  }

  /* line 429, scss/config/_fontSize.scss */
  .font-22 {
    font-size: 18px;
  }

  /* line 432, scss/config/_fontSize.scss */
  .font-18 {
    font-size: 16px;
  }

  /* line 435, scss/config/_fontSize.scss */
  .font-16 {
    font-size: 15px;
  }

  /* line 438, scss/config/_fontSize.scss */
  .font-15 {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  /* line 444, scss/config/_fontSize.scss */
  .h1 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 380px) {
  /* line 444, scss/config/_fontSize.scss */
  .h1 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media screen and (min-width: 768px) {
  /* line 444, scss/config/_fontSize.scss */
  .h1 {
    font-size: 52px;
    line-height: 77px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 444, scss/config/_fontSize.scss */
  .h1 {
    font-size: 62px;
    line-height: 87px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 444, scss/config/_fontSize.scss */
  .h1 {
    font-size: 72px;
    line-height: 97px;
  }
}

@media screen and (max-width: 767px) {
  /* line 467, scss/config/_fontSize.scss */
  .h2 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 380px) {
  /* line 467, scss/config/_fontSize.scss */
  .h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (min-width: 768px) {
  /* line 467, scss/config/_fontSize.scss */
  .h2 {
    font-size: 44px;
    line-height: 66px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 467, scss/config/_fontSize.scss */
  .h2 {
    font-size: 54px;
    line-height: 76px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 467, scss/config/_fontSize.scss */
  .h2 {
    font-size: 64px;
    line-height: 86px;
  }
}

@media screen and (max-width: 767px) {
  /* line 490, scss/config/_fontSize.scss */
  .h3 {
    font-size: 33px;
    line-height: 40px;
  }
}
@media screen and (max-width: 380px) {
  /* line 490, scss/config/_fontSize.scss */
  .h3 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (min-width: 768px) {
  /* line 490, scss/config/_fontSize.scss */
  .h3 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 490, scss/config/_fontSize.scss */
  .h3 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 490, scss/config/_fontSize.scss */
  .h3 {
    font-size: 54px;
    line-height: 70px;
  }
}

@media screen and (max-width: 767px) {
  /* line 514, scss/config/_fontSize.scss */
  .h4 {
    font-size: 33px;
    line-height: 40px;
  }
}
@media screen and (max-width: 380px) {
  /* line 514, scss/config/_fontSize.scss */
  .h4 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (min-width: 768px) {
  /* line 514, scss/config/_fontSize.scss */
  .h4 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 514, scss/config/_fontSize.scss */
  .h4 {
    font-size: 42px;
    line-height: 54px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 514, scss/config/_fontSize.scss */
  .h4 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media screen and (max-width: 380px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (min-width: 768px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (min-width: 950px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 34px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 538, scss/config/_fontSize.scss */
  .h5 {
    font-size: 40px;
    line-height: 46px;
  }
}

@media screen and (max-width: 767px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 26px;
    line-height: 44px;
  }
}
@media screen and (max-width: 380px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 24px;
    line-height: 42px;
  }
}
@media screen and (min-width: 768px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 30px;
    line-height: 48px;
  }
}
@media screen and (min-width: 950px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 32px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 34px;
    line-height: 52px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 38px;
    line-height: 56px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 569, scss/config/_fontSize.scss */
  .h5_2 {
    font-size: 42px;
    line-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 22px;
    line-height: 32px;
  }
  /* line 605, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 42px;
  }
  /* line 608, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 23px;
  }
}
@media screen and (max-width: 380px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 20px;
    line-height: 30px;
  }
  /* line 615, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 40px;
  }
  /* line 618, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 21px;
  }
}
@media screen and (min-width: 768px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 22px;
    line-height: 32px;
  }
  /* line 625, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 42px;
  }
  /* line 628, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 23px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 26px;
    line-height: 36px;
  }
  /* line 635, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 46px;
  }
  /* line 638, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 25px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 28px;
    line-height: 38px;
  }
  /* line 645, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 43px;
  }
  /* line 648, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 29px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 601, scss/config/_fontSize.scss */
  .h6 {
    font-size: 30px;
    line-height: 40px;
  }
  /* line 655, scss/config/_fontSize.scss */
  .h6.bl {
    line-height: 50px;
  }
  /* line 658, scss/config/_fontSize.scss */
  .h6.sl {
    line-height: 31px;
  }
}

@media screen and (max-width: 767px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 380px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 26px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 665, scss/config/_fontSize.scss */
  .h6_1 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 380px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 692, scss/config/_fontSize.scss */
  .h6_2 {
    font-size: 26px;
    line-height: 37px;
  }
}

@media screen and (max-width: 767px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 20px;
    line-height: 28px;
  }
  /* line 724, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 28px;
  }
  /* line 727, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 28px;
  }
}
@media screen and (max-width: 380px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 18px;
    line-height: 28px;
  }
  /* line 734, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 28px;
  }
  /* line 737, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 18px;
    line-height: 38px;
  }
  /* line 744, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 30px;
  }
  /* line 747, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 26px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 20px;
    line-height: 40px;
  }
  /* line 754, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 31px;
  }
  /* line 757, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 27px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 22px;
    line-height: 44px;
  }
  /* line 764, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 32px;
  }
  /* line 767, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 28px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 720, scss/config/_fontSize.scss */
  .h7 {
    font-size: 24px;
    line-height: 46px;
  }
  /* line 774, scss/config/_fontSize.scss */
  .h7.sl {
    line-height: 34px;
  }
  /* line 777, scss/config/_fontSize.scss */
  .h7.ssl {
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  /* line 784, scss/config/_fontSize.scss */
  .h8 {
    font-size: 20px;
    line-height: 30px;
  }
  /* line 788, scss/config/_fontSize.scss */
  .h8.sl {
    line-height: 24px;
  }
}
@media screen and (max-width: 380px) {
  /* line 784, scss/config/_fontSize.scss */
  .h8 {
    font-size: 18px;
    line-height: 28px;
  }
  /* line 795, scss/config/_fontSize.scss */
  .h8.sl {
    line-height: 22px;
  }
}
@media screen and (min-width: 768px) {
  /* line 784, scss/config/_fontSize.scss */
  .h8 {
    font-size: 18px;
    line-height: 28px;
  }
  /* line 802, scss/config/_fontSize.scss */
  .h8.sl {
    line-height: 22px;
  }
}
@media screen and (min-width: 992px) {
  /* line 784, scss/config/_fontSize.scss */
  .h8 {
    font-size: 20px;
    line-height: 30px;
  }
  /* line 809, scss/config/_fontSize.scss */
  .h8.sl {
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  /* line 815, scss/config/_fontSize.scss */
  .h9 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 380px) {
  /* line 815, scss/config/_fontSize.scss */
  .h9 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  /* line 815, scss/config/_fontSize.scss */
  .h9 {
    font-size: 17px;
    line-height: 25px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 815, scss/config/_fontSize.scss */
  .h9 {
    font-size: 18px;
    line-height: 26px;
  }
}

/* line 834, scss/config/_fontSize.scss */
.h10 {
  font-size: 16px;
  line-height: 36px;
}
/* line 837, scss/config/_fontSize.scss */
.h10.bl {
  line-height: 32px;
}
/* line 840, scss/config/_fontSize.scss */
.h10.sl {
  line-height: 23px;
}

/* line 845, scss/config/_fontSize.scss */
.h11 {
  font-size: 15px;
  line-height: 21px;
}

/* line 850, scss/config/_fontSize.scss */
.h12 {
  font-size: 14px;
  line-height: 17px;
}

/* line 1, scss/layouts/_reset.scss */
body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  color: #333;
}

/* line 8, scss/layouts/_reset.scss */
a {
  transition: color .3s;
  text-decoration: none;
}

/* line 12, scss/layouts/_reset.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 16, scss/layouts/_reset.scss */
input, button {
  outline: 0;
}

/* line 19, scss/layouts/_reset.scss */
input {
  padding: 0;
  border: 0;
  background: transparent;
}

/* line 24, scss/layouts/_reset.scss */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* line 26, scss/layouts/_reset.scss */
input[type=number] {
  -moz-appearance: textfield !important;
  -webkit-appearance: none;
}

/* line 28, scss/layouts/_reset.scss */
textarea {
  border: 0;
  outline: 0;
}

/* line 32, scss/layouts/_reset.scss */
button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* line 44, scss/layouts/_reset.scss */
.ns {
  list-style: none;
}

/* line 47, scss/layouts/_reset.scss */
.swiper-button {
  margin: 0;
  outline: none;
}
/* line 50, scss/layouts/_reset.scss */
.swiper-button::after {
  display: none;
}

/* line 54, scss/layouts/_reset.scss */
.swiper-pagination-bullet {
  opacity: 1;
}

/* line 57, scss/layouts/_reset.scss */
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #727272;
}

/* line 61, scss/layouts/_reset.scss */
::-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #727272;
}

/* line 65, scss/layouts/_reset.scss */
::-o-placeholder {
  /* Mozilla Firefox 19+ */
  color: #727272;
}

/* line 69, scss/layouts/_reset.scss */
::-ms-placeholder {
  /* Internet Explorer 10+ */
  color: #727272;
}

/* line 73, scss/layouts/_reset.scss */
::-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #727272;
}

/* line 77, scss/layouts/_reset.scss */
[class^="icon-"]:before, [class*=" icon-"]:before {
  width: auto;
}

/* line 81, scss/layouts/_reset.scss */
button {
  border: none;
  background: transparent;
}

/* line 82, scss/layouts/_reset.scss */
.btn:active, .btn:focus, .btn:visited, button:active, button:focus, button:visited,
input:active, input:focus, input:visited {
  box-shadow: none !important;
  outline: none !important;
}

/* line 87, scss/layouts/_reset.scss */
html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
  background-color: #ffffff;
}

/* line 88, scss/layouts/_reset.scss */
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;
  color: #333;
}

/* line 160, scss/layouts/_reset.scss */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  30% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}
@keyframes turnLeft {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: rotate(-540deg);
  }
}
@keyframes f-a {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes arrow-right {
  0% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes arrow-left {
  0% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
}
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* line 1, scss/layouts/_layouts.scss */
.title-h1 {
  display: none !important;
}

/* line 5, scss/layouts/_layouts.scss */
.clear:after {
  display: block;
  height: 0;
  clear: both;
  content: "";
  visibility: hidden;
}

/* line 13, scss/layouts/_layouts.scss */
.sticky main {
  overflow: initial;
}

/* line 17, scss/layouts/_layouts.scss */
.editor::after,
.edit-box::after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  clear: both;
  float: none;
}

/* line 27, scss/layouts/_layouts.scss */
.main-block {
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* line 33, scss/layouts/_layouts.scss */
.iframe {
  position: relative;
  font-size: 0;
}

/* line 38, scss/layouts/_layouts.scss */
.iframe > span {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
}

/* line 45, scss/layouts/_layouts.scss */
.iframe > span:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}

/* line 54, scss/layouts/_layouts.scss */
.iframe > span > iframe {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* line 63, scss/layouts/_layouts.scss */
.iframe > span > iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 69, scss/layouts/_layouts.scss */
.fade:not(.show) {
  opacity: 1;
}

/* line 76, scss/layouts/_layouts.scss */
body header {
  line-height: 0;
  font-size: 0;
  z-index: 12;
}
/* line 80, scss/layouts/_layouts.scss */
body header.header-top {
  background-color: transparent;
  border-bottom: none;
}
/* line 83, scss/layouts/_layouts.scss */
body header.header-top .locations-menu-box {
  top: 143px;
  max-height: calc(100vh - 143px);
}
@media (max-width: 1580px) {
  /* line 83, scss/layouts/_layouts.scss */
  body header.header-top .locations-menu-box {
    top: 126px;
    max-height: calc(100vh - 126px);
  }
}
@media (max-width: 1540px) {
  /* line 83, scss/layouts/_layouts.scss */
  body header.header-top .locations-menu-box {
    top: 126px;
    max-height: calc(100vh - 123px);
  }
}
@media (max-width: 1400px) {
  /* line 83, scss/layouts/_layouts.scss */
  body header.header-top .locations-menu-box {
    top: 122px;
    max-height: calc(100vh - 122px);
  }
}
@media (max-width: 1199px) {
  /* line 100, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open {
    background-color: #ffff;
  }
}
/* line 106, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-logo path {
  fill: #FFF !important;
}
/* line 112, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-logo-box .index_nav .has_select {
  border: solid 1px #ffff;
  background: none;
}
/* line 115, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-logo-box .index_nav .has_select span {
  color: #ffff;
}
/* line 117, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-logo-box .index_nav .has_select span path {
  fill: #ffff;
}
/* line 127, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-menu-box .header-menu > div:before {
  height: 72px;
}
@media (max-width: 1580px) {
  /* line 127, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-menu-box .header-menu > div:before {
    height: 63px;
  }
}
@media (max-width: 1540px) {
  /* line 127, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-menu-box .header-menu > div:before {
    height: 67px;
  }
}
@media (max-width: 1400px) {
  /* line 127, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-menu-box .header-menu > div:before {
    height: 62px;
  }
}
/* line 139, scss/layouts/_layouts.scss */
body header.header-top .header-box .header-menu-box .header-menu > div a {
  color: #FFF;
}
/* line 147, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other {
  background-color: transparent;
}
/* line 149, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other .other-p {
  color: #FFF;
}
/* line 152, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:nth-child(1) {
  border: 1px solid #FFF;
}
/* line 156, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:nth-child(1):hover + .header-other::after {
  display: none;
}
/* line 162, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:nth-child(2) {
  border: 1px solid #FFF;
}
/* line 165, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:nth-child(2):hover::after {
  display: none;
}
/* line 169, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:nth-child(2)::after {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 174, scss/layouts/_layouts.scss */
body header.header-top .header-other-box .header-other:hover {
  border: 0px solid transparent;
}
@media (min-width: 601px) {
  /* line 180, scss/layouts/_layouts.scss */
  body header.detail_type {
    border-bottom: 1px solid #F5F3F1;
    background-color: #FFF;
  }
}
/* line 187, scss/layouts/_layouts.scss */
body header.detail_type .header-box .header-logo path {
  fill: #681414 !important;
}
/* line 193, scss/layouts/_layouts.scss */
body header.detail_type .header-box .header-logo-box .index_nav .has_select {
  border: solid 1px #681414;
  background: #ffff;
}
/* line 196, scss/layouts/_layouts.scss */
body header.detail_type .header-box .header-logo-box .index_nav .has_select span {
  color: #681414;
}
/* line 198, scss/layouts/_layouts.scss */
body header.detail_type .header-box .header-logo-box .index_nav .has_select span path {
  fill: #681414;
}
/* line 208, scss/layouts/_layouts.scss */
body header.detail_type .header-box .header-menu-box .header-menu > div a {
  color: #333333;
}
@media (min-width: 1200px) {
  /* line 217, scss/layouts/_layouts.scss */
  body header.show_menu {
    border-bottom: 1px solid #F5F3F1;
    background-color: #FFF;
  }
  /* line 221, scss/layouts/_layouts.scss */
  body header.show_menu:before {
    opacity: 1;
    pointer-events: visible;
  }
  /* line 228, scss/layouts/_layouts.scss */
  body header.show_menu .header-box .header-logo path {
    fill: #681414 !important;
  }
  /* line 234, scss/layouts/_layouts.scss */
  body header.show_menu .header-box .header-logo-box .index_nav .has_select {
    border: solid 1px #681414;
    background: #ffff;
  }
  /* line 237, scss/layouts/_layouts.scss */
  body header.show_menu .header-box .header-logo-box .index_nav .has_select span {
    color: #681414;
  }
  /* line 239, scss/layouts/_layouts.scss */
  body header.show_menu .header-box .header-logo-box .index_nav .has_select span path {
    fill: #681414;
  }
  /* line 249, scss/layouts/_layouts.scss */
  body header.show_menu .header-box .header-menu-box .header-menu > div a {
    color: #333333;
  }
}

/* line 261, scss/layouts/_layouts.scss */
.locations-menu-box {
  -webkit-overflow-scrolling: touch;
}
/* line 263, scss/layouts/_layouts.scss */
.locations-menu-box::-webkit-scrollbar {
  width: 3px;
  background-color: #681414;
}
/* line 267, scss/layouts/_layouts.scss */
.locations-menu-box::-webkit-scrollbar-track {
  /*拉霸底部顏色*/
  border-radius: 0px;
  background-color: #681414;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 273, scss/layouts/_layouts.scss */
.locations-menu-box::-webkit-scrollbar-thumb {
  /*拉霸顏色*/
  border-radius: 0px;
  background-color: #B78830;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 281, scss/layouts/_layouts.scss */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 0px;
  padding-left: 100px;
  padding-bottom: 0px;
  padding-right: 0;
  transition: all .5s ease;
  background-color: #FFF;
}
/* line 293, scss/layouts/_layouts.scss */
header:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all .5s;
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 1200px) {
  /* line 281, scss/layouts/_layouts.scss */
  header {
    position: absolute;
    transform: translate(0, -150px);
    -moz-transform: translate(0, -150px);
    -o-transform: translate(0, -150px);
    -webkit-transform: translate(0, -150px);
  }
}
/* line 309, scss/layouts/_layouts.scss */
header .header-logo {
  display: flex;
  width: 190px;
  transition: all .3s;
}
/* line 314, scss/layouts/_layouts.scss */
header .header-btn-block {
  cursor: pointer;
  display: none;
}
/* line 321, scss/layouts/_layouts.scss */
header.header-top .hover_in .locations-menu-box, header.header-fixed .hover_in .locations-menu-box {
  pointer-events: visible;
  opacity: 1;
}
/* line 324, scss/layouts/_layouts.scss */
header.header-top .hover_in .locations-menu-box:before, header.header-fixed .hover_in .locations-menu-box:before {
  height: 100%;
}
/* line 331, scss/layouts/_layouts.scss */
header .locations-menu-box {
  border-top: 1px solid #F5F3F1;
  position: fixed;
  left: 0;
  width: 100%;
  padding-top: 56px;
  top: 100px;
  max-height: calc(100vh - 100px);
  font-size: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
  overflow: auto;
  overflow-x: hidden;
  background: #fff;
}
/* line 346, scss/layouts/_layouts.scss */
header .locations-menu-box:before {
  background: #ffff;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 0;
  z-index: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-delay: 3000;
}
@media (max-width: 1580px) {
  /* line 331, scss/layouts/_layouts.scss */
  header .locations-menu-box {
    top: 100px;
    max-height: calc(100vh - 100px);
  }
}
@media (max-width: 1540px) {
  /* line 331, scss/layouts/_layouts.scss */
  header .locations-menu-box {
    top: 100px;
    max-height: calc(100vh - 100px);
  }
}
@media (max-width: 1400px) {
  /* line 331, scss/layouts/_layouts.scss */
  header .locations-menu-box {
    top: 100px;
    max-height: calc(100vh - 100px);
  }
}
@media (max-width: 1199px) {
  /* line 331, scss/layouts/_layouts.scss */
  header .locations-menu-box {
    display: none;
  }
}
/* line 374, scss/layouts/_layouts.scss */
header .locations-menu-box .wp1520 {
  position: relative;
  z-index: 5;
}
/* line 378, scss/layouts/_layouts.scss */
header .locations-menu-box .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* line 386, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  padding-bottom: 46px;
  justify-content: center;
}
/* line 396, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div a {
  display: block;
  text-align: center;
  width: 335px;
}
/* line 400, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div a .hide_img {
  font-size: 0;
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 0 50px 0 50px;
  -moz-border-radius: 0 50px 0 50px;
  border-radius: 0 50px 0 50px;
  padding-bottom: 59.734513274%;
}
/* line 408, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div a .hide_img img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all .5s;
}
/* line 417, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div a:hover .hide_img img {
  transform: scale(1.05);
}
/* line 422, scss/layouts/_layouts.scss */
header .locations-menu-box .row > div a .h8 {
  display: block;
  margin-top: 23px;
}
/* line 430, scss/layouts/_layouts.scss */
header .header-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
}
/* line 436, scss/layouts/_layouts.scss */
header .header-box .header-logo-box {
  position: relative;
}
/* line 438, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav {
  display: none;
  width: 170px;
  position: absolute;
  left: 100%;
  margin-left: 30px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 446, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .has_select {
  text-align: center;
  border: solid 1px #681414;
  padding: 10px 0;
  cursor: pointer;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: #ffff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 454, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .has_select span {
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  vertical-align: middle;
  color: #681414;
}
/* line 460, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .has_select span.icon {
  margin-left: 10px;
}
/* line 463, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .has_select span path {
  fill: #681414;
}
@media (max-width: 1500px) {
  /* line 438, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav {
    width: 150px;
  }
  /* line 471, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav .has_select {
    padding: 8px 0;
  }
  /* line 473, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav .has_select span {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1400px) {
  /* line 438, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav {
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  /* line 438, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav {
    margin-left: 0;
    left: auto;
    right: 5%;
    margin-right: 85px;
  }
}
@media (max-width: 500px) {
  /* line 438, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav {
    margin-right: 75px;
  }
}
@media (max-width: 400px) {
  /* line 438, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .index_nav {
    margin-right: 70px;
  }
}
/* line 494, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 5;
  border: 1px solid #F5F3F1;
  margin-top: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: none;
  background: #ffff;
}
/* line 505, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu a {
  font-size: 16px;
  line-height: 45px;
  display: block;
  border-bottom: solid 1px #F5F3F1;
  padding: 5px 21px;
  text-decoration: none;
}
/* line 512, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu a.active {
  display: none;
}
/* line 515, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu a span {
  color: #828282;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 520, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu a:hover span {
  color: #681414;
}
/* line 524, scss/layouts/_layouts.scss */
header .header-box .header-logo-box .index_nav .type_menu a:last-child {
  border-bottom: none;
}
/* line 531, scss/layouts/_layouts.scss */
header .header-box .header-menu-box {
  display: flex;
  align-items: center;
}
/* line 534, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu {
  list-style: none;
  font-size: 0;
}
/* line 537, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu > div {
  margin-right: 60px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
/* line 542, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu > div:before {
  position: absolute;
  width: 130%;
  left: -15%;
  top: 50%;
  z-index: 1;
  content: '';
  opacity: 0;
  display: block;
  pointer-events: none;
  height: 50px;
}
@media (max-width: 1580px) {
  /* line 542, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div:before {
    height: 50px;
  }
}
@media (max-width: 1540px) {
  /* line 542, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div:before {
    height: 50px;
  }
}
@media (max-width: 1400px) {
  /* line 542, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div:before {
    height: 50px;
  }
}
/* line 564, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu > div.hover_in:before {
  pointer-events: visible;
}
/* line 568, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu > div a {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  text-decoration: none !important;
  transition: color .5s ease;
  position: relative;
  z-index: 2;
}
/* line 576, scss/layouts/_layouts.scss */
header .header-box .header-menu-box .header-menu > div a:hover {
  color: #B78830 !important;
}
/* line 583, scss/layouts/_layouts.scss */
header .header-box .header-other-box {
  display: flex;
  align-items: center;
  width: 450px;
  transition: all .5s ease;
  position: relative;
}
/* line 589, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other {
  height: 100px;
  width: 50%;
  background-color: #C3B8A2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
  text-decoration: none !important;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
/* line 601, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other .other-icon {
  margin-right: 15px;
}
@media (max-width: 1400px) {
  /* line 601, scss/layouts/_layouts.scss */
  header .header-box .header-other-box .header-other .other-icon {
    margin-right: 10px;
  }
}
/* line 606, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other .other-icon svg {
  transition: all .5s;
}
/* line 610, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other .other-p {
  font-size: 18px;
  color: #FFF;
  font-weight: 400;
  transition: all .5s;
}
/* line 616, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other .header-other-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 624, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other:hover .other-p {
  color: #FFF !important;
}
/* line 627, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other:hover::after {
  display: none;
}
/* line 631, scss/layouts/_layouts.scss */
header .header-box .header-other-box .header-other:hover + .header-other::after {
  display: none;
}
/* line 638, scss/layouts/_layouts.scss */
header .header-box .other-menu-block {
  width: 100%;
  position: fixed;
  height: 100vh;
  padding-top: 130px;
  padding-bottom: 100px;
  overflow: auto;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all .3s;
  opacity: 0;
  pointer-events: none;
}
/* line 651, scss/layouts/_layouts.scss */
header .header-box .other-menu-block.cosmetic-active {
  opacity: 1;
  pointer-events: auto;
}
/* line 654, scss/layouts/_layouts.scss */
header .header-box .other-menu-block.cosmetic-active .cosmetic-menu {
  display: flex;
}
/* line 658, scss/layouts/_layouts.scss */
header .header-box .other-menu-block.hair-active {
  opacity: 1;
  pointer-events: auto;
}
/* line 661, scss/layouts/_layouts.scss */
header .header-box .other-menu-block.hair-active .hair-menu {
  display: flex;
}
/* line 666, scss/layouts/_layouts.scss */
header .header-box .header-other-mask {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}
/* line 675, scss/layouts/_layouts.scss */
header .header-box .header-other-mask.active {
  opacity: 1;
  pointer-events: auto;
}
/* line 680, scss/layouts/_layouts.scss */
header .header-box .other-menu-box {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #FFF;
  display: none;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}
/* line 692, scss/layouts/_layouts.scss */
header .header-box .other-menu-box a {
  text-decoration: none !important;
}
/* line 695, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left {
  width: calc(100% - 410px);
  overflow: hidden;
  position: relative;
  padding: 65px 125px;
  box-sizing: border-box;
}
/* line 701, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-bg {
  max-width: 50%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
/* line 711, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-block {
  display: flex;
}
/* line 714, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-right: 70px;
  max-width: 100px;
}
/* line 720, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box:last-child {
  margin-right: 0;
  list-style: none;
}
/* line 724, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box li {
  margin-bottom: 20px;
}
/* line 726, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box li a {
  font-size: 16px;
  line-height: 1.5;
  color: #828282;
  font-weight: 400;
  transition: all .5s;
  position: relative;
  display: inline-block;
}
/* line 734, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box li a::after {
  content: '';
  width: 00%;
  height: 1px;
  display: block;
  background-color: #333333;
  transition: all .3s;
}
/* line 743, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box li a:hover:after {
  width: 100%;
}
/* line 750, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box li:nth-child(1) a:after {
  display: none;
}
/* line 756, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-left .other-menu-list-box .other-menu-title {
  font-size: 20px;
  font-weight: 500;
  color: #681414;
  transition: all .5s;
}
/* line 764, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right {
  width: 410px;
  padding: 65px 105px;
  background-color: #F5F3F1;
  position: relative;
}
/* line 769, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box {
  width: 100%;
}
/* line 771, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
/* line 777, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list .storefront-title {
  width: calc(100% - 50px);
  padding-right: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #C3B8A2;
  transition: all .5s;
}
/* line 785, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list .storefront-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C3B8A2;
  border-radius: 50%;
  transition: all .5s;
}
/* line 794, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list .storefront-arrow span {
  width: 15px;
  display: flex;
}
/* line 797, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list .storefront-arrow span path {
  transition: all .5s;
}
/* line 803, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list:hover .storefront-title {
  color: #B78830;
}
/* line 806, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list:hover .storefront-arrow {
  border: 1px solid #B78830;
}
/* line 808, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .other-menu-right .storefront-box .storefront-list:hover .storefront-arrow path {
  fill: #B78830 !important;
  stroke: #B78830 !important;
}
/* line 819, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .index-slogan h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
/* line 824, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .index-slogan:after {
  height: 60%;
  top: 20%;
}
/* line 829, scss/layouts/_layouts.scss */
header .header-box .other-menu-box .link-box {
  position: absolute;
  left: -75px;
  bottom: 55px;
}
/* line 837, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.cosmetic-menu .link-box .link-info {
  border: 1px solid #681414;
  background-color: #FFF;
  color: #681414;
}
/* line 842, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.cosmetic-menu .link-box .link-line {
  background-color: #681414;
}
/* line 846, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.cosmetic-menu .link-box:hover .link-info {
  background-color: #681414;
  color: #FFF;
}
/* line 856, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.hair-menu .link-box .link-info {
  border: 1px solid #B78830;
  background-color: #FFF;
  color: #B78830;
}
/* line 861, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.hair-menu .link-box .link-line {
  background-color: #B78830;
}
/* line 865, scss/layouts/_layouts.scss */
header .header-box .other-menu-box.hair-menu .link-box:hover .link-info {
  background-color: #B78830;
  color: #FFF;
}
/* line 876, scss/layouts/_layouts.scss */
header .cosmetic-menu .other-menu-title {
  color: #681414 !important;
}
/* line 882, scss/layouts/_layouts.scss */
header .cosmetic-menu .other-menu-list-box li a:hover {
  color: #681414 !important;
}
/* line 884, scss/layouts/_layouts.scss */
header .cosmetic-menu .other-menu-list-box li a:hover::after {
  background-color: #681414 !important;
}
/* line 893, scss/layouts/_layouts.scss */
header .hair-menu .other-menu-title {
  color: #B78830 !important;
}
/* line 899, scss/layouts/_layouts.scss */
header .hair-menu .other-menu-list-box li a:hover {
  color: #B78830 !important;
}
/* line 901, scss/layouts/_layouts.scss */
header .hair-menu .other-menu-list-box li a:hover::after {
  background-color: #B78830 !important;
}
@media (min-width: 1200px) {
  /* line 911, scss/layouts/_layouts.scss */
  header.scroll_up:not(.header-fixed) {
    background-color: transparent;
  }
  /* line 914, scss/layouts/_layouts.scss */
  header.scroll_up.show_menu {
    background: #ffff;
  }
}
/* line 920, scss/layouts/_layouts.scss */
header.header-top {
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  left: 0;
  padding: 21.5px 100px;
}
/* line 924, scss/layouts/_layouts.scss */
header.header-top .header-logo {
  width: 263px;
}
/* line 928, scss/layouts/_layouts.scss */
header.header-top .header-box {
  background-color: transparent;
  border-bottom: none;
}
/* line 933, scss/layouts/_layouts.scss */
header.header-top .header-box .header-menu-box .header-menu > div {
  margin-right: 60px;
}
/* line 939, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box {
  width: 470px;
  max-width: 100%;
  position: relative;
}
/* line 943, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other {
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
}
/* line 951, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other:nth-child(1) {
  border: 1px solid #fff;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
  border-right: 0 !important;
}
/* line 956, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other:nth-child(1):hover {
  border: 1px solid #681414;
}
/* line 960, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other:nth-child(2) {
  border: 1px solid #fff;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  border-left: 0 !important;
}
/* line 965, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other:nth-child(2):hover {
  border: 1px solid #B78830;
}
/* line 969, scss/layouts/_layouts.scss */
header.header-top .header-box .header-other-box .header-other .other-p {
  color: #fff;
}
@media (min-width: 1200px) {
  /* line 982, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(1), header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(1) {
    border: 1px solid #C3B8A2;
  }
  /* line 985, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(1) .other-icon path, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(1) .other-icon path {
    stroke: #C3B8A2;
  }
  /* line 989, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(1):hover, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(1):hover {
    border: 1px solid #681414;
  }
  /* line 992, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(1):hover .other-icon path, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(1):hover .other-icon path {
    stroke: #fff;
  }
  /* line 998, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(2), header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(2) {
    border: 1px solid #C3B8A2;
  }
  /* line 1000, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(2):after, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(2):after {
    background-color: #C3B8A2;
  }
  /* line 1004, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(2) .other-icon path, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(2) .other-icon path {
    fill: #C3B8A2;
  }
  /* line 1008, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(2):hover, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(2):hover {
    border: 1px solid #B78830;
  }
  /* line 1011, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other:nth-child(2):hover .other-icon path, header.header-top.show_menu .header-box .header-other-box .header-other:nth-child(2):hover .other-icon path {
    fill: #fff;
  }
  /* line 1017, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-other-box .header-other .other-p, header.header-top.show_menu .header-box .header-other-box .header-other .other-p {
    color: #C3B8A2;
  }
  /* line 1025, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-menu-box .header-menu > div a, header.header-top.show_menu .header-box .header-menu-box .header-menu > div a {
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    text-decoration: none !important;
    transition: color .5s ease;
    position: relative;
    z-index: 2;
  }
  /* line 1033, scss/layouts/_layouts.scss */
  header.header-top.detail_type .header-box .header-menu-box .header-menu > div a:hover, header.header-top.show_menu .header-box .header-menu-box .header-menu > div a:hover {
    color: #681414 !important;
  }
}
/* line 1045, scss/layouts/_layouts.scss */
header.header-fixed {
  position: fixed;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
@media (min-width: 1200px) {
  /* line 1054, scss/layouts/_layouts.scss */
  header.header-fixed .header-box .header-menu-box .header-menu > div a:hover {
    color: #681414 !important;
  }
}
/* line 1064, scss/layouts/_layouts.scss */
header .header-copyright-block {
  display: none;
  width: 100%;
}
/* line 1067, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-link-box {
  text-align: center;
  margin-bottom: 15px;
}
/* line 1070, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-link-box a {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  font-size: 16px;
  color: #828282;
}
/* line 1076, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-link-box a:after {
  content: '';
  width: 1px;
  height: 14px;
  display: block;
  background-color: #828282;
  position: absolute;
  top: calc(50% - 7px);
  right: -2px;
}
/* line 1087, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-link-box a:last-child:after {
  display: none;
}
/* line 1093, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-p {
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #681414;
  margin-bottom: 0;
}
/* line 1101, scss/layouts/_layouts.scss */
header .header-copyright-block .header-copyright-p a {
  color: #681414;
}
/* line 1106, scss/layouts/_layouts.scss */
header .rwd-fiexd-link-box {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  transition: all .5s;
  opacity: 0;
  pointer-events: none;
  border-top: 1px solid #F5F3F1;
  font-size: 16px;
  line-height: 1.5;
}
/* line 1121, scss/layouts/_layouts.scss */
header .rwd-fiexd-link-box .rwd-fiexd-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
/* line 1127, scss/layouts/_layouts.scss */
header .rwd-fiexd-link-box .rwd-fiexd-link .rwd-fiexd-link-p {
  font-size: 14px;
  color: #828282;
}
/* line 1133, scss/layouts/_layouts.scss */
header .other-more {
  margin-left: 15px;
  display: none;
}
/* line 1137, scss/layouts/_layouts.scss */
header .header-other-open {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: pointer;
}

/* line 1152, scss/layouts/_layouts.scss */
.header-other:nth-child(2)::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
}

/* line 1166, scss/layouts/_layouts.scss */
#hair .other-hair .other-more {
  display: flex;
}
/* line 1169, scss/layouts/_layouts.scss */
#hair .other-hair .header-other-open {
  display: block;
}
/* line 1174, scss/layouts/_layouts.scss */
#hair .header-other-box:after {
  opacity: 0;
}
/* line 1177, scss/layouts/_layouts.scss */
#hair .header-other-box .h-B78830 {
  background-color: #B78830;
}
/* line 1182, scss/layouts/_layouts.scss */
#hair .other-hair:after {
  display: none !important;
}
@media (min-width: 1200px) {
  /* line 1186, scss/layouts/_layouts.scss */
  #hair header.header-top {
    border-bottom: 1px solid #F5F3F1;
    background: #ffff;
  }
}
/* line 1193, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-logo path {
  fill: #681414 !important;
}
/* line 1200, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-menu-box .header-menu > div a {
  color: #333333;
}
/* line 1209, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-logo-box .header-btn-block .header-btn-box span {
  background-color: #681414;
}
/* line 1214, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-logo-box .header-btn-block .header-btn-title span {
  color: #681414;
}
@media (min-width: 1200px) {
  /* line 1222, scss/layouts/_layouts.scss */
  #hair header.header-top .header-box .header-other-box .header-other {
    border: 1px solid #C3B8A2;
  }
  /* line 1224, scss/layouts/_layouts.scss */
  #hair header.header-top .header-box .header-other-box .header-other .other-p {
    color: #C3B8A2;
  }
}
/* line 1229, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-other-box .header-other:nth-child(2) {
  border: 1px solid #B78830;
}
/* line 1231, scss/layouts/_layouts.scss */
#hair header.header-top .header-box .header-other-box .header-other:nth-child(2) .other-p {
  color: #FFF;
}
@media (min-width: 1200px) {
  /* line 1242, scss/layouts/_layouts.scss */
  #hair header.header-top .header-other-box .h-681414 .other-icon path {
    stroke: #C3B8A2;
  }
}
/* line 1249, scss/layouts/_layouts.scss */
#hair header.header-top .header-other-box.show .other-hair {
  border-radius: 45px;
}
/* line 1258, scss/layouts/_layouts.scss */
#hair .header-other-box.show .header-other {
  border: none !important;
}
/* line 1261, scss/layouts/_layouts.scss */
#hair .header-other-box.show .other-cosmetic {
  width: 0% !important;
}
/* line 1265, scss/layouts/_layouts.scss */
#hair .header-other-box.show .other-hair {
  width: 100% !important;
  border-radius: 0px;
}

/* line 1274, scss/layouts/_layouts.scss */
#cosmetic .other-cosmetic .other-more {
  display: flex;
}
/* line 1277, scss/layouts/_layouts.scss */
#cosmetic .other-cosmetic .header-other-open {
  display: block;
}
/* line 1282, scss/layouts/_layouts.scss */
#cosmetic .header-other-box:after {
  opacity: 0;
}
/* line 1285, scss/layouts/_layouts.scss */
#cosmetic .header-other-box .h-681414 {
  background-color: #681414;
}
/* line 1290, scss/layouts/_layouts.scss */
#cosmetic .other-hair:after {
  display: none !important;
}
@media (min-width: 1200px) {
  /* line 1294, scss/layouts/_layouts.scss */
  #cosmetic header.header-top {
    border-bottom: 1px solid #F5F3F1;
    background: #ffff;
  }
}
/* line 1301, scss/layouts/_layouts.scss */
#cosmetic header.header-top .header-box .header-logo path {
  fill: #681414 !important;
}
/* line 1308, scss/layouts/_layouts.scss */
#cosmetic header.header-top .header-box .header-menu-box .header-menu > div a {
  color: #333333;
}
/* line 1317, scss/layouts/_layouts.scss */
#cosmetic header.header-top .header-box .header-logo-box .header-btn-block .header-btn-box span {
  background-color: #681414;
}
/* line 1322, scss/layouts/_layouts.scss */
#cosmetic header.header-top .header-box .header-logo-box .header-btn-block .header-btn-title span {
  color: #681414;
}
@media (min-width: 1200px) {
  /* line 1330, scss/layouts/_layouts.scss */
  #cosmetic header.header-top .header-box .header-other-box .header-other {
    border: 1px solid #C3B8A2;
  }
  /* line 1332, scss/layouts/_layouts.scss */
  #cosmetic header.header-top .header-box .header-other-box .header-other .other-p {
    color: #C3B8A2;
  }
  /* line 1338, scss/layouts/_layouts.scss */
  #cosmetic header.header-top .header-box .header-other-box .header-other:nth-child(2) path {
    fill: #C3B8A2;
  }
  /* line 1342, scss/layouts/_layouts.scss */
  #cosmetic header.header-top .header-box .header-other-box .header-other:nth-child(1) {
    border: 1px solid #681414;
  }
  /* line 1344, scss/layouts/_layouts.scss */
  #cosmetic header.header-top .header-box .header-other-box .header-other:nth-child(1) .other-p {
    color: #FFF;
  }
}
/* line 1355, scss/layouts/_layouts.scss */
#cosmetic .header-top .header-other-box.show .other-cosmetic {
  border-radius: 45px;
}
/* line 1362, scss/layouts/_layouts.scss */
#cosmetic .header-other-box.show .header-other {
  border: none !important;
}
/* line 1365, scss/layouts/_layouts.scss */
#cosmetic .header-other-box.show .other-cosmetic {
  width: 100% !important;
}
/* line 1369, scss/layouts/_layouts.scss */
#cosmetic .header-other-box.show .other-hair {
  width: 0% !important;
}

@media (max-width: 600px) {
  /* line 1382, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav .type_menu {
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  /* line 1392, scss/layouts/_layouts.scss */
  #branch header.scroll_down .header-box .header-logo-box .index_nav .type_menu {
    opacity: 0;
    pointer-events: none;
  }
}
/* line 1403, scss/layouts/_layouts.scss */
#branch header .header-box .header-logo-box .index_nav {
  display: block;
}
@media (max-width: 1199px) {
  /* line 1407, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav {
    display: inline-block;
  }
}
@media (max-width: 450px) {
  /* line 1412, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .header-logo {
    width: calc(100% - 240px);
    height: 64px;
  }
}
@media (max-width: 400px) {
  /* line 1418, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .header-logo {
    width: calc(100% - 210px);
  }
  /* line 1421, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav {
    width: 125px;
  }
  /* line 1423, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav .has_select {
    padding: 8px 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  /* line 1426, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav .has_select span {
    font-size: 14px;
    line-height: 24px;
  }
  /* line 1432, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav .type_menu a {
    font-size: 14px;
    line-height: 38px;
  }
}
@media (max-width: 350px) {
  /* line 1440, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .header-logo {
    width: calc(100% - 200px);
  }
  /* line 1443, scss/layouts/_layouts.scss */
  #branch header .header-box .header-logo-box .index_nav {
    width: 115px;
  }
}
@media (max-width: 1800px) {
  /* line 1453, scss/layouts/_layouts.scss */
  #branch header .header-box .header-menu-box .header-menu > div {
    margin-right: 2.5vw;
  }
}
@media (max-width: 1700px) {
  /* line 1453, scss/layouts/_layouts.scss */
  #branch header .header-box .header-menu-box .header-menu > div {
    margin-right: 2vw;
  }
}
@media (max-width: 1250px) {
  /* line 1453, scss/layouts/_layouts.scss */
  #branch header .header-box .header-menu-box .header-menu > div {
    margin-right: 1.5vw;
  }
}
@media (max-width: 1650px) {
  /* line 1471, scss/layouts/_layouts.scss */
  #branch header .header-box.header-fixed .header-menu-box .header-menu > div {
    margin-right: 3vw;
  }
}
@media (max-width: 1350px) {
  /* line 1471, scss/layouts/_layouts.scss */
  #branch header .header-box.header-fixed .header-menu-box .header-menu > div {
    margin-right: 2.5vw;
  }
}
@media (max-width: 1250px) {
  /* line 1471, scss/layouts/_layouts.scss */
  #branch header .header-box.header-fixed .header-menu-box .header-menu > div {
    margin-right: 2vw;
  }
}

/* line 1490, scss/layouts/_layouts.scss */
.fixed-community-box {
  position: fixed;
  z-index: 10;
  right: -60px;
  bottom: 60px;
  transition: all .3s;
}
/* line 1496, scss/layouts/_layouts.scss */
.fixed-community-box a {
  text-decoration: none !important;
}
/* line 1499, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-contact {
  background-color: #681414;
}
/* line 1501, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-contact:hover {
  background-color: #B78830;
}
/* line 1505, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community {
  background-color: #C3B8A2;
}
/* line 1507, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community:hover {
  background-color: #B78830;
}
/* line 1511, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-contact,
.fixed-community-box .fixed-community {
  width: 55px;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  border-bottom-left-radius: 55px;
  transition: all .3s;
  display: flex;
}
/* line 1524, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community {
  height: 55px;
  margin-bottom: 10px;
}
/* line 1529, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-contact {
  flex-direction: column;
  height: 176px;
}
/* line 1532, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-contact .fixed-community-icon {
  margin-bottom: 10px;
}
/* line 1536, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-icon {
  display: flex;
}
/* line 1539, scss/layouts/_layouts.scss */
.fixed-community-box .fixed-community-p {
  font-size: 16px;
  writing-mode: vertical-rl;
  color: #FFF;
  text-align: center;
  letter-spacing: 2px;
}
/* line 1546, scss/layouts/_layouts.scss */
.fixed-community-box.active {
  right: 50px;
}

/* line 1551, scss/layouts/_layouts.scss */
main {
  position: relative;
  z-index: 3;
}

/* line 1556, scss/layouts/_layouts.scss */
footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #303030;
  position: relative;
  z-index: 5;
}
/* line 1562, scss/layouts/_layouts.scss */
footer a {
  text-decoration: none !important;
}
/* line 1565, scss/layouts/_layouts.scss */
footer .footer-box {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
/* line 1571, scss/layouts/_layouts.scss */
footer .footer-box .footer-left {
  width: 450px;
  padding-right: 50px;
  box-sizing: border-box;
}
/* line 1575, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-logo {
  max-width: 327px;
  margin-bottom: 55px;
  width: 100%;
}
/* line 1579, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-logo img {
  max-width: 100%;
}
/* line 1582, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-logo svg {
  width: inherit !important;
  height: inherit !important;
}
/* line 1587, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
/* line 1591, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home {
  width: 200px;
  max-width: 50%;
  padding-right: 20px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
/* line 1598, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #C3B8A2;
  margin-right: 15px;
  transition: all .5s;
}
/* line 1608, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home .icon span {
  display: flex;
}
/* line 1611, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home .icon svg {
  transition: all .5s;
}
/* line 1615, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home .footer-home-title {
  width: calc(100% - 65px);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #F5F3F1;
  transition: all .5s;
}
/* line 1625, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home:hover .icon svg {
  transform: rotateY(180deg);
}
/* line 1630, scss/layouts/_layouts.scss */
footer .footer-box .footer-left .footer-home-box .footer-home:hover .footer-home-title {
  color: #C3B8A2;
}
/* line 1637, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid {
  width: calc(100% - 800px);
  display: flex;
  justify-content: space-evenly;
  position: relative;
}
/* line 1642, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-box {
  display: flex;
  flex-direction: column;
}
/* line 1645, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-box a {
  transition: all .5s;
}
/* line 1647, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-box a:hover {
  color: #B78830;
}
/* line 1653, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-title {
  font-size: 18px;
  font-weight: 500;
  color: #C3B8A2;
  transition: all .5s ease;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
/* line 1660, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-title:last-child {
  margin-bottom: 0;
}
/* line 1664, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-list {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #FFF;
}
/* line 1669, scss/layouts/_layouts.scss */
footer .footer-box .footer-mid .footer-menu-list:last-child {
  margin-bottom: 0;
}
@media (min-width: 1001px) {
  /* line 1674, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.3);
  }
  /* line 1683, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
/* line 1695, scss/layouts/_layouts.scss */
footer .footer-box .footer-right {
  width: 350px;
  padding-left: 70px;
}
/* line 1698, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .footer-copyright-box {
  width: 100%;
  display: block;
}
/* line 1702, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .gotop-button {
  transition: all .3s ease;
  transform: rotate(90deg);
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  cursor: pointer;
}
/* line 1710, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .gotop-button .gotop {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .3s;
  transition-delay: .0s;
}
/* line 1727, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .gotop-button .gotop-line {
  width: 65px;
  height: 1px;
  display: block;
  position: absolute;
  left: -32.5px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition-duration: .3s;
  transition-delay: .0s;
}
/* line 1741, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .gotop-button:hover .gotop {
  background-color: #C3B8A2;
  border: 1px solid #C3B8A2;
  color: #FFF;
}
/* line 1746, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .gotop-button:hover .gotop-line {
  transform: scale(0);
}
/* line 1751, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .footer-copyright {
  color: #FFF;
  margin-bottom: 20px;
}
/* line 1754, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .footer-copyright:nth-child(2) {
  margin-top: 40px;
}
/* line 1757, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .footer-copyright a {
  color: #FFF;
  transition: all .5s;
}
/* line 1760, scss/layouts/_layouts.scss */
footer .footer-box .footer-right .footer-copyright a:hover {
  color: #B78830;
}
/* line 1767, scss/layouts/_layouts.scss */
footer .rwd-footer-menu-title {
  display: none;
}

@media (max-width: 1700px) {
  /* line 1776, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left {
    padding: 65px 80px;
  }
  /* line 1778, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box {
    margin-right: 50px;
  }

  /* line 1785, scss/layouts/_layouts.scss */
  .fixed-community-box.active {
    right: 30px;
  }
}
@media (max-width: 1580px) {
  /* line 1791, scss/layouts/_layouts.scss */
  header.header-top .header-logo {
    width: 220px;
  }
}
@media (max-width: 1650px) {
  /* line 1802, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box {
    width: 420px;
  }
  /* line 1808, scss/layouts/_layouts.scss */
  header .header-box .header-other-box {
    width: 420px;
  }
}
@media (max-width: 1540px) {
  /* line 1821, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-menu-box .header-menu > div {
    margin-right: 25px;
  }

  /* line 1829, scss/layouts/_layouts.scss */
  header {
    padding-left: 5%;
  }
  /* line 1831, scss/layouts/_layouts.scss */
  header.header-top {
    padding: 25px 5%;
  }
  /* line 1834, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box {
    width: 370px;
  }
  /* line 1839, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-menu-box .header-menu > div {
    margin-right: 25px;
  }
  /* line 1850, scss/layouts/_layouts.scss */
  header .header-box .header-other-box {
    width: 370px;
  }
  /* line 1855, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div {
    margin-right: 35px;
  }
  /* line 1861, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .index-slogan {
    margin-bottom: 30px;
  }
  /* line 1864, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left {
    width: calc(100% - 400px);
    padding: 40px 30px 40px 65px;
  }
  /* line 1867, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box {
    margin-right: 30px;
  }
  /* line 1871, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-right {
    width: 400px;
    padding: 65px 55px;
  }
  /* line 1875, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .link-box {
    left: -50px;
  }
  /* line 1877, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .link-box .link-info {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
  /* line 1882, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .link-box .link-line {
    width: 35px;
    left: -10px;
  }

  /* line 1892, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left {
    width: 400px;
    padding-right: 35px;
  }
  /* line 1896, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid {
    width: calc(100% - 700px);
  }
  /* line 1899, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right {
    width: 300px;
    padding-left: 35px;
  }
}
@media (max-width: 1400px) {
  /* line 1911, scss/layouts/_layouts.scss */
  header.header-top .header-logo {
    width: 190px;
  }

  /* line 1917, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box {
    width: 300px;
  }
  /* line 1919, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box .header-other {
    height: 55px;
  }
  /* line 1921, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box .header-other .other-p {
    font-size: 16px;
  }
  /* line 1930, scss/layouts/_layouts.scss */
  header .header-box .header-other-box {
    width: 300px;
  }
  /* line 1933, scss/layouts/_layouts.scss */
  header .header-box .header-other-box .header-other .other-p {
    font-size: 16px;
  }
  /* line 1939, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .index-slogan {
    padding-left: 30px;
  }
  /* line 1941, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .index-slogan h4 {
    font-size: 20px;
  }
  /* line 1945, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left {
    width: 78%;
    padding: 40px 30px 40px 40px;
  }
  /* line 1949, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box .other-menu-title {
    font-size: 18px;
  }
  /* line 1954, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-right {
    width: 22%;
    padding: 40px 30px 40px 55px;
  }
}
@media (max-width: 1300px) {
  /* line 1968, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-other-box {
    width: 280px;
  }
  /* line 1974, scss/layouts/_layouts.scss */
  header .header-box .header-other-box {
    width: 280px;
  }

  /* line 1982, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left {
    width: 370px;
    padding-right: 20px;
  }
  /* line 1986, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home {
    padding-right: 10px;
  }
  /* line 1990, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-logo {
    max-width: 290px;
    margin-bottom: 30px;
  }
  /* line 1995, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid {
    width: calc(100% - 625px);
  }
  /* line 1998, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right {
    width: 255px;
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  /* line 2014, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-logo-box .header-btn-block .header-btn-box span {
    background-color: #FFF;
  }
  /* line 2019, scss/layouts/_layouts.scss */
  body header.header-top .header-box .header-logo-box .header-btn-block .header-btn-title span {
    color: #FFF;
  }
  /* line 2027, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-logo {
    width: 180px;
  }
  /* line 2034, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box span {
    background-color: #681414;
  }
  /* line 2039, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-title span {
    color: #681414;
  }
  /* line 2046, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-box .header-logo path {
    fill: #681414 !important;
  }
  /* line 2052, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-other-box {
    width: 100%;
  }
  /* line 2054, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-other-box .header-other {
    height: 80px;
    border-radius: 0 !important;
    border: none !important;
    background-color: #C3B8A2;
  }
  /* line 2068, scss/layouts/_layouts.scss */
  body header.header-top.detail_type .header-box .header-logo-box .header-btn-block .header-btn-box span {
    background-color: #681414;
  }
  /* line 2073, scss/layouts/_layouts.scss */
  body header.header-top.detail_type .header-box .header-logo-box .header-btn-block .header-btn-title span {
    color: #681414;
  }
  /* line 2084, scss/layouts/_layouts.scss */
  body header .header-other-box {
    width: 100%;
  }
  /* line 2086, scss/layouts/_layouts.scss */
  body header .header-other-box:after {
    content: '';
    width: 1px;
    height: 26px;
    display: block;
    background-color: #FFF;
    position: absolute;
    top: calc(50% - 13px);
    left: 50%;
    z-index: 1;
  }

  /* line 2100, scss/layouts/_layouts.scss */
  header {
    width: 100%;
    padding: 0;
  }
  /* line 2103, scss/layouts/_layouts.scss */
  header.header-top {
    padding: 0;
  }
  /* line 2106, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-logo-box {
    padding: 19px 5%;
    position: relative;
  }
  /* line 2111, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-logo-box .header-btn-block .header-btn-box span {
    background-color: #681414;
  }
  /* line 2116, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-logo-box .header-btn-block .header-btn-title span {
    color: #681414;
  }
  /* line 2125, scss/layouts/_layouts.scss */
  header.rwd-open .header-logo {
    width: 180px;
  }
  /* line 2129, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-other-box {
    width: 100%;
  }
  /* line 2131, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-other-box .header-other {
    height: 80px;
    border-radius: 0 !important;
    border: none !important;
    background-color: #C3B8A2;
  }
  /* line 2138, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-other-box .header-other:nth-child(2) .other-icon path {
    fill: #FFF;
  }
  /* line 2142, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-other-box .header-other:nth-child(2) .other-p {
    color: #FFF;
  }
  /* line 2146, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-other-box .header-other .other-p {
    color: #FFF;
  }
  /* line 2156, scss/layouts/_layouts.scss */
  header .header-box {
    display: block;
  }
  /* line 2158, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 5%;
    transition: all .3s;
  }
  /* line 2165, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block {
    width: 70px;
    display: block;
    transition: all .3s;
  }
  /* line 2169, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-box {
    width: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
    float: right;
    margin-bottom: 6px;
    transition: all .3s;
  }
  /* line 2178, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-box span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: #681414;
    margin-bottom: 5px;
    transition: all .5s ease;
  }
  /* line 2185, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-box span:nth-child(1) {
    width: 20px;
  }
  /* line 2188, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-box span:last-child {
    margin-bottom: 0;
  }
  /* line 2193, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-title {
    display: block;
    float: right;
    width: 100%;
    text-align: right;
  }
  /* line 2198, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-title span {
    font-size: 20px;
    display: block;
    color: #681414;
    line-height: 1;
  }
  /* line 2204, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-btn-block .header-btn-title .header-btn-close {
    display: none;
  }
  /* line 2211, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box {
    width: 100%;
    position: fixed;
    background-color: #FFF;
    top: 106px;
    right: -100%;
    flex-direction: column;
    height: calc(100vh - 106px);
    transition: right .5s ease;
  }
  /* line 2220, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .link-box {
    bottom: initial;
    top: -50px;
    left: initial;
    right: 50px;
  }
  /* line 2225, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .link-box .link-line {
    display: none;
  }
  /* line 2229, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-other-box {
    order: 1;
  }
  /* line 2232, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu-rwd {
    order: 2;
  }
  /* line 2235, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu {
    width: 100%;
  }
  /* line 2237, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div {
    display: block;
    text-align: center;
    border-bottom: 1px solid #F5F3F1;
    margin-right: 0 !important;
  }
  /* line 2242, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div:before {
    display: none;
  }
  /* line 2245, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu > div a {
    color: #333 !important;
    display: block;
    padding: 20px;
  }
  /* line 2252, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-menu-rwd {
    width: 100%;
    height: calc(100% - 80px);
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 2264, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-copyright-block {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* line 2269, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .other-menu-left,
  header .header-box .header-menu-box .other-menu-right {
    width: 100%;
  }
  /* line 2276, scss/layouts/_layouts.scss */
  header .header-box .header-other-box {
    width: 100%;
  }
  /* line 2278, scss/layouts/_layouts.scss */
  header .header-box .header-other-box .header-other {
    border-radius: 0 !important;
    border: none !important;
  }
  /* line 2285, scss/layouts/_layouts.scss */
  header .header-box .other-open .header-menu,
  header .header-box .other-open .header-copyright-block {
    display: none;
  }
  /* line 2289, scss/layouts/_layouts.scss */
  header .header-box .other-open .other-menu-block {
    position: relative;
    height: auto;
    overflow: unset;
    padding: 50px 0;
  }
  /* line 2295, scss/layouts/_layouts.scss */
  header .header-box .other-open .header-other-mask {
    position: absolute;
    height: 100%;
  }
  /* line 2302, scss/layouts/_layouts.scss */
  header .header-box .other-menu-block.cosmetic-active .cosmetic-menu {
    display: block;
  }
  /* line 2307, scss/layouts/_layouts.scss */
  header .header-box .other-menu-block.hair-active .hair-menu {
    display: block;
  }
  /* line 2314, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .index-slogan h4 {
    font-size: 24px;
  }
  /* line 2318, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left {
    padding: 40px 30px;
  }
  /* line 2321, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box .other-menu-title {
    font-size: 20px;
  }
  /* line 2326, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-right {
    padding: 40px 30px;
  }
  /* line 2331, scss/layouts/_layouts.scss */
  header.rwd-open {
    background-color: #FFF;
  }
  /* line 2334, scss/layouts/_layouts.scss */
  header.rwd-open .header-logo path {
    fill: #681414 !important;
  }
  /* line 2339, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-menu-box {
    right: 0;
  }
  /* line 2342, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box {
    padding: 19px 5%;
    background-color: #FFF;
  }
  /* line 2345, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block {
    padding-top: 10px;
  }
  /* line 2347, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box {
    margin-bottom: 18px;
  }
  /* line 2349, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box span {
    background-color: #681414;
    position: relative;
    margin: 0;
  }
  /* line 2353, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box span:nth-child(1) {
    display: none;
  }
  /* line 2356, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box span:nth-child(2) {
    transform: rotate(45deg);
    top: 1px;
  }
  /* line 2360, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-box span:nth-child(3) {
    transform: rotate(-45deg);
  }
  /* line 2367, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-title span {
    color: #681414;
  }
  /* line 2370, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-title .header-btn-open {
    display: none;
  }
  /* line 2373, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-btn-block .header-btn-title .header-btn-close {
    display: block;
  }

  /* line 2386, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left {
    width: 350px;
  }
  /* line 2389, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right {
    width: 200px;
  }
  /* line 2392, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid {
    width: calc(100% - 550px);
  }

  /* line 2398, scss/layouts/_layouts.scss */
  .fixed-community-box.active {
    right: 30px;
    bottom: 30px;
  }
}
@media (max-width: 1000px) {
  /* line 2407, scss/layouts/_layouts.scss */
  .fixed-community-box {
    display: none;
  }

  /* line 2412, scss/layouts/_layouts.scss */
  #index footer:after {
    display: none;
  }

  /* line 2418, scss/layouts/_layouts.scss */
  footer .footer-box {
    display: block;
  }
  /* line 2420, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left {
    width: 100%;
    padding-right: 0;
  }
  /* line 2423, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-logo {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 2428, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box {
    width: 375px;
    max-width: 100%;
    margin: 0 auto;
  }
  /* line 2432, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home {
    padding: 0 10px;
    width: 50%;
  }
  /* line 2435, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  /* line 2440, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home .footer-home-title {
    width: calc(100% - 50px);
  }
  /* line 2446, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  /* line 2455, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  /* line 2459, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right .footer-copyright-box {
    text-align: center;
  }

  /* line 2466, scss/layouts/_layouts.scss */
  header .index-slogan {
    padding-left: 0;
  }
  /* line 2472, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-block {
    display: block;
    margin-bottom: 0;
  }
  /* line 2477, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box li {
    display: none;
  }
  /* line 2479, scss/layouts/_layouts.scss */
  header .header-box .other-menu-box .other-menu-left .other-menu-list-box li:first-child {
    display: block;
  }
  /* line 2489, scss/layouts/_layouts.scss */
  header .header-box .other-menu-right .storefront-box .storefront-list .storefront-title {
    color: #B78830 !important;
  }
  /* line 2492, scss/layouts/_layouts.scss */
  header .header-box .other-menu-right .storefront-box .storefront-list .storefront-arrow {
    display: none !important;
  }
}
@media (max-width: 600px) {
  /* line 2508, scss/layouts/_layouts.scss */
  body header.header-top.rwd-open .header-logo {
    width: 170px;
  }

  /* line 2515, scss/layouts/_layouts.scss */
  header {
    height: 100%;
    background: none;
    pointer-events: none;
    border: none;
  }
  /* line 2520, scss/layouts/_layouts.scss */
  header .header-box {
    transition: all .5s ease;
    position: relative;
    z-index: 5;
  }
  /* line 2524, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box {
    background-color: #FFF;
    pointer-events: visible;
    top: 90px;
    height: calc(100vh - 90px);
  }
  /* line 2529, scss/layouts/_layouts.scss */
  header .header-box .header-menu-box .header-other {
    height: 70px;
  }
  /* line 2533, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box {
    background-color: #FFF;
    pointer-events: visible;
    padding: 13px 5%;
    border-bottom: 1px solid #F5F3F1;
  }
  /* line 2538, scss/layouts/_layouts.scss */
  header .header-box .header-logo-box .header-logo {
    width: 170px;
  }
  /* line 2543, scss/layouts/_layouts.scss */
  header .rwd-fiexd-link-box {
    transition: all .5s ease;
    pointer-events: visible;
  }
  /* line 2549, scss/layouts/_layouts.scss */
  header:not(.header-top).scroll_down .header-box {
    transform: translate(0, -92px);
    -moz-transform: translate(0, -92px);
    -o-transform: translate(0, -92px);
    -webkit-transform: translate(0, -92px);
    height: calc(100% + 92px);
  }
  /* line 2556, scss/layouts/_layouts.scss */
  header:not(.header-top).scroll_down .rwd-fiexd-link-box {
    transform: translate(0, 69px);
    -moz-transform: translate(0, 69px);
    -o-transform: translate(0, 69px);
    -webkit-transform: translate(0, 69px);
  }
  /* line 2564, scss/layouts/_layouts.scss */
  header:not(.header-top).scroll_up .header-box {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 2570, scss/layouts/_layouts.scss */
  header:not(.header-top).scroll_up .rwd-fiexd-link-box {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 2578, scss/layouts/_layouts.scss */
  header:not(.header-top).rwd-open .header-box {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 2584, scss/layouts/_layouts.scss */
  header:not(.header-top).rwd-open .rwd-fiexd-link-box {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 2593, scss/layouts/_layouts.scss */
  header.header-top .rwd-fiexd-link-box {
    opacity: 0;
    pointer-events: none;
    bottom: -100px;
  }
  /* line 2599, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-logo-box {
    padding: 13px 5%;
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }
  /* line 2603, scss/layouts/_layouts.scss */
  header.header-top .header-box .header-logo-box .header-logo {
    width: 170px;
  }
  /* line 2611, scss/layouts/_layouts.scss */
  header.detail_type .header-box .header-logo-box {
    border-bottom: 1px solid #F5F3F1;
  }
  /* line 2618, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-menu-box {
    background-color: #fff;
  }
  /* line 2621, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box {
    padding: 13px 5%;
    border-bottom: 1px solid #F5F3F1;
  }
  /* line 2624, scss/layouts/_layouts.scss */
  header.rwd-open .header-box .header-logo-box .header-logo {
    width: 170px;
  }
  /* line 2630, scss/layouts/_layouts.scss */
  header .rwd-fiexd-link-box {
    opacity: 1;
    pointer-events: auto;
    bottom: 0px;
  }

  /* line 2637, scss/layouts/_layouts.scss */
  footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  /* line 2640, scss/layouts/_layouts.scss */
  footer .footer-box {
    width: 100%;
  }
  /* line 2642, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left {
    padding: 0 5%;
  }
  /* line 2644, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-logo {
    width: 210px;
    max-width: 100%;
  }
  /* line 2649, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid {
    padding: 46px 5%;
  }
  /* line 2651, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid .more-menu {
    display: none;
  }
  /* line 2654, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid .footer-menu-box {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: unset;
    margin-bottom: -20px;
  }
  /* line 2659, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid .footer-menu-box .footer-menu-title {
    width: 25%;
    text-align: center;
    font-size: 16px;
  }
  /* line 2666, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right {
    padding: 0 5%;
    padding-top: 5px;
  }
  /* line 2669, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right .gotop-button {
    display: none;
    width: 120px;
    height: 120px;
  }
  /* line 2673, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right .gotop-button .gotop-line {
    width: 50px;
    left: -25px;
  }
  /* line 2679, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right .footer-copyright-box .footer-copyright {
    margin-bottom: 0;
  }
  /* line 2681, scss/layouts/_layouts.scss */
  footer .footer-box .footer-right .footer-copyright-box .footer-copyright:nth-child(2) {
    margin-top: 0;
    margin-bottom: 10px;
  }
  /* line 2689, scss/layouts/_layouts.scss */
  footer .rwd-footer-menu-title {
    display: block;
  }
}
@media (max-width: 400px) {
  /* line 2697, scss/layouts/_layouts.scss */
  .index-service-block .en-title {
    font-size: 40px;
    text-align: justify;
    display: block;
    padding: 0 5%;
  }

  /* line 2708, scss/layouts/_layouts.scss */
  footer .footer-box .footer-mid .footer-menu-box .footer-menu-title {
    width: calc(100% / 3);
  }
}
@media (max-width: 360px) {
  /* line 2723, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home .icon {
    width: 30px;
    height: 30px;
  }
  /* line 2727, scss/layouts/_layouts.scss */
  footer .footer-box .footer-left .footer-home-box .footer-home .footer-home-title {
    width: calc(100% - 40px);
  }
}
/* line 2738, scss/layouts/_layouts.scss */
div .lg-backdrop {
  background: rgba(0, 0, 0, 0.8);
}
/* line 2741, scss/layouts/_layouts.scss */
div .lg-counter {
  opacity: 0;
}
/* line 2747, scss/layouts/_layouts.scss */
div .lg-toolbar .lg-icon.lg-zoom-in:last-child {
  display: none;
}
/* line 2752, scss/layouts/_layouts.scss */
div .lg-toolbar .lg-icon.lg-zoom-out:last-child {
  display: none;
}

/* line 1, scss/layouts/pages/_index.scss */
.banner-block {
  position: relative;
  width: 100%;
}
/* line 5, scss/layouts/pages/_index.scss */
.banner-block .banner-box:not(.slick-slider) {
  padding-bottom: 150px;
}
/* line 9, scss/layouts/pages/_index.scss */
.banner-block .banner-list {
  height: 100vh;
  position: relative;
}
/* line 12, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-img {
  height: calc(100% + 150px);
  border-bottom-left-radius: 160px;
  overflow: hidden;
}
/* line 16, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-img a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  border: none;
}
/* line 23, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-img span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}
/* line 33, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-slogan-box {
  position: absolute;
  bottom: 100px;
  width: 100%;
  pointer-events: none;
}
/* line 38, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-slogan-box .banner-slogan {
  position: relative;
  overflow: hidden;
}
/* line 41, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
  font-size: 100px;
  color: #FFF;
  font-weight: 400;
  padding-left: 40px;
  line-height: 100px;
  padding-right: 300px;
}
/* line 49, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-slogan-box .banner-slogan:after {
  content: '';
  width: 2px;
  height: calc(100% - 20px);
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
}
/* line 60, scss/layouts/pages/_index.scss */
.banner-block .banner-list .banner-slogan-box .banner-slogan-cn {
  font-weight: 500;
  font-size: 30px;
  color: #FFF;
  padding-left: 40px;
  padding-right: 300px;
  letter-spacing: 0.1em;
}
/* line 70, scss/layouts/pages/_index.scss */
.banner-block .slick-list {
  height: 100vh;
  padding-bottom: 150px;
  box-sizing: unset;
}
/* line 75, scss/layouts/pages/_index.scss */
.banner-block .slick-track {
  transform: none;
}
/* line 79, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box {
  position: absolute;
  right: calc(50% - 760px);
  display: flex;
  bottom: 100px;
  z-index: 1;
}
/* line 85, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box .banner-button {
  border: 1px solid #FFF;
  opacity: 0.5;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  transition: all .5s ease;
}
/* line 93, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box .banner-button span {
  width: 30px;
  display: flex;
}
/* line 96, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box .banner-button span path {
  opacity: 1 !important;
}
/* line 100, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box .banner-button:hover {
  background-color: #681414;
  border: 1px solid #681414;
  opacity: 1;
}
/* line 106, scss/layouts/pages/_index.scss */
.banner-block .banner-button-box .banner-prev {
  margin-right: 20px;
}

/* line 112, scss/layouts/pages/_index.scss */
.index-service-block {
  position: relative;
  padding-top: 150px;
}
/* line 115, scss/layouts/pages/_index.scss */
.index-service-block .index-service-bg {
  position: absolute;
  z-index: -1;
  top: -150px;
  left: 0;
}
/* line 121, scss/layouts/pages/_index.scss */
.index-service-block .en-title {
  padding-bottom: 90px;
  text-align: center;
}
/* line 125, scss/layouts/pages/_index.scss */
.index-service-block .index-service-info {
  width: calc(100% - 880px);
  padding: 45px 75px;
  box-sizing: border-box;
}
/* line 130, scss/layouts/pages/_index.scss */
.index-service-block .index-service-box {
  display: flex;
}
/* line 133, scss/layouts/pages/_index.scss */
.index-service-block .index-service-box .index-service h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
/* line 138, scss/layouts/pages/_index.scss */
.index-service-block .index-service-box .index-service p {
  font-size: 16px;
  font-weight: 300;
  color: #828282;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 55px;
}
/* line 149, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left,
.index-service-block .index-service-right {
  width: 440px;
  position: relative;
  height: 665px;
}
/* line 154, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left .index-service-img,
.index-service-block .index-service-right .index-service-img {
  position: relative;
}
/* line 157, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left .index-service-img2,
.index-service-block .index-service-right .index-service-img2 {
  position: absolute;
  opacity: 0;
  width: 100%;
  top: 0;
  left: 0;
}
/* line 164, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left .index-service-img2,
.index-service-block .index-service-left .index-service-img1,
.index-service-block .index-service-right .index-service-img2,
.index-service-block .index-service-right .index-service-img1 {
  transition: all .5s ease;
}
/* line 168, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left .link-box,
.index-service-block .index-service-right .link-box {
  position: absolute;
  opacity: 0;
}
/* line 174, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left.active .index-service-img1,
.index-service-block .index-service-right.active .index-service-img1 {
  opacity: 0;
}
/* line 177, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left.active .index-service-img2,
.index-service-block .index-service-right.active .index-service-img2 {
  opacity: 1;
}
/* line 180, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left.active .link-box,
.index-service-block .index-service-right.active .link-box {
  opacity: 1;
}
/* line 185, scss/layouts/pages/_index.scss */
.index-service-block .rwd-index-service-class {
  display: none;
}
/* line 189, scss/layouts/pages/_index.scss */
.index-service-block .index-service-left .link-box {
  right: 0;
  bottom: 60px;
}
/* line 194, scss/layouts/pages/_index.scss */
.index-service-block .index-service-right {
  padding-top: 150px;
}
/* line 196, scss/layouts/pages/_index.scss */
.index-service-block .index-service-right .link-box {
  left: 0;
  top: 0px;
}
/* line 201, scss/layouts/pages/_index.scss */
.index-service-block .service-B {
  display: none;
}

/* line 208, scss/layouts/pages/_index.scss */
.index-service-hair .link-box .link-info:hover {
  background-color: #B78830;
}

/* line 214, scss/layouts/pages/_index.scss */
.index-about-block {
  padding-top: 60px;
  position: relative;
}
/* line 217, scss/layouts/pages/_index.scss */
.index-about-block .inner {
  display: flex;
  position: relative;
}
/* line 220, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-img {
  width: 853px;
  position: relative;
  z-index: 1;
}
/* line 225, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-info {
  width: calc(100% - 853px);
  position: relative;
  z-index: 1;
  padding-left: 110px;
  padding-right: 90px;
}
/* line 231, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-info .index-about-title {
  margin-bottom: 85px;
}
/* line 234, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(1) {
  margin-left: -240px;
}
/* line 237, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(2) {
  margin-left: -95px;
}
/* line 242, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-info .link-box {
  position: absolute;
  right: -30px;
  bottom: 0;
}
/* line 248, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-bgimg {
  width: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 257, scss/layouts/pages/_index.scss */
.index-about-block .inner .index-about-bgimg img {
  text-align: center;
}
/* line 263, scss/layouts/pages/_index.scss */
.index-about-block .index-about-bg {
  background-color: #F5F3F1;
  width: 100%;
  height: calc(100% + 353px);
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-right-radius: 600px;
  border-bottom-right-radius: 600px;
  z-index: -1;
}

/* line 277, scss/layouts/pages/_index.scss */
.index-activity-block {
  padding-top: 180px;
  padding-bottom: 170px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* line 283, scss/layouts/pages/_index.scss */
.index-activity-block .en-title {
  padding-bottom: 50px;
}
/* line 286, scss/layouts/pages/_index.scss */
.index-activity-block .inner {
  display: flex;
  align-items: flex-end;
}
/* line 290, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box {
  width: 650px;
  padding-left: 110px;
  background-color: #FFF;
  position: relative;
  z-index: 1;
}
/* line 296, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box {
  width: 470px;
  max-width: 100%;
  display: flex;
  margin-bottom: 55px;
}
/* line 301, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class {
  width: 50%;
  border: 1px solid #C3B8A2;
  text-align: center;
  height: 60px;
  line-height: 58px;
  font-size: 18px;
  transition: all .5s ease;
  cursor: pointer;
}
/* line 311, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class:hover i,
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class:hover .index-activity-class-p {
  color: #681414;
}
/* line 316, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class:nth-child(1) {
  border-right: none;
  border-top-left-radius: 45px;
  border-bottom-left-radius: 45px;
}
/* line 321, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class:nth-child(2) {
  border-left: none;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
}
/* line 325, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class:nth-child(2).active {
  background-color: #B78830;
  border: 1px solid #B78830;
}
/* line 330, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class.active {
  background-color: #681414;
  border: 1px solid #681414;
}
/* line 333, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class.active i,
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class.active .index-activity-class-p {
  color: #FFF !important;
}
/* line 339, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class i {
  font-size: 22px;
  color: #C3B8A2;
  margin-right: 5px;
  transition: all .5s ease;
}
/* line 345, scss/layouts/pages/_index.scss */
.index-activity-block .index-activity-info-box .index-activity-class-box .index-activity-class .index-activity-class-p {
  color: #C3B8A2;
  font-weight: 300;
  transition: all .5s ease;
}
/* line 353, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block {
  width: calc(100% - 650px);
  padding-bottom: 45px;
}
/* line 356, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .activity-slick-box {
  width: 2030px;
  width: 105.209vw;
}
/* line 360, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .slick-list {
  overflow: unset;
}
/* line 363, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .slick-slide {
  margin-right: 650px;
}
/* line 367, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img {
  overflow: hidden;
  display: inline-block;
  border-radius: 307px;
  width: 100%;
}
/* line 372, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img a {
  display: block;
}
/* line 375, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img img {
  max-height: 620px;
}
@media (max-width: 1599px) {
  /* line 379, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img img {
    height: 500px;
  }
}
/* line 387, scss/layouts/pages/_index.scss */
.index-activity-block .activity-slick-block .rwd-activity-info {
  display: none;
}
/* line 392, scss/layouts/pages/_index.scss */
.index-activity-block .activity-info-slick .index-slogan {
  width: 100%;
  padding-left: 30px;
}
/* line 395, scss/layouts/pages/_index.scss */
.index-activity-block .activity-info-slick .index-slogan::after {
  left: 0;
}
/* line 400, scss/layouts/pages/_index.scss */
.index-activity-block .slick-arrow-block,
.index-activity-block .activity-info-slick-block {
  position: relative;
}
/* line 405, scss/layouts/pages/_index.scss */
.index-activity-block .hide {
  width: 100%;
  position: absolute !important;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
}
/* line 413, scss/layouts/pages/_index.scss */
.index-activity-block .slick-arrow-box {
  position: absolute;
  right: 50px;
  bottom: -45px;
  z-index: 1;
  display: flex;
}

/* line 423, scss/layouts/pages/_index.scss */
.index-news-block {
  position: relative;
  padding-top: 150px;
  padding-bottom: 70px;
}
/* line 427, scss/layouts/pages/_index.scss */
.index-news-block .inner {
  display: flex;
}
/* line 430, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left {
  width: 884px;
  display: flex;
  padding-top: 38px;
}
/* line 434, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left .index-news-slick-box {
  width: calc(100% - 308px);
}
/* line 436, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left .index-news-slick-box .slick-list {
  padding-top: 35px;
}
/* line 439, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left .index-news-slick-box .index-news-slick {
  width: 100%;
  position: relative;
}
/* line 446, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left .index-news-slick-box .index-news-slick.active .news-slick-img img, .index-news-block .index-news-left .index-news-slick-box .index-news-slick:hover .news-slick-img img {
  transform: scale(1.05);
}
/* line 454, scss/layouts/pages/_index.scss */
.index-news-block .index-news-left .index-news-prev .news-slick-img {
  border-bottom-left-radius: 40%;
  overflow: hidden;
}
/* line 461, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right {
  width: calc(100% - 884px);
  padding-left: 70px;
}
/* line 464, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right a {
  text-decoration: unset !important;
  display: block;
}
/* line 468, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .en-title {
  margin-bottom: 40px;
}
/* line 471, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-slick {
  padding-bottom: 35px;
}
/* line 475, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-slick.active .index-news-info-title, .index-news-block .index-news-right .index-news-info-slick:hover .index-news-info-title {
  color: #B78830;
}
/* line 477, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-slick.active .index-news-info-title::after, .index-news-block .index-news-right .index-news-info-slick:hover .index-news-info-title::after {
  background-color: #B78830;
}
/* line 483, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-title {
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
  display: block;
  transition: all .5s ease;
}
@media (max-width: 850px) {
  /* line 483, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .index-news-info-title {
    font-size: 25px;
    line-height: 1.6;
  }
}
/* line 494, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-title::after {
  content: '';
  width: 2px;
  height: calc(100% - 10px);
  left: 0px;
  top: 7px;
  display: block;
  position: absolute;
  background-color: #333;
  transition: all .5s ease;
}
/* line 506, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-p {
  max-width: 480px;
  font-size: 16px;
  color: #828282;
  line-height: 40px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 23px;
}
/* line 515, scss/layouts/pages/_index.scss */
.index-news-block .index-news-right .index-news-info-date {
  font-size: 20px;
  font-weight: 400;
  color: #681414;
  display: block;
}
/* line 522, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-class {
  position: absolute;
  top: -25px;
  left: 40px;
  z-index: 3;
  min-width: 160px;
  height: 50px;
  padding: 0 15px;
  background-color: #681414;
  color: #FFF;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 40px 40px 0px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
/* line 540, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-img {
  width: 100%;
  height: 0;
  padding-bottom: 115.7%;
  position: relative;
  display: block;
  cursor: pointer;
}
/* line 547, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-img span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
/* line 555, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-img span img {
  transition: all .5s;
}
/* line 560, scss/layouts/pages/_index.scss */
.index-news-block .slick-arrow {
  transition: all .5s;
  opacity: 1;
}
/* line 564, scss/layouts/pages/_index.scss */
.index-news-block .slick-fade {
  opacity: 0;
}
/* line 567, scss/layouts/pages/_index.scss */
.index-news-block .index-news-prev {
  margin-right: 20px;
  width: 288px;
  padding-top: 35px;
  display: block;
}
/* line 573, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block {
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 578, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-dots-box {
  position: relative;
}
/* line 580, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #C3B8A2;
  padding: 30px;
}
/* line 589, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots .index-news-slick-line {
  width: 80px;
  height: 1px;
  display: block;
  background-color: #C3B8A2;
  transform: rotate(-45deg);
}
/* line 596, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots .index-news-slick-now {
  font-weight: 700;
  font-size: 22px;
  color: #C3B8A2;
  margin-right: 30px;
}
/* line 602, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots .index-news-slick-sum {
  font-weight: 700;
  font-size: 36px;
  color: #C3B8A2;
  line-height: 1;
  margin-left: 30px;
  margin-top: -5px;
}
/* line 612, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-next {
  width: 223px;
}
/* line 614, scss/layouts/pages/_index.scss */
.index-news-block .index-news-dots-block .index-news-next .news-slick-img {
  border-bottom-right-radius: 40%;
  overflow: hidden;
}
/* line 621, scss/layouts/pages/_index.scss */
.index-news-block .slick-dots {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
/* line 626, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-info-arrow {
  width: 41px;
  height: 15px;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  transition: all .5s ease;
  top: calc(50% - 7.5px);
  cursor: pointer;
}
/* line 635, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-info-arrow span {
  width: 67px;
  display: flex;
  position: absolute;
  top: 0;
}
/* line 640, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-info-arrow span path {
  fill: #C3B8A2 !important;
  stroke: #C3B8A2 !important;
  transition: all .5s ease;
}
/* line 646, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-info-arrow:hover {
  width: 67px;
}
/* line 648, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-info-arrow:hover path {
  fill: #B78830 !important;
  stroke: #B78830 !important;
  transition: all .5s ease;
}
/* line 655, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-prev {
  right: calc(100% - 20px);
}
/* line 657, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-prev span {
  left: 0;
}
/* line 661, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-prev:hover img {
  transform: scale(1.05);
}
/* line 666, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-next {
  left: calc(100% - 20px);
}
/* line 668, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-next span {
  right: 0;
}
/* line 672, scss/layouts/pages/_index.scss */
.index-news-block .news-slick-next:hover img {
  transform: scale(1.05);
}
/* line 677, scss/layouts/pages/_index.scss */
.index-news-block .index-news-bg {
  width: 100%;
  height: 100%;
  background-color: #F5F3F1;
  border-top-left-radius: 45vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* line 687, scss/layouts/pages/_index.scss */
.index-news-block .rwd-news-img {
  display: none;
}

/* line 692, scss/layouts/pages/_index.scss */
.index-contact-block {
  position: relative;
  padding-top: 180px;
}
/* line 695, scss/layouts/pages/_index.scss */
.index-contact-block:after {
  bottom: 0;
  content: '';
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  background-color: #303030;
  z-index: 1;
}
/* line 705, scss/layouts/pages/_index.scss */
.index-contact-block a {
  text-decoration: unset;
}
/* line 708, scss/layouts/pages/_index.scss */
.index-contact-block .inner {
  position: relative;
  z-index: 5;
}
/* line 712, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-bg {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #F5F3F1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* line 722, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-bg-title {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -42%);
  -moz-transform: translate(0, -42%);
  -o-transform: translate(0, -42%);
  -webkit-transform: translate(0, -42%);
}
/* line 728, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-bg-title span {
  display: block;
  width: 90%;
  max-width: 1180px;
  font-size: 250px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
}
/* line 740, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-box {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
/* line 746, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class {
  font-size: 18px;
}
/* line 749, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-left {
  width: 450px;
  padding-top: 70px;
  padding-bottom: 70px;
}
/* line 753, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-left .index-slogan {
  margin-bottom: 30px;
  padding-right: 20px;
}
/* line 758, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-right {
  width: calc(100% - 450px);
}
/* line 761, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-right .index-contact-info-box {
  height: 100%;
}
/* line 765, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class {
  width: 215px;
  box-sizing: border-box;
}
/* line 768, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class .index-contact-class-flex {
  padding: 0 30px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
/* line 774, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class .index-contact-class-flex .index-contact-class-title {
  font-size: 16px;
  color: #C3B8A2;
}
/* line 778, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class .index-contact-class-flex .index-contact-class-hover {
  position: relative;
  transition: all .5s ease;
}
/* line 783, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class .index-contact-class-icon {
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  opacity: 0;
  transition: all .5s ease;
}
/* line 792, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class.slick-current .index-contact-class-flex {
  border: 1px solid #B78830;
  border-radius: 40px;
}
/* line 796, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class.slick-current .index-contact-class-title {
  font-size: 18px;
  color: #B78830;
}
/* line 800, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class.slick-current .index-contact-class-hover {
  padding-left: 30px;
}
/* line 803, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-class.slick-current .index-contact-class-icon {
  opacity: 1;
}
/* line 808, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box {
  width: 600px;
  margin: 0 70px 0 0;
  position: relative;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  overflow: hidden;
  cursor: none;
}
/* line 816, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box a {
  cursor: none;
}
/* line 819, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .index-contact-img {
  width: 100%;
  height: 608px;
  display: block;
}
/* line 823, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .index-contact-img span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* line 829, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .index-contact-img span img {
  transition: all .5s;
}
/* line 834, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .index-contact-img:hover img {
  transform: scale(1.05);
}
/* line 840, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .link-info {
  border: none;
}
/* line 843, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .link-box {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transition: transform .3s ease, opacity .3s ease;
}
/* line 853, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .link-box .link-info {
  border: 1px solid #FFF;
  color: #FFF;
}
/* line 857, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box .link-box .link-line {
  background-color: #FFF;
  display: none;
}
/* line 863, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box:hover .link-box {
  transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}
/* line 868, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-img-box:hover .link-box .link-info {
  border: 1px solid #C3B8A2;
  background-color: #C3B8A2;
}
/* line 876, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-slick {
  position: relative;
  display: flex;
}
/* line 879, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-slick .link-box {
  opacity: 0;
}
/* line 881, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-slick .link-box .link-info,
.index-contact-block .index-contact-slick .link-box .link-line {
  transition-delay: .3s;
}
/* line 888, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-slick .index-contact-img-box:hover .link-box {
  opacity: 1;
}
/* line 891, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-slick .index-contact-img-box:hover .link-line {
  transform: rotate(-45deg) scaleX(0);
}
/* line 898, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info {
  width: calc(100% - 670px);
  padding-top: 70px;
}
/* line 902, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top {
  margin-bottom: 40px;
}
/* line 904, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top h3 {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}
/* line 910, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-contact-add {
  transition: all .5s ease;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #681414;
  margin-bottom: 30px;
  display: block;
}
/* line 918, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-contact-add:hover {
  letter-spacing: 2px;
}
/* line 922, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-information-list {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
/* line 926, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-information-list .index-information-title {
  min-width: 60px;
  position: relative;
  font-size: 16px;
  color: #828282;
  margin-bottom: 0;
  padding-right: 15px;
  letter-spacing: 0.1em;
}
/* line 934, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-information-list .index-information-title:after {
  content: '｜';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 942, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-information-list .index-information-p {
  font-size: 16px;
  color: #828282;
  margin-bottom: 0;
  padding-left: 10px;
  letter-spacing: 2px;
  font-weight: 400;
}
/* line 951, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-top .index-information-list .index-information-p[href]:hover {
  color: #681414;
}
/* line 957, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-info {
  display: flex;
  align-items: center;
}
/* line 961, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
/* line 965, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list:last-child {
  margin-right: 0;
}
/* line 968, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list .index-community-icon {
  background-color: #C3B8A2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all .5s ease;
}
/* line 974, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list .index-community-icon span {
  display: flex;
  transition: all .5s ease;
}
/* line 979, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list .index-community-link {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #828282;
}
/* line 986, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list:hover .index-community-icon {
  background-color: #681414;
}
/* line 988, scss/layouts/pages/_index.scss */
.index-contact-block .index-contact-info .index-community-list:hover .index-community-icon span {
  transform: rotateY(360deg);
}

/* line 998, scss/layouts/pages/_index.scss */
.slick-arrow-box {
  position: absolute;
  right: 85px;
  bottom: -45px;
  z-index: 1;
  display: flex;
}
/* line 1004, scss/layouts/pages/_index.scss */
.slick-arrow-box .slick-arrow {
  width: 100px;
  height: 100px;
  border: 1px solid #C3B8A2;
  background-color: #FFF;
  transition: all .5s ease;
}
/* line 1010, scss/layouts/pages/_index.scss */
.slick-arrow-box .slick-arrow path {
  transition: all .5s ease;
}
/* line 1013, scss/layouts/pages/_index.scss */
.slick-arrow-box .slick-arrow:hover {
  background-color: #FFF;
  border: 1px solid #B78830;
}
/* line 1016, scss/layouts/pages/_index.scss */
.slick-arrow-box .slick-arrow:hover path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
/* line 1022, scss/layouts/pages/_index.scss */
.slick-arrow-box .news-prev {
  border-top-right-radius: 45px;
  margin-bottom: 20px;
}
/* line 1026, scss/layouts/pages/_index.scss */
.slick-arrow-box .news-next {
  border-bottom-right-radius: 45px;
}
/* line 1029, scss/layouts/pages/_index.scss */
.slick-arrow-box .activity-prev {
  margin-right: 20px;
  border-bottom-left-radius: 45px;
}
/* line 1033, scss/layouts/pages/_index.scss */
.slick-arrow-box .activity-next {
  margin-right: 20px;
  border-bottom-right-radius: 45px;
}
@media screen and (max-width: 1199px) {
  /* line 1039, scss/layouts/pages/_index.scss */
  .slick-arrow-box .slick-arrow {
    width: 80px;
    height: 80px;
  }
  /* line 1042, scss/layouts/pages/_index.scss */
  .slick-arrow-box .slick-arrow span {
    width: 25px;
    display: flex;
  }
  /* line 1047, scss/layouts/pages/_index.scss */
  .slick-arrow-box .news-prev {
    border-top-right-radius: 36px;
  }
  /* line 1050, scss/layouts/pages/_index.scss */
  .slick-arrow-box .news-next {
    border-bottom-right-radius: 35px;
  }
  /* line 1053, scss/layouts/pages/_index.scss */
  .slick-arrow-box .activity-prev {
    border-bottom-left-radius: 35px;
  }
  /* line 1056, scss/layouts/pages/_index.scss */
  .slick-arrow-box .activity-next {
    border-bottom-right-radius: 35px;
  }
}
@media screen and (max-width: 800px) {
  /* line 1062, scss/layouts/pages/_index.scss */
  .slick-arrow-box .slick-arrow {
    width: 60px;
    height: 60px;
  }
  /* line 1065, scss/layouts/pages/_index.scss */
  .slick-arrow-box .slick-arrow span {
    width: 20px;
    display: flex;
  }
  /* line 1070, scss/layouts/pages/_index.scss */
  .slick-arrow-box .news-prev {
    border-top-right-radius: 25px;
    margin-bottom: 10px;
  }
  /* line 1074, scss/layouts/pages/_index.scss */
  .slick-arrow-box .news-next {
    border-bottom-right-radius: 25px;
  }
  /* line 1077, scss/layouts/pages/_index.scss */
  .slick-arrow-box .activity-prev {
    border-bottom-left-radius: 25px;
    margin-right: 10px;
  }
  /* line 1081, scss/layouts/pages/_index.scss */
  .slick-arrow-box .activity-next {
    border-bottom-right-radius: 25px;
  }
}
@media screen and (max-width: 650px) {
  /* line 1086, scss/layouts/pages/_index.scss */
  .slick-arrow-box .slick-arrow {
    width: 50px;
    height: 50px;
  }
}

/* line 1093, scss/layouts/pages/_index.scss */
.en-title {
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
  color: #681414;
  text-transform: uppercase;
  font-family: 'Cormorant', "Noto Sans TC", 'Noto Sans SC', sans-serif;
}

/* line 1102, scss/layouts/pages/_index.scss */
.link-box {
  position: relative;
}
/* line 1104, scss/layouts/pages/_index.scss */
.link-box .link-info {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #B78830;
  overflow: hidden;
  font-size: 16px;
  text-align: center;
  color: #B78830;
  text-decoration: none !important;
  transition: all .5s ease;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
/* line 1117, scss/layouts/pages/_index.scss */
.link-box .link-info:hover {
  background-color: #681414;
  color: #FFF;
}
/* line 1122, scss/layouts/pages/_index.scss */
.link-box .link-line {
  position: absolute;
  width: 65px;
  height: 1px;
  background-color: #B78830;
  transition: all .5s;
}
/* line 1131, scss/layouts/pages/_index.scss */
.link-box.line-left .link-line {
  transform: rotate(40deg);
  top: 25px;
  left: -15px;
  pointer-events: none;
}
/* line 1138, scss/layouts/pages/_index.scss */
.link-box.line-left:hover .link-line {
  transform: rotate(40deg) scaleX(0);
}
/* line 1144, scss/layouts/pages/_index.scss */
.link-box.line-right .link-line {
  transform: rotate(40deg);
  bottom: 25px;
  right: -15px;
}
/* line 1150, scss/layouts/pages/_index.scss */
.link-box.line-right:hover .link-line {
  transform: rotate(40deg) scaleX(0);
}
/* line 1156, scss/layouts/pages/_index.scss */
.link-box.line-right-bottom .link-line {
  transform: rotate(-45deg);
  bottom: 17px;
  left: -12px;
}
/* line 1162, scss/layouts/pages/_index.scss */
.link-box.line-right-bottom:hover .link-line {
  transform: rotate(-45deg) scaleX(0);
}
@media (max-width: 1400px) {
  /* line 1168, scss/layouts/pages/_index.scss */
  .link-box .link-info {
    width: 120px;
    height: 120px;
  }
  /* line 1172, scss/layouts/pages/_index.scss */
  .link-box .link-line {
    width: 45px;
  }
  /* line 1176, scss/layouts/pages/_index.scss */
  .link-box.line-left .link-line {
    top: 10px;
    left: -12px;
  }
  /* line 1182, scss/layouts/pages/_index.scss */
  .link-box.line-right .link-line {
    bottom: 10px;
    right: -12px;
  }
  /* line 1188, scss/layouts/pages/_index.scss */
  .link-box.line-right-bottom .link-line {
    bottom: 10px;
    left: -12px;
  }
}

/* line 1197, scss/layouts/pages/_index.scss */
.line-bottom-left .link-line {
  transform: rotate(-45deg);
  bottom: 18px;
  left: -17px;
  pointer-events: none;
}
/* line 1204, scss/layouts/pages/_index.scss */
.line-bottom-left:hover .link-line {
  transform: rotate(-45deg) scaleX(0);
}

/* line 1211, scss/layouts/pages/_index.scss */
.line-bottom-right .link-line {
  transform: rotate(45deg);
  bottom: 18px;
  right: -17px;
  pointer-events: none;
}
/* line 1218, scss/layouts/pages/_index.scss */
.line-bottom-right:hover .link-line {
  transform: rotate(45deg) scaleX(0);
}

/* line 1224, scss/layouts/pages/_index.scss */
.index-slogan {
  position: relative;
  margin-bottom: 55px;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.6;
  padding-left: 35px;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  /* line 1224, scss/layouts/pages/_index.scss */
  .index-slogan {
    padding-left: 30px;
  }
}
/* line 1235, scss/layouts/pages/_index.scss */
.index-slogan:after {
  transition: all .5s;
  content: '';
  width: 2px;
  height: calc(100% - 20px);
  background-color: #333333;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
@media (max-width: 800px) {
  /* line 1235, scss/layouts/pages/_index.scss */
  .index-slogan:after {
    height: calc(100% - 10px);
    top: 7px;
  }
}

/* line 1252, scss/layouts/pages/_index.scss */
.index-p {
  max-width: 350px;
  padding-bottom: 80px;
}
/* line 1255, scss/layouts/pages/_index.scss */
.index-p p {
  font-size: 16px;
  color: #828282;
  line-height: 40px;
  letter-spacing: 2px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* line 1265, scss/layouts/pages/_index.scss */
.rwd-link-box {
  width: 272px;
  max-width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #F5F3F1;
  border-bottom-right-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  height: 54px;
  text-decoration: none !important;
  background-color: #FFF;
}
/* line 1278, scss/layouts/pages/_index.scss */
.rwd-link-box span {
  display: flex;
}
/* line 1281, scss/layouts/pages/_index.scss */
.rwd-link-box .rwd-link-p {
  font-size: 16px;
  color: #B78830;
  margin-right: 20px;
}

/* line 1288, scss/layouts/pages/_index.scss */
.index-service-class-box {
  display: flex;
  flex-wrap: wrap;
}
/* line 1291, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-bottom: 17px;
  text-align: center;
  border: 1px solid #C3B8A2;
  border-radius: 40px;
  padding: 12px 15px;
  transition: all .5s ease;
  background-color: #FFF;
  text-decoration: none !important;
}
/* line 1302, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class:nth-child(3n+3) {
  margin-right: 0;
}
/* line 1305, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class .index-service-class-p {
  font-size: 16px;
  color: #C3B8A2;
  position: relative;
  transition: all .5s ease;
  display: inline-block;
  letter-spacing: 0.1em;
}
/* line 1312, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class .index-service-class-p:after {
  content: '+';
  font-size: 16px;
  color: #FFF;
  opacity: 0;
  transition: all .5s ease;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 1324, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class:hover {
  background-color: #681414;
  border: 1px solid #681414;
}
/* line 1327, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class:hover .index-service-class-p {
  padding-right: 20px;
  color: #FFF;
}
/* line 1330, scss/layouts/pages/_index.scss */
.index-service-class-box .index-service-class:hover .index-service-class-p:after {
  color: #FFF;
  opacity: 1;
}
@media (max-width: 1199px) and (min-width: 1001px) {
  /* line 1291, scss/layouts/pages/_index.scss */
  .index-service-class-box .index-service-class {
    width: calc((100% - 20px) / 2);
    margin-right: 20px !important;
  }
  /* line 1339, scss/layouts/pages/_index.scss */
  .index-service-class-box .index-service-class:nth-child(even) {
    margin-right: 0 !important;
  }
}

/* line 1349, scss/layouts/pages/_index.scss */
.service-B .index-service-class-box .index-service-class:hover {
  background-color: #B78830;
  border: 1px solid #B78830;
}
/* line 1352, scss/layouts/pages/_index.scss */
.service-B .index-service-class-box .index-service-class:hover .index-service-class-p {
  padding-right: 20px;
  color: #FFF;
}
/* line 1355, scss/layouts/pages/_index.scss */
.service-B .index-service-class-box .index-service-class:hover .index-service-class-p:after {
  color: #FFF;
  opacity: 1;
}

@media (max-width: 1700px) {
  /* line 1367, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-img-box {
    width: calc(100% - 430px);
  }
  /* line 1370, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-info {
    width: 360px;
  }
}
@media (max-width: 1600px) {
  /* line 1378, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box {
    right: 5%;
  }

  /* line 1383, scss/layouts/pages/_index.scss */
  .index-service-block .en-title {
    padding-top: 50px;
  }
  /* line 1386, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-info {
    width: calc(100% - 700px);
  }
  /* line 1389, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-left,
  .index-service-block .index-service-right {
    width: 350px;
    height: 570px;
  }

  /* line 1397, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-img {
    width: 700px;
  }
  /* line 1400, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info {
    width: calc(100% - 700px);
  }

  /* line 1406, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left {
    width: calc(100% - 570px);
  }
  /* line 1408, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left .index-news-slick-box {
    width: calc(100% - 243px);
  }
  /* line 1412, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right {
    width: 570px;
  }
  /* line 1415, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-prev {
    width: 223px;
  }
}
@media (max-width: 1540px) {
  /* line 1427, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 80px;
  }

  /* line 1434, scss/layouts/pages/_index.scss */
  .en-title {
    font-size: 100px;
  }

  /* line 1439, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info {
    width: 600px;
  }
  /* line 1441, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .index-about-title {
    margin-bottom: 40px;
  }
  /* line 1445, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-img {
    width: calc(100% - 600px);
  }

  /* line 1451, scss/layouts/pages/_index.scss */
  .index-activity-block .index-activity-info-box {
    width: 560px;
    padding-left: 50px;
  }
  /* line 1456, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .slick-slide {
    margin-right: 560px;
  }

  /* line 1462, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left {
    width: calc(100% - 450px);
  }
  /* line 1464, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left .index-news-slick-box {
    width: calc(100% - 203px);
  }
  /* line 1468, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right {
    width: 450px;
    padding-left: 40px;
  }
  /* line 1472, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-prev {
    width: 180px;
  }

  /* line 1479, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots {
    width: 120px;
    height: 120px;
  }
  /* line 1482, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots .index-news-slick-now {
    font-size: 20px;
  }
  /* line 1485, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots .index-news-slick-sum {
    font-size: 30px;
  }
  /* line 1490, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-next {
    width: 160px;
  }

  /* line 1495, scss/layouts/pages/_index.scss */
  .index-contact-block {
    padding-top: 130px;
  }
  /* line 1498, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-bg-title span {
    font-size: 200px;
  }
  /* line 1502, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-left {
    width: 320px;
  }
  /* line 1505, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right {
    width: calc(100% - 320px);
  }
  /* line 1508, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right .index-contact-img-box {
    width: calc(100% - 360px);
    margin: 0 30px 0 0;
  }
  /* line 1513, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-info {
    width: 330px;
  }
  /* line 1516, scss/layouts/pages/_index.scss */
  .index-contact-block .index-community-info {
    flex-wrap: wrap;
  }
  /* line 1519, scss/layouts/pages/_index.scss */
  .index-contact-block .index-community-list {
    margin-bottom: 20px;
  }
  /* line 1522, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-img-box {
    border-top-left-radius: 350px;
    border-top-right-radius: 350px;
  }

  /* line 1527, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-info {
    padding: 45px 50px;
  }
}
@media (max-width: 1300px) {
  /* line 1536, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-left,
  .index-service-block .index-service-right {
    width: 300px;
    height: 530px;
  }
  /* line 1541, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-info {
    width: calc(100% - 600px);
    padding: 45px 30px;
  }
  /* line 1545, scss/layouts/pages/_index.scss */
  .index-service-block .en-title {
    padding-bottom: 50px;
  }

  /* line 1549, scss/layouts/pages/_index.scss */
  .index-about-block {
    padding-top: 80px;
  }
  /* line 1552, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-bgimg {
    width: 50%;
    right: 25%;
  }
  /* line 1556, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info {
    width: 545px;
    padding-left: 60px;
    padding-right: 30px;
  }
  /* line 1561, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(1) {
    margin-left: -115px;
  }
  /* line 1564, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(2) {
    margin-left: -60px;
  }
  /* line 1569, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-img {
    width: calc(100% - 545px);
  }

  /* line 1574, scss/layouts/pages/_index.scss */
  .en-title {
    font-size: 80px;
    line-height: 90px;
  }

  /* line 1579, scss/layouts/pages/_index.scss */
  .index-activity-block {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  /* line 1582, scss/layouts/pages/_index.scss */
  .index-activity-block .index-activity-info-box {
    width: 450px;
    padding-right: 20px;
  }
  /* line 1587, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .slick-slide {
    margin-right: 400px;
  }
  /* line 1593, scss/layouts/pages/_index.scss */
  .index-activity-block .index-activity-info-box .index-activity-class-box {
    margin-bottom: 30px;
  }
  /* line 1598, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-info-slick .index-slogan {
    margin-bottom: 30px;
  }
  /* line 1601, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-info-slick .index-p {
    padding-bottom: 40px;
  }
  /* line 1605, scss/layouts/pages/_index.scss */
  .index-activity-block .en-title {
    padding-bottom: 30px;
  }

  /* line 1609, scss/layouts/pages/_index.scss */
  .index-news-block {
    padding-top: 95px;
  }

  /* line 1612, scss/layouts/pages/_index.scss */
  .index-contact-block {
    padding-top: 80px;
  }
  /* line 1614, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-bg-title {
    line-height: 0.9;
  }
  /* line 1617, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-left {
    width: 275px;
  }
  /* line 1620, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right {
    width: calc(100% - 275px);
  }

  /* line 1624, scss/layouts/pages/_index.scss */
  .index-slogan {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  /* line 1634, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 60px;
    line-height: 70px;
    padding-right: 190px;
  }
  /* line 1641, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan-cn {
    padding-right: 190px;
  }
  /* line 1647, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box .banner-button {
    width: 70px;
    height: 70px;
  }
  /* line 1650, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box .banner-button span {
    width: 20px;
  }

  /* line 1657, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-left,
  .index-service-block .index-service-right {
    width: 250px;
    height: 450px;
  }
  /* line 1662, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-info {
    width: calc(100% - 500px);
  }
  /* line 1667, scss/layouts/pages/_index.scss */
  .index-service-block .link-box .link-info:hover {
    background-color: #B78830;
  }

  /* line 1675, scss/layouts/pages/_index.scss */
  .index-about-block .index-about-bg {
    border-top-right-radius: 300px;
    border-bottom-right-radius: 300px;
    height: calc(100% + 130px);
  }
  /* line 1681, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info {
    padding-right: 0;
    padding-bottom: 80px;
  }
  /* line 1684, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .link-box {
    display: none;
  }
  /* line 1687, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .rwd-link-box {
    display: flex;
    border: 1px solid #FFF;
    background-color: #FFF;
  }
  /* line 1693, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-p {
    width: 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }

  /* line 1701, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-box {
    display: block;
  }
  /* line 1703, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-box .index-contact-left,
  .index-contact-block .index-contact-box .index-contact-right {
    width: 100%;
  }
  /* line 1708, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-class-block {
    max-width: 1000px;
    margin: 0 auto;
  }
  /* line 1712, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-class-block .index-contact-class.slick-current .index-contact-class-title {
    font-size: 16px;
  }
  /* line 1716, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-class-block .index-contact-class-hover {
    padding-left: 30px;
  }
  /* line 1719, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-class-block .index-contact-class {
    width: auto;
    margin-right: 30px;
  }
  /* line 1725, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-img-box {
    width: 60%;
    max-width: 600px;
  }
  /* line 1729, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-info {
    width: 40%;
  }
  /* line 1734, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-bg-title span {
    font-size: 150px;
  }
  /* line 1738, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-left {
    padding-top: 0;
  }

  /* line 1743, scss/layouts/pages/_index.scss */
  .link-box .link-info {
    width: 120px;
    height: 120px;
  }
  /* line 1747, scss/layouts/pages/_index.scss */
  .link-box .link-line {
    width: 40px;
  }

  /* line 1751, scss/layouts/pages/_index.scss */
  .index-activity-block {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  /* line 1754, scss/layouts/pages/_index.scss */
  .index-activity-block .inner {
    display: block;
    max-width: 100%;
  }
  /* line 1758, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-info-slick-block {
    display: none;
  }
  /* line 1761, scss/layouts/pages/_index.scss */
  .index-activity-block .index-activity-info-box {
    max-width: 600px;
    width: 90%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  /* line 1767, scss/layouts/pages/_index.scss */
  .index-activity-block .index-activity-info-box .index-activity-class-box {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
  /* line 1773, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block {
    width: 100%;
  }
  /* line 1775, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .activity-slick-box {
    width: 100%;
  }
  /* line 1778, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .slick-slide {
    margin: 0;
  }
  /* line 1782, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img {
    border-radius: 0;
    width: 100%;
    height: 450px;
  }
  /* line 1787, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .rwd-activity-info {
    margin-top: 60px;
    display: block;
    padding: 0 5%;
  }
  /* line 1791, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .rwd-activity-info .index-slogan {
    margin-bottom: 30px;
  }
  /* line 1794, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .rwd-activity-info .index-p {
    max-width: 100%;
    padding-bottom: 50px;
  }
  /* line 1798, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .rwd-activity-info .rwd-link-box {
    margin: 0 auto;
    display: flex;
  }
  /* line 1805, scss/layouts/pages/_index.scss */
  .index-activity-block .slick-arrow-box {
    bottom: initial;
    top: 450px;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  /* line 1815, scss/layouts/pages/_index.scss */
  .index-activity-block .slick-arrow-box .slick-arrow:last-child {
    margin-right: 0;
  }

  /* line 1822, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-prev {
    display: none !important;
  }
  /* line 1826, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left .index-news-slick-box {
    width: 100%;
  }

  /* line 1833, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-left .index-slogan {
    text-align: center;
  }
  /* line 1835, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-left .index-slogan:after {
    display: none;
  }
}
@media (max-width: 1000px) {
  /* line 1844, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-img {
    height: calc(100% + 80px);
  }

  /* line 1847, scss/layouts/pages/_index.scss */
  .banner-block .slick-list {
    padding-bottom: 80px;
  }

  /* line 1850, scss/layouts/pages/_index.scss */
  .index-service-block {
    padding-top: 70px;
  }

  /* line 1854, scss/layouts/pages/_index.scss */
  .index-service-block {
    padding-top: 10px;
  }
  /* line 1856, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-left,
  .index-service-block .index-service-right {
    display: none;
  }
  /* line 1860, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-box {
    display: block;
  }
  /* line 1863, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-info {
    width: 100%;
    padding: 0;
  }
  /* line 1867, scss/layouts/pages/_index.scss */
  .index-service-block .index-service-title {
    display: none;
  }
  /* line 1870, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class {
    display: block;
    margin-bottom: 10px;
  }
  /* line 1873, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class .rwd-index-service-img {
    margin-bottom: 50px;
  }
  /* line 1877, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.cosmetic-active .service-img-cosmetic {
    display: block;
  }
  /* line 1880, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.cosmetic-active .service-img-hair {
    display: none;
  }
  /* line 1883, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.cosmetic-active .rwd-service-hair {
    color: #C3B8A2;
  }
  /* line 1888, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.hair-active .service-img-hair {
    display: block;
  }
  /* line 1891, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.hair-active .service-img-cosmetic {
    display: none;
  }
  /* line 1894, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service-class.hair-active .rwd-service-cosmetic {
    color: #C3B8A2;
  }
  /* line 1899, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service {
    display: flex;
  }
  /* line 1901, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service .rwd-service-btn {
    font-size: 24px;
    padding: 0 23px;
    position: relative;
  }
  /* line 1905, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service .rwd-service-btn:after {
    content: '';
    width: 1px;
    height: 14px;
    display: block;
    background-color: #f5f3f1;
    position: absolute;
    right: -1px;
    top: calc(50% - 7px);
  }
  /* line 1915, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service .rwd-service-btn:first-child {
    padding-left: 0;
  }
  /* line 1918, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service .rwd-service-btn:last-child {
    padding-right: 0;
  }
  /* line 1920, scss/layouts/pages/_index.scss */
  .index-service-block .rwd-index-service .rwd-service-btn:last-child:after {
    display: none;
  }

  /* line 1929, scss/layouts/pages/_index.scss */
  .index-service-class-box {
    margin-bottom: 50px;
  }

  /* line 1933, scss/layouts/pages/_index.scss */
  .index-about-block .index-about-bg {
    height: calc(100% + 25px);
  }
  /* line 1936, scss/layouts/pages/_index.scss */
  .index-about-block .inner {
    display: block;
  }
  /* line 1938, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-bgimg {
    right: 0;
  }
  /* line 1941, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-img,
  .index-about-block .inner .index-about-info {
    width: 100%;
  }
  /* line 1945, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-img {
    margin-bottom: 40px;
  }
  /* line 1948, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info {
    padding-left: 0;
  }
  /* line 1952, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(1), .index-about-block .inner .index-about-info .index-about-title .en-title:nth-child(2) {
    margin-left: 0;
  }

  /* line 1964, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-bg {
    border-top-left-radius: 160px;
  }
  /* line 1967, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left {
    width: 50%;
  }
  /* line 1970, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right {
    width: 50%;
    padding-left: 0;
    padding-left: 40px;
  }
  /* line 1974, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .rwd-news-img {
    margin-bottom: 50px;
  }
  /* line 1977, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .index-news-info-p {
    max-width: 100%;
  }
  /* line 1980, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .index-news-info-slick {
    padding-bottom: 0;
    padding-top: 35px;
  }
  /* line 1983, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .index-news-info-slick a {
    position: relative;
  }
  /* line 1989, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-dots-box {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 3;
  }
  /* line 1995, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-dots-box .index-news-dots {
    display: none;
  }
  /* line 2000, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-dots-block .index-news-next {
    display: none !important;
  }
  /* line 2004, scss/layouts/pages/_index.scss */
  .index-news-block .news-slick-info-arrow {
    position: relative;
    margin-left: 10px;
  }
  /* line 2007, scss/layouts/pages/_index.scss */
  .index-news-block .news-slick-info-arrow:hover {
    width: 41px;
  }
  /* line 2011, scss/layouts/pages/_index.scss */
  .index-news-block .news-slick-prev {
    right: auto;
  }
  /* line 2014, scss/layouts/pages/_index.scss */
  .index-news-block .news-slick-next {
    left: auto;
  }
  /* line 2019, scss/layouts/pages/_index.scss */
  .index-news-block .news-slick-info-arrow span path {
    fill: #B78830 !important;
    stroke: #B78830 !important;
  }

  /* line 2027, scss/layouts/pages/_index.scss */
  .index-contact-block {
    padding-bottom: 40px;
  }
  /* line 2029, scss/layouts/pages/_index.scss */
  .index-contact-block:after {
    display: none;
  }
  /* line 2032, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-bg {
    background-color: #FFF;
  }
  /* line 2035, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-bg-title {
    display: none;
  }
  /* line 2038, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-slick {
    display: block;
  }
  /* line 2042, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right .index-contact-img-box {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  /* line 2046, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right .index-contact-img-box .index-contact-img {
    height: 0;
    padding-bottom: 101.35%;
    position: relative;
  }
  /* line 2051, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-right .index-contact-img-box .link-box {
    display: none;
  }
  /* line 2057, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-info {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  /* line 2062, scss/layouts/pages/_index.scss */
  .index-contact-block .rwd-link-box {
    display: none;
  }

  /* line 2067, scss/layouts/pages/_index.scss */
  .index-slogan {
    padding-left: 30px;
  }
  /* line 2069, scss/layouts/pages/_index.scss */
  .index-slogan::after {
    left: 0;
    width: 1.5px;
  }

  /* line 2074, scss/layouts/pages/_index.scss */
  .rwd-link-box {
    display: flex;
  }
}
@media (max-width: 800px) {
  /* line 2083, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box {
    bottom: 155px;
  }
  /* line 2086, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 52px;
    padding-right: 0;
    line-height: 1;
  }
  /* line 2092, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan-cn {
    padding-right: 0;
  }
  /* line 2097, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box {
    right: auto;
    left: calc(5% + 30px);
    bottom: 80px;
  }
  /* line 2101, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box .banner-button {
    opacity: 1;
  }

  /* line 2106, scss/layouts/pages/_index.scss */
  .en-title {
    font-size: 50px;
    line-height: 1;
  }

  /* line 2112, scss/layouts/pages/_index.scss */
  .index-about-block .inner .index-about-bgimg {
    width: 100%;
  }
  /* line 2116, scss/layouts/pages/_index.scss */
  .index-about-block .index-about-bg {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  }

  /* line 2121, scss/layouts/pages/_index.scss */
  .index-slogan {
    font-size: 24px;
  }
  /* line 2123, scss/layouts/pages/_index.scss */
  .index-slogan:after {
    height: calc(100% - 16px);
    top: 8px;
  }
}
@media (max-width: 767px) {
  /* line 2132, scss/layouts/pages/_index.scss */
  .banner-block .slick-list {
    padding-bottom: 0px;
  }
  /* line 2135, scss/layouts/pages/_index.scss */
  .banner-block .banner-list {
    padding-bottom: 0px;
  }
  /* line 2137, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-img {
    height: 100%;
    border-bottom-left-radius: 100px;
  }
  /* line 2142, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box {
    bottom: 50px;
  }
  /* line 2144, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box .banner-prev {
    margin-right: 15px;
  }
  /* line 2147, scss/layouts/pages/_index.scss */
  .banner-block .banner-button-box .banner-button {
    width: 60px;
    height: 60px;
  }

  /* line 2157, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img {
    height: 75vw;
  }
  /* line 2159, scss/layouts/pages/_index.scss */
  .index-activity-block .activity-slick-block .index-activity-slick .activity-slick-img img {
    height: 75vw;
  }
  /* line 2165, scss/layouts/pages/_index.scss */
  .index-activity-block .slick-arrow-box {
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 75vw;
  }

  /* line 2173, scss/layouts/pages/_index.scss */
  .index-news-block {
    padding-top: 70px;
  }
  /* line 2176, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-bg {
    border-top-left-radius: 100px;
  }
  /* line 2179, scss/layouts/pages/_index.scss */
  .index-news-block .inner {
    display: block;
  }
  /* line 2182, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-left {
    display: none;
  }
  /* line 2185, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right {
    width: 100%;
    padding-left: 0;
  }
  /* line 2188, scss/layouts/pages/_index.scss */
  .index-news-block .index-news-right .rwd-news-img {
    display: block;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  /* line 2198, scss/layouts/pages/_index.scss */
  .index-service-class-box .index-service-class {
    width: calc(50% - 10px);
    margin-right: 20px !important;
  }
  /* line 2201, scss/layouts/pages/_index.scss */
  .index-service-class-box .index-service-class:nth-child(even) {
    margin-right: 0 !important;
  }

  /* line 2206, scss/layouts/pages/_index.scss */
  .index-contact-block .index-contact-class-block .index-contact-class {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  /* line 2212, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 48px;
  }
}
@media (max-width: 450px) {
  /* line 2218, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 43px;
  }
}
@media (max-width: 400px) {
  /* line 2225, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  /* line 2231, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 36px;
  }

  /* line 2234, scss/layouts/pages/_index.scss */
  .banner-block .banner-list .banner-slogan-box .banner-slogan-cn {
    font-size: 27px;
  }
}
@media (max-width: 300px) {
  /* line 2240, scss/layouts/pages/_index.scss */
  .index-service-block .en-title {
    font-size: 30px;
  }
}
@media (max-height: 600px) {
  /* line 2246, scss/layouts/pages/_index.scss */
  .banner-block {
    position: relative;
    height: 600px;
  }
  /* line 2249, scss/layouts/pages/_index.scss */
  .banner-block .banner-list,
  .banner-block .slick-list {
    height: 600px;
  }
}
/* line 2256, scss/layouts/pages/_index.scss */
.prev_slick {
  border-bottom-left-radius: 40%;
  overflow: hidden;
}
/* line 2259, scss/layouts/pages/_index.scss */
.prev_slick .news-slick-img {
  padding: 0;
  height: auto;
  border-bottom-left-radius: 0 !important;
}
/* line 2263, scss/layouts/pages/_index.scss */
.prev_slick .news-slick-img span {
  position: relative;
  left: auto;
  height: auto;
  padding-bottom: 115.7%;
}
/* line 2268, scss/layouts/pages/_index.scss */
.prev_slick .news-slick-img span img {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 2277, scss/layouts/pages/_index.scss */
.next_slick {
  border-bottom-right-radius: 40%;
  overflow: hidden;
}
/* line 2280, scss/layouts/pages/_index.scss */
.next_slick .news-slick-img {
  padding: 0;
  height: auto;
  border-bottom-right-radius: 0 !important;
}
/* line 2284, scss/layouts/pages/_index.scss */
.next_slick .news-slick-img span {
  position: relative;
  left: auto;
  height: auto;
  padding-bottom: 115.7%;
}
/* line 2289, scss/layouts/pages/_index.scss */
.next_slick .news-slick-img span img {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 2299, scss/layouts/pages/_index.scss */
.index_list {
  overflow: hidden;
}
/* line 2301, scss/layouts/pages/_index.scss */
.index_list .rwd-link-box {
  margin-left: auto;
  margin-right: auto;
}
/* line 2305, scss/layouts/pages/_index.scss */
.index_list .bg_box {
  background: #F5F3F1;
}
/* line 2309, scss/layouts/pages/_index.scss */
.index_list .locations_bottom {
  padding-top: 110px;
  padding-bottom: 120px;
}
/* line 2313, scss/layouts/pages/_index.scss */
.index_list .locations_bottom .type_list .locations_box {
  padding-bottom: 130px;
}
/* line 2320, scss/layouts/pages/_index.scss */
.index_list .index-service-block {
  padding-top: 110px;
  padding-bottom: 120px;
}
/* line 2325, scss/layouts/pages/_index.scss */
.index_list .list_bottom {
  padding: 86px 0;
  position: relative;
}
/* line 2328, scss/layouts/pages/_index.scss */
.index_list .list_bottom img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 2334, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box {
  position: relative;
  z-index: 5;
  max-width: 90%;
  margin: 0 auto;
  width: 447px;
  text-align: center;
}
/* line 2341, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box p {
  color: #ffff;
  letter-spacing: 0.1em;
}
/* line 2345, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box .h10 {
  margin-top: 23px;
  margin-bottom: 40px;
}
/* line 2349, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box a {
  width: 200px;
  display: inline-block;
  border: solid 1px #ffff;
  padding: 11px 0;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  color: #ffff;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 2357, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box a:hover {
  background: #681414;
  border: solid 1px #681414;
}
/* line 2361, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box a svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
/* line 2366, scss/layouts/pages/_index.scss */
.index_list .list_bottom .in_box a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #ffff;
}
/* line 2378, scss/layouts/pages/_index.scss */
.index_list .index_doctor {
  width: 1760px;
  max-width: 90%;
  margin: 0 auto;
  font-size: 0;
  background: #ffff;
  padding: 78px 0;
  -webkit-border-radius: 0 300px 0 300px;
  -moz-border-radius: 0 300px 0 300px;
  border-radius: 0 300px 0 300px;
}
/* line 2386, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 1240px);
  padding-left: calc((100% - 1520px)/2);
}
/* line 2391, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box {
  display: inline-block;
  max-width: 100%;
  width: 358px;
}
/* line 2395, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .index-slogan {
  margin-bottom: 30px;
  margin-top: 30px;
}
/* line 2399, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .index-slogan {
  padding-left: 30px;
}
/* line 2401, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .index-slogan:after {
  left: 0;
}
/* line 2405, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .index-p {
  max-width: 100%;
  padding-bottom: 0;
}
/* line 2410, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow > div {
  display: flex;
}
/* line 2412, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow > div .arrow_nav {
  position: relative;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* line 2416, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow > div .doctor-prev {
  margin-right: 15px;
}
@media screen and (max-width: 650px) {
  /* line 2416, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow > div .doctor-prev {
    margin-right: 8px;
  }
}
/* line 2427, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list {
  display: inline-block;
  vertical-align: middle;
  width: 1240px;
}
/* line 2431, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_title {
  position: relative;
}
/* line 2434, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
/* line 2438, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider .slick-list {
  overflow: inherit;
  padding-left: 40px;
}
/* line 2442, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider:not(.slick-slider) {
  padding-left: 40px;
}
/* line 2445, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider > div {
  padding: 0;
}
/* line 2448, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider > .list_box {
  padding: 0;
  width: calc(100% / 3);
}
/* line 2452, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider .list_box {
  padding: 0;
  text-align: left;
  margin-bottom: 0;
}
/* line 2456, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box {
  margin-left: -40px;
  width: calc(100% + 40px);
  max-width: inherit;
}
/* line 2461, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box .doctor-img:before {
  background: #ffff;
  width: calc(100% - 40px);
}
/* line 2469, scss/layouts/pages/_index.scss */
.index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box:hover .doctor-img:before {
  background: #F5F3F1;
}
@media screen and (max-width: 1850px) {
  /* line 2479, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    padding-left: 60px;
    padding-right: 30px;
    width: calc(100% - 1150px);
  }
  /* line 2484, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: 1150px;
  }
}
@media screen and (max-width: 1750px) {
  /* line 2489, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 410px;
  }
  /* line 2492, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: calc(100% - 410px);
  }
}
@media (max-width: 1600px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 260px 0 260px;
    -moz-border-radius: 0 260px 0 260px;
    border-radius: 0 260px 0 260px;
    padding: 70px 0;
  }
  /* line 2499, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 30%;
  }
  /* line 2502, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: 70%;
  }
}
@media (max-width: 1400px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 230px 0 230px;
    -moz-border-radius: 0 230px 0 230px;
    border-radius: 0 230px 0 230px;
    padding: 60px 0;
  }
  /* line 2509, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 35%;
  }
  /* line 2512, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: 65%;
  }
}
@media (max-width: 1300px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 200px 0 200px;
    -moz-border-radius: 0 200px 0 200px;
    border-radius: 0 200px 0 200px;
    padding: 50px 0;
  }
  /* line 2519, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 400px;
  }
  /* line 2522, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: calc(100% - 400px);
  }
}
@media (max-width: 1150px) {
  /* line 2528, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider {
    max-width: 100%;
    width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1100px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 180px 0 180px;
    -moz-border-radius: 0 180px 0 180px;
    border-radius: 0 180px 0 180px;
  }
  /* line 2538, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 50%;
  }
  /* line 2541, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: 50%;
  }
}
@media (max-width: 767px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 120px 0 120px;
    -moz-border-radius: 0 120px 0 120px;
    border-radius: 0 120px 0 120px;
    padding: 60px 0;
    padding-bottom: 30px;
  }
  /* line 2549, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    width: 100%;
    padding-right: 60px;
  }
  /* line 2552, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box {
    padding-right: 0;
    width: 100%;
  }
  /* line 2555, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box .en-title {
    display: none;
  }
  /* line 2558, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box .index-slogan {
    margin-top: 0;
    margin-bottom: 10px;
  }
  /* line 2562, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow {
    margin-bottom: 0;
  }
  /* line 2565, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left .in_box .doctor-slick-arrow {
    display: none;
  }
  /* line 2570, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list {
    width: 100%;
    padding-top: 15px;
  }
  /* line 2573, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider {
    width: 100%;
  }
  /* line 2575, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider .list_box {
    text-align: center;
  }
  /* line 2577, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box {
    margin-left: 0;
    width: 442px;
    max-width: 100%;
  }
  /* line 2581, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box .text_box {
    padding: 20px;
  }
  /* line 2583, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box .text_box ul {
    font-size: 15px;
    line-height: 25px;
  }
  /* line 2586, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_list .doctor_slider .list_box .in_box .text_box ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 650px) {
  /* line 2378, scss/layouts/pages/_index.scss */
  .index_list .index_doctor {
    -webkit-border-radius: 0 80px 0 80px;
    -moz-border-radius: 0 80px 0 80px;
    border-radius: 0 80px 0 80px;
    padding: 50px 0;
    padding-bottom: 40px;
  }
  /* line 2600, scss/layouts/pages/_index.scss */
  .index_list .index_doctor .doctor_left {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  /* line 2608, scss/layouts/pages/_index.scss */
  .index_list .list_bottom {
    background: #000;
  }
  /* line 2610, scss/layouts/pages/_index.scss */
  .index_list .list_bottom img {
    opacity: .7;
  }
}
@media (max-width: 950px) {
  /* line 2617, scss/layouts/pages/_index.scss */
  .index_list .locations_bottom {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  /* line 2621, scss/layouts/pages/_index.scss */
  .index_list .locations_bottom .type_list .locations_box {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  /* line 2624, scss/layouts/pages/_index.scss */
  .index_list .locations_bottom .type_list .locations_box .text_box {
    padding-top: 45px;
  }
  /* line 2626, scss/layouts/pages/_index.scss */
  .index_list .locations_bottom .type_list .locations_box .text_box:before {
    -webkit-border-radius: 0 0 80px 0;
    -moz-border-radius: 0 0 80px 0;
    border-radius: 0 0 80px 0;
  }
  /* line 2633, scss/layouts/pages/_index.scss */
  .index_list .index-service-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* line 1, scss/layouts/pages/_all.scss */
h1,
h3 {
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* line 8, scss/layouts/pages/_all.scss */
.all_banner {
  position: relative;
  z-index: 1;
  padding-top: 230px;
  padding-bottom: 0px;
}
/* line 13, scss/layouts/pages/_all.scss */
.all_banner .banner-img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 144.405%;
}
/* line 21, scss/layouts/pages/_all.scss */
.all_banner .banner-slogan-box {
  position: relative;
  z-index: 3;
}
/* line 24, scss/layouts/pages/_all.scss */
.all_banner .banner-slogan-box .banner-slogan {
  position: relative;
  overflow: hidden;
}
/* line 27, scss/layouts/pages/_all.scss */
.all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
  font-size: 100px;
  color: #FFF;
  font-weight: 400;
  padding-left: 40px;
  line-height: 100px;
  padding-right: 300px;
  text-transform: uppercase;
}
/* line 36, scss/layouts/pages/_all.scss */
.all_banner .banner-slogan-box .banner-slogan:after {
  content: '';
  width: 2px;
  height: calc(100% - 40px);
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}
/* line 47, scss/layouts/pages/_all.scss */
.all_banner .banner-slogan-box .banner-slogan-cn {
  font-weight: 500;
  font-size: 30px;
  color: #FFF;
  padding-left: 40px;
  padding-right: 300px;
  letter-spacing: 0.1em;
}
@media (max-width: 1540px) {
  /* line 57, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  /* line 64, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 60px;
    line-height: 70px;
    padding-right: 190px;
  }
  /* line 71, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan-cn {
    padding-right: 190px;
  }
}
@media (max-width: 800px) {
  /* line 78, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 52px;
    padding-right: 0;
    line-height: 1;
  }
  /* line 84, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan-cn {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /* line 21, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box {
    padding-top: 45px;
    padding-bottom: 60px;
  }
  /* line 92, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan:after {
    height: calc(100% - 20px);
    top: 10px;
  }
}
@media (max-width: 600px) {
  /* line 100, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 48px;
  }
}
@media (max-width: 450px) {
  /* line 106, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 43px;
  }
}
@media (max-width: 400px) {
  /* line 113, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  /* line 119, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan .banner-slogan-en {
    font-size: 36px;
  }
  /* line 122, scss/layouts/pages/_all.scss */
  .all_banner .banner-slogan-box .banner-slogan-cn {
    font-size: 27px;
  }
}

/* line 130, scss/layouts/pages/_all.scss */
.breadcrumbs {
  font-size: 0;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  text-align: right;
}
/* line 136, scss/layouts/pages/_all.scss */
.breadcrumbs a,
.breadcrumbs p,
.breadcrumbs span {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  display: initial;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
@media (max-width: 992px) {
  /* line 136, scss/layouts/pages/_all.scss */
  .breadcrumbs a,
  .breadcrumbs p,
  .breadcrumbs span {
    font-size: 15px;
    line-height: 30px;
  }
}
/* line 151, scss/layouts/pages/_all.scss */
.breadcrumbs span {
  color: transparent;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  width: 6px;
}
/* line 157, scss/layouts/pages/_all.scss */
.breadcrumbs span:before {
  position: absolute;
  display: block;
  content: '';
  left: 50%;
  top: 50%;
  opacity: .5;
  width: 6px;
  height: 6px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 172, scss/layouts/pages/_all.scss */
.breadcrumbs a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
/* line 175, scss/layouts/pages/_all.scss */
.breadcrumbs a:hover {
  opacity: 1;
}

/* line 181, scss/layouts/pages/_all.scss */
.solid_title {
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  /* line 181, scss/layouts/pages/_all.scss */
  .solid_title {
    padding-left: 30px;
  }
}
/* line 188, scss/layouts/pages/_all.scss */
.solid_title:after {
  transition: all .5s;
  content: '';
  width: 2px;
  height: calc(100% - 20px);
  background-color: #333333;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
}
@media (max-width: 800px) {
  /* line 188, scss/layouts/pages/_all.scss */
  .solid_title:after {
    height: calc(100% - 10px);
    top: 7px;
  }
}

/* line 205, scss/layouts/pages/_all.scss */
.all_page {
  position: relative;
  z-index: 2;
  padding-bottom: 136px;
}
@media (max-width: 1400px) {
  /* line 205, scss/layouts/pages/_all.scss */
  .all_page {
    padding-bottom: 120px;
  }
}
@media (max-width: 1200px) {
  /* line 205, scss/layouts/pages/_all.scss */
  .all_page {
    padding-bottom: 100px;
  }
}
@media (max-width: 992px) {
  /* line 205, scss/layouts/pages/_all.scss */
  .all_page {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  /* line 205, scss/layouts/pages/_all.scss */
  .all_page {
    padding-bottom: 50px;
  }
}
/* line 221, scss/layouts/pages/_all.scss */
.all_page:before {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-border-radius: 0 150px 0 0;
  -moz-border-radius: 0 150px 0 0;
  border-radius: 0 150px 0 0;
}
@media (max-width: 1400px) {
  /* line 221, scss/layouts/pages/_all.scss */
  .all_page:before {
    -webkit-border-radius: 0 130px 0 0;
    -moz-border-radius: 0 130px 0 0;
    border-radius: 0 130px 0 0;
  }
}
@media (max-width: 1000px) {
  /* line 221, scss/layouts/pages/_all.scss */
  .all_page:before {
    -webkit-border-radius: 0 110px 0 0;
    -moz-border-radius: 0 110px 0 0;
    border-radius: 0 110px 0 0;
  }
}
@media (max-width: 767px) {
  /* line 221, scss/layouts/pages/_all.scss */
  .all_page:before {
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
  }
}
@media (max-width: 550px) {
  /* line 221, scss/layouts/pages/_all.scss */
  .all_page:before {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
}
/* line 246, scss/layouts/pages/_all.scss */
.all_page > div {
  position: relative;
  z-index: 3;
}
/* line 249, scss/layouts/pages/_all.scss */
.all_page > div.about_top {
  z-index: 4;
}
/* line 252, scss/layouts/pages/_all.scss */
.all_page > div.news_top {
  z-index: 3;
}
/* line 255, scss/layouts/pages/_all.scss */
.all_page > div.news_bottom {
  z-index: 2;
}
/* line 258, scss/layouts/pages/_all.scss */
.all_page > div.columns_bottom {
  z-index: 2;
}
/* line 263, scss/layouts/pages/_all.scss */
.all_page .all_top_nav {
  position: relative;
  z-index: 99;
  padding-top: 50px;
  padding-bottom: 78px;
  font-size: 0;
}
/* line 269, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .wp1520 {
  position: relative;
}
/* line 272, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .all_nav {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 433px);
}
@media (min-width: 1200px) {
  /* line 277, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select {
    display: none;
  }
  /* line 280, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu {
    font-size: 0;
    display: block !important;
    width: 100%;
  }
  /* line 284, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
    padding: 17px 31px;
    text-align: center;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 35px 30px 30px 0;
    -moz-border-radius: 35px 30px 30px 0;
    border-radius: 35px 30px 30px 0;
  }
  /* line 296, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:before {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    bottom: 0;
    background: #828282;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    max-height: 32%;
    left: 31px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    opacity: 0;
    pointer-events: none;
  }
  /* line 314, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:hover {
    color: #B78830;
    transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -webkit-transform: translate(10px, 0);
  }
  /* line 317, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:hover:before {
    left: 11px;
    background: #B78830;
    opacity: 1;
  }
  /* line 323, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:first-child {
    margin-right: 24px;
  }
  /* line 326, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active {
    font-size: 16px;
    line-height: 26px;
    background: #681414;
    color: #ffff;
    min-width: 160px;
  }
  /* line 332, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active:hover {
    color: #ffff;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 335, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active:hover:before {
    opacity: 0;
  }
}
/* line 344, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  width: 433px;
  font-size: 0;
}
/* line 350, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box {
  width: calc(100% - 167px);
  margin-right: 17px;
  display: inline-block;
  vertical-align: middle;
  padding: 8px;
  background: #ffff;
  border: 1px solid #F5F3F1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  position: relative;
}
/* line 360, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box:last-child {
  margin-right: 0;
}
/* line 363, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form {
  display: block;
  width: 100%;
}
/* line 366, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_text {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 45px);
  color: rgba(150, 150, 150, 0.5);
  font-size: 16px;
  line-height: 45px;
  padding: 0 25px;
  padding-right: 8px;
  font-weight: 400;
  color: #828282;
}
/* line 377, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_text::placeholder {
  color: rgba(150, 150, 150, 0.5);
}
/* line 381, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_text::-webkit-input-placeholder {
  color: rgba(150, 150, 150, 0.5);
}
/* line 385, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_text:-ms-input-placeholder {
  color: rgba(150, 150, 150, 0.5);
}
/* line 389, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_text::-moz-placeholder {
  color: rgba(150, 150, 150, 0.5);
}
/* line 393, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_submit {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  font-size: 0;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #C3B8A2;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 403, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box form .form_submit:hover {
  background: #B78830;
}
/* line 408, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .search_box p {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: 8px;
  top: 8px;
  pointer-events: none;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 421, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav {
  width: 150px;
  display: inline-block;
  vertical-align: middle;
  padding: 8px;
  background: #ffff;
  border: 1px solid #F5F3F1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  position: relative;
}
/* line 430, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .has_select {
  font-size: 16px;
  line-height: 45px;
  position: relative;
  padding-left: 13px;
  padding-right: 30px;
  cursor: pointer;
}
/* line 437, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .has_select span {
  color: rgba(0, 0, 0, 0.5);
}
/* line 440, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .has_select .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  pointer-events: none;
}
/* line 449, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .time_menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 5;
  background: #ffff;
  border: 1px solid #F5F3F1;
  margin-top: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
}
/* line 461, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .time_menu a {
  font-size: 16px;
  line-height: 45px;
  display: block;
  border-bottom: solid 1px #F5F3F1;
  padding: 5px 21px;
  text-decoration: none;
}
/* line 468, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .time_menu a span {
  color: #828282;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 473, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .time_menu a:hover span {
  color: #681414;
}
/* line 477, scss/layouts/pages/_all.scss */
.all_page .all_top_nav .right_box .time_nav .time_menu a:last-child {
  border-bottom: none;
}
@media (max-width: 1600px) {
  /* line 263, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav {
    padding-top: 40px;
    padding-bottom: 68px;
  }
  /* line 487, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav {
    width: calc(100% - 400px);
  }
  /* line 491, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active {
    min-width: 150px;
  }
  /* line 497, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box {
    width: 400px;
  }
  /* line 499, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box {
    margin-right: 15px;
    width: calc(100% - 165px);
  }
}
@media (max-width: 1500px) {
  /* line 263, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  /* line 510, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    padding: 15px 28px;
  }
  /* line 512, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active {
    min-width: 140px;
  }
  /* line 515, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:first-child {
    margin-right: 20px;
  }
  /* line 522, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box {
    margin-right: 10px;
    width: calc(100% - 160px);
  }
  /* line 525, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box:last-child {
    margin-right: 0;
  }
  /* line 529, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box form .form_text {
    line-height: 38px;
    width: calc(100% - 38px);
  }
  /* line 533, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box form .form_submit {
    width: 38px;
    height: 38px;
  }
  /* line 538, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box p {
    width: 38px;
    height: 38px;
  }
  /* line 544, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav .has_select {
    line-height: 38px;
  }
}
@media (max-width: 1400px) {
  /* line 552, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav {
    width: calc(100% - 380px);
  }
  /* line 555, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    padding: 15px 23px;
  }
  /* line 557, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active {
    min-width: 130px;
  }
  /* line 563, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box {
    width: 380px;
  }
}
@media (max-width: 1300px) {
  /* line 263, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav {
    padding-bottom: 55px;
  }
  /* line 570, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav {
    width: calc(100% - 350px);
  }
  /* line 573, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    padding: 15px 20px;
  }
  /* line 578, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box {
    width: 350px;
  }
}
@media (max-width: 1199px) {
  /* line 263, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav {
    padding-bottom: 45px;
  }
  /* line 584, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav {
    width: 100%;
    vertical-align: bottom;
    padding: 8px;
    background: #ffff;
    border: 1px solid #F5F3F1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin-bottom: 10px;
    position: relative;
  }
  /* line 593, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select {
    font-size: 16px;
    line-height: 38px;
    position: relative;
    padding-left: 13px;
    padding-right: 40px;
    cursor: pointer;
  }
  /* line 600, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select span {
    color: rgba(0, 0, 0, 0.5);
  }
  /* line 603, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    pointer-events: none;
  }
  /* line 612, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 5;
    background: #ffff;
    border: 1px solid #F5F3F1;
    margin-top: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  /* line 623, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    font-size: 16px;
    line-height: 45px;
    display: block;
    border-bottom: solid 1px #F5F3F1;
    padding: 5px 21px;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* line 632, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active {
    display: none;
  }
  /* line 634, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a.active.select_type {
    display: block;
  }
  /* line 638, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:hover {
    color: #681414;
  }
  /* line 641, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a:last-child {
    border-bottom: none;
  }
  /* line 647, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box {
    width: 100%;
    vertical-align: bottom;
    text-align: right;
  }
  /* line 651, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box {
    width: calc(100% - 205px);
    margin-right: 15px;
  }
  /* line 654, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box:last-child {
    margin-right: 0;
    width: 100%;
  }
  /* line 659, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box form .form_text {
    padding-left: 13px;
  }
  /* line 664, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav {
    width: 190px;
    text-align: left;
  }
}
@media (max-width: 800px) {
  /* line 263, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav {
    padding-bottom: 40px;
  }
}
@media (max-width: 450px) {
  /* line 675, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  /* line 679, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav {
    width: calc(50% - 5px);
  }
}
@media (max-width: 380px) {
  /* line 686, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav {
    padding: 5px;
  }
  /* line 688, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select {
    font-size: 15px;
  }
  /* line 690, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .has_select .icon {
    right: 15px;
  }
  /* line 695, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .all_nav .type_menu a {
    padding: 0 18px;
    font-size: 15px;
  }
  /* line 702, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box {
    padding: 5px;
  }
  /* line 704, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box p {
    right: 5px;
    top: 5px;
  }
  /* line 709, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .search_box form .form_text {
    font-size: 15px;
  }
  /* line 714, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav {
    padding: 5px;
  }
  /* line 716, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav .has_select {
    font-size: 15px;
  }
  /* line 718, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav .has_select .icon {
    right: 15px;
  }
  /* line 723, scss/layouts/pages/_all.scss */
  .all_page .all_top_nav .right_box .time_nav .time_menu a {
    padding: 0 18px;
    font-size: 15px;
  }
}
/* line 733, scss/layouts/pages/_all.scss */
.all_page .privacy_top {
  text-align: center;
}
/* line 735, scss/layouts/pages/_all.scss */
.all_page .privacy_top .h6 {
  font-weight: 500;
  margin-bottom: 20px;
}
/* line 739, scss/layouts/pages/_all.scss */
.all_page .privacy_top .h10 {
  color: #828282;
}
/* line 742, scss/layouts/pages/_all.scss */
.all_page .privacy_top p {
  letter-spacing: 0.1em;
}
/* line 747, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom {
  background: #F5F3F1;
  padding: 70px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: left;
}
/* line 753, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box {
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
/* line 758, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box {
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
  padding: 50px 54px;
}
/* line 761, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box:first-child {
  padding-top: 0;
}
/* line 764, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box:last-child {
  padding-bottom: 30px;
  border-bottom: none;
}
/* line 768, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box .h8 {
  font-weight: 500;
  margin-bottom: 15px;
}
/* line 772, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box .h10 {
  color: #828282;
}
/* line 775, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box p {
  letter-spacing: 0.1em;
}
/* line 778, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 782, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box ul li {
  position: relative;
  letter-spacing: 0.1em;
  padding-left: 25px;
  color: #828282;
}
/* line 787, scss/layouts/pages/_all.scss */
.all_page .privacy_bottom .in_box .privacy_box ul li:before {
  content: '';
  position: absolute;
  background: #828282;
  display: block;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 10px;
  top: 18px;
}
@media (max-width: 1800px) {
  /* line 747, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom {
    padding: 60px;
  }
}
@media (max-width: 1500px) {
  /* line 747, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom {
    padding: 50px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
  }
}
@media (max-width: 1400px) {
  /* line 812, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom .in_box .privacy_box {
    padding: 30px 5%;
  }
  /* line 814, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom .in_box .privacy_box:first-child {
    padding-top: 0;
  }
  /* line 817, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom .in_box .privacy_box:last-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  /* line 747, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom {
    padding: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 800px) {
  /* line 747, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom {
    padding: 30px;
  }
}
@media (max-width: 500px) {
  /* line 747, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom {
    padding: 30px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  /* line 834, scss/layouts/pages/_all.scss */
  .all_page .privacy_bottom .in_box .privacy_box {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* line 843, scss/layouts/pages/_all.scss */
.detail_page {
  position: relative;
  z-index: 2;
  padding-top: 144px;
}
/* line 847, scss/layouts/pages/_all.scss */
.detail_page p {
  letter-spacing: 0.1em;
}
/* line 850, scss/layouts/pages/_all.scss */
.detail_page .breadcrumbs {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 0;
}
/* line 855, scss/layouts/pages/_all.scss */
.detail_page .breadcrumbs a {
  color: #828282;
}
/* line 858, scss/layouts/pages/_all.scss */
.detail_page .breadcrumbs span {
  color: transparent;
}
/* line 860, scss/layouts/pages/_all.scss */
.detail_page .breadcrumbs span:before {
  background: #828282;
}
/* line 864, scss/layouts/pages/_all.scss */
.detail_page .breadcrumbs p {
  color: #000000;
}
@media (max-width: 1400px) {
  /* line 843, scss/layouts/pages/_all.scss */
  .detail_page {
    padding-top: 123px;
  }
  /* line 870, scss/layouts/pages/_all.scss */
  .detail_page .breadcrumbs {
    padding-top: 50px;
    padding-bottom: 35px;
  }
}
@media (max-width: 1199px) {
  /* line 843, scss/layouts/pages/_all.scss */
  .detail_page {
    padding-top: 110px;
  }
  /* line 877, scss/layouts/pages/_all.scss */
  .detail_page .breadcrumbs {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  /* line 843, scss/layouts/pages/_all.scss */
  .detail_page {
    padding-top: 92px;
  }
  /* line 884, scss/layouts/pages/_all.scss */
  .detail_page .breadcrumbs {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #F5F3F1;
    margin-bottom: 30px;
  }
}
/* line 893, scss/layouts/pages/_all.scss */
.detail_page .sitemap_detail .breadcrumbs {
  text-align: right;
  padding-top: 15px;
  padding-bottom: 0;
}
/* line 900, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom {
  text-align: center;
}
/* line 902, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom > .font-42 {
  font-weight: 500;
  letter-spacing: 0.1em;
}
/* line 906, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom > .Cormorant {
  margin-top: 28px;
  margin-bottom: -47px;
  display: block;
  width: 100%;
  text-align: center;
  height: 250px;
  overflow: hidden;
  position: relative;
}
/* line 915, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom > .Cormorant span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 250px;
  line-height: 1em;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #F5F3F1;
}
@media (max-width: 1350px) {
  /* line 906, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom > .Cormorant {
    margin-top: 15px;
    height: 19vw;
    margin-bottom: -3.7vw;
  }
  /* line 929, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom > .Cormorant span {
    font-size: 19vw;
  }
}
@media (max-width: 800px) {
  /* line 935, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .h6.sl {
    margin-bottom: 55px;
  }
}
/* line 939, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg {
  background: #F5F3F1;
  padding-bottom: 176px;
  -webkit-border-radius: 0 150px 0 0;
  -moz-border-radius: 0 150px 0 0;
  border-radius: 0 150px 0 0;
}
@media (max-width: 1400px) {
  /* line 939, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg {
    -webkit-border-radius: 0 130px 0 0;
    -moz-border-radius: 0 130px 0 0;
    border-radius: 0 130px 0 0;
  }
}
@media (max-width: 1300px) {
  /* line 939, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg {
    padding-bottom: 140px;
  }
}
@media (max-width: 1000px) {
  /* line 939, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg {
    -webkit-border-radius: 0 110px 0 0;
    -moz-border-radius: 0 110px 0 0;
    border-radius: 0 110px 0 0;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  /* line 939, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg {
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 550px) {
  /* line 939, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
}
/* line 960, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg p {
  letter-spacing: 0.1em;
}
/* line 964, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #ffff;
  padding: 0 70px;
  text-align: left;
}
/* line 969, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box:last-child {
  margin-bottom: 0;
}
/* line 972, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box {
  padding: 70px 0;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
/* line 978, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 3;
  min-width: 176px;
  text-align: center;
  background-color: #681414;
  -webkit-border-radius: 24px 27px 27px 0;
  -moz-border-radius: 24px 27px 27px 0;
  border-radius: 24px 27px 27px 0;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 15px 30px;
}
/* line 991, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
/* line 996, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title span {
  display: inline-block;
  vertical-align: middle;
  color: #ffff;
  font-size: 18px;
  line-height: 25px;
}
/* line 1004, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row {
  margin-left: -20px;
  margin-right: -20px;
  font-size: 0;
}
/* line 1008, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
  padding: 0 20px;
  margin-bottom: 30px;
  width: calc(100% / 6);
  display: inline-block;
  vertical-align: top;
}
/* line 1014, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a {
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 23px;
  position: relative;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  word-break: break-all;
}
/* line 1022, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a.title_url {
  color: #681414;
  padding-bottom: 14px;
  margin-bottom: 23px;
  border-bottom: solid 1px #C3B8A2;
  font-weight: 400;
}
/* line 1028, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a.title_url:hover {
  color: #B78830;
}
/* line 1032, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url) {
  padding-left: 23px;
  color: #828282;
  margin-bottom: 15px;
}
@media (max-width: 500px) {
  /* line 1032, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url) {
    padding-left: 18px;
  }
}
/* line 1039, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url):hover {
  color: #B78830;
}
/* line 1041, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url):hover:before {
  background: #B78830;
}
/* line 1045, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url):last-child {
  margin-bottom: 0;
}
/* line 1048, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div a:not(.title_url):before {
  content: '';
  position: absolute;
  background: #828282;
  display: block;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 0;
  top: 50%;
}
/* line 1067, scss/layouts/pages/_all.scss */
.detail_page .sitemap_bottom .sitemap_bg .sitemap_box:nth-child(odd) .in_box .title {
  background: #B78830;
}
@media (max-width: 1800px) {
  /* line 964, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
    padding: 0 60px;
  }
  /* line 1074, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box {
    padding: 60px 0;
    padding-bottom: 30px;
  }
}
@media (max-width: 1500px) {
  /* line 964, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
    padding: 0 50px;
    margin-bottom: 70px;
  }
  /* line 1083, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title {
    min-width: 160px;
    -webkit-border-radius: 20px 23px 23px 0;
    -moz-border-radius: 20px 23px 23px 0;
    border-radius: 20px 23px 23px 0;
    padding: 12px 30px;
  }
  /* line 1087, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title svg {
    margin-right: 8px;
  }
  /* line 1090, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .title span {
    font-size: 16px;
    line-height: 22px;
  }
  /* line 1096, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
    width: 20%;
  }
}
@media (max-width: 1200px) {
  /* line 964, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
    padding: 0 40px;
  }
  /* line 1106, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
    width: 25%;
  }
}
@media (max-width: 1000px) {
  /* line 1115, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  /* line 964, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
    padding: 0 30px;
  }
  /* line 1123, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  /* line 1129, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  /* line 1132, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }
}
@media (max-width: 500px) {
  /* line 964, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 350px) {
  /* line 1147, scss/layouts/pages/_all.scss */
  .detail_page .sitemap_bottom .sitemap_bg .sitemap_box .in_box .row > div {
    width: 100%;
  }
}

/* line 1159, scss/layouts/pages/_all.scss */
.pages_dots {
  display: block;
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 0;
}
/* line 1165, scss/layouts/pages/_all.scss */
.pages_dots ul {
  display: block;
  text-align: center;
  display: inline-block;
  max-width: 100%;
  position: relative;
  padding: 0 120px;
}
/* line 1172, scss/layouts/pages/_all.scss */
.pages_dots ul li {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 70px;
  text-align: center;
  margin: 10px 0;
}
/* line 1181, scss/layouts/pages/_all.scss */
.pages_dots ul li:not(.ellipses) a span {
  font-size: 26px;
  line-height: 1em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  -moz-transform: translate(-50%, -60%);
  -o-transform: translate(-50%, -60%);
  -webkit-transform: translate(-50%, -60%);
  color: inherit;
  font-weight: 700;
}
/* line 1194, scss/layouts/pages/_all.scss */
.pages_dots ul li a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 70px;
  line-height: 70px;
  height: 70px;
  border: solid 1px transparent;
  transition: all .5s ease;
  color: #C3B8A2;
  text-decoration: none;
}
/* line 1206, scss/layouts/pages/_all.scss */
.pages_dots ul li a path {
  transition: all .5s ease;
}
/* line 1209, scss/layouts/pages/_all.scss */
.pages_dots ul li a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 23px;
}
/* line 1218, scss/layouts/pages/_all.scss */
.pages_dots ul li a:hover {
  color: #B78830;
}
/* line 1223, scss/layouts/pages/_all.scss */
.pages_dots ul li.active a {
  background: #681414;
  color: #ffff;
}
/* line 1228, scss/layouts/pages/_all.scss */
.pages_dots ul li.prev_page {
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 1236, scss/layouts/pages/_all.scss */
.pages_dots ul li.prev_page:hover a {
  border: 1px solid #B78830;
}
/* line 1238, scss/layouts/pages/_all.scss */
.pages_dots ul li.prev_page:hover a path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
/* line 1245, scss/layouts/pages/_all.scss */
.pages_dots ul li.next_page {
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 1253, scss/layouts/pages/_all.scss */
.pages_dots ul li.next_page:hover a {
  border: 1px solid #B78830;
}
/* line 1255, scss/layouts/pages/_all.scss */
.pages_dots ul li.next_page:hover a path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
/* line 1263, scss/layouts/pages/_all.scss */
.pages_dots ul li.ellipses {
  height: auto;
}
/* line 1265, scss/layouts/pages/_all.scss */
.pages_dots ul li.ellipses span {
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 2px;
  background: #C3B8A2;
}
/* line 1275, scss/layouts/pages/_all.scss */
.pages_dots ul li.disabled {
  pointer-events: none;
  opacity: .8;
}
@media screen and (max-width: 767px) {
  /* line 1165, scss/layouts/pages/_all.scss */
  .pages_dots ul {
    position: relative;
    padding: 0 60px;
  }
  /* line 1285, scss/layouts/pages/_all.scss */
  .pages_dots ul li {
    margin: 10px 5px;
    width: 30px;
    height: 30px;
  }
  /* line 1289, scss/layouts/pages/_all.scss */
  .pages_dots ul li a {
    width: 30px;
    line-height: 30px;
    height: 30px;
    font-size: 14px;
  }
  /* line 1297, scss/layouts/pages/_all.scss */
  .pages_dots ul li:not(.ellipses) a span {
    font-size: 21px;
  }
  /* line 1302, scss/layouts/pages/_all.scss */
  .pages_dots ul li.ellipses {
    height: auto;
  }
  /* line 1305, scss/layouts/pages/_all.scss */
  .pages_dots ul li.prev_page {
    width: 40px;
    height: 40px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  /* line 1313, scss/layouts/pages/_all.scss */
  .pages_dots ul li.prev_page svg {
    width: 20px;
  }
  /* line 1316, scss/layouts/pages/_all.scss */
  .pages_dots ul li.prev_page a {
    width: 40px;
    line-height: 40px;
    height: 40px;
  }
  /* line 1322, scss/layouts/pages/_all.scss */
  .pages_dots ul li.next_page {
    width: 40px;
    height: 40px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  /* line 1330, scss/layouts/pages/_all.scss */
  .pages_dots ul li.next_page svg {
    width: 20px;
  }
  /* line 1333, scss/layouts/pages/_all.scss */
  .pages_dots ul li.next_page a {
    width: 40px;
    line-height: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  /* line 1165, scss/layouts/pages/_all.scss */
  .pages_dots ul {
    position: relative;
  }
  /* line 1344, scss/layouts/pages/_all.scss */
  .pages_dots ul li:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  /* line 1351, scss/layouts/pages/_all.scss */
  .pages_dots ul li:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 340px) {
  /* line 1165, scss/layouts/pages/_all.scss */
  .pages_dots ul {
    position: relative;
  }
  /* line 1358, scss/layouts/pages/_all.scss */
  .pages_dots ul li {
    display: none;
  }
  /* line 1360, scss/layouts/pages/_all.scss */
  .pages_dots ul li.prev_page {
    display: inline-block;
  }
  /* line 1363, scss/layouts/pages/_all.scss */
  .pages_dots ul li.next_page {
    display: inline-block;
  }
  /* line 1366, scss/layouts/pages/_all.scss */
  .pages_dots ul li.active {
    display: inline-block;
  }
}

/* line 1376, scss/layouts/pages/_all.scss */
.arrow_nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  transform: translate(50%, 50%);
  -moz-transform: translate(50%, 50%);
  -o-transform: translate(50%, 50%);
  -webkit-transform: translate(50%, 50%);
}
/* line 1383, scss/layouts/pages/_all.scss */
.arrow_nav span {
  cursor: pointer;
  display: block;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffff;
  -moz-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  -webkit-transition: border 0.3s ease-in-out;
  -ms-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  border: solid 1px #C3B8A2;
  border: 1px solid #C3B8A2;
  transition: all .5s ease;
}
/* line 1394, scss/layouts/pages/_all.scss */
.arrow_nav span path {
  transition: all .5s ease;
}
/* line 1397, scss/layouts/pages/_all.scss */
.arrow_nav span svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1409, scss/layouts/pages/_all.scss */
.arrow_nav.prev:hover span svg {
  margin-left: -5px;
}
/* line 1418, scss/layouts/pages/_all.scss */
.arrow_nav.next:hover span svg {
  margin-left: 5px;
}
/* line 1425, scss/layouts/pages/_all.scss */
.arrow_nav:hover span {
  border: 1px solid #B78830;
}
/* line 1427, scss/layouts/pages/_all.scss */
.arrow_nav:hover span path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
@media (max-width: 1400px) {
  /* line 1434, scss/layouts/pages/_all.scss */
  .arrow_nav span {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 800px) {
  /* line 1441, scss/layouts/pages/_all.scss */
  .arrow_nav span {
    width: 60px;
    height: 60px;
  }
  /* line 1444, scss/layouts/pages/_all.scss */
  .arrow_nav span svg {
    width: 35%;
  }
}
@media screen and (max-width: 650px) {
  /* line 1450, scss/layouts/pages/_all.scss */
  .arrow_nav span {
    width: 50px;
    height: 50px;
  }
}

/* line 1457, scss/layouts/pages/_all.scss */
.imgBox {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-bottom: 100%;
}
/* line 1463, scss/layouts/pages/_all.scss */
.imgBox img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* line 1477, scss/layouts/pages/_all.scss */
.scroll_box {
  -webkit-overflow-scrolling: touch;
}
/* line 1479, scss/layouts/pages/_all.scss */
.scroll_box::-webkit-scrollbar {
  height: 5px;
  background-color: #681414;
}
/* line 1483, scss/layouts/pages/_all.scss */
.scroll_box::-webkit-scrollbar-track {
  /*拉霸底部顏色*/
  border-radius: 0px;
  background-color: #681414;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1489, scss/layouts/pages/_all.scss */
.scroll_box::-webkit-scrollbar-thumb {
  /*拉霸顏色*/
  border-radius: 0px;
  background-color: #B78830;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1496, scss/layouts/pages/_all.scss */
.scroll_box .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  height: 5px;
  background-color: #681414;
}
/* line 1499, scss/layouts/pages/_all.scss */
.scroll_box .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  background-color: #B78830;
}

/* line 1507, scss/layouts/pages/_all.scss */
.scroll_box_y {
  -webkit-overflow-scrolling: touch;
}
/* line 1509, scss/layouts/pages/_all.scss */
.scroll_box_y::-webkit-scrollbar {
  width: 5px;
  background-color: #C3B8A2;
}
/* line 1513, scss/layouts/pages/_all.scss */
.scroll_box_y::-webkit-scrollbar-track {
  /*拉霸底部顏色*/
  border-radius: 0px;
  background-color: #C3B8A2;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1519, scss/layouts/pages/_all.scss */
.scroll_box_y::-webkit-scrollbar-thumb {
  /*拉霸顏色*/
  border-radius: 0px;
  background-color: #B78830;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 1527, scss/layouts/pages/_all.scss */
.m_scroll {
  overflow-y: auto;
}

/* line 1531, scss/layouts/pages/_all.scss */
.l_scroll {
  overflow-x: auto;
}

/* line 1537, scss/layouts/pages/_all.scss */
.m_scroll::-webkit-scrollbar-track {
  width: 6px;
  background-color: #681414;
}

/* line 1542, scss/layouts/pages/_all.scss */
.m_scroll::-webkit-scrollbar {
  width: 6px;
  background-color: #681414;
}

/* line 1547, scss/layouts/pages/_all.scss */
.m_scroll::-webkit-scrollbar-thumb {
  background-color: #B78830;
  width: 6px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
}

/* line 1553, scss/layouts/pages/_all.scss */
.fallback {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
/* line 1557, scss/layouts/pages/_all.scss */
.fallback body {
  height: 100%;
}
/* line 1559, scss/layouts/pages/_all.scss */
.fallback body main {
  height: 100%;
}

/* line 1565, scss/layouts/pages/_all.scss */
.fallback_page {
  background: url(../styles/images/fallback/fallback_bg.webp) right top no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
}
/* line 1576, scss/layouts/pages/_all.scss */
.fallback_page h1 {
  display: none;
}
/* line 1579, scss/layouts/pages/_all.scss */
.fallback_page .fallback_logo {
  position: absolute;
  top: 10px;
  left: 50%;
  max-width: 1745px;
  width: 90%;
  transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  z-index: 99;
}
/* line 1587, scss/layouts/pages/_all.scss */
.fallback_page .fallback_logo a {
  display: block;
  width: 195px;
}
@media (max-width: 600px) {
  /* line 1587, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_logo a {
    width: 170px;
  }
}
/* line 1595, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box {
  padding: 90px 0;
  margin-left: -10px;
  margin-right: -10px;
  font-size: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
/* line 1607, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box > div {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}
/* line 1617, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_left {
  width: 40%;
  right: 40%;
}
/* line 1620, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_left .in_box {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 300px 300px 0 0;
  -moz-border-radius: 300px 300px 0 0;
  border-radius: 300px 300px 0 0;
}
@media screen and (max-width: 1200px) {
  /* line 1620, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_left .in_box {
    -webkit-border-radius: 25vw 25vw 0 0;
    -moz-border-radius: 25vw 25vw 0 0;
    border-radius: 25vw 25vw 0 0;
  }
}
@media screen and (max-width: 850px) {
  /* line 1620, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_left .in_box {
    -webkit-border-radius: 240px 240px 0 0;
    -moz-border-radius: 240px 240px 0 0;
    border-radius: 240px 240px 0 0;
  }
}
@media screen and (max-width: 500px) {
  /* line 1620, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_left .in_box {
    -webkit-border-top-right-radius: 50% 50%;
    -moz-border-top-right-radius: 50% 50%;
    border-top-right-radius: 50% 50%;
    -webkit-border-top-left-radius: 50% 50%;
    -moz-border-top-leftt-radius: 50% 50%;
    border-top-left-radius: 50% 50%;
  }
}
/* line 1638, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_left .in_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* line 1647, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right {
  width: 50%;
  left: 50%;
}
/* line 1650, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div {
  width: 100%;
  text-align: center;
}
/* line 1653, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box {
  text-align: left;
  padding-top: 60px;
  width: 620px;
  max-width: 100%;
  display: inline-block;
  position: relative;
  padding-right: 40px;
}
/* line 1661, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .Cormorant {
  font-size: 120px;
  line-height: 120px;
  color: #681414;
}
/* line 1666, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .h6 {
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
/* line 1670, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .h10 {
  color: #828282;
  width: 486px;
  max-width: 100%;
  letter-spacing: 0.1em;
}
/* line 1675, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .h10 a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #681414;
  text-decoration: underline;
}
/* line 1679, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .h10 a:hover {
  color: #B78830;
}
/* line 1684, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link {
  width: 150px;
  height: 150px;
  position: relative;
  display: block;
}
/* line 1689, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link:after {
  content: '';
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 65px;
  height: 1px;
  background-color: #B78830;
  transform: rotate(40deg) scaleX(0);
  top: 30px;
  left: -10px;
  pointer-events: none;
}
/* line 1701, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link:before {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border: solid 1px #B78830;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 1714, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link:hover:after {
  transform: rotate(40deg);
}
/* line 1717, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link:hover:before {
  transform: translate(-50%, -50%) scale(0.9);
}
/* line 1722, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right > div .in_box .go_link span {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #B78830;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media screen and (max-width: 1500px) {
  /* line 1653, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box {
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 0;
  }
  /* line 1737, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .Cormorant {
    font-size: 8vw;
    line-height: 8vw;
  }
  /* line 1741, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .go_link {
    width: 130px;
    height: 130px;
  }
  /* line 1744, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .go_link:after {
    width: 50px;
  }
}
@media screen and (max-width: 1200px) {
  /* line 1750, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .go_link {
    width: 110px;
    height: 110px;
  }
  /* line 1753, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .go_link:after {
    width: 40px;
  }
}
@media screen and (max-width: 850px) {
  /* line 1653, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box {
    padding-left: 0;
    text-align: center;
    padding-top: 50px;
  }
  /* line 1762, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .Cormorant {
    font-size: 62px;
    line-height: 1em;
  }
  /* line 1766, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .go_link {
    margin: 30px auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  /* line 1772, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .Cormorant {
    font-size: 48px;
  }
  /* line 1775, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right > div .in_box .h6 {
    font-size: 18px;
    line-height: 28px;
  }
}
/* line 1784, scss/layouts/pages/_all.scss */
.fallback_page .fallback_box .fallback_right.oops > div .in_box {
  padding-top: 7vw;
}
@media screen and (max-width: 1200px) {
  /* line 1784, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right.oops > div .in_box {
    padding-top: 9vw;
  }
}
@media screen and (max-width: 850px) {
  /* line 1784, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right.oops > div .in_box {
    padding-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  /* line 1797, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_left {
    width: 50%;
    right: 50%;
  }
  /* line 1801, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right {
    width: 50%;
  }
}
@media screen and (max-width: 850px) {
  /* line 1595, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box {
    display: block;
  }
  /* line 1807, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_left {
    display: block;
    width: 500px;
    max-width: 100%;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }
  /* line 1816, scss/layouts/pages/_all.scss */
  .fallback_page .fallback_box .fallback_right {
    display: block;
    width: 500px;
    max-width: 100%;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* line 1830, scss/layouts/pages/_all.scss */
.out_privacy_box {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
/* line 1839, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy {
  position: absolute;
  width: 550px;
  height: 650px;
  max-width: calc(100% - 60px);
  max-height: calc(100% - 60px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  background: #681414;
  -webkit-border-radius: 300px 300px 0 0;
  -moz-border-radius: 300px 300px 0 0;
  border-radius: 300px 300px 0 0;
  padding: 50px 35px;
}
/* line 1853, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .close_privacy {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  transform: translate(15%, -15%);
  -moz-transform: translate(15%, -15%);
  -o-transform: translate(15%, -15%);
  -webkit-transform: translate(15%, -15%);
}
/* line 1863, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .close_privacy:before {
  position: absolute;
  content: '';
  width: 70%;
  height: 2px;
  background: #fff;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}
/* line 1877, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .close_privacy:after {
  position: absolute;
  content: '';
  width: 70%;
  height: 2px;
  background: #fff;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}
/* line 1892, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .layout-team-link-img {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  z-index: 0 !important;
  max-width: 43%;
  font-size: 0;
  line-height: 0;
}
/* line 1901, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .layout-team-link-img svg {
  width: 100%;
  height: 100%;
}
/* line 1906, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box {
  position: relative;
}
/* line 1908, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .logo {
  width: 240px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  max-width: 90%;
}
/* line 1915, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .logo path {
  fill: #ffff !important;
}
/* line 1919, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .scroll_box_y {
  padding-left: 15px;
  padding-right: 15px;
  max-height: 30vh;
  overflow-y: auto;
}
/* line 1925, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box p,
.out_privacy_box .in_privacy .in_box a {
  position: relative;
  z-index: 5;
}
/* line 1930, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .h10 {
  color: #ffff;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 40px;
}
/* line 1936, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .h10 a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #C3B8A2;
  border-bottom: solid 1px #C3B8A2;
}
/* line 1942, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .agree_privacy {
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
  padding: 12px;
  color: #C3B8A2;
  display: block;
  border: solid 1px #C3B8A2;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  font-size: 16px;
  line-height: 24px;
  width: 200px;
}
/* line 1958, scss/layouts/pages/_all.scss */
.out_privacy_box .in_privacy .in_box .agree_privacy:hover {
  background: #ffff;
  border: solid 1px #ffff;
  color: #681414;
}
@media screen and (max-width: 700px) {
  /* line 1839, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy {
    max-width: calc(100% - 40px);
    -webkit-border-radius: 45vw 45vw 0 0;
    -moz-border-radius: 45vw 45vw 0 0;
    border-radius: 45vw 45vw 0 0;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 650px) {
  /* line 1839, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy {
    height: auto;
  }
  /* line 1975, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .logo {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  /* line 1979, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .scroll_box_y {
    max-height: calc(100vh - 370px);
  }
}
@media screen and (max-width: 500px) {
  /* line 1839, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy {
    max-width: calc(100% - 80px);
  }
  /* line 1987, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .logo {
    margin-top: 30px;
    margin-bottom: 15px;
    width: 170px;
  }
  /* line 1992, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .h10 {
    font-size: 14px;
    line-height: 30px;
  }
  /* line 1996, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .scroll_box_y {
    max-height: calc(100vh - 480px);
  }
  /* line 1999, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .agree_privacy {
    padding: 8px;
    font-size: 14px;
    line-height: 22px;
    width: 180px;
    margin-top: 28px;
  }
}
@media screen and (max-height: 650px) and (orientation: landscape) {
  /* line 1839, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy {
    max-width: 330px;
    padding: 30px 20px;
  }
  /* line 2013, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .logo {
    margin-top: 30px;
    margin-bottom: 15px;
    width: 140px;
  }
  /* line 2018, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .h10 {
    font-size: 13px;
    line-height: 28px;
  }
  /* line 2022, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .scroll_box_y {
    max-height: calc(100vh - 275px);
  }
  /* line 2025, scss/layouts/pages/_all.scss */
  .out_privacy_box .in_privacy .in_box .agree_privacy {
    font-size: 13px;
    line-height: 21px;
    width: 180px;
    margin-top: 25px;
  }
}

/* line 2038, scss/layouts/pages/_all.scss */
div .slick-dots {
  bottom: -40px;
  font-size: 0;
}
/* line 2041, scss/layouts/pages/_all.scss */
div .slick-dots li {
  width: 18px;
  height: 18px;
  margin: 0 6px;
  margin-bottom: 12px;
}
/* line 2046, scss/layouts/pages/_all.scss */
div .slick-dots li button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  padding: 0;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: .4;
}
/* line 2058, scss/layouts/pages/_all.scss */
div .slick-dots li button:before {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  border: solid 1px #fff;
  color: #0000;
  opacity: 0;
}
/* line 2073, scss/layouts/pages/_all.scss */
div .slick-dots li:hover button {
  opacity: 1;
}
/* line 2075, scss/layouts/pages/_all.scss */
div .slick-dots li:hover button:before {
  opacity: 1;
}
/* line 2081, scss/layouts/pages/_all.scss */
div .slick-dots li:focus button {
  opacity: .4;
}
/* line 2083, scss/layouts/pages/_all.scss */
div .slick-dots li:focus button:before {
  opacity: 0;
}
/* line 2089, scss/layouts/pages/_all.scss */
div .slick-dots li.slick-active button {
  opacity: 1;
}
/* line 2091, scss/layouts/pages/_all.scss */
div .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #0000;
}

/* line 2102, scss/layouts/pages/_all.scss */
.go_top {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 5%;
  bottom: 100%;
  background: #C3B8A2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
  margin-bottom: 33px;
}
/* line 2114, scss/layouts/pages/_all.scss */
.go_top:hover {
  background: #B78830;
}
/* line 2117, scss/layouts/pages/_all.scss */
.go_top:focus {
  background: #C3B8A2;
}
/* line 2119, scss/layouts/pages/_all.scss */
.go_top:focus:hover {
  background: #C3B8A2;
}
/* line 2123, scss/layouts/pages/_all.scss */
.go_top .gotop-button {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 2127, scss/layouts/pages/_all.scss */
.go_top .gotop-button svg,
.go_top .gotop-button img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 10px;
}
@media (max-width: 600px) {
  /* line 2102, scss/layouts/pages/_all.scss */
  .go_top {
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  /* line 2140, scss/layouts/pages/_all.scss */
  .go_top.show_in {
    opacity: 1;
    pointer-events: visible;
  }
}

/* line 2, scss/layouts/pages/_about.scss */
.all_page.about_page {
  padding-bottom: 0;
}

/* line 7, scss/layouts/pages/_about.scss */
.about_top {
  position: relative;
  padding-top: 100px;
  font-size: 0;
  z-index: 4;
}
/* line 12, scss/layouts/pages/_about.scss */
.about_top .about_top_left {
  width: 50%;
  padding-right: 110px;
}
/* line 15, scss/layouts/pages/_about.scss */
.about_top .about_top_left .in_box {
  overflow: hidden;
  -webkit-border-radius: 0 0 240px 0;
  -moz-border-radius: 0 0 240px 0;
  border-radius: 0 0 240px 0;
}
/* line 20, scss/layouts/pages/_about.scss */
.about_top .about_top_right {
  width: 50%;
  position: relative;
}
/* line 23, scss/layouts/pages/_about.scss */
.about_top .about_top_right .in_box {
  padding-right: 40%;
  position: relative;
  padding-bottom: 230px;
}
/* line 27, scss/layouts/pages/_about.scss */
.about_top .about_top_right .in_box > img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 35%;
}
/* line 34, scss/layouts/pages/_about.scss */
.about_top .about_top_right p {
  letter-spacing: 0.1em;
}
/* line 37, scss/layouts/pages/_about.scss */
.about_top .about_top_right .h10 {
  line-height: 40px;
}
@media (max-width: 1550px) {
  /* line 42, scss/layouts/pages/_about.scss */
  .about_top .about_top_left {
    padding-right: 70px;
  }
  /* line 44, scss/layouts/pages/_about.scss */
  .about_top .about_top_left .in_box {
    -webkit-border-radius: 0 0 200px 0;
    -moz-border-radius: 0 0 200px 0;
    border-radius: 0 0 200px 0;
  }
  /* line 49, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box {
    padding-right: 0;
    padding-bottom: 0;
    width: 100%;
  }
  /* line 53, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box p {
    width: 450px;
    max-width: 100%;
  }
  /* line 57, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box img {
    margin-top: 20px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  /* line 68, scss/layouts/pages/_about.scss */
  .about_top .about_top_left {
    padding-right: 45px;
  }
  /* line 70, scss/layouts/pages/_about.scss */
  .about_top .about_top_left .in_box {
    -webkit-border-radius: 0 0 150px 0;
    -moz-border-radius: 0 0 150px 0;
    border-radius: 0 0 150px 0;
  }
}
@media (max-width: 1000px) {
  /* line 76, scss/layouts/pages/_about.scss */
  .about_top .about_top_left {
    padding-right: 30px;
  }
  /* line 78, scss/layouts/pages/_about.scss */
  .about_top .about_top_left .in_box {
    -webkit-border-radius: 0 0 120px 0;
    -moz-border-radius: 0 0 120px 0;
    border-radius: 0 0 120px 0;
  }
}
@media (max-width: 767px) {
  /* line 7, scss/layouts/pages/_about.scss */
  .about_top {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* line 86, scss/layouts/pages/_about.scss */
  .about_top .about_top_left {
    display: block;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  /* line 91, scss/layouts/pages/_about.scss */
  .about_top .about_top_left .in_box {
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
  }
  /* line 95, scss/layouts/pages/_about.scss */
  .about_top .about_top_right {
    display: block;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  /* line 101, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box p {
    width: 100%;
  }
  /* line 104, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box img {
    display: none;
  }
}
@media (max-width: 550px) {
  /* line 7, scss/layouts/pages/_about.scss */
  .about_top {
    padding-top: 30px;
  }
  /* line 112, scss/layouts/pages/_about.scss */
  .about_top .about_top_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 116, scss/layouts/pages/_about.scss */
  .about_top .about_top_right {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 121, scss/layouts/pages/_about.scss */
  .about_top .about_top_right .in_box p br {
    display: none;
  }
}

/* line 131, scss/layouts/pages/_about.scss */
.about_center {
  text-align: center;
  padding-top: 90px;
  position: relative;
}
/* line 135, scss/layouts/pages/_about.scss */
.about_center p.h6 {
  letter-spacing: 0.1em;
}
/* line 138, scss/layouts/pages/_about.scss */
.about_center > .wp1520 {
  position: relative;
  z-index: 3;
  padding-bottom: 38px;
}
/* line 142, scss/layouts/pages/_about.scss */
.about_center > .wp1520 .font-90 {
  line-height: 1em;
  margin-bottom: 38px;
}
/* line 146, scss/layouts/pages/_about.scss */
.about_center > .wp1520:before {
  content: '';
  top: 100%;
  height: 80px;
  width: 2px;
  background: #B78830;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
/* line 158, scss/layouts/pages/_about.scss */
.about_center:before {
  position: absolute;
  display: block;
  content: '';
  background: #F5F3F1;
  width: 100%;
  height: calc(100% + 133px);
  z-index: 1;
  -webkit-border-radius: 0 500px 0 500px;
  -moz-border-radius: 0 500px 0 500px;
  border-radius: 0 500px 0 500px;
  bottom: 0;
  left: 0;
}
/* line 171, scss/layouts/pages/_about.scss */
.about_center .scroll_img {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  text-align: center;
}
/* line 176, scss/layouts/pages/_about.scss */
.about_center .scroll_img .scroll_index {
  position: relative;
  z-index: 3;
  display: block;
  margin: 0 auto;
  max-width: 55%;
}
/* line 183, scss/layouts/pages/_about.scss */
.about_center .scroll_img .scroll_bottom {
  display: block;
  position: relative;
  z-index: 4;
  margin: 0 auto;
  max-width: 28%;
  margin-top: -78px;
  left: -23%;
}
/* line 192, scss/layouts/pages/_about.scss */
.about_center .scroll_img .scroll_left {
  position: absolute;
  left: 0;
  bottom: 20%;
  z-index: 2;
  max-width: 18%;
}
/* line 199, scss/layouts/pages/_about.scss */
.about_center .scroll_img .scroll_right {
  position: absolute;
  right: 0;
  top: 60%;
  z-index: 2;
  max-width: 20%;
}
/* line 207, scss/layouts/pages/_about.scss */
.about_center .scroll_img .scroll_bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  max-width: 90%;
}
@media (max-width: 1550px) {
  /* line 216, scss/layouts/pages/_about.scss */
  .about_center:before {
    -webkit-border-radius: 0 400px 0 400px;
    -moz-border-radius: 0 400px 0 400px;
    border-radius: 0 400px 0 400px;
  }
}
@media (max-width: 1200px) {
  /* line 223, scss/layouts/pages/_about.scss */
  .about_center:before {
    -webkit-border-radius: 0 300px 0 300px;
    -moz-border-radius: 0 300px 0 300px;
    border-radius: 0 300px 0 300px;
    height: calc(100% + 100px);
  }
}
@media (max-width: 1000px) {
  /* line 230, scss/layouts/pages/_about.scss */
  .about_center:before {
    -webkit-border-radius: 0 200px 0 200px;
    -moz-border-radius: 0 200px 0 200px;
    border-radius: 0 200px 0 200px;
    height: calc(100% + 80px);
  }
  /* line 234, scss/layouts/pages/_about.scss */
  .about_center .scroll_img {
    padding-bottom: 200px;
  }
  /* line 236, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_bottom {
    position: absolute;
    margin-top: 0;
    left: 13%;
    top: 90%;
  }
  /* line 242, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_left {
    bottom: 0%;
  }
  /* line 245, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_right {
    top: 80%;
  }
}
@media (max-width: 767px) {
  /* line 131, scss/layouts/pages/_about.scss */
  .about_center {
    padding-top: 80px;
  }
  /* line 252, scss/layouts/pages/_about.scss */
  .about_center:before {
    height: 100%;
    -webkit-border-radius: 0 100px 0 100px;
    -moz-border-radius: 0 100px 0 100px;
    border-radius: 0 100px 0 100px;
  }
  /* line 256, scss/layouts/pages/_about.scss */
  .about_center .scroll_img {
    padding-bottom: 100px;
  }
  /* line 258, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_bottom {
    left: 30px;
  }
  /* line 261, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_left {
    bottom: auto;
    top: 90%;
  }
}
@media (max-width: 575px) {
  /* line 269, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_index {
    max-width: 75%;
  }
  /* line 272, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_bottom {
    left: 30px;
    max-width: 35%;
    top: 80%;
  }
  /* line 277, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_left {
    display: none;
  }
  /* line 280, scss/layouts/pages/_about.scss */
  .about_center .scroll_img .scroll_right {
    display: none;
  }
}

/* line 287, scss/layouts/pages/_about.scss */
.about_bottom {
  padding-top: 105px;
  padding-bottom: 117px;
  overflow: hidden;
  background: url(../styles/images/about/about_bg.webp) right top no-repeat;
}
/* line 292, scss/layouts/pages/_about.scss */
.about_bottom .wp1520 {
  position: relative;
}
/* line 295, scss/layouts/pages/_about.scss */
.about_bottom .solid_title {
  margin-bottom: -1em;
}
@media (max-width: 1650px) {
  /* line 300, scss/layouts/pages/_about.scss */
  .about_bottom .solid_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  /* line 287, scss/layouts/pages/_about.scss */
  .about_bottom {
    padding-top: 65px;
    padding-bottom: 70px;
  }
}
/* line 308, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider {
  position: relative;
  font-size: 0;
  line-height: 0;
  width: 640px;
  margin: 0 auto;
  max-width: 55%;
}
/* line 315, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s {
  position: relative;
  width: 100%;
  font-size: 0;
  z-index: 5;
  transform: translate(-26%, 0);
  -moz-transform: translate(-26%, 0);
  -o-transform: translate(-26%, 0);
  -webkit-transform: translate(-26%, 0);
  pointer-events: none;
}
/* line 322, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text {
  top: 0;
  left: 0;
  position: absolute;
  white-space: nowrap;
  -moz-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  -webkit-transition: left 0.3s ease-in-out;
  -ms-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}
/* line 328, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text > div {
  position: relative;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  font-family: 'Cormorant', "Noto Sans TC", 'Noto Sans SC', sans-serif;
  font-size: 500px;
  line-height: 1em;
  display: inline-block;
  vertical-align: middle;
  -moz-transition: margin-right 0.3s ease-in-out;
  -o-transition: margin-right 0.3s ease-in-out;
  -webkit-transition: margin-right 0.3s ease-in-out;
  -ms-transition: margin-right 0.3s ease-in-out;
  transition: margin-right 0.3s ease-in-out;
}
/* line 338, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text > div span {
  color: #F5F3F1;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  display: inline-block;
}
/* line 344, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text > div:first-child.show_text {
  margin-right: 560px;
}
/* line 346, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text > div:first-child.show_text span {
  color: #681414;
}
/* line 352, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text_s .scroll_text > div.now_show_text span {
  color: #681414;
}
/* line 360, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_img {
  position: relative;
  z-index: 4;
}
/* line 364, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_img .slider_box .imgBox {
  padding-bottom: 62.5%;
}
/* line 369, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_img > .slider_box:first-child {
  overflow: hidden;
  -webkit-border-radius: 0 0 0 150px;
  -moz-border-radius: 0 0 0 150px;
  border-radius: 0 0 0 150px;
}
/* line 374, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_img .slick-list {
  -webkit-border-radius: 0 0 0 150px;
  -moz-border-radius: 0 0 0 150px;
  border-radius: 0 0 0 150px;
}
/* line 378, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about-slick-arrow {
  position: relative;
  z-index: 8;
  margin-top: -46px;
}
/* line 382, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about-slick-arrow .arrow_nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  transform: translate(50%, 50%);
  -moz-transform: translate(50%, 50%);
  -o-transform: translate(50%, 50%);
  -webkit-transform: translate(50%, 50%);
}
/* line 389, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about-slick-arrow .arrow_nav.about-prev {
  margin-bottom: 118px;
}
@media (max-width: 1400px) {
  /* line 389, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow .arrow_nav.about-prev {
    margin-bottom: 90px;
  }
}
@media (max-width: 768px) {
  /* line 389, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow .arrow_nav.about-prev {
    margin-bottom: 65px;
  }
}
/* line 400, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text {
  position: relative;
  z-index: 5;
  margin-left: 80px;
  width: calc(100% - 80px);
  background: #F5F3F1;
  -webkit-border-radius: 100px 0 100px 0;
  -moz-border-radius: 100px 0 100px 0;
  border-radius: 100px 0 100px 0;
}
/* line 407, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .slider_box {
  padding-top: 57px;
  padding-bottom: 46px;
  padding-left: 62px;
  padding-right: 48px;
}
/* line 413, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .title {
  display: block;
  margin-bottom: 10px;
}
/* line 416, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .title .h5 {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 72px);
}
/* line 421, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .title .h9 {
  line-height: 25px;
  display: inline-block;
  vertical-align: middle;
  width: 72px;
  position: relative;
  text-align: right;
  letter-spacing: 0.1em;
}
/* line 429, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .title .h9:after {
  content: '';
  width: 1.5px;
  height: 70%;
  background-color: #333333;
  display: block;
  position: absolute;
  left: 0;
  top: 15%;
}
/* line 442, scss/layouts/pages/_about.scss */
.about_bottom .bottom_slider .about_slider_text .h10 {
  line-height: 32px;
  letter-spacing: 0.1em;
}
@media (max-width: 1600px) {
  /* line 448, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s {
    transform: translate(-23%, 0);
    -moz-transform: translate(-23%, 0);
    -o-transform: translate(-23%, 0);
    -webkit-transform: translate(-23%, 0);
  }
  /* line 451, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div {
    font-size: 450px;
  }
}
@media (max-width: 1400px) {
  /* line 458, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s {
    transform: translate(-19%, 0);
    -moz-transform: translate(-19%, 0);
    -o-transform: translate(-19%, 0);
    -webkit-transform: translate(-19%, 0);
  }
  /* line 461, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div {
    font-size: 400px;
  }
}
@media (max-width: 1200px) {
  /* line 468, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s {
    transform: translate(-15%, 0);
    -moz-transform: translate(-15%, 0);
    -o-transform: translate(-15%, 0);
    -webkit-transform: translate(-15%, 0);
  }
  /* line 471, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div {
    font-size: 300px;
  }
}
@media (max-width: 1150px) {
  /* line 308, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  /* line 481, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s {
    transform: translate(-10%, 0);
    -moz-transform: translate(-10%, 0);
    -o-transform: translate(-10%, 0);
    -webkit-transform: translate(-10%, 0);
    z-index: 7;
  }
  /* line 485, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div {
    font-size: 200px;
    width: 1em;
    text-align: center;
  }
  /* line 493, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text {
    margin-top: -30px;
  }
}
@media (max-width: 800px) {
  /* line 499, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    font-size: 0;
    left: 80px;
    width: calc(100% - 80px);
    text-align: center;
  }
  /* line 507, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow .arrow_nav {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    margin-bottom: 0;
    display: inline-block;
    margin-right: 10px;
  }
  /* line 515, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow .arrow_nav.about-prev {
    margin-bottom: 0;
  }
  /* line 518, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow .arrow_nav.about-next {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  /* line 525, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s {
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 529, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div span {
    color: transparent;
  }
  /* line 533, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text_s .scroll_text > div.now_show_text span {
    color: #B78830;
  }
  /* line 541, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_img .slick-list {
    -webkit-border-radius: 0 0 0 100px;
    -moz-border-radius: 0 0 0 100px;
    border-radius: 0 0 0 100px;
  }
  /* line 545, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about-slick-arrow {
    left: 20px;
    width: calc(100% - 20px);
  }
  /* line 549, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text {
    margin-left: 20px;
    width: calc(100% - 20px);
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 553, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text .slider_box {
    padding-top: 50px;
    padding: 30px;
  }
  /* line 557, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text .title {
    margin-bottom: 20px;
  }
  /* line 559, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text .title .h5 {
    text-align: right;
    display: block;
    width: 100%;
  }
  /* line 564, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text .title .h9 {
    text-align: right;
    display: block;
    width: 100%;
  }
  /* line 568, scss/layouts/pages/_about.scss */
  .about_bottom .bottom_slider .about_slider_text .title .h9:after {
    display: none;
  }
}

/* line 2, scss/layouts/pages/_news.scss */
.all_page.news_page {
  padding-bottom: 0;
}
/* line 4, scss/layouts/pages/_news.scss */
.all_page.news_page:before {
  background: url(../styles/images/news/news_bg.webp) right top no-repeat #ffff;
}

/* line 11, scss/layouts/pages/_news.scss */
.news_top {
  position: relative;
  z-index: 3;
}
/* line 14, scss/layouts/pages/_news.scss */
.news_top .row {
  position: relative;
}
/* line 17, scss/layouts/pages/_news.scss */
.news_top .news_slider {
  padding: 0;
  font-size: 0;
}
@media (max-width: 800px) {
  /* line 17, scss/layouts/pages/_news.scss */
  .news_top .news_slider {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 600px;
  }
}
/* line 27, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_img_slider .title {
  display: none;
  margin-bottom: -25px;
  margin-left: 40px;
  position: relative;
  z-index: 3;
  min-width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 15px;
  background-color: #681414;
  color: #ffff;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  font-weight: 400;
  letter-spacing: 1px;
}
/* line 47, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_img_slider .news-slick-img {
  display: block;
  overflow: hidden;
}
/* line 50, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_img_slider .news-slick-img img {
  transition: all .5s;
}
/* line 53, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_img_slider .news-slick-img .imgBox {
  width: 100%;
  padding-bottom: 115.77%;
}
/* line 58, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_img_slider .news-slick-img:hover img {
  transform: scale(1.05);
}
/* line 65, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 650px;
  padding: 0 30px;
  max-width: 100%;
  text-align: left;
  position: relative;
}
/* line 74, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .title {
  display: inline-block;
  background: #C3B8A2;
  padding: 7px 30px;
  min-width: 160px;
  text-align: center;
  color: #ffff;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  transition: all .5s;
}
/* line 84, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .h6 {
  transition: all .5s;
}
/* line 88, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .h10 {
  letter-spacing: 0.1em;
}
/* line 92, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .slider_box a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* line 102, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .slider_box:hover .title {
  background: #681414;
}
/* line 105, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .slider_box:hover .h6 {
  color: #B78830;
}
/* line 107, scss/layouts/pages/_news.scss */
.news_top .news_slider .news_text_slider .slider_box:hover .h6:after {
  background: #B78830;
}
/* line 114, scss/layouts/pages/_news.scss */
.news_top .news_slider .slick-arrow-box {
  bottom: auto;
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 121, scss/layouts/pages/_news.scss */
.news_top .news_slider .slick-arrow-box .slick-arrow {
  border: 1px solid #C3B8A2;
}
/* line 123, scss/layouts/pages/_news.scss */
.news_top .news_slider .slick-arrow-box .slick-arrow path {
  stroke: #C3B8A2;
  fill: #C3B8A2;
}
/* line 127, scss/layouts/pages/_news.scss */
.news_top .news_slider .slick-arrow-box .slick-arrow:hover {
  border: 1px solid #681414;
}
/* line 129, scss/layouts/pages/_news.scss */
.news_top .news_slider .slick-arrow-box .slick-arrow:hover path {
  stroke: #681414 !important;
  fill: #681414 !important;
}
/* line 137, scss/layouts/pages/_news.scss */
.news_top .news_slider .img_box {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  padding: 0 10px;
}
/* line 143, scss/layouts/pages/_news.scss */
.news_top .news_slider .text_box {
  display: inline-block;
  vertical-align: top;
  width: 60%;
  padding: 0 10px;
  padding-right: 100px;
  text-align: center;
  padding-top: 47px;
  padding-bottom: 47px;
}
@media (max-width: 1400px) {
  /* line 154, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (max-width: 1300px) {
  /* line 160, scss/layouts/pages/_news.scss */
  .news_top .news_slider .img_box {
    width: 45%;
  }
  /* line 163, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    width: 55%;
  }
}
@media (max-width: 1199px) {
  /* line 169, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    padding-right: 10px;
  }
  /* line 171, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider {
    padding-left: 20px;
    width: 100%;
  }
  /* line 175, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box {
    position: relative;
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    padding-left: 20px;
    right: 0;
    margin-top: 30px;
  }
  /* line 183, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box > div {
    display: flex;
  }
  /* line 187, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow.news-prev {
    border-top-right-radius: 0;
    border-bottom-left-radius: 35px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  /* line 199, scss/layouts/pages/_news.scss */
  .news_top .news_slider .img_box {
    width: calc(100% - 450px);
  }
  /* line 202, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    width: 450px;
    padding-top: 20px;
  }
  /* line 205, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider {
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  /* line 211, scss/layouts/pages/_news.scss */
  .news_top .news_slider .img_box {
    width: 50%;
  }
  /* line 214, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    width: 50%;
  }
  /* line 218, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider .h10:not(.title) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 144px;
    text-overflow: ellipsis;
  }
}
@media (max-width: 950px) {
  /* line 228, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box {
    position: absolute;
    right: 0;
    bottom: 35px;
  }
  /* line 232, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow {
    margin-top: 0;
    width: 41px;
    height: 22px;
    z-index: 2;
    border: none;
    position: relative;
  }
}
@media (max-width: 950px) and (max-width: 767px) {
  /* line 232, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow {
    height: 24px;
  }
}
@media (max-width: 950px) {
  /* line 242, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow.news-prev {
    margin-right: 10px;
  }
  /* line 245, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow span {
    width: 100%;
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  /* line 253, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow path {
    fill: #B78830 !important;
    stroke: #B78830 !important;
  }
  /* line 257, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow:hover {
    border: none;
  }
  /* line 259, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .slick-arrow-box .slick-arrow:hover path {
    fill: #B78830 !important;
    stroke: #B78830 !important;
  }
}
@media (max-width: 800px) {
  /* line 269, scss/layouts/pages/_news.scss */
  .news_top .news_slider .img_box {
    width: 100%;
    margin-bottom: 50px;
  }
  /* line 273, scss/layouts/pages/_news.scss */
  .news_top .news_slider .img_box .news_img_slider .title {
    display: inline-block;
  }
  /* line 278, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box {
    width: 100%;
    padding-top: 0;
  }
  /* line 281, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider {
    padding-left: 0;
  }
  /* line 283, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider .h6 {
    padding-left: 30px;
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  /* line 289, scss/layouts/pages/_news.scss */
  .news_top .news_slider .text_box .news_text_slider .title {
    display: none;
  }
}

/* line 300, scss/layouts/pages/_news.scss */
.news_bottom {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 136px;
}
/* line 305, scss/layouts/pages/_news.scss */
.news_bottom:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  height: calc(100% + 185px);
  left: 0;
  bottom: 0;
  background: #F5F3F1;
  -webkit-border-radius: 0 500px 0 0;
  -moz-border-radius: 0 500px 0 0;
  border-radius: 0 500px 0 0;
}
/* line 317, scss/layouts/pages/_news.scss */
.news_bottom .wp1520 {
  position: relative;
  z-index: 2;
}
/* line 322, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row {
  font-size: 0;
  margin-left: -20px;
  margin-right: -20px;
}
/* line 326, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 3);
  margin-bottom: 76px;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 334, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box:nth-child(2n) {
  text-align: center;
}
/* line 337, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box:nth-child(3n) {
  text-align: right;
}
/* line 340, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box {
  display: inline-block;
  width: 442px;
  max-width: 100%;
  text-align: left;
  position: relative;
}
/* line 346, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box a {
  display: block;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* line 355, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .news-slick-img {
  overflow: hidden;
  border-bottom-left-radius: 100px;
}
/* line 358, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .news-slick-img .imgBox {
  width: 100%;
  padding-bottom: 115.77%;
}
/* line 362, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .news-slick-img img {
  transition: all .5s;
}
/* line 366, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box {
  padding-top: 25px;
}
/* line 368, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box .bottom {
  display: block;
  font-size: 0;
  margin-top: 9px;
  padding-left: 35px;
}
@media (max-width: 800px) {
  /* line 368, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom {
    padding-left: 30px;
    margin-top: 5px;
  }
}
/* line 377, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box .bottom p,
.news_bottom .news_list .row .list_box .in_box .text_box .bottom time {
  display: inline-block;
  vertical-align: middle;
}
/* line 381, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box .bottom p:first-child,
.news_bottom .news_list .row .list_box .in_box .text_box .bottom time:first-child {
  padding-right: 35px;
}
/* line 384, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box .bottom p:last-child,
.news_bottom .news_list .row .list_box .in_box .text_box .bottom time:last-child {
  padding-left: 35px;
  position: relative;
  letter-spacing: 0.1em;
}
/* line 388, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box .in_box .text_box .bottom p:last-child:before,
.news_bottom .news_list .row .list_box .in_box .text_box .bottom time:last-child:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  height: 13px;
  width: 1px;
  background: #828282;
}
@media (max-width: 1200px) {
  /* line 400, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom p:first-child,
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 30px;
  }
  /* line 403, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom p:last-child,
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 1000px) {
  /* line 409, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom p:first-child,
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 25px;
  }
  /* line 412, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom p:last-child,
  .news_bottom .news_list .row .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 25px;
  }
}
/* line 423, scss/layouts/pages/_news.scss */
.news_bottom .news_list .row .list_box:hover .in_box .news-slick-img img {
  transform: scale(1.05);
}
@media (max-width: 1920px) {
  /* line 434, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: calc(100% + 9.65vw);
  }
}
@media (max-width: 1400px) {
  /* line 439, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: calc(100% + 110px);
    -webkit-border-radius: 0 400px 0 0;
    -moz-border-radius: 0 400px 0 0;
    border-radius: 0 400px 0 0;
  }
}
@media (max-width: 1300px) {
  /* line 446, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: calc(100% + 80px);
    -webkit-border-radius: 0 300px 0 0;
    -moz-border-radius: 0 300px 0 0;
    border-radius: 0 300px 0 0;
  }
}
@media (max-width: 1199px) {
  /* line 452, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: calc(100% + 50px);
    -webkit-border-radius: 0 200px 0 0;
    -moz-border-radius: 0 200px 0 0;
    border-radius: 0 200px 0 0;
  }
  /* line 458, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box {
    width: 50%;
    text-align: left;
  }
  /* line 461, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box .in_box {
    width: 480px;
  }
  /* line 464, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box:nth-child(3n) {
    text-align: left;
  }
  /* line 467, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box:nth-child(2n) {
    text-align: right;
  }
}
@media (max-width: 992px) {
  /* line 300, scss/layouts/pages/_news.scss */
  .news_bottom {
    padding-top: 80px;
  }
}
@media (max-width: 800px) {
  /* line 300, scss/layouts/pages/_news.scss */
  .news_bottom {
    margin-top: 30px;
  }
  /* line 479, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: 100%;
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
  }
}
@media (max-width: 767px) {
  /* line 300, scss/layouts/pages/_news.scss */
  .news_bottom {
    padding-top: 80px;
  }
  /* line 486, scss/layouts/pages/_news.scss */
  .news_bottom:before {
    height: 100%;
    -webkit-border-radius: 0 80px 0 0;
    -moz-border-radius: 0 80px 0 0;
    border-radius: 0 80px 0 0;
  }
  /* line 492, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box {
    width: 100%;
    text-align: center;
  }
  /* line 495, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box:nth-child(3n) {
    text-align: center;
  }
  /* line 498, scss/layouts/pages/_news.scss */
  .news_bottom .news_list .row .list_box:nth-child(2n) {
    text-align: center;
  }
}

/* line 507, scss/layouts/pages/_news.scss */
.detail_link {
  display: block;
  width: 100%;
  margin-top: 45px;
  text-align: center;
}
/* line 512, scss/layouts/pages/_news.scss */
.detail_link a {
  display: inline-block;
  width: 220px;
  margin: 0 auto;
  margin: 0 7px;
  margin-bottom: 15px;
  font-size: 0;
  text-align: center;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px 10px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  font-size: 16px;
  line-height: 26px;
  color: #ffff;
  background: #C3B8A2;
}
/* line 527, scss/layouts/pages/_news.scss */
.detail_link a svg {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  margin-right: 10px;
}
/* line 533, scss/layouts/pages/_news.scss */
.detail_link a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 26px;
  color: #ffff;
}
/* line 541, scss/layouts/pages/_news.scss */
.detail_link a:hover {
  background: #681414;
}
/* line 544, scss/layouts/pages/_news.scss */
.detail_link a:last-child {
  margin-bottom: 0;
}

/* line 551, scss/layouts/pages/_news.scss */
.detail_page .text_center {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 1800px) {
  /* line 551, scss/layouts/pages/_news.scss */
  .detail_page .text_center {
    font-size: 42px;
    line-height: 60px;
  }
}
/* line 559, scss/layouts/pages/_news.scss */
.detail_page .bottom {
  margin-top: 13px;
  text-align: center;
}
/* line 562, scss/layouts/pages/_news.scss */
.detail_page .bottom p,
.detail_page .bottom time {
  display: inline-block;
  vertical-align: middle;
}
/* line 566, scss/layouts/pages/_news.scss */
.detail_page .bottom p:first-child,
.detail_page .bottom time:first-child {
  padding-right: 35px;
}
/* line 569, scss/layouts/pages/_news.scss */
.detail_page .bottom p:last-child,
.detail_page .bottom time:last-child {
  padding-left: 35px;
  position: relative;
}
/* line 572, scss/layouts/pages/_news.scss */
.detail_page .bottom p:last-child:before,
.detail_page .bottom time:last-child:before {
  content: '';
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 50%;
  height: 13px;
  width: 1px;
  background: #828282;
}
@media (max-width: 1200px) {
  /* line 584, scss/layouts/pages/_news.scss */
  .detail_page .bottom p:first-child,
  .detail_page .bottom time:first-child {
    padding-right: 30px;
  }
  /* line 587, scss/layouts/pages/_news.scss */
  .detail_page .bottom p:last-child,
  .detail_page .bottom time:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 1000px) {
  /* line 593, scss/layouts/pages/_news.scss */
  .detail_page .bottom p:first-child,
  .detail_page .bottom time:first-child {
    padding-right: 25px;
  }
  /* line 596, scss/layouts/pages/_news.scss */
  .detail_page .bottom p:last-child,
  .detail_page .bottom time:last-child {
    padding-left: 25px;
  }
}
/* line 603, scss/layouts/pages/_news.scss */
.detail_page .news_detail {
  background: #F5F3F1;
  padding: 60px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 1500px) {
  /* line 603, scss/layouts/pages/_news.scss */
  .detail_page .news_detail {
    padding: 50px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
  }
}
@media (max-width: 1200px) {
  /* line 603, scss/layouts/pages/_news.scss */
  .detail_page .news_detail {
    padding: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 800px) {
  /* line 603, scss/layouts/pages/_news.scss */
  .detail_page .news_detail {
    padding: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 550px) {
  /* line 603, scss/layouts/pages/_news.scss */
  .detail_page .news_detail {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  /* line 603, scss/layouts/pages/_news.scss */
  .detail_page .news_detail {
    padding: 30px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
}
/* line 629, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 40px;
}
/* line 635, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box a[id] {
  transform: translate(0, -120px);
  -moz-transform: translate(0, -120px);
  -o-transform: translate(0, -120px);
  -webkit-transform: translate(0, -120px);
  display: block;
}
@media (max-width: 1199px) {
  /* line 635, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box a[id] {
    transform: translate(0, -130px);
    -moz-transform: translate(0, -130px);
    -o-transform: translate(0, -130px);
    -webkit-transform: translate(0, -130px);
  }
}
@media (max-width: 600px) {
  /* line 635, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box a[id] {
    transform: translate(0, -20px);
    -moz-transform: translate(0, -20px);
    -o-transform: translate(0, -20px);
    -webkit-transform: translate(0, -20px);
  }
}
/* line 644, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box a[id].gallery_img {
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* line 648, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box.columns_type {
  width: 900px;
}
/* line 652, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .radius_img {
  margin-bottom: 40px;
}
/* line 653, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .radius_img img {
  -webkit-border-radius: 100px 0 0 0;
  -moz-border-radius: 100px 0 0 0;
  border-radius: 100px 0 0 0;
}
/* line 658, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box img {
  margin-bottom: 40px;
}
/* line 660, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box img:last-child {
  margin-bottom: 0;
}
/* line 664, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .gallery_img {
  display: block;
  margin-bottom: 40px;
}
/* line 667, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .gallery_img:last-child {
  margin-bottom: 0;
}
/* line 671, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .scroll_box {
  margin-top: 60px;
}
/* line 675, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box hr {
  border: none;
  padding-top: 63px;
  margin-bottom: 63px;
  border-bottom: solid 1px #828282;
  opacity: .2;
}
/* line 683, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p {
  font-size: 16px;
  line-height: 36px;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 688, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p + .notoSerifTC {
  margin-bottom: 22px;
}
/* line 691, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC {
  font-size: 20px;
  line-height: 36px;
  color: #000000;
}
/* line 695, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC a {
  color: #000000;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* line 699, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC.title {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 38px;
}
/* line 704, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC.title + p:not(.notoSerifTC) {
  margin-bottom: 36px;
}
/* line 710, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC.title2 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 34px;
}
/* line 715, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC.title2 + p:not(.notoSerifTC) {
  margin-bottom: 36px;
}
/* line 720, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC + p {
  margin-bottom: 36px;
}
/* line 724, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC + .notoSerifTC {
  margin-bottom: 22px;
}
/* line 726, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC + .notoSerifTC + ul {
  margin-top: -22px;
}
/* line 729, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box p.notoSerifTC + .notoSerifTC + ol {
  margin-top: -22px;
}
/* line 737, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 48px;
}
/* line 742, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ul li {
  font-size: 16px;
  line-height: 36px;
  position: relative;
  color: #828282;
  letter-spacing: 0.1em;
  padding-left: 26px;
}
/* line 749, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ul li:before {
  content: '';
  position: absolute;
  left: 9px;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  top: 18px;
  height: 4px;
  width: 4px;
  background: #828282;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 761, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ul + hr {
  padding-top: 15px;
}
/* line 765, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ol {
  padding: 0;
  margin: 0;
  margin-bottom: 48px;
  margin-left: 26px;
}
/* line 770, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ol li {
  font-size: 16px;
  line-height: 36px;
  position: relative;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 777, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box ol + hr {
  padding-top: 15px;
}
@media (max-width: 767px) {
  /* line 782, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box img {
    margin-bottom: 20px;
  }
}
/* line 786, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top {
  font-size: 0;
  padding-bottom: 3px;
}
/* line 789, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
/* line 793, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a {
  display: inline-block;
}
/* line 795, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a span {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 804, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a span path {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 807, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a span svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 815, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a p {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
  margin-bottom: 0;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 825, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a:hover p {
  color: #681414;
}
/* line 828, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a:hover span {
  background: #B78830;
}
/* line 830, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .go_back a:hover span path {
  fill: #ffff;
}
/* line 838, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
/* line 843, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 850, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 15px;
}
/* line 860, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a path {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: #000000;
}
/* line 865, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 873, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a:last-child svg {
  width: 18px;
}
/* line 877, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a:hover {
  background: #B78830;
}
/* line 879, scss/layouts/pages/_news.scss */
.detail_page .news_detail .in_box .detail_top .share_box a:hover path {
  fill: #ffff;
}
@media (max-width: 900px) {
  /* line 889, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .go_back a span {
    width: 40px;
    height: 40px;
  }
  /* line 893, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .go_back a p {
    padding-left: 10px;
  }
  /* line 899, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .share_box a {
    margin-left: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 500px) {
  /* line 786, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  /* line 910, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .go_back {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 100%;
    margin-bottom: 35px;
  }
  /* line 917, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .go_back a span {
    border: 1px solid #F5F3F1;
  }
  /* line 922, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .share_box {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 550px) {
  /* line 928, scss/layouts/pages/_news.scss */
  .detail_page .news_detail .in_box .detail_top .go_back {
    display: none;
  }
}
/* line 938, scss/layouts/pages/_news.scss */
.detail_page .post_list {
  position: relative;
  font-size: 0;
  width: 1212px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
/* line 945, scss/layouts/pages/_news.scss */
.detail_page .post_list .menu_link {
  display: inline-block;
  vertical-align: middle;
  width: 52px;
  text-align: center;
}
/* line 950, scss/layouts/pages/_news.scss */
.detail_page .post_list .menu_link path {
  transition: all .5s ease;
}
/* line 953, scss/layouts/pages/_news.scss */
.detail_page .post_list .menu_link p {
  margin-top: 12px;
  font-weight: 500;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 959, scss/layouts/pages/_news.scss */
.detail_page .post_list .menu_link:hover path {
  fill: #B78830 !important;
  stroke: #B78830 !important;
}
/* line 963, scss/layouts/pages/_news.scss */
.detail_page .post_list .menu_link:hover p {
  color: #B78830;
}
/* line 969, scss/layouts/pages/_news.scss */
.detail_page .post_list div {
  display: inline-block;
  vertical-align: middle;
  width: calc(50% - 26px);
}
/* line 973, scss/layouts/pages/_news.scss */
.detail_page .post_list div:first-child {
  text-align: left;
}
/* line 976, scss/layouts/pages/_news.scss */
.detail_page .post_list div:last-child {
  text-align: right;
}
/* line 979, scss/layouts/pages/_news.scss */
.detail_page .post_list div a {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 70px);
  transition: none;
}
/* line 984, scss/layouts/pages/_news.scss */
.detail_page .post_list div a.text {
  padding: 0 30px;
}
/* line 986, scss/layouts/pages/_news.scss */
.detail_page .post_list div a.text .color3 {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1em;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  /* line 992, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text .h8 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 28px;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 992px) {
  /* line 997, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text .h8 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 30px;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 1400px) {
  /* line 984, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 984, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text {
    padding: 0 15px;
  }
  /* line 1006, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text .color3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
  }
  /* line 1011, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.text .h8 {
    display: none;
  }
}
/* line 1017, scss/layouts/pages/_news.scss */
.detail_page .post_list div a.icon {
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  -webkit-transition: border 0.3s ease-in-out;
  -ms-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  position: relative;
  width: 70px;
  line-height: 70px;
  height: 70px;
  border: solid 1px #C3B8A2;
  color: #C3B8A2;
  text-decoration: none;
}
/* line 1029, scss/layouts/pages/_news.scss */
.detail_page .post_list div a.icon path {
  transition: all .5s ease;
}
/* line 1032, scss/layouts/pages/_news.scss */
.detail_page .post_list div a.icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 23px;
}
@media screen and (max-width: 767px) {
  /* line 979, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a {
    width: calc(100% - 40px);
  }
  /* line 1044, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.icon {
    width: 40px;
    height: 40px;
  }
  /* line 1047, scss/layouts/pages/_news.scss */
  .detail_page .post_list div a.icon svg {
    width: 20px;
  }
}
/* line 1055, scss/layouts/pages/_news.scss */
.detail_page .post_list div:hover a.icon {
  border: 1px solid #B78830;
}
/* line 1057, scss/layouts/pages/_news.scss */
.detail_page .post_list div:hover a.icon path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
/* line 1062, scss/layouts/pages/_news.scss */
.detail_page .post_list div:hover a .color3 {
  color: #B78830;
}
@media screen and (max-width: 380px) {
  /* line 1069, scss/layouts/pages/_news.scss */
  .detail_page .post_list .menu_link {
    display: none;
  }
  /* line 1072, scss/layouts/pages/_news.scss */
  .detail_page .post_list div {
    width: 50%;
  }
}

/* line 5, scss/layouts/pages/_locations.scss */
.all_page .all_top_nav.locations_page .all_nav {
  width: 100%;
}
@media (max-width: 1199px) {
  /* line 5, scss/layouts/pages/_locations.scss */
  .all_page .all_top_nav.locations_page .all_nav {
    top: auto;
    position: relative;
  }
}
@media (max-width: 950px) {
  /* line 5, scss/layouts/pages/_locations.scss */
  .all_page .all_top_nav.locations_page .all_nav {
    width: 610px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* line 24, scss/layouts/pages/_locations.scss */
.locations_bottom {
  padding-top: 10px;
}
@media (max-width: 950px) {
  /* line 24, scss/layouts/pages/_locations.scss */
  .locations_bottom {
    padding-top: 0;
  }
}
/* line 29, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list {
  padding: 0;
}
/* line 31, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: stretch;
}
/* line 42, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:before {
  position: absolute;
  display: block;
  top: 0;
  content: '';
  width: calc(70% - 20px);
  background: #F5F3F1;
  height: 100%;
}
/* line 51, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box {
  z-index: 5;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  padding: 0 10px;
  height: auto;
}
/* line 62, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box > div {
  width: 100%;
}
/* line 65, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .hide_img {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  display: block;
}
/* line 71, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .hide_img .imgBox {
  width: 100%;
  padding-bottom: 59.73%;
  min-height: 100%;
}
/* line 76, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .hide_img img {
  transition: all .5s;
}
/* line 80, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  display: none;
}
/* line 89, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div {
  display: flex;
  position: absolute;
  left: calc(50% + 50px);
  bottom: 0;
  transform: translate(0, 50%);
  -moz-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
}
/* line 95, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav {
  position: relative;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  pointer-events: visible;
}
/* line 99, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav span {
  width: 80px;
  height: 80px;
}
/* line 102, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav span svg {
  width: 26px;
}
/* line 108, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations-slick-arrow .locations-prev {
  margin-right: 12px;
}
/* line 112, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider {
  width: 100%;
  position: relative;
  z-index: 6;
  overflow: hidden;
}
/* line 117, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slick-dots {
  bottom: 13px;
}
/* line 120, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider.slick-slider {
  overflow: inherit;
}
/* line 123, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slick-list {
  height: 100%;
}
/* line 126, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slick-track {
  height: 100%;
}
/* line 130, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slider_box .in_hide_img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}
/* line 135, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slider_box .in_hide_img .imgBox {
  width: 100%;
  padding-bottom: 59.73%;
  min-height: 100%;
}
/* line 140, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slider_box .in_hide_img img {
  transition: all .5s;
  width: 100%;
}
/* line 146, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider .slider_box .in_hide_img:hover img {
  transform: scale(1.05);
}
/* line 154, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider_text {
  width: 100%;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 100%;
}
/* line 160, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider_text .slick-list {
  overflow: inherit;
}
/* line 164, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p {
  display: inline-block;
  position: relative;
  padding: 10px 0;
  margin-left: calc(((100% + 20px) / 6) + 10px);
  width: calc((100% + 20px) / 3);
  z-index: 3;
  letter-spacing: 0.1em;
}
/* line 172, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p:before {
  content: '';
  left: -20px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #681414;
  display: block;
  position: absolute;
}
/* line 182, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p:after {
  content: '';
  left: -20px;
  bottom: 100%;
  width: 1px;
  height: 50px;
  background: #F5F3F1;
  display: block;
  position: absolute;
}
@media (max-width: 1200px) {
  /* line 197, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div {
    left: 50%;
    transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
  }
  /* line 202, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .locations-prev {
    margin-right: 10px;
  }
  /* line 206, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav span {
    width: 60px;
    height: 60px;
  }
  /* line 209, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav span svg {
    width: 20px;
  }
  /* line 218, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 950px) {
  /* line 227, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow {
    position: relative;
    height: auto;
  }
  /* line 232, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text {
    position: relative;
  }
  /* line 235, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p {
    display: none;
    position: absolute;
    width: auto;
    max-width: calc(100% - 230px);
    left: 0;
    bottom: 20px;
    margin-left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
  }
  /* line 246, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p:before {
    left: 0;
    display: none;
  }
  /* line 250, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p:after {
    left: 0;
    display: none;
  }
}
@media (max-width: 650px) {
  /* line 263, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div .arrow_nav span {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 550px) {
  /* line 274, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p {
    max-width: calc(100% - 100px);
  }
}
@media (max-width: 450px) {
  /* line 283, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations-slick-arrow > div {
    right: 20px;
  }
  /* line 289, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box .locations_slider_text .slider_box p {
    max-width: calc(100% - 80px);
  }
}
/* line 300, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:hover .img_box .hide_img img {
  transform: scale(1.05);
}
/* line 306, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box {
  z-index: 4;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  height: auto;
}
/* line 319, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box {
  width: 475px;
  max-width: 100%;
  padding: 0 30px;
}
/* line 323, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date {
  position: relative;
}
/* line 325, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > p,
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > h3 {
  padding-right: 70px;
}
/* line 328, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > p.h6_2,
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > h3.h6_2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
}
/* line 334, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > a {
  position: absolute;
  right: 0;
  top: 7px;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #681414;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 343, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 351, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date > a:hover {
  background: #B78830;
}
/* line 356, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date p {
  letter-spacing: 0.1em;
}
/* line 359, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date ul {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 0;
}
/* line 363, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date ul li {
  padding-left: 73px;
  position: relative;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 368, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date ul li span {
  font-size: 16px;
  line-height: 36px;
  color: #828282;
  position: absolute;
  width: 54px;
  left: 0;
  top: 0;
}
/* line 376, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date ul li span:before {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  content: '';
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 1px;
  background: #828282;
  height: 12px;
}
/* line 389, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .top_date ul li a {
  color: #828282;
  font-size: 16px;
  line-height: 36px;
}
/* line 397, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link {
  display: block;
  width: calc(100% + 14px);
  font-size: 0;
  margin-left: -7px;
  margin-right: -7px;
}
/* line 403, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 14px);
  margin-right: 7px;
  margin-left: 7px;
  background: #ffff;
  padding: 16px 0;
  margin-top: 15px;
  text-align: center;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
/* line 415, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a svg {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 420, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a svg path {
  fill: #C3B8A2 !important;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 425, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a span {
  padding-left: 10px;
  font-size: 16px;
  line-height: 16px;
  color: #C3B8A2;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.1em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 434, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a span.mob {
  display: none;
}
/* line 439, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a:hover {
  background: #681414;
}
/* line 441, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a:hover svg {
  transform: translate(-1.5px, 0);
  -moz-transform: translate(-1.5px, 0);
  -o-transform: translate(-1.5px, 0);
  -webkit-transform: translate(-1.5px, 0);
}
/* line 444, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a:hover span {
  transform: translate(1.5px, 0);
  -moz-transform: translate(1.5px, 0);
  -o-transform: translate(1.5px, 0);
  -webkit-transform: translate(1.5px, 0);
}
/* line 449, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a:nth-child(2n) {
  margin-right: 0;
}
/* line 458, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(odd):before {
  right: 10px;
  -webkit-border-radius: 300px 0 300px 0;
  -moz-border-radius: 300px 0 300px 0;
  border-radius: 300px 0 300px 0;
}
/* line 463, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(odd) .img_box .hide_img {
  -webkit-border-radius: 0 100px 0 100px;
  -moz-border-radius: 0 100px 0 100px;
  border-radius: 0 100px 0 100px;
}
/* line 466, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider {
  -webkit-border-radius: 0 100px 0 100px;
  -moz-border-radius: 0 100px 0 100px;
  border-radius: 0 100px 0 100px;
}
/* line 468, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider .slick-list {
  -webkit-border-radius: 0 100px 0 100px;
  -moz-border-radius: 0 100px 0 100px;
  border-radius: 0 100px 0 100px;
}
/* line 473, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
  padding-right: 60px;
}
/* line 479, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even):before {
  left: 10px;
  -webkit-border-radius: 0 300px 0 300px;
  -moz-border-radius: 0 300px 0 300px;
  border-radius: 0 300px 0 300px;
}
/* line 483, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even) .img_box {
  left: 40%;
}
/* line 485, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even) .img_box .hide_img {
  -webkit-border-radius: 100px 0 100px 0;
  -moz-border-radius: 100px 0 100px 0;
  border-radius: 100px 0 100px 0;
}
/* line 488, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider {
  -webkit-border-radius: 100px 0 100px 0;
  -moz-border-radius: 100px 0 100px 0;
  border-radius: 100px 0 100px 0;
}
/* line 490, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider .slick-list {
  -webkit-border-radius: 100px 0 100px 0;
  -moz-border-radius: 100px 0 100px 0;
  border-radius: 100px 0 100px 0;
}
/* line 496, scss/layouts/pages/_locations.scss */
.locations_bottom .type_list .locations_box:nth-child(even) .text_box {
  right: 60%;
  padding-left: 60px;
}
@media (max-width: 1600px) {
  /* line 504, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
    padding-right: 40px;
  }
  /* line 510, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    padding-left: 40px;
  }
}
@media (max-width: 1400px) {
  /* line 517, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
    padding-right: 20px;
  }
  /* line 523, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    padding-left: 20px;
  }
}
@media (max-width: 1300px) {
  /* line 31, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* line 532, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box {
    width: calc(100% - 465px);
  }
  /* line 535, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box {
    width: 465px;
  }
  /* line 539, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .top_date > p {
    padding-right: 60px;
  }
  /* line 542, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .top_date > a {
    top: 7px;
    width: 50px;
    height: 50px;
  }
  /* line 549, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a {
    padding: 12px 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
  }
  /* line 552, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a span {
    padding-left: 8px;
    font-size: 15px;
    line-height: 15px;
  }
  /* line 563, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd):before {
    -webkit-border-radius: 150px 0 150px 0;
    -moz-border-radius: 150px 0 150px 0;
    border-radius: 150px 0 150px 0;
  }
  /* line 567, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .hide_img {
    -webkit-border-radius: 0 80px 0 80px;
    -moz-border-radius: 0 80px 0 80px;
    border-radius: 0 80px 0 80px;
  }
  /* line 570, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider {
    -webkit-border-radius: 0 80px 0 80px;
    -moz-border-radius: 0 80px 0 80px;
    border-radius: 0 80px 0 80px;
  }
  /* line 572, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider .slick-list {
    -webkit-border-radius: 0 80px 0 80px;
    -moz-border-radius: 0 80px 0 80px;
    border-radius: 0 80px 0 80px;
  }
  /* line 577, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
    padding-right: 10px;
  }
  /* line 579, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box .in_box {
    padding-right: 50px;
    padding-left: 15px;
  }
  /* line 587, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even):before {
    -webkit-border-radius: 0 150px 0 150px;
    -moz-border-radius: 0 150px 0 150px;
    border-radius: 0 150px 0 150px;
  }
  /* line 591, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .hide_img {
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 594, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider {
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 596, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider .slick-list {
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 602, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box {
    left: 465px;
  }
  /* line 605, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    right: calc(100% - 465px);
  }
  /* line 607, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box .in_box {
    padding-left: 50px;
    padding-right: 15px;
  }
}
@media (max-width: 1000px) {
  /* line 616, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box {
    width: 50%;
  }
  /* line 619, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box {
    width: 50%;
  }
  /* line 624, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box {
    left: 50%;
  }
  /* line 627, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    right: 50%;
  }
}
@media (max-width: 950px) {
  /* line 31, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box {
    padding-top: 0;
    padding-bottom: 0;
    width: 630px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 85px;
    display: block;
  }
  /* line 643, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:before {
    display: none;
  }
  /* line 646, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box {
    width: 100%;
    display: block;
  }
  /* line 649, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .img_box:before {
    z-index: 1;
    position: absolute;
    content: '';
    width: calc(100% - 20px);
    height: 50%;
    top: 50%;
    left: 10px;
    background: #F5F3F1;
  }
  /* line 660, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box {
    width: 100%;
    padding: 45px 0;
    display: block;
  }
  /* line 664, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box {
    position: relative;
    z-index: 5;
    width: 100%;
  }
  /* line 669, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box:before {
    z-index: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 10px;
    content: '';
    width: calc(100% - 20px);
    height: calc(100% + 40px);
    background: #F5F3F1;
    -webkit-border-radius: 0 0 80px 0;
    -moz-border-radius: 0 0 80px 0;
    border-radius: 0 0 80px 0;
  }
  /* line 684, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .hide_img {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 687, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 689, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .img_box .locations_slider .slick-list {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 694, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
    padding-left: 40px;
    padding-right: 40px;
  }
  /* line 697, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box .in_box {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 704, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box {
    left: auto;
  }
  /* line 706, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .hide_img {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 709, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 711, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .img_box .locations_slider .slick-list {
    -webkit-border-radius: 0 60px 0 0;
    -moz-border-radius: 0 60px 0 0;
    border-radius: 0 60px 0 0;
  }
  /* line 716, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  /* line 720, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box .in_box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /* line 31, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box {
    margin-bottom: 60px;
  }
  /* line 733, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .top_date > p.h6_2 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 450px) {
  /* line 743, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* line 749, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a svg {
    width: 18px;
  }
  /* line 753, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a span.pc {
    display: none;
  }
  /* line 756, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .bottom_link a span.mob {
    display: inline-block;
  }
  /* line 765, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(odd) .text_box {
    padding: 30px;
  }
  /* line 770, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box:nth-child(even) .text_box {
    padding: 30px;
  }
}
@media (max-width: 425px) {
  /* line 780, scss/layouts/pages/_locations.scss */
  .locations_bottom .type_list .locations_box .text_box .in_box .top_date > p.h6_2 {
    font-size: 22px;
    line-height: 32px;
  }
}

/* line 795, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .breadcrumbs {
  text-align: right;
  padding-top: 15px;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  /* line 795, scss/layouts/pages/_locations.scss */
  .detail_page .locations_detail .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}
/* line 805, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-bottom: 30px;
  margin-top: -15px;
}
/* line 811, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a {
  display: inline-block;
}
/* line 813, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a span {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #F5F3F1;
}
/* line 823, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a span path {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 826, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a span svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 834, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a p {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
  margin-bottom: 0;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 844, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a:hover p {
  color: #681414;
}
/* line 847, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a:hover span {
  background: #B78830;
}
/* line 849, scss/layouts/pages/_locations.scss */
.detail_page .locations_detail .go_back a:hover span path {
  fill: #ffff;
}
@media (max-width: 900px) {
  /* line 857, scss/layouts/pages/_locations.scss */
  .detail_page .locations_detail .go_back a span {
    width: 40px;
    height: 40px;
  }
  /* line 861, scss/layouts/pages/_locations.scss */
  .detail_page .locations_detail .go_back a p {
    padding-left: 10px;
  }
}
@media (max-width: 500px) {
  /* line 868, scss/layouts/pages/_locations.scss */
  .detail_page .locations_detail .go_back a span {
    border: 1px solid #F5F3F1;
  }
}
@media (max-width: 550px) {
  /* line 805, scss/layouts/pages/_locations.scss */
  .detail_page .locations_detail .go_back {
    display: none;
  }
}
/* line 878, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom {
  text-align: center;
}
/* line 880, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom > .font-42 {
  font-weight: 500;
  letter-spacing: 0.1em;
}
/* line 884, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom > .Cormorant {
  margin-top: 28px;
  margin-bottom: -47px;
  display: block;
  width: 100%;
  text-align: center;
  height: 250px;
  overflow: hidden;
  position: relative;
}
/* line 893, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom > .Cormorant span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 250px;
  line-height: 1em;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #F5F3F1;
}
@media (max-width: 1350px) {
  /* line 884, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom > .Cormorant {
    margin-top: 15px;
    height: 19vw;
    margin-bottom: -3.7vw;
  }
  /* line 907, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom > .Cormorant span {
    font-size: 19vw;
  }
}
/* line 912, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg {
  background: #F5F3F1;
  padding-bottom: 176px;
}
@media (max-width: 1300px) {
  /* line 912, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg {
    padding-bottom: 140px;
  }
}
@media (max-width: 1000px) {
  /* line 912, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  /* line 912, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg {
    padding-bottom: 60px;
  }
}
/* line 924, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg p {
  letter-spacing: 0.1em;
}
/* line 927, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .location_title {
  padding-bottom: 25px;
  margin-bottom: 40px;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.1em;
}
/* line 933, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .location_title:before {
  position: absolute;
  display: block;
  left: 50%;
  top: 100%;
  content: '';
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 50px;
  background: #681414;
  height: 2px;
}
@media (max-width: 1000px) {
  /* line 927, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .location_title {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
/* line 950, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg iframe {
  margin-top: 30px;
  width: 100%;
  height: 400px;
  border: none;
}
/* line 956, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction {
  font-size: 0;
  width: 1367px;
  text-align: center;
  padding-top: 20px;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 100%;
}
/* line 964, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction .attraction_box {
  padding: 0 19px;
  display: inline-block;
  vertical-align: top;
  width: 20%;
  min-width: 240px;
  margin-bottom: 50px;
}
/* line 971, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction .attraction_box .img_icon {
  margin: 0 auto;
  margin-bottom: 29px;
  width: 150px;
  height: 150px;
  border: solid 1px #C3B8A2;
  background: #ffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
/* line 980, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction .attraction_box .img_icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  max-width: 65%;
}
/* line 989, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction .attraction_box p {
  letter-spacing: 0.1em;
}
/* line 992, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .attraction .attraction_box .notoSerifTC {
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 1300px) {
  /* line 997, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .attraction .attraction_box .img_icon {
    margin-bottom: 23px;
  }
}
@media (max-width: 1050px) {
  /* line 1002, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .attraction .attraction_box .img_icon {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }
  /* line 1007, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .attraction .attraction_box .notoSerifTC {
    margin-bottom: 8px;
  }
}
@media (max-width: 550px) {
  /* line 964, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .attraction .attraction_box {
    width: 50%;
    min-width: inherit;
  }
}
@media (max-width: 360px) {
  /* line 964, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .attraction .attraction_box {
    width: 100%;
  }
}
/* line 1022, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg {
  background: #ffff;
  padding: 80px 60px;
  padding-bottom: 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
@media (max-width: 650px) {
  /* line 1022, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg {
    padding: 40px 20px;
    padding-bottom: 20px;
  }
}
/* line 1031, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container {
  padding-top: 20px;
  text-align: center;
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
}
/* line 1037, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation {
  padding: 60px 0;
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
  font-size: 0;
}
/* line 1041, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation:first-child {
  padding-top: 0;
}
/* line 1044, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation:last-child {
  border-bottom: none;
}
/* line 1047, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon {
  width: 27.273%;
  display: inline-block;
  vertical-align: middle;
}
/* line 1051, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon .img_icon {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  background: #F5F3F1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
/* line 1058, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon .img_icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  max-width: 65%;
}
/* line 1068, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date {
  width: 72.727%;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
/* line 1073, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date p {
  letter-spacing: 0.1em;
  margin-bottom: 13px;
  font-weight: 500;
}
/* line 1078, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date ul {
  list-style: none;
  padding-left: 0;
  width: 855px;
  max-width: 100%;
}
/* line 1083, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date ul li {
  position: relative;
  padding-left: 25px;
  letter-spacing: 0.1em;
  color: #828282;
}
/* line 1088, scss/layouts/pages/_locations.scss */
.detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date ul li:before {
  position: absolute;
  display: block;
  left: 10px;
  top: 16px;
  width: 4px;
  height: 4px;
  background: #828282;
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 1050px) {
  /* line 1105, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon {
    width: 150px;
  }
  /* line 1107, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon .img_icon {
    margin-left: 0;
    width: 120px;
    height: 120px;
  }
  /* line 1113, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date {
    width: calc(100% - 150px);
  }
  /* line 1115, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date p {
    margin-bottom: 8px;
  }
}
@media (max-width: 650px) {
  /* line 1122, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  /* line 1126, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .icon .img_icon {
    margin: 0 auto;
  }
  /* line 1130, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date {
    width: 100%;
  }
  /* line 1132, scss/layouts/pages/_locations.scss */
  .detail_page .location_bottom .location_bg .white_bg .in_container .transportation .date p {
    text-align: center;
  }
}

/* line 2, scss/layouts/pages/_doctors.scss */
.doctor_list .row {
  font-size: 0;
  margin-left: -20px;
  margin-right: -20px;
}
/* line 6, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 3);
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 14, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box:nth-child(2n) {
  text-align: center;
}
/* line 17, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box:nth-child(3n) {
  text-align: right;
}
/* line 20, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box {
  display: inline-block;
  width: 442px;
  max-width: 100%;
  text-align: left;
  position: relative;
}
/* line 26, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}
/* line 35, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img {
  position: relative;
  z-index: 1;
}
/* line 38, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85%;
  max-height: 500px;
  background: #F5F3F1;
  z-index: 2;
  -webkit-border-radius: 160px 0 160px 0;
  -moz-border-radius: 160px 0 160px 0;
  border-radius: 160px 0 160px 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 51, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img .imgBox {
  position: relative;
  z-index: 3;
  padding-bottom: 132.57%;
  overflow: hidden;
}
/* line 56, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img .imgBox img {
  -o-object-fit: contain;
  object-fit: contain;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 61, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img .imgBox .hover_out {
  opacity: 1;
  top: 0;
}
/* line 65, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img .imgBox .hover_in {
  opacity: 0;
  top: 10%;
}
/* line 71, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .doctor-img > img {
  position: relative;
  z-index: 3;
}
/* line 76, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .text_box {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 3;
  margin-top: -83px;
  -webkit-border-radius: 0 60px 0 60px;
  -moz-border-radius: 0 60px 0 60px;
  border-radius: 0 60px 0 60px;
  position: relative;
  background: #ffff;
  width: 360px;
  padding: 38px 40px;
  max-width: 85%;
  top: 0px;
}
/* line 87, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .text_box p, .doctor_list .row .list_box .in_box .text_box h3 {
  margin-bottom: 11px;
  letter-spacing: 0.1em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 92, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .text_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 96, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .text_box ul li {
  position: relative;
  color: #828282;
  padding-left: 19px;
  letter-spacing: 0.1em;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 102, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box .text_box ul li:before {
  content: '';
  position: absolute;
  background: #828282;
  display: block;
  width: 4px;
  height: 4px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 6px;
  top: 18px;
}
/* line 121, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .doctor-img .imgBox .hover_out {
  opacity: 0;
  top: 10%;
}
/* line 125, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .doctor-img .imgBox .hover_in {
  opacity: 1;
  top: 0;
}
/* line 131, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .text_box {
  position: relative;
  top: -10px;
  background: #681414;
}
/* line 135, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .text_box p, .doctor_list .row .list_box .in_box:hover .text_box h3 {
  color: #ffff;
}
/* line 139, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .text_box ul li {
  color: #C3B8A2;
}
/* line 141, scss/layouts/pages/_doctors.scss */
.doctor_list .row .list_box .in_box:hover .text_box ul li:before {
  background: #C3B8A2;
}
@media (max-width: 1199px) {
  /* line 154, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box {
    width: 50%;
    text-align: left;
    margin-bottom: 30px;
  }
  /* line 158, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box:nth-child(3n) {
    text-align: left;
  }
  /* line 161, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box:nth-child(2n) {
    text-align: right;
  }
}
@media (max-width: 767px) {
  /* line 171, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box {
    width: 100%;
    text-align: center;
  }
  /* line 174, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box:nth-child(3n) {
    text-align: center;
  }
  /* line 177, scss/layouts/pages/_doctors.scss */
  .doctor_list .row .list_box:nth-child(2n) {
    text-align: center;
  }
}

/* line 187, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_detail .breadcrumbs {
  text-align: right;
  padding-top: 15px;
  padding-bottom: 37px;
}
@media (max-width: 1199px) {
  /* line 187, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_detail .breadcrumbs {
    padding-bottom: 30px;
  }
}
@media (max-width: 1050px) {
  /* line 187, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_detail .breadcrumbs {
    text-align: center;
  }
}
@media (max-width: 600px) {
  /* line 187, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_detail .breadcrumbs {
    padding-bottom: 10px;
  }
}
@media (max-width: 550px) {
  /* line 187, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_detail .breadcrumbs {
    margin-bottom: 10px;
  }
}
/* line 207, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom {
  font-size: 0;
}
/* line 209, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .row {
  position: relative;
}
/* line 212, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top {
  top: 12px;
  z-index: 5;
  font-size: 0;
  position: absolute;
  width: 70%;
  padding: 0 10px;
  left: 30%;
}
/* line 220, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
/* line 224, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a {
  display: inline-block;
}
/* line 226, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a span {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: solid 1px #F5F3F1;
}
/* line 236, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a span path {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 239, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a span svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 247, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a p {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
  margin-bottom: 0;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 257, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a:hover p {
  color: #681414;
}
/* line 260, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a:hover span {
  background: #B78830;
}
/* line 262, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .go_back a:hover span path {
  fill: #ffff;
}
/* line 270, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
/* line 275, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 282, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffff;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 15px;
  border: solid 1px #F5F3F1;
}
/* line 293, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a path {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: #000000;
}
/* line 298, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 306, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a:last-child svg {
  width: 18px;
}
/* line 310, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a:hover {
  background: #B78830;
}
/* line 312, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .nav_top .share_box a:hover path {
  fill: #ffff;
}
@media (max-width: 900px) {
  /* line 322, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .go_back a span {
    width: 40px;
    height: 40px;
  }
  /* line 326, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .go_back a p {
    padding-left: 10px;
  }
  /* line 332, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .share_box a {
    margin-left: 10px;
    width: 40px;
    height: 40px;
  }
}
/* line 341, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin-bottom: 20px;
}
/* line 347, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box {
  position: relative;
}
/* line 349, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 88px);
  background: #F5F3F1;
  z-index: 2;
  -webkit-border-radius: 160px 0 0 0;
  -moz-border-radius: 160px 0 0 0;
  border-radius: 160px 0 0 0;
}
/* line 360, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box .doctor-img {
  overflow: hidden;
}
/* line 362, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box .doctor-img .in_img {
  position: relative;
  width: 116%;
  margin-left: -8%;
}
/* line 368, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box .imgBox {
  position: relative;
  z-index: 3;
  margin-bottom: -17.5%;
  padding-bottom: 132.57%;
}
/* line 373, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box .imgBox img {
  -o-object-fit: contain;
  object-fit: contain;
}
/* line 378, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .in_box > img {
  position: relative;
  z-index: 3;
  margin-bottom: -17.5%;
}
/* line 384, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .left_img .h6 {
  letter-spacing: 0.1em;
  margin-top: 17px;
  margin-bottom: 5px;
}
/* line 390, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 70%;
  padding-top: 88px;
}
/* line 396, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .in_box {
  padding-left: 42px;
  padding-right: 55px;
  padding-top: 17px;
  padding-bottom: 40px;
  position: relative;
  -webkit-border-radius: 0 160px 0 0;
  -moz-border-radius: 0 160px 0 0;
  border-radius: 0 160px 0 0;
  background: #F5F3F1;
  z-index: 2;
  margin-bottom: 46px;
}
/* line 409, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .post_list div {
  width: 50%;
}
/* line 414, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box {
  display: block;
  width: 100%;
  padding: 62px 25px;
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
}
/* line 419, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box p {
  margin-bottom: 20px;
}
/* line 422, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box .expertise-class-box {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}
/* line 427, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class {
  width: 170px;
  margin-right: 6px;
  margin-left: 6px;
  margin-top: 12px;
  text-align: center;
  border: 1px solid #C3B8A2;
  border-radius: 40px;
  padding: 12px 15px;
  transition: all .5s ease;
  background-color: #FFF;
  text-decoration: none !important;
  color: #C3B8A2;
  font-size: 16px;
  letter-spacing: 0.1em;
}
/* line 442, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class .expertise-class-p {
  font-size: 16px;
  color: #C3B8A2;
  position: relative;
  transition: all .5s ease;
  display: inline-block;
  letter-spacing: 0.1em;
}
/* line 460, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class:hover {
  background-color: #B78830;
  border: 1px solid #B78830;
  color: #ffff;
}
/* line 464, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class:hover .expertise-class-p {
  color: #FFF;
}
/* line 475, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .two_box {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 62px 25px;
}
/* line 480, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .two_box p {
  margin-bottom: 20px;
}
/* line 483, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .two_box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 487, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .two_box ul li {
  position: relative;
  color: #828282;
  padding-left: 19px;
  letter-spacing: 0.1em;
}
/* line 492, scss/layouts/pages/_doctors.scss */
.detail_page .doctor_bottom .right_date .two_box ul li:before {
  content: '';
  position: absolute;
  background: #828282;
  display: block;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  left: 6px;
  top: 18px;
}
@media (max-width: 1600px) {
  /* line 511, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .in_box {
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  /* line 517, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box {
    padding: 50px 25px;
  }
  /* line 520, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box {
    padding: 50px 25px;
  }
}
@media (max-width: 1200px) {
  /* line 526, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top {
    width: 100%;
    left: 0;
    padding: 0;
  }
  /* line 530, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .go_back {
    width: 442px;
    padding: 0 10px;
    text-align: right;
  }
  /* line 535, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .share_box {
    width: calc(100% - 442px);
    padding: 0 10px;
  }
  /* line 540, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .left_img {
    width: 442px;
  }
  /* line 543, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .left_img .in_box:before {
    -webkit-border-radius: 100px 0 0 0;
    -moz-border-radius: 100px 0 0 0;
    border-radius: 100px 0 0 0;
  }
  /* line 548, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date {
    width: calc(100% - 442px);
  }
  /* line 550, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .in_box {
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
  }
  /* line 553, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box {
    padding: 30px 10px;
    padding-bottom: 50px;
  }
  /* line 557, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class {
    width: calc(45% - 12px);
    min-width: 170px;
  }
  /* line 563, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box {
    padding: 30px 10px;
    padding-top: 50px;
    width: 100%;
    padding-bottom: 0;
  }
  /* line 568, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box:last-child {
    padding-bottom: 30px;
  }
}
@media (max-width: 1050px) {
  /* line 577, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top {
    position: relative;
    left: auto;
    top: 0;
  }
  /* line 581, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .go_back {
    width: 50%;
    text-align: left;
  }
  /* line 585, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .share_box {
    width: 50%;
  }
  /* line 589, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .left_img {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  /* line 593, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .left_img .in_box {
    display: inline-block;
    vertical-align: bottom;
    width: 442px;
    max-width: 100%;
  }
  /* line 598, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .left_img .in_box:before {
    -webkit-border-radius: 80px 0 0 0;
    -moz-border-radius: 80px 0 0 0;
    border-radius: 80px 0 0 0;
  }
  /* line 603, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date {
    width: 100%;
    padding-top: 0;
  }
  /* line 606, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .in_box {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  /* line 609, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box {
    padding: 20px 0;
    padding-bottom: 40px;
  }
  /* line 612, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box p {
    margin-bottom: 15px;
  }
  /* line 616, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class {
    width: auto;
    min-width: inherit;
  }
  /* line 619, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class .expertise-class-p {
    padding-left: 20px;
    padding-right: 20px;
    left: 0;
  }
  /* line 623, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class .expertise-class-p:after {
    right: 20px;
  }
  /* line 628, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class:hover .expertise-class-p {
    left: -10px;
  }
  /* line 630, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .one_box .expertise-class-box .expertise-class:hover .expertise-class-p:after {
    right: 0;
  }
  /* line 639, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box {
    width: 50%;
    padding: 20px 0;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  /* line 644, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box p {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  /* line 652, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box {
    width: 100%;
    padding-bottom: 0;
  }
  /* line 655, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .right_date .two_box:last-child {
    padding-bottom: 30px;
  }
}
@media (max-width: 550px) {
  /* line 663, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .go_back {
    display: none;
  }
  /* line 666, scss/layouts/pages/_doctors.scss */
  .detail_page .doctor_bottom .nav_top .share_box {
    margin-top: 30px;
  }
}

/* line 2, scss/layouts/pages/_columns.scss */
.all_page.columns_type {
  padding-bottom: 0;
}

/* line 7, scss/layouts/pages/_columns.scss */
.columns_top {
  position: relative;
  z-index: 3;
}
@media (max-width: 900px) {
  /* line 7, scss/layouts/pages/_columns.scss */
  .columns_top {
    overflow: hidden;
  }
}
/* line 13, scss/layouts/pages/_columns.scss */
.columns_top .wp1520 {
  position: relative;
  z-index: 5;
}
/* line 17, scss/layouts/pages/_columns.scss */
.columns_top:before {
  content: '';
  position: absolute;
  width: 100%;
  background: #F5F3F1;
  left: 0;
  bottom: 0;
  height: calc(50% - 60px);
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  /* line 17, scss/layouts/pages/_columns.scss */
  .columns_top:before {
    height: calc(50% - 50px);
  }
}
@media screen and (max-width: 767px) {
  /* line 17, scss/layouts/pages/_columns.scss */
  .columns_top:before {
    height: 60%;
  }
}
@media screen and (max-width: 550px) {
  /* line 17, scss/layouts/pages/_columns.scss */
  .columns_top:before {
    height: 70%;
  }
}
/* line 36, scss/layouts/pages/_columns.scss */
.columns_top .row {
  position: relative;
}
/* line 39, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider {
  font-size: 0;
  padding: 80px 0;
}
/* line 42, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider:before {
  content: '';
  width: calc(70% - 20px);
  background: #ffff;
  border: solid 1px #F5F3F1;
  height: 100%;
  position: absolute;
  right: calc(10% + 10px);
  bottom: 0;
  -webkit-border-radius: 300px 0 300px 0;
  -moz-border-radius: 300px 0 300px 0;
  border-radius: 300px 0 300px 0;
}
@media screen and (max-width: 1600px) {
  /* line 42, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    -webkit-border-radius: 250px 0 250px 0;
    -moz-border-radius: 250px 0 250px 0;
    border-radius: 250px 0 250px 0;
  }
}
@media screen and (max-width: 1400px) {
  /* line 42, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    -webkit-border-radius: 200px 0 200px 0;
    -moz-border-radius: 200px 0 200px 0;
    border-radius: 200px 0 200px 0;
  }
}
@media screen and (max-width: 1300px) {
  /* line 42, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    -webkit-border-radius: 150px 0 150px 0;
    -moz-border-radius: 150px 0 150px 0;
    border-radius: 150px 0 150px 0;
    right: 150px;
  }
}
@media screen and (max-width: 1199px) {
  /* line 42, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    -webkit-border-radius: 100px 0 100px 0;
    -moz-border-radius: 100px 0 100px 0;
    border-radius: 100px 0 100px 0;
    right: 10px;
    width: calc(100% - 215px);
  }
}
@media (max-width: 900px) {
  /* line 42, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    display: none;
  }
}
/* line 71, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .img_box {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 0 10px;
}
/* line 76, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .img_box .slick-arrow-box {
  display: none;
}
/* line 80, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .text_box {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}
/* line 86, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider {
  padding-right: 30px;
}
/* line 88, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider .title {
  display: none;
  margin-bottom: -25px;
  margin-left: 40px;
  position: relative;
  z-index: 3;
  min-width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 15px;
  background-color: #681414;
  color: #ffff;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  font-weight: 400;
  letter-spacing: 1px;
}
/* line 108, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider .hide_img {
  display: block;
  overflow: hidden;
  width: 100%;
}
/* line 112, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider .hide_img img {
  transition: all .5s;
}
/* line 115, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider .hide_img .imgBox {
  padding-bottom: 75%;
}
/* line 119, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_img_slider .hide_img:hover img {
  transform: scale(1.05);
}
/* line 126, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 540px;
  max-width: calc(100% - 150px);
  text-align: left;
  position: relative;
}
/* line 134, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box {
  padding: 0 30px;
}
/* line 136, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .title {
  display: inline-block;
  background: #681414;
  padding: 7px 30px;
  min-width: 160px;
  text-align: center;
  color: #ffff;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  margin-bottom: 29px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.1em;
  font-weight: 400;
}
/* line 149, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box a {
  display: block;
}
/* line 151, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box a span {
  display: block;
  letter-spacing: 0.1em;
}
/* line 155, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box a .solid_title {
  margin-bottom: 22px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 158, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box a .solid_title:after {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: calc(100% - 10px);
  top: 6px;
}
/* line 165, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box a > .h10 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 108px;
  text-overflow: ellipsis;
}
/* line 169, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .date {
  font-size: 0;
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-top: 22px;
  margin-bottom: 10px;
}
/* line 175, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .date a {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  padding: 0 12px;
  margin: 0 7.5px;
  border: solid 1px #C3B8A2;
  margin-bottom: 15px;
  color: #C3B8A2;
  letter-spacing: 0.1em;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 187, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .date a:hover {
  color: #ffff;
  border: solid 1px #B78830;
  background: #B78830;
}
/* line 194, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .bottom {
  display: block;
  font-size: 0;
}
/* line 197, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .bottom p,
.columns_top .columns_slider .news_text_slider .slider_box .bottom time {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
/* line 202, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .bottom p:first-child,
.columns_top .columns_slider .news_text_slider .slider_box .bottom time:first-child {
  padding-right: 20px;
}
/* line 205, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .bottom p:last-child,
.columns_top .columns_slider .news_text_slider .slider_box .bottom time:last-child {
  padding-left: 20px;
  position: relative;
}
/* line 208, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box .bottom p:last-child:before,
.columns_top .columns_slider .news_text_slider .slider_box .bottom time:last-child:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  height: 13px;
  width: 1px;
  background: #828282;
}
@media (max-width: 1200px) {
  /* line 220, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .bottom p:first-child,
  .columns_top .columns_slider .news_text_slider .slider_box .bottom time:first-child {
    padding-right: 30px;
  }
  /* line 223, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .bottom p:last-child,
  .columns_top .columns_slider .news_text_slider .slider_box .bottom time:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 1000px) {
  /* line 229, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .bottom p:first-child,
  .columns_top .columns_slider .news_text_slider .slider_box .bottom time:first-child {
    padding-right: 25px;
  }
  /* line 232, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .bottom p:last-child,
  .columns_top .columns_slider .news_text_slider .slider_box .bottom time:last-child {
    padding-left: 25px;
  }
}
/* line 240, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box:hover .title {
  background: #B78830;
}
/* line 244, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box:hover a .solid_title {
  color: #B78830;
}
/* line 246, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .news_text_slider .slider_box:hover a .solid_title:after {
  background: #B78830;
}
/* line 255, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .slick-arrow-box {
  bottom: auto;
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 262, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .slick-arrow-box .slick-arrow {
  border: 1px solid #C3B8A2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 265, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .slick-arrow-box .slick-arrow path {
  stroke: #C3B8A2;
  fill: #C3B8A2;
}
/* line 269, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .slick-arrow-box .slick-arrow:hover {
  border: 1px solid #B78830;
}
/* line 271, scss/layouts/pages/_columns.scss */
.columns_top .columns_slider .slick-arrow-box .slick-arrow:hover path {
  stroke: #B78830 !important;
  fill: #B78830 !important;
}
@media (max-width: 1400px) {
  /* line 39, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider {
    padding: 60px 0;
  }
  /* line 282, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  /* line 289, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box a > .h10 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 72px;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1300px) {
  /* line 39, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider {
    padding: 40px 0;
  }
  /* line 298, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box {
    width: 50%;
  }
  /* line 301, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box {
    width: 50%;
  }
  /* line 304, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_img_slider {
    padding-right: 15px;
  }
  /* line 308, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  /* line 39, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider {
    padding: 60px 0;
  }
  /* line 315, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box {
    vertical-align: top;
  }
  /* line 317, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box .slick-arrow-box {
    display: block;
    top: 100%;
    left: 10px;
    right: auto;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    margin-top: 15px;
  }
  /* line 324, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box .slick-arrow-box > div {
    display: flex;
  }
  /* line 328, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box .slick-arrow-box .slick-arrow.news-prev {
    margin-bottom: 0;
    margin-right: 20px;
  }
  /* line 335, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box {
    padding: 0 10px;
    vertical-align: top;
  }
  /* line 338, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box {
    display: none;
  }
  /* line 342, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_img_slider {
    padding-right: 0;
  }
  /* line 345, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider {
    width: 100%;
    max-width: 100%;
  }
  /* line 348, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box {
    padding-left: 20px;
    padding-right: 30px;
  }
  /* line 351, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .date {
    margin-left: -4px;
    margin-right: -4px;
  }
  /* line 354, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .date a {
    margin: 0 4px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1199px) and (max-width: 550px) {
  /* line 351, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .news_text_slider .slider_box .date {
    display: none;
  }
}

@media (max-width: 900px) {
  /* line 39, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0;
  }
  /* line 370, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider:before {
    display: none;
  }
  /* line 373, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box {
    position: relative;
    width: 600px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
  }
  /* line 381, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box .slick-arrow-box {
    display: none;
  }
  /* line 385, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .img_box .news_img_slider .title {
    display: inline-block;
  }
  /* line 390, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box {
    position: relative;
    z-index: 1;
    width: 600px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 10px;
  }
  /* line 399, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box:before {
    content: '';
    background: #ffff;
    border: solid 1px #F5F3F1;
    position: absolute;
    bottom: 0;
    left: -30px;
    height: 130%;
    width: calc(100% + 60px);
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 411, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .news_text_slider .slider_box {
    padding: 0;
  }
  /* line 413, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .news_text_slider .slider_box .title {
    display: none;
  }
  /* line 418, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box {
    display: block;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    right: 0;
    top: auto;
    position: relative;
    margin-top: 10px;
  }
  /* line 425, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box > div {
    display: flex;
    justify-content: flex-end;
  }
  /* line 429, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow {
    margin-top: 20px;
  }
  /* line 431, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow.news-prev {
    margin-bottom: 0;
    margin-right: 20px;
  }
  /* line 436, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow {
    margin-top: 0;
    width: 41px;
    height: 22px;
    z-index: 2;
    border: none;
    position: relative;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  /* line 436, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow {
    height: 24px;
  }
}
@media (max-width: 900px) {
  /* line 446, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow.news-prev {
    margin-right: 10px;
  }
  /* line 449, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow span {
    width: 100%;
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  /* line 457, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow path {
    fill: #B78830 !important;
    stroke: #B78830 !important;
  }
  /* line 461, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow:hover {
    border: none;
  }
  /* line 463, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .slick-arrow-box .slick-arrow:hover path {
    fill: #B78830 !important;
    stroke: #B78830 !important;
  }
}
@media (max-width: 767px) {
  /* line 475, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box {
    padding: 40px;
  }
  /* line 477, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box:before {
    width: calc(100% - 20px);
    left: 10px;
  }
  /* line 481, scss/layouts/pages/_columns.scss */
  .columns_top .columns_slider .text_box .news_text_slider {
    width: 100%;
    max-width: 100%;
  }
}

/* line 492, scss/layouts/pages/_columns.scss */
.columns_bottom {
  position: relative;
  z-index: 2;
  background: #F5F3F1;
  padding-top: 124px;
  padding-bottom: 136px;
}
/* line 499, scss/layouts/pages/_columns.scss */
.columns_bottom .rwd-link-box {
  display: none;
}
/* line 502, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title {
  position: relative;
}
/* line 504, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .index-slogan {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  margin-bottom: 0;
  padding-left: 30px;
}
/* line 511, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .index-slogan:after {
  left: 0;
}
/* line 515, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .Cormorant {
  font-size: 250px;
  line-height: 1em;
  margin: -0.18em 0;
  color: #ffff;
}
/* line 521, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .link-box {
  position: absolute;
  right: 0;
  top: -30px;
}
/* line 526, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .columns-slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  right: 0;
  bottom: auto;
  display: none;
}
/* line 533, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .columns-slick-arrow > div {
  display: flex;
}
/* line 535, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .columns-slick-arrow > div .slick-arrow {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* line 540, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_title .columns-slick-arrow > div .columns-prev {
  margin-right: 12px;
}
@media screen and (max-width: 650px) {
  /* line 540, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .columns-slick-arrow > div .columns-prev {
    margin-right: 8px;
  }
}
/* line 549, scss/layouts/pages/_columns.scss */
.columns_bottom .wp1520 {
  position: relative;
  z-index: 2;
}
/* line 554, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .row {
  font-size: 0;
  margin-left: -20px;
  margin-right: -20px;
}
/* line 559, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 3);
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 567, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box:nth-child(2n) {
  text-align: center;
}
/* line 570, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box:nth-child(3n) {
  text-align: right;
}
/* line 573, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box {
  display: inline-block;
  width: 480px;
  max-width: 100%;
  text-align: left;
  position: relative;
}
/* line 579, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .hide_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 60px;
  z-index: 3;
  width: 100%;
}
/* line 586, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .hide_img .imgBox {
  padding-bottom: 75%;
}
/* line 589, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .hide_img img {
  transition: all .5s;
}
/* line 593, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box {
  padding: 46px 33px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0 0 50px 0;
  -moz-border-radius: 0 0 50px 0;
  border-radius: 0 0 50px 0;
  position: relative;
  z-index: 5;
}
/* line 599, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .title {
  display: inline-block;
  background: #681414;
  padding: 7px 30px;
  min-width: 160px;
  text-align: center;
  color: #ffff;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  transition: all .5s;
  position: absolute;
  left: 33px;
  top: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  letter-spacing: 0.1em;
  font-weight: 400;
}
/* line 615, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box a {
  display: block;
}
/* line 617, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box a span {
  letter-spacing: 0.1em;
  display: block;
}
/* line 621, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
  margin-bottom: 12px;
}
/* line 623, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
  height: 22px;
}
@media screen and (max-width: 767px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 56px;
    text-overflow: ellipsis;
  }
  /* line 628, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (max-width: 550px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    height: auto;
    -webkit-line-clamp: initial;
  }
}
@media screen and (max-width: 380px) {
  /* line 637, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 56px;
    text-overflow: ellipsis;
  }
  /* line 643, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 60px;
    text-overflow: ellipsis;
  }
  /* line 649, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 4px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 64px;
    text-overflow: ellipsis;
  }
  /* line 655, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 5px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 621, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 68px;
    text-overflow: ellipsis;
  }
  /* line 661, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a .solid_title:after {
    top: 6px;
  }
}
/* line 668, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box a > .h10 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 72px;
  text-overflow: ellipsis;
}
/* line 674, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .date {
  font-size: 0;
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-top: 22px;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  /* line 674, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .date {
    display: none;
  }
}
/* line 683, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .date a {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  padding: 0 12px;
  margin: 0 7.5px;
  border: solid 1px #C3B8A2;
  color: #C3B8A2;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
/* line 695, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .date a:hover {
  color: #ffff;
  border: solid 1px #B78830;
  background: #B78830;
}
@media (max-width: 1199px) {
  /* line 674, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .date {
    margin-left: -4px;
    margin-right: -4px;
  }
  /* line 704, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .date a {
    margin: 0 4px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  /* line 674, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .date {
    display: none;
  }
}
@media (max-width: 450px) {
  /* line 674, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .date {
    font-size: 15px;
    line-height: 28px;
  }
}
/* line 717, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .bottom {
  display: block;
  font-size: 0;
}
/* line 720, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .bottom p,
.columns_bottom .columns_list .list_box .in_box .text_box .bottom time {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
/* line 725, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .bottom p:first-child,
.columns_bottom .columns_list .list_box .in_box .text_box .bottom time:first-child {
  padding-right: 20px;
}
/* line 728, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child,
.columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child {
  padding-left: 20px;
  position: relative;
}
/* line 731, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child:before,
.columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  height: 13px;
  width: 1px;
  background: #828282;
}
@media (max-width: 1200px) {
  /* line 743, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:first-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 30px;
  }
  /* line 746, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 1000px) {
  /* line 752, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:first-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 25px;
  }
  /* line 755, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 25px;
  }
}
@media (max-width: 400px) {
  /* line 760, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:first-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 20px;
  }
  /* line 763, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 20px;
  }
}
@media (max-width: 350px) {
  /* line 768, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:first-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:first-child {
    padding-right: 15px;
    font-size: 17px;
    line-height: 22px;
  }
  /* line 774, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom p:last-child,
  .columns_bottom .columns_list .list_box .in_box .text_box .bottom time:last-child {
    padding-left: 15px;
    font-size: 15px;
    line-height: 22px;
  }
}
/* line 787, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box:hover .in_box .hide_img img {
  transform: scale(1.05);
}
/* line 791, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .list_box:hover .in_box .text_box {
  background: #ffff;
}
/* line 799, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .columns_index_slider.slick-slider {
  padding-left: 0;
  padding-right: 0;
}
/* line 802, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .columns_index_slider.slick-slider .list_box {
  width: 100%;
  text-align: center;
}
/* line 805, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .columns_index_slider.slick-slider .list_box .in_box {
  width: 100%;
}
/* line 808, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .columns_index_slider.slick-slider .list_box:nth-child(2n) {
  text-align: center;
}
/* line 811, scss/layouts/pages/_columns.scss */
.columns_bottom .columns_list .columns_index_slider.slick-slider .list_box:nth-child(3n) {
  text-align: center;
}
@media screen and (max-width: 1600px) {
  /* line 492, scss/layouts/pages/_columns.scss */
  .columns_bottom {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1500px) {
  /* line 825, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .Cormorant {
    font-size: 17vw;
  }
}
@media screen and (max-width: 1400px) {
  /* line 492, scss/layouts/pages/_columns.scss */
  .columns_bottom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1199px) {
  /* line 492, scss/layouts/pages/_columns.scss */
  .columns_bottom {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* line 840, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .columns-slick-arrow {
    display: block;
  }
  /* line 843, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .link-box {
    display: none;
  }
  /* line 849, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box {
    width: 50%;
    text-align: left;
  }
  /* line 852, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box:nth-child(3n) {
    text-align: left;
  }
  /* line 855, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box:nth-child(2n) {
    text-align: right;
  }
  /* line 861, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .columns_index_slider.slick-slider .list_box {
    margin-bottom: 30px;
  }
  /* line 868, scss/layouts/pages/_columns.scss */
  .columns_bottom .rwd-link-box {
    display: flex;
  }
}
@media (max-width: 767px) {
  /* line 875, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .Cormorant {
    font-size: 19.5vw;
    margin: 0;
    line-height: 70px;
  }
  /* line 883, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box {
    width: 100%;
    text-align: center;
  }
  /* line 886, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box .in_box {
    width: 580px;
    max-width: 100%;
  }
  /* line 889, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box .in_box .text_box {
    padding: 46px 20px;
    padding-bottom: 30px;
  }
  /* line 894, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box:nth-child(3n) {
    text-align: center;
  }
  /* line 897, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .list_box:nth-child(2n) {
    text-align: center;
  }
  /* line 904, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .row .columns_index_slider.slick-slider .list_box .in_box {
    width: 100%;
  }
}
@media (max-width: 550px) {
  /* line 915, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .index-slogan {
    position: relative;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
  /* line 922, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_title .Cormorant {
    display: none;
  }
}
@media (max-width: 400px) {
  /* line 933, scss/layouts/pages/_columns.scss */
  .columns_bottom .columns_list .list_box .in_box .text_box a > .h10 {
    display: none;
  }
}

/* line 944, scss/layouts/pages/_columns.scss */
.detail_page {
  font-size: 0;
}
/* line 947, scss/layouts/pages/_columns.scss */
.detail_page .columns_detail .breadcrumbs {
  text-align: right;
  padding-top: 15px;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  /* line 947, scss/layouts/pages/_columns.scss */
  .detail_page .columns_detail .breadcrumbs {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  /* line 947, scss/layouts/pages/_columns.scss */
  .detail_page .columns_detail .breadcrumbs {
    margin-bottom: 20px;
    text-align: left;
  }
}
/* line 962, scss/layouts/pages/_columns.scss */
.detail_page .columns_top {
  text-align: left;
  padding: 0 70px;
  width: 100%;
  display: block;
  margin-bottom: 48px;
}
/* line 968, scss/layouts/pages/_columns.scss */
.detail_page .columns_top:before {
  display: none;
}
/* line 972, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .title {
  display: inline-block;
  background: #681414;
  padding: 7px 30px;
  min-width: 160px;
  text-align: center;
  color: #ffff;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.1em;
  font-weight: 400;
}
/* line 984, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .bottom {
  text-align: left;
  margin-bottom: 6px;
}
/* line 988, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .bottom p:first-child {
  padding-right: 19px;
}
/* line 991, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .bottom p:last-child {
  padding-left: 19px;
}
/* line 996, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .date {
  margin-top: 23px;
  font-size: 0;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
/* line 1001, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .date a {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  padding: 0 12px;
  margin: 0 7.5px;
  letter-spacing: 0.1em;
  border: solid 1px #C3B8A2;
  margin-bottom: 15px;
  color: #C3B8A2;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1013, scss/layouts/pages/_columns.scss */
.detail_page .columns_top .date a:hover {
  color: #ffff;
  border: solid 1px #B78830;
  background: #B78830;
}
@media (max-width: 1199px) {
  /* line 996, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top .date {
    margin-left: -4px;
    margin-right: -4px;
  }
  /* line 1022, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top .date a {
    margin: 0 4px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  /* line 996, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top .date {
    display: none;
  }
}
@media (max-width: 1500px) {
  /* line 962, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top {
    padding: 0 60px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  /* line 962, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top {
    padding: 0 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  /* line 962, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top {
    padding: 0 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 550px) {
  /* line 1044, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top .title {
    display: none;
  }
}
@media (max-width: 500px) {
  /* line 962, scss/layouts/pages/_columns.scss */
  .detail_page .columns_top {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
/* line 1055, scss/layouts/pages/_columns.scss */
.detail_page .columns_left {
  padding-left: 10px;
  padding-right: 10px;
  width: 70%;
  display: inline-block;
  vertical-align: top;
}
/* line 1063, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right {
  padding-left: 10px;
  padding-right: 10px;
  width: 30%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
/* line 1070, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box {
  width: 400px;
  max-width: 100%;
  display: inline-block;
  text-align: left;
}
/* line 1075, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box > .notoSerifTC {
  margin-bottom: 30px;
  padding: 0 30px;
}
/* line 1078, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box > .notoSerifTC:first-child {
  margin-bottom: 15px;
}
/* line 1083, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div {
  display: block;
  padding: 32px 30px;
  border-bottom: solid 1px #F5F3F1;
}
/* line 1087, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div a {
  display: block;
}
/* line 1090, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div:last-child {
  border-bottom: none;
}
/* line 1093, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div span {
  display: block;
  letter-spacing: 0.1em;
}
/* line 1096, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div span.color1 {
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 7px;
}
/* line 1101, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div span.notoSerifTC {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1106, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .more_link div:hover span.h9 {
  color: #B78830;
}
/* line 1113, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .date {
  padding: 0 22.5px;
  margin-top: 23px;
  font-size: 0;
}
/* line 1117, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .date a {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  padding: 0 12px;
  margin: 0 7.5px;
  letter-spacing: 0.1em;
  border: solid 1px #C3B8A2;
  margin-bottom: 15px;
  color: #C3B8A2;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1129, scss/layouts/pages/_columns.scss */
.detail_page .relevant_right .in_box .date a:hover {
  color: #ffff;
  border: solid 1px #B78830;
  background: #B78830;
}
@media (max-width: 1199px) {
  /* line 1113, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .date {
    margin-left: -4px;
    margin-right: -4px;
  }
  /* line 1138, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .date a {
    margin: 0 4px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  /* line 1113, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .date {
    display: none;
  }
}
@media (max-width: 1400px) {
  /* line 1148, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box > .notoSerifTC {
    padding: 0 20px;
  }
  /* line 1152, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link > div {
    padding: 22px 20px;
  }
  /* line 1157, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link a span.color1 {
    margin-bottom: 4px;
  }
  /* line 1163, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .date {
    padding: 0 12.5px;
  }
}
@media (max-width: 900px) {
  /* line 1170, scss/layouts/pages/_columns.scss */
  .detail_page .columns_left {
    width: 100%;
    margin-bottom: 30px;
  }
  /* line 1174, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right {
    width: 100%;
    margin-bottom: 60px;
  }
  /* line 1177, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box {
    width: 100%;
  }
  /* line 1179, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .h7.sl {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
  }
  /* line 1184, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /* line 1192, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link div {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 10px);
    text-align: left;
    margin-right: 20px;
  }
  /* line 1202, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link div:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  /* line 1214, scss/layouts/pages/_columns.scss */
  .detail_page .relevant_right .in_box .more_link div {
    width: 100%;
    margin-right: 0;
  }
}

/* line 1, scss/layouts/pages/_cosmetic.scss */
.page-banner-block {
  padding-top: 189px;
  padding-bottom: 55px;
  width: 100%;
  overflow: hidden;
}
/* line 6, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .slick-dots {
  bottom: 10px;
}
/* line 9, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .inner {
  width: 90%;
  max-width: 1165px;
  margin: 0 auto;
  position: relative;
}
/* line 15, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .slick-list {
  overflow: visible;
}
/* line 18, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .page-banner {
  margin: 0 10px;
}
/* line 20, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .page-banner span {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 52.4%;
  position: relative;
  overflow: hidden;
}
/* line 27, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .page-banner span img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}
/* line 36, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .page-banner:hover span img {
  transform: scale(1.05);
}
/* line 42, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .slick-arrow-box {
  bottom: -50px;
  left: calc(50% - 110px);
  display: none;
}
/* line 46, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .slick-arrow-box .slick-arrow-prev {
  margin-right: 20px;
  border-bottom-left-radius: 45px;
}
/* line 50, scss/layouts/pages/_cosmetic.scss */
.page-banner-block .slick-arrow-box .slick-arrow-next {
  border-bottom-right-radius: 45px;
}

/* line 56, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
/* line 60, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .inner {
  display: flex;
}
/* line 63, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-left {
  width: 596px;
}
/* line 65, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-left span {
  display: block;
  overflow: hidden;
  border-top-right-radius: 265px;
}
/* line 71, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right {
  width: calc(100% - 596px);
  padding-left: 80px;
  position: relative;
}
/* line 75, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .cosmetic-section1-info {
  padding-right: 340px;
  padding-left: 30px;
}
/* line 79, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .en-title {
  margin-bottom: 50px;
}
/* line 82, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .index-p {
  max-width: 100%;
  padding-bottom: 50px;
}
/* line 86, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box {
  width: 245px;
  display: flex;
  height: 60px;
  transition: all .3s ease;
}
/* line 91, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box .rwd-link-p {
  font-size: 18px;
  transition: all .3s ease;
}
/* line 94, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box .rwd-link-p span {
  letter-spacing: 0.1em;
}
/* line 98, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box:hover {
  background-color: #681414;
}
/* line 100, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box:hover .rwd-link-p {
  color: #FFF;
}
/* line 103, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box:hover .rwd-link-icon {
  animation: arrow-right 0.8s linear infinite alternate;
}
/* line 107, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right .rwd-link-box:hover svg path {
  fill: #FFF;
  stroke: #FFF;
}
/* line 115, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right-img {
  width: 225px;
  position: absolute;
  right: 0;
  bottom: 0;
}
/* line 120, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section1 .cosmetic-section1-right-img span {
  display: block;
  border-top-left-radius: 120px;
  overflow: hidden;
}

/* line 128, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 {
  position: relative;
}
/* line 130, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .inner {
  position: relative;
}
/* line 133, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
/* line 138, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box {
  position: absolute;
  display: none;
  width: calc(100% + 20px);
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  pointer-events: none;
  z-index: 2;
}
/* line 150, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ebcd93;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
  background-color: #FFF;
  cursor: pointer;
  pointer-events: visible;
}
/* line 162, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow.cosmetic-next {
  position: absolute;
  right: 0;
  top: 0;
}
/* line 167, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow span {
  width: 20px;
  display: flex;
}
/* line 170, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow span path {
  fill: #ebcd93;
  stroke: #ebcd93;
  stroke-width: 0.5;
  transition: all .5s;
}
/* line 177, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow:hover {
  border: 1px solid #B78830;
}
/* line 180, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .mob-cosmetic-arrow-box .layout-articles-arrow:hover span path {
  fill: #B78830;
  stroke: #b78830;
  stroke-width: 0.5;
}
/* line 189, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-section2-bg {
  width: 100%;
  height: calc(100% + 155px);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-color: #F5F3F1;
  border-radius: 0px 500px 0px 0px;
}
/* line 199, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-info-list-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
/* line 207, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list {
  width: 410px;
  max-width: 100%;
  margin: 45px 30px;
}
/* line 211, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list .cosmetic-info-list-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C3B8A2;
  background-color: #FFF;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
/* line 224, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list .cosmetic-info-list-title {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
/* line 232, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list .cosmetic-info-list-p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #828282;
  text-align: center;
  letter-spacing: 1.5px;
}
/* line 242, scss/layouts/pages/_cosmetic.scss */
.cosmetic-section2 .cosmetic-section2-bg-img {
  width: 630px;
  max-width: 50%;
  position: absolute;
  right: 20%;
  bottom: -30px;
}

/* line 252, scss/layouts/pages/_cosmetic.scss */
.layout-service-block {
  overflow: hidden;
  padding-right: calc(100vw - (50% + 800px));
  position: relative;
  z-index: 1;
}
/* line 257, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .inner {
  padding-left: calc(100vw - (50vw + 800px));
  background-color: #681414;
  border-radius: 300px 0;
  overflow: hidden;
  position: relative;
}
/* line 264, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-box {
  padding: 105px 0;
}
/* line 267, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-title {
  width: 90%;
  margin: 0 auto;
  font-size: 30px;
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  padding: 25px 0;
  letter-spacing: 0.2em;
}
/* line 278, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-bg-title {
  width: 100%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 300px;
  text-align: center;
  padding: 0px 5%;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  opacity: 0.05;
  pointer-events: none;
}
/* line 292, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service {
  padding: 70px 100px 0 100px;
  position: relative;
}
/* line 295, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list {
  display: flex;
}
/* line 297, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-service-img-box {
  width: 680px;
  border-radius: 0 100px;
  overflow: hidden;
}
/* line 301, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-service-img-box .layout-service-img {
  height: 0;
  width: 100%;
  padding-bottom: 75%;
  position: relative;
}
/* line 307, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-service-img-box span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 315, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box {
  width: calc(100% - 680px);
  padding-top: 100px;
  padding-left: 100px;
  padding-right: 20px;
}
/* line 320, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .index-slogan {
  color: #FFF;
  font-size: 24px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 30px;
}
/* line 327, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .index-slogan:after {
  width: 1.5px;
  height: calc(100% - 15px);
  background-color: #FFF;
  top: 8px;
  left: 0;
}
/* line 335, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-p {
  font-size: 16px;
  line-height: 36px;
  color: #FFF;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
/* line 343, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
}
/* line 347, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link {
  min-width: calc((100% - 45px) / 3);
  margin-right: 15px;
  margin-bottom: 17px;
  text-align: center;
  border: 1px solid #C3B8A2;
  border-radius: 40px;
  padding: 12px 15px;
  transition: all .5s ease;
  text-decoration: none !important;
  align-items: center;
  display: flex;
  justify-content: center;
}
/* line 360, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link span {
  font-size: 16px;
  color: #C3B8A2;
  position: relative;
  transition: all 0.5s ease;
  display: inline-block;
  letter-spacing: 0.1em;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 369, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link span:after {
  content: "+";
  font-size: 16px;
  color: #FFF;
  opacity: 0;
  transition: all 0.5s ease;
  display: block;
  position: absolute;
  right: 30px;
  top: 0;
}
/* line 381, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover {
  background-color: #FFF;
  border: 1px solid #FFF;
}
/* line 384, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover span {
  padding-left: 10px;
  padding-right: 30px;
  color: #681414;
}
/* line 388, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover span:after {
  color: #681414;
  opacity: 1;
  right: 10px;
}
/* line 400, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-box {
  width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
/* line 406, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-box .layout-service-class-slick {
  border: 1px solid #C3B8A2;
  border-radius: 20px 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  /* line 406, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box .layout-service-class-slick {
    display: block !important;
  }
}
/* line 414, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-box .rwd-layout-service-class {
  text-align: center;
  height: 70px;
  line-height: 70px;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: #FFF;
  color: #B78830;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: all .5s ease;
  display: none;
  border-radius: 30px 0 0 0;
}
/* line 428, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-box .rwd-layout-service-class:after {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  top: calc(50% - 8px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(./static/cosmetic/arrow-down-sign-to-navigate-2.png);
}
/* line 442, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 10px;
  transition: all .3s;
  background-color: #FFF;
  border-bottom: 1px solid #C3B8A2;
  cursor: pointer;
}
/* line 452, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide .layout-service-class {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
/* line 458, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide .layout-service-class span {
  display: flex;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all .3s;
}
/* line 466, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide .layout-service-class-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C3B8A2;
}
/* line 472, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide:hover, .layout-service-block .layout-service-class-slide.slick-current {
  background-color: #C3B8A2;
}
/* line 475, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide:hover .layout-service-class, .layout-service-block .layout-service-class-slide.slick-current .layout-service-class {
  padding-right: 30px;
}
/* line 477, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide:hover .layout-service-class span, .layout-service-block .layout-service-class-slide.slick-current .layout-service-class span {
  opacity: 1;
}
/* line 481, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide:hover .layout-service-class-title, .layout-service-block .layout-service-class-slide.slick-current .layout-service-class-title {
  color: #FFF;
  transition: all .3s;
}
/* line 487, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-class-slide:last-child {
  border-bottom: none;
}
/* line 491, scss/layouts/pages/_cosmetic.scss */
.layout-service-block .layout-service-bg {
  width: 100%;
  height: calc(100% - 270px);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F5F3F1;
  z-index: -1;
}

/* line 502, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block {
  padding: 110px 0;
}
/* line 504, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
/* line 511, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .index-slogan {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
/* line 518, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .index-slogan:after {
  content: '';
  left: 0;
}
/* line 523, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .layout-service-bg-title {
  position: absolute;
  font-size: 250px;
  font-weight: 400;
  color: #F5F3F1;
  top: 0;
  line-height: 1;
}
/* line 531, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .link-box {
  position: absolute;
  right: 20px;
  top: -25px;
}
/* line 535, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .link-box .link-info {
  background-color: #FFF;
}
/* line 539, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-title-box .link-box:hover .link-info {
  background-color: #681414;
}
/* line 546, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-slick-block {
  padding-top: 60px;
  width: 100%;
  position: relative;
}
/* line 552, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block {
  width: 50%;
  display: flex;
  justify-content: end;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* line 559, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info-slick {
  width: 650px;
}
/* line 562, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info {
  width: 100%;
  margin-left: 55px;
  padding: 1px;
}
/* line 566, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a {
  display: block;
  background-color: #FFF;
  text-decoration: none;
  padding: 78px 53px 52px 69px;
  border: 1px solid #C3B8A2;
  transition: all .3s;
}
/* line 573, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a:hover {
  border: 1px solid #681414;
  background-color: #681414;
}
/* line 576, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a:hover .index-slogan {
  color: #C3B8A2;
}
/* line 578, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a:hover .index-slogan:after {
  transition: all .3s;
  background-color: #C3B8A2;
}
/* line 583, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a:hover .layout-articles-info-p {
  color: #FFF;
}
/* line 586, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info a:hover .layout-articles-info-date {
  color: #B78830;
}
/* line 592, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info .index-slogan {
  font-size: 24px;
  padding-left: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  transition: all .3s;
}
/* line 598, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info .index-slogan::after {
  left: 1.5px;
  width: 1.5px;
  height: calc(100% - 16px);
  top: 8px;
}
/* line 605, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info .layout-articles-info-p {
  font-size: 16px;
  color: #828282;
  line-height: 36px;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 108px;
  transition: all .3s;
}
/* line 615, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .layout-articles-info .layout-articles-info-date {
  font-size: 20px;
  font-weight: 400;
  color: #681414;
  transition: all .3s;
}
/* line 622, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-info-block .slick-list {
  overflow: visible;
}
/* line 626, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block {
  width: 835px;
  position: absolute;
  bottom: 1px;
  left: calc(50% - 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 634, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick {
  width: 680px;
  max-width: 100%;
}
/* line 637, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick .layout-articles-img {
  display: block;
  padding-bottom: 75%;
  position: relative;
}
/* line 641, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick .layout-articles-img span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-top-left-radius: 80px;
}
/* line 650, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick .layout-articles-img img {
  transition: all .3s;
}
/* line 654, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick .layout-articles-img:hover img {
  transform: scale(1.05);
}
/* line 661, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ebcd93;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  transition: all .5s;
  background-color: #FFF;
  cursor: pointer;
}
/* line 674, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow:last-child {
  margin-bottom: 0;
}
/* line 678, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow span path {
  fill: #ebcd93;
  stroke: #ebcd93;
  stroke-width: 0.5;
  transition: all .5s;
}
/* line 685, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow:hover {
  border: 1px solid #B78830;
}
/* line 688, scss/layouts/pages/_cosmetic.scss */
.layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow:hover span path {
  fill: #B78830;
  stroke: #b78830;
  stroke-width: 0.5;
}

/* line 701, scss/layouts/pages/_cosmetic.scss */
.layout-team-block {
  padding: 150px 0 130px 0;
  position: relative;
}
/* line 705, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-bg {
  z-index: -1;
  width: 100%;
  height: calc(100% + 308px);
  position: absolute;
  background-color: #F5F3F1;
  bottom: 0;
  left: 0;
  border-top-left-radius: 45%;
}
/* line 715, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-bg-img {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 721, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-info-box {
  display: flex;
  position: relative;
  padding-bottom: 73px;
}
/* line 726, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-info {
  width: 480px;
  display: block;
}
/* line 729, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-info .index-p {
  padding-bottom: 50px;
}
/* line 733, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-img-box {
  width: calc(100% - 480px);
  position: absolute;
  right: 0;
  bottom: -80px;
  padding-left: 80px;
  padding-right: 46px;
}
@media (max-width: 1499px) {
  /* line 733, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-img-box {
    padding-left: 60px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  /* line 733, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-img-box {
    padding-left: 20px;
    padding-right: 0;
  }
}
/* line 749, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-img-box .layout-team-img .imgBox {
  padding-bottom: 80.63%;
}
/* line 751, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-img-box .layout-team-img .imgBox.hair {
  padding-bottom: 124.71%;
}
/* line 754, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-img-box .layout-team-img .imgBox img {
  -o-object-fit: contain;
  object-fit: contain;
}
/* line 761, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .link-box {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 766, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
/* line 770, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link {
  width: calc(50% - 10px);
  background-color: #FFF;
  border: 1px solid #C3B8A2;
  padding: 74px 100px 63px 100px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all .5s ease;
}
/* line 779, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-img {
  position: absolute;
  display: flex;
  right: 0;
  bottom: 0;
  z-index: 0 !important;
}
/* line 786, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-img path {
  transition: all .5s;
}
/* line 790, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link span {
  display: block;
  position: relative;
  z-index: 1;
}
/* line 795, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-icon-box {
  display: flex;
}
/* line 797, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-icon-box .layout-team-link-icon-p {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #B78830;
  padding-right: 20px;
  font-weight: 400;
  transition: all .5s ease;
}
/* line 806, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-en {
  font-size: 30px;
  font-weight: 500;
  color: #681414;
  text-transform: uppercase;
  transition: all .5s ease;
}
/* line 813, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-p {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  min-height: 130px;
  padding-bottom: 20px;
  transition: all .5s ease;
}
/* line 821, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(1) {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  border-top-right-radius: 70px;
}
/* line 825, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(1):hover {
  background-color: #681414;
  border: 1px solid #681414;
}
/* line 828, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(1):hover .layout-team-link-en {
  color: #C3B8A2;
}
/* line 831, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(1):hover .layout-team-link-p {
  color: #FFF;
}
/* line 834, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(1):hover path {
  fill: #9C3E3E;
}
/* line 839, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(2) {
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  border-top-right-radius: 70px;
  margin-top: 60px;
}
/* line 844, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(2):hover {
  background-color: #C3B8A2;
  border: 1px solid #C3B8A2;
}
/* line 847, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(2):hover .layout-team-link-en {
  color: #B78830;
}
/* line 850, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(2):hover .layout-team-link-p {
  color: #FFF;
}
/* line 853, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:nth-child(2):hover path {
  fill: #B78830;
}
/* line 859, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .layout-team-link-box .layout-team-link:hover .layout-team-link-icon {
  animation: arrow-right .8s linear infinite alternate;
}
/* line 865, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .en-title {
  margin-bottom: 50px;
}
/* line 868, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .index-slogan {
  padding-left: 30px;
  margin-bottom: 30px;
}
/* line 871, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .index-slogan::after {
  left: 0;
}
/* line 875, scss/layouts/pages/_cosmetic.scss */
.layout-team-block .index-p {
  max-width: 100%;
}

@media (max-width: 1680px) {
  /* line 883, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .en-title {
    font-size: 100px;
    line-height: 100px;
  }

  /* line 888, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block {
    padding-right: 5%;
  }
  /* line 890, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .inner {
    padding-left: 5%;
  }
  /* line 893, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service {
    padding: 70px 100px 0 5%;
  }

  /* line 898, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block {
    width: 50%;
    left: calc(50% - 100px);
  }
  /* line 901, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick {
    width: calc(100% - 100px);
  }
  /* line 905, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1580px) {
  /* line 916, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .en-title {
    font-size: 55px;
    line-height: 55px;
  }
  /* line 920, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-left {
    width: 40%;
  }
  /* line 923, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right {
    width: 60%;
    padding-left: 50px;
  }
  /* line 926, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .cosmetic-section1-info {
    padding-right: 275px;
  }

  /* line 933, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list {
    width: 360px;
    margin: 30px 15px;
  }

  /* line 942, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box,
  .layout-service-block .layout-service .layout-service-list .layout-info-box {
    width: 50%;
  }
  /* line 946, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box {
    padding-left: 40px;
    padding-right: 0;
  }
  /* line 951, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box .layout-service-img {
    height: 100%;
    padding-bottom: 0;
  }

  /* line 970, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link {
    padding: 50px 50px;
  }
  /* line 972, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-p {
    font-size: 24px;
  }
}
@media (max-width: 1300px) {
  /* line 984, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info-slick {
    width: 600px;
  }
  /* line 990, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info a {
    padding: 20px 20px;
  }

  /* line 996, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-title-box .layout-service-bg-title {
    font-size: 180px;
  }

  /* line 999, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-bg-title {
    font-size: 200px;
    top: 54px;
  }
}
@media (max-width: 1199px) {
  /* line 1008, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .cosmetic-section1-info {
    padding-right: 50px;
  }
  /* line 1012, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right-img {
    display: none;
  }
  /* line 1016, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-left span {
    height: 100%;
    border-top-right-radius: 185px;
  }

  /* line 1022, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box {
    width: 100%;
    position: relative;
    margin: 20px 0 50px 0;
  }

  /* line 1027, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service {
    padding-top: 0;
  }

  /* line 1030, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-slide .layout-service-class span {
    display: none;
  }

  /* line 1033, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-slide:hover .layout-service-class,
  .layout-service-block .layout-service-class-slide.slick-current .layout-service-class {
    padding-right: 0;
  }

  /* line 1037, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service {
    padding: 70px 5% 0 5%;
  }

  /* line 1041, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .cosmetic-section2-bg {
    height: calc(100% + 30px);
    border-radius: 0px 200px 0px 0px;
  }

  /* line 1046, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block {
    z-index: 1;
    padding-top: 125px;
  }
  /* line 1050, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block {
    width: calc(50% + 50px);
    left: calc(45% - 50px);
    flex-direction: column;
  }
  /* line 1054, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick {
    width: 100%;
    order: 2;
  }
  /* line 1058, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-block {
    width: 100%;
  }
  /* line 1061, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box {
    float: right;
  }
  /* line 1065, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-arrow-box {
    width: 100%;
    display: flex;
    order: 1;
    justify-content: flex-end;
  }
  /* line 1071, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-arrow-box .layout-articles-arrow:nth-child(1) {
    margin-right: 20px;
  }
  /* line 1077, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info-slick {
    width: 500px;
  }

  /* line 1082, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block {
    padding-top: 0;
  }
  /* line 1084, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-img-box {
    padding-top: 110px;
  }
  /* line 1087, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-bg {
    border-top-left-radius: 30%;
  }

  /* line 1091, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .slick-arrow-box {
    bottom: -40px;
    left: calc(50% - 90px);
  }

  /* line 1095, scss/layouts/pages/_cosmetic.scss */
  .rwd-layout-service-class {
    display: block !important;
  }

  /* line 1099, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box {
    z-index: 2;
  }
  /* line 1101, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box .layout-service-class-slick {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border-radius: 0;
    display: none;
    border-radius: 0 0 30px 0;
  }
  /* line 1110, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box .layout-service-class-slick .layout-service-class-slide .layout-service-class-title {
    color: #B78830;
  }
  /* line 1114, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box .layout-service-class-slick .layout-service-class-slide.slick-current .layout-service-class-title {
    color: #fff;
  }

  /* line 1122, scss/layouts/pages/_cosmetic.scss */
  .layout-team-link-img {
    max-width: 50%;
  }
}
@media (max-width: 1199px) and (min-width: 1000px) {
  /* line 1132, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box {
    width: 45%;
  }
  /* line 1135, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box {
    width: 50%;
  }
  /* line 1140, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link {
    width: calc((100% - 20px) / 2);
    margin-right: 20px !important;
  }
  /* line 1143, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media (max-width: 1000px) {
  /* line 1156, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right,
  .cosmetic-section1 .cosmetic-section1-left {
    width: 50%;
  }
  /* line 1160, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right {
    width: 50%;
    padding-left: 30px;
  }
  /* line 1163, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .en-title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  /* line 1168, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .index-slogan {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* line 1175, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 {
    padding-top: 30px;
  }

  /* line 1180, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list {
    width: calc(50% - 30px);
  }

  /* line 1188, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list {
    display: block;
  }
  /* line 1190, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box,
  .layout-service-block .layout-service .layout-service-list .layout-info-box {
    width: 100%;
  }
  /* line 1195, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box .layout-service-img {
    padding-bottom: 75%;
  }
  /* line 1199, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box {
    padding: 30px 0 0 0;
  }

  /* line 1205, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block {
    padding-right: 0;
  }
  /* line 1207, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .inner {
    padding-left: 0;
    border-radius: 160px 0;
  }
  /* line 1211, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-bg-title {
    font-size: 100px;
  }
  /* line 1214, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-title {
    padding: 0;
  }
  /* line 1218, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-articles-title-box .layout-service-bg-title {
    font-size: 100px;
  }
  /* line 1222, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-box {
    padding: 65px 0 100px 0;
  }

  /* line 1226, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block {
    padding: 80px 0;
  }
  /* line 1228, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-title-box {
    padding: 50px 0 0 0;
  }
  /* line 1230, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-title-box .layout-service-bg-title {
    font-size: 100px;
    top: 20px;
  }
  /* line 1234, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-title-box .link-box {
    display: none;
  }
  /* line 1239, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block {
    width: 90%;
    margin: 0 auto;
    padding-top: 0;
  }
  /* line 1243, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  /* line 1248, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box {
    float: initial;
    width: auto;
  }
  /* line 1251, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .layout-articles-arrow {
    position: absolute;
    top: calc(50% - 40px);
  }
  /* line 1255, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .perv-arrow {
    left: -30px;
  }
  /* line 1258, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .next-arrow {
    right: -30px;
  }
  /* line 1264, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block {
    width: 100%;
    position: relative;
    left: inherit;
  }
  /* line 1269, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-img-slick .layout-articles-img {
    padding-bottom: 75%;
  }
  /* line 1274, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block {
    width: 100%;
    margin-top: 30px;
  }
  /* line 1277, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info-slick {
    width: 100%;
  }
  /* line 1280, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info {
    margin-left: 0;
  }
  /* line 1282, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info a {
    padding: 50px 40px;
    border-radius: 50px;
  }
  /* line 1289, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .rwd-link-box {
    margin-top: 30px;
  }

  /* line 1295, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-info-box {
    flex-direction: column;
    padding-bottom: 0;
  }
  /* line 1299, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-info,
  .layout-team-block .layout-team-img-box {
    width: 100%;
  }
  /* line 1303, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-img-box {
    position: relative;
    bottom: initial;
    padding-top: 0;
  }
  /* line 1307, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-img-box .layout-team-img {
    margin-top: 30px;
  }
  /* line 1311, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .link-box {
    display: none;
  }

  /* line 1315, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-img-slick {
    pointer-events: auto !important;
  }

  /* line 1321, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box {
    margin-top: -10vw;
  }
}
@media (max-width: 800px) {
  /* line 1329, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block {
    padding-top: 91px;
  }
  /* line 1331, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .page-banner {
    margin: 0;
  }
  /* line 1333, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .page-banner span {
    padding-bottom: 75%;
  }
  /* line 1337, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .inner {
    width: 100%;
  }
  /* line 1340, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .slick-arrow-box {
    bottom: -25px;
    left: calc(50% - 55px);
  }
  /* line 1343, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .slick-arrow-box .slick-arrow-next {
    border-bottom-right-radius: 25px;
  }
  /* line 1346, scss/layouts/pages/_cosmetic.scss */
  .page-banner-block .slick-arrow-box .slick-arrow-prev {
    border-bottom-left-radius: 25px;
    margin-right: 10px;
  }

  /* line 1353, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right,
  .cosmetic-section1 .cosmetic-section1-left {
    width: 100%;
  }
  /* line 1357, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .inner {
    display: block;
  }
  /* line 1360, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right {
    padding-left: 0;
    margin-top: 30px;
  }
  /* line 1363, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .cosmetic-section1-info {
    padding-left: 0;
  }

  /* line 1369, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block {
    padding: 50px 0;
  }
  /* line 1371, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block {
    overflow: unset;
    padding: 1px;
    margin-top: 10px;
  }
  /* line 1375, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .slick-list {
    overflow: hidden;
  }
  /* line 1381, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow {
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
  }
  /* line 1385, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .layout-articles-arrow span {
    width: 20px;
    display: flex;
  }
  /* line 1390, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .next-arrow {
    right: -15px;
  }
  /* line 1393, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-img-slick-block .layout-articles-arrow-box .perv-arrow {
    left: -15px;
  }
  /* line 1398, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block {
    margin-top: 30px;
  }
  /* line 1400, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block {
    margin-bottom: 0;
  }
  /* line 1402, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box {
    margin-top: 0 !important;
  }
  /* line 1404, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .next-arrow {
    right: -15px;
  }
  /* line 1407, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .perv-arrow {
    left: -15px;
  }

  /* line 1416, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box {
    display: block;
  }
  /* line 1418, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    padding: 30px 30px;
  }
  /* line 1423, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-en {
    font-size: 24px;
  }
  /* line 1426, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link .layout-team-link-p {
    min-height: 95px;
    font-size: 20px;
  }
  /* line 1430, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link:nth-child(1) {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  /* line 1435, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-link-box .layout-team-link:nth-child(2) {
    margin-top: 30px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
  }
  /* line 1444, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .index-service-class-box {
    margin-bottom: 30px;
  }
  /* line 1447, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .layout-team-bg {
    height: calc(100% + 100px);
    border-top-left-radius: 150px;
  }

  /* line 1452, scss/layouts/pages/_cosmetic.scss */
  .layout-team-link-img {
    max-width: 30%;
  }

  /* line 1455, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .cosmetic-section2-bg {
    border-radius: 0px 100px 0px 0px;
  }

  /* line 1459, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .inner {
    border-radius: 100px 0;
  }
}
@media (max-width: 500px) {
  /* line 1466, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 {
    padding-top: 0;
  }
  /* line 1469, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .cosmetic-section1-info {
    padding-right: 0;
  }
  /* line 1472, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section1 .cosmetic-section1-right .en-title {
    font-size: 40px;
    line-height: 40px;
  }

  /* line 1481, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .cosmetic-info-list-box .cosmetic-info-list {
    margin: 0;
    padding: 30px 45px;
  }
  /* line 1486, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .pc-cosmetic {
    display: none;
  }
  /* line 1489, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .mob-cosmetic {
    opacity: 1;
    height: auto;
    pointer-events: visible;
  }
  /* line 1495, scss/layouts/pages/_cosmetic.scss */
  .cosmetic-section2 .mob-cosmetic-arrow-box {
    display: block;
  }

  /* line 1504, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link {
    width: calc(50% - 10px);
    margin-right: 20px !important;
  }
  /* line 1507, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:nth-child(even) {
    margin-right: 0 !important;
  }

  /* line 1516, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block {
    padding-top: 0;
  }
  /* line 1519, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-title-box .layout-service-bg-title {
    display: none;
    font-size: 60px;
    top: 44px;
  }
  /* line 1526, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block {
    display: none;
  }
  /* line 1528, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box {
    justify-content: flex-start;
    margin-top: 20px;
  }
  /* line 1532, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-slick-block .layout-articles-arrow-block .layout-articles-arrow-box .layout-articles-arrow:nth-child(1) {
    margin-bottom: 0;
  }
  /* line 1544, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info a {
    padding: 30px 20px;
    border-radius: 20px;
  }
  /* line 1548, scss/layouts/pages/_cosmetic.scss */
  .layout-articles-block .layout-articles-info-block .layout-articles-info .index-slogan {
    font-size: 20px;
    padding-left: 20px;
  }

  /* line 1556, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-class-box {
    margin-top: 0;
  }
  /* line 1559, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-title {
    font-size: 24px;
  }
  /* line 1562, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service-bg-title {
    font-size: 60px;
  }
  /* line 1567, scss/layouts/pages/_cosmetic.scss */
  .layout-service-block .layout-service .layout-service-list .layout-service-img-box {
    border-radius: 0 60px;
  }

  /* line 1573, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block {
    padding: 0px 0 100px 0;
  }
  /* line 1575, scss/layouts/pages/_cosmetic.scss */
  .layout-team-block .en-title {
    margin-bottom: 30px;
  }
}
/* line 1581, scss/layouts/pages/_cosmetic.scss */
.no_scale {
  -moz-transform: scale(1, 1) !important;
  -o-transform: scale(1, 1) !important;
  -webkit-transform: scale(1, 1) !important;
  transform: scale(1, 1) !important;
  filter: FlipH;
  -ms-filter: "FlipH";
}

/* line 2, scss/layouts/pages/_hair.scss */
.hair-section1 .cosmetic-section1-left {
  order: 2;
}
/* line 5, scss/layouts/pages/_hair.scss */
.hair-section1 .cosmetic-section1-right {
  order: 1;
  padding-left: 0;
  padding-right: 20px;
}
/* line 9, scss/layouts/pages/_hair.scss */
.hair-section1 .cosmetic-section1-right .en-title {
  color: #B78830;
}
/* line 13, scss/layouts/pages/_hair.scss */
.hair-section1 .cosmetic-section1-right-img {
  right: 20px;
}

/* line 18, scss/layouts/pages/_hair.scss */
.hair-section2 {
  padding: 125px 0;
}
/* line 20, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-box {
  position: relative;
  z-index: 1;
}
/* line 24, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block {
  position: relative;
}
/* line 26, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box {
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  padding: 94px 0;
}
/* line 33, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
  width: 187px;
  margin: 0 13px;
}
/* line 37, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list-title {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
/* line 46, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list-p {
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  color: #828282;
  position: relative;
  letter-spacing: 1px;
  z-index: 1;
}
/* line 55, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list-img {
  height: 75px;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* line 61, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  display: block;
  border: 1px solid #B78830;
  border-radius: 45px;
  transition: all .5s;
  opacity: 0.3;
}
/* line 74, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box:nth-child(2) {
  position: absolute;
  right: 0;
  top: -90px;
}
/* line 79, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box.active {
  z-index: 2;
}
/* line 81, scss/layouts/pages/_hair.scss */
.hair-section2 .hair-section2-list-block .hair-section2-list-box.active .hair-section2-list-bg {
  opacity: 1;
}
/* line 87, scss/layouts/pages/_hair.scss */
.hair-section2 .index-slogan {
  padding-left: 30px;
}
/* line 89, scss/layouts/pages/_hair.scss */
.hair-section2 .index-slogan::after {
  width: 1px;
  left: 0;
}
/* line 94, scss/layouts/pages/_hair.scss */
.hair-section2 .cosmetic-section2-bg {
  overflow: hidden;
}
/* line 96, scss/layouts/pages/_hair.scss */
.hair-section2 .cosmetic-section2-bg .hair-section2-bg-img {
  position: relative;
  top: -10%;
}

/* line 104, scss/layouts/pages/_hair.scss */
.hair-service3 .inner {
  background-color: #C3B8A2;
}
/* line 107, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service-bg-title {
  opacity: 0.1;
}
/* line 114, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link {
  background-color: #FFF;
}
/* line 116, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover {
  background-color: #B78830;
  border: 1px solid #B78830;
}
/* line 119, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover span {
  color: #FFF;
}
/* line 121, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service .layout-service-list .layout-info-box .layout-info-link-box .layout-info-link:hover span:after {
  color: #FFF;
}
/* line 133, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service-class-slide.slick-current {
  background-color: #681414;
}
@media (min-width: 1201px) {
  /* line 138, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-box {
    top: 115px;
  }
  /* line 140, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-box .layout-service-class-slick {
    border: none;
    border-radius: 0;
  }
  /* line 145, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50px;
    border: 1px solid #B78830;
  }
  /* line 151, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide .layout-service-class-title {
    color: #B78830;
  }
  /* line 154, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide:last-child {
    border-bottom: 1px solid #B78830;
  }
  /* line 157, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide.slick-current {
    width: 100%;
    height: 100px;
    background-color: #681414;
    border: 1px solid #681414;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 50px;
  }
  /* line 167, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide:hover {
    background-color: #681414;
    border: 1px solid #681414;
  }
}
/* line 175, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service-class-box .rwd-layout-service-class {
  background-color: #FFF;
  color: #B78830;
}
/* line 181, scss/layouts/pages/_hair.scss */
.hair-service3 .layout-service-class-box .rwd-layout-service-class:after {
  background-image: url(./static/cosmetic/arrow-down-sign-to-navigate-2.png);
}

/* line 189, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a {
  transition: all .3s;
}
/* line 191, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a .index-slogan {
  transition: all .3s;
}
/* line 193, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a .index-slogan:after {
  transition: all .3s;
}
/* line 197, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a .layout-articles-info-p {
  transition: all .3s;
}
/* line 200, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a:hover {
  background-color: #C3B8A2;
}
/* line 202, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a:hover .index-slogan {
  color: #B78830;
}
/* line 204, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a:hover .index-slogan:after {
  background-color: #B78830;
}
/* line 208, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info a:hover .layout-articles-info-p {
  color: #FFF;
}
/* line 216, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info-block .layout-articles-info a:hover {
  border: 1px solid #B78830;
  background-color: #B78830;
}
/* line 219, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info-block .layout-articles-info a:hover .index-slogan {
  color: #FFF;
}
/* line 221, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info-block .layout-articles-info a:hover .index-slogan::after {
  background-color: #FFF;
}
/* line 226, scss/layouts/pages/_hair.scss */
.hair-service4 .layout-articles-info-block .layout-articles-info a:hover .layout-articles-info-date {
  color: #C3B8A2;
}

/* line 234, scss/layouts/pages/_hair.scss */
.hair-service5 .layout-team-info-box {
  justify-content: flex-end;
}
/* line 239, scss/layouts/pages/_hair.scss */
.hair-service5 .layout-team-link-box .layout-team-link:nth-child(1) {
  margin-top: 60px;
}
/* line 242, scss/layouts/pages/_hair.scss */
.hair-service5 .layout-team-link-box .layout-team-link:nth-child(2) {
  margin-top: 0;
}
/* line 247, scss/layouts/pages/_hair.scss */
.hair-service5 .link-box {
  top: -20px;
  right: initial;
  left: 0;
}
@media (max-width: 1500px) {
  /* line 247, scss/layouts/pages/_hair.scss */
  .hair-service5 .link-box {
    top: -70px;
  }
}
@media (max-width: 1199px) {
  /* line 247, scss/layouts/pages/_hair.scss */
  .hair-service5 .link-box {
    top: 0;
  }
}
/* line 258, scss/layouts/pages/_hair.scss */
.hair-service5 .en-title {
  color: #B78830;
}
/* line 262, scss/layouts/pages/_hair.scss */
.hair-service5 .index-service-class-box .index-service-class:hover {
  background-color: #B78830;
  border: 1px solid #B78830;
}
/* line 267, scss/layouts/pages/_hair.scss */
.hair-service5 .layout-team-img-box {
  right: initial;
  left: 0;
}
@media (min-width: 1200px) {
  /* line 272, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-info {
    width: 590px;
    padding-right: 110px;
  }
  /* line 276, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box {
    width: calc(100% - 590px);
    padding-left: 110px;
    padding-right: 30px;
  }
  /* line 281, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box .layout-team-img {
    width: 623px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  /* line 276, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box {
    padding-left: 60px;
  }
}

@media (max-width: 1199px) {
  /* line 293, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-info {
    width: 50%;
    padding-left: 10px;
  }
  /* line 297, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box {
    width: 50%;
    padding-right: 10px;
  }
}
@media (max-width: 1000px) {
  /* line 304, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-link-box {
    margin-top: -10vw;
  }
  /* line 307, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-info {
    width: 100%;
    padding-left: 0px;
  }
  /* line 311, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box {
    width: 100%;
    padding-right: 0px;
  }
  /* line 314, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img-box .layout-team-img {
    width: 623px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  }
}

/* line 324, scss/layouts/pages/_hair.scss */
.hair-section1 .cosmetic-section1-right .rwd-link-box:hover {
  background-color: #B78830;
}

@media (max-width: 1680px) {
  /* line 331, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box {
    width: 52%;
  }
  /* line 333, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
    width: 168px;
  }
}
@media (max-width: 1480px) {
  /* line 345, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
    width: 145px;
  }
}
@media (max-width: 1300px) {
  /* line 357, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
    width: 130px;
  }
}
@media (max-width: 1200px) {
  /* line 368, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box {
    width: 100%;
    background-color: #FFF;
    border: 1px solid #B78830;
    border-radius: 45px;
    padding: 40px 0;
  }
  /* line 374, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box:nth-child(2) {
    position: static;
    margin-top: 20px;
  }
  /* line 378, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list-bg {
    display: none;
  }
  /* line 381, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
    width: 30%;
  }

  /* line 389, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-box .layout-service-class-slick {
    border: 1px solid #B78830;
  }
  /* line 394, scss/layouts/pages/_hair.scss */
  .hair-service3 .layout-service-class-slide {
    border-bottom: 1px solid #B78830;
  }
}
@media (max-width: 800px) {
  /* line 401, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-link-box .layout-team-link:nth-child(1) {
    margin-top: 0;
  }

  /* line 404, scss/layouts/pages/_hair.scss */
  .hair-service5 .layout-team-img {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  /* line 411, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block {
    background-color: #FFF;
    border: 1px solid #B78830;
    border-radius: 45px;
    padding: 40px 0;
  }
  /* line 416, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box {
    border: none;
    padding: 0;
    background-color: transparent;
    display: block;
  }
  /* line 421, scss/layouts/pages/_hair.scss */
  .hair-section2 .hair-section2-list-block .hair-section2-list-box .hair-section2-list {
    width: calc(100% - 30px);
    margin-bottom: 20px;
  }
}
/* line 5, scss/layouts/pages/_services.scss */
.mce-content-body .gallery_img {
  display: block;
}
/* line 8, scss/layouts/pages/_services.scss */
.mce-content-body p {
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 36px;
  color: #828282;
  margin-bottom: 30px;
}
/* line 14, scss/layouts/pages/_services.scss */
.mce-content-body p.bold {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #333;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 21, scss/layouts/pages/_services.scss */
.mce-content-body p + .p_border {
  margin-top: 90px;
}
/* line 24, scss/layouts/pages/_services.scss */
.mce-content-body p + .p_no_border {
  margin-top: 90px;
}
/* line 27, scss/layouts/pages/_services.scss */
.mce-content-body p.h6_1 {
  margin-bottom: 17px;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 380px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 26px;
    line-height: 38px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 27, scss/layouts/pages/_services.scss */
  .mce-content-body p.h6_1 {
    font-size: 28px;
    line-height: 40px;
  }
}
/* line 60, scss/layouts/pages/_services.scss */
.mce-content-body img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 50px;
}
/* line 66, scss/layouts/pages/_services.scss */
.mce-content-body img + .p_border {
  margin-top: 90px;
}
/* line 69, scss/layouts/pages/_services.scss */
.mce-content-body img + .p_no_border {
  margin-top: 90px;
}
/* line 73, scss/layouts/pages/_services.scss */
.mce-content-body .p_border {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #000000;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 81, scss/layouts/pages/_services.scss */
.mce-content-body .p_border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: calc(100% - 10px);
  width: 2px;
  background: #000000;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 92, scss/layouts/pages/_services.scss */
.mce-content-body .p_border + .p_icon {
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  /* line 73, scss/layouts/pages/_services.scss */
  .mce-content-body .p_border {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 73, scss/layouts/pages/_services.scss */
  .mce-content-body .p_border {
    font-size: 20px;
    line-height: 30px;
  }
}
/* line 107, scss/layouts/pages/_services.scss */
.mce-content-body .p_no_border {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #000000;
  position: relative;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 114, scss/layouts/pages/_services.scss */
.mce-content-body .p_no_border + .p_icon {
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  /* line 107, scss/layouts/pages/_services.scss */
  .mce-content-body .p_no_border {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 107, scss/layouts/pages/_services.scss */
  .mce-content-body .p_no_border {
    font-size: 20px;
    line-height: 30px;
  }
}
/* line 127, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}
/* line 133, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon.h8 {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  padding-left: 43px;
}
@media screen and (max-width: 992px) {
  /* line 133, scss/layouts/pages/_services.scss */
  .mce-content-body .p_icon.h8 {
    font-size: 18px;
    line-height: 28px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  /* line 133, scss/layouts/pages/_services.scss */
  .mce-content-body .p_icon.h8 {
    font-size: 16px;
    line-height: 26px;
    padding-left: 35px;
  }
}
/* line 150, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon img {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  max-width: 26px;
}
@media screen and (max-width: 767px) {
  /* line 150, scss/layouts/pages/_services.scss */
  .mce-content-body .p_icon img {
    max-width: 20px;
  }
}
/* line 162, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon + .p_border {
  margin-top: 55px;
}
/* line 165, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon + .p_no_border {
  margin-top: 55px;
}
/* line 168, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon + img {
  margin-top: 30px;
}
/* line 171, scss/layouts/pages/_services.scss */
.mce-content-body .p_icon:last-child {
  margin-bottom: 58px;
}
/* line 177, scss/layouts/pages/_services.scss */
.mce-content-body .tab_title + .p_border {
  margin-top: 0;
}
/* line 180, scss/layouts/pages/_services.scss */
.mce-content-body .tab_title + .p_no_border {
  margin-top: 0;
}
/* line 183, scss/layouts/pages/_services.scss */
.mce-content-body .tab_title + p {
  margin-top: 0;
}

/* line 191, scss/layouts/pages/_services.scss */
.tab_title {
  text-align: center;
  padding-bottom: 26px;
  position: relative;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  margin-bottom: 60px;
}
/* line 199, scss/layouts/pages/_services.scss */
.tab_title + .p_border {
  margin-top: 0;
}
/* line 202, scss/layouts/pages/_services.scss */
.tab_title + .p_no_border {
  margin-top: 0;
}
/* line 205, scss/layouts/pages/_services.scss */
.tab_title + p {
  margin-top: 0;
}
/* line 208, scss/layouts/pages/_services.scss */
.tab_title:before {
  height: 1px;
  top: 100%;
  left: 50%;
  content: '';
  width: 2em;
  background: #681414;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: block;
}

/* line 222, scss/layouts/pages/_services.scss */
.qa_box {
  margin-bottom: 45px;
  padding-left: 30px;
  position: relative;
}
/* line 226, scss/layouts/pages/_services.scss */
.qa_box > p.Cormorant {
  position: absolute;
  left: 0;
  top: -16px;
  background: #681414;
  color: #ffff;
  text-align: center;
  font-size: 20px;
  line-height: 55px;
  width: 55px;
  -webkit-border-radius: 28px 28px 0 28px;
  -moz-border-radius: 28px 28px 0 28px;
  border-radius: 28px 28px 0 28px;
  font-weight: 700;
}
/* line 239, scss/layouts/pages/_services.scss */
.qa_box .in_box {
  padding: 34px 90px;
  width: 100%;
  border: solid 1px #C3B8A2;
  -webkit-border-radius: 0 50px 0 50px;
  -moz-border-radius: 0 50px 0 50px;
  border-radius: 0 50px 0 50px;
}
/* line 244, scss/layouts/pages/_services.scss */
.qa_box .in_box div {
  position: relative;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 23px;
  padding-left: 35px;
  color: #000000;
  letter-spacing: 0.1em;
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
  margin-bottom: 0;
}
/* line 254, scss/layouts/pages/_services.scss */
.qa_box .in_box div img {
  margin-top: 30px;
  margin-bottom: 0;
}
/* line 258, scss/layouts/pages/_services.scss */
.qa_box .in_box div ul {
  margin-top: 18px;
  list-style-type: none;
}
/* line 261, scss/layouts/pages/_services.scss */
.qa_box .in_box div ul li {
  font-size: 16px;
  line-height: 35px;
  color: #828282;
  padding-left: 27px;
  position: relative;
  letter-spacing: 0.1em;
}
/* line 268, scss/layouts/pages/_services.scss */
.qa_box .in_box div ul li:before {
  height: 1px;
  top: 17px;
  left: 12px;
  content: '';
  width: 4px;
  height: 4px;
  background: #828282;
  position: absolute;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 284, scss/layouts/pages/_services.scss */
.qa_box .in_box div a {
  color: #681414;
  text-decoration: underline;
}
/* line 287, scss/layouts/pages/_services.scss */
.qa_box .in_box div a:hover {
  color: #B78830;
}
/* line 291, scss/layouts/pages/_services.scss */
.qa_box .in_box div .Cormorant {
  left: 0;
  top: 0;
  position: absolute;
  font-size: 24px;
  line-height: 25px;
  color: #681414;
  font-weight: 600;
}
/* line 300, scss/layouts/pages/_services.scss */
.qa_box .in_box div:last-child {
  padding-bottom: 0;
  margin-top: 18px;
  font-size: 16px;
  line-height: 35px;
  color: #828282;
  border-bottom: none;
}
/* line 307, scss/layouts/pages/_services.scss */
.qa_box .in_box div:last-child .Cormorant {
  top: 5px;
  color: #C3B8A2;
}
/* line 314, scss/layouts/pages/_services.scss */
.qa_box:last-child {
  margin-bottom: 92px;
}
@media screen and (max-width: 1600px) {
  /* line 318, scss/layouts/pages/_services.scss */
  .qa_box .in_box {
    padding: 34px 70px;
  }
}
@media screen and (max-width: 1400px) {
  /* line 324, scss/layouts/pages/_services.scss */
  .qa_box .in_box {
    padding: 34px 50px;
  }
}
@media screen and (max-width: 1200px) {
  /* line 329, scss/layouts/pages/_services.scss */
  .qa_box .in_box {
    padding: 35px 40px;
  }
  /* line 331, scss/layouts/pages/_services.scss */
  .qa_box .in_box div {
    padding-left: 30px;
  }
  /* line 335, scss/layouts/pages/_services.scss */
  .qa_box:last-child {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  /* line 340, scss/layouts/pages/_services.scss */
  .qa_box:last-child {
    margin-bottom: 60px;
  }
  /* line 344, scss/layouts/pages/_services.scss */
  .qa_box .in_box div {
    font-size: 16px;
    line-height: 25px;
  }
  /* line 347, scss/layouts/pages/_services.scss */
  .qa_box .in_box div .Cormorant {
    font-size: 22px;
    line-height: 25px;
  }
  /* line 352, scss/layouts/pages/_services.scss */
  .qa_box .in_box div ul li {
    font-size: 16px;
    line-height: 25px;
  }
  /* line 355, scss/layouts/pages/_services.scss */
  .qa_box .in_box div ul li:before {
    top: 12px;
  }
  /* line 361, scss/layouts/pages/_services.scss */
  .qa_box .in_box div:last-child {
    font-size: 15px;
    line-height: 33px;
  }
  /* line 364, scss/layouts/pages/_services.scss */
  .qa_box .in_box div:last-child .Cormorant {
    top: 4px;
  }
}
@media screen and (max-width: 550px) {
  /* line 222, scss/layouts/pages/_services.scss */
  .qa_box {
    padding-left: 0;
  }
  /* line 373, scss/layouts/pages/_services.scss */
  .qa_box > p.Cormorant {
    left: -16px;
  }
  /* line 376, scss/layouts/pages/_services.scss */
  .qa_box .in_box {
    padding: 30px 15px;
    padding-top: 55px;
  }
}

/* line 383, scss/layouts/pages/_services.scss */
.services_five {
  padding-top: 85px;
  margin-top: 100px;
  border-top: solid 1px rgba(150, 150, 150, 0.2);
}
@media screen and (max-width: 1400px) {
  /* line 383, scss/layouts/pages/_services.scss */
  .services_five {
    padding-top: 60px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 383, scss/layouts/pages/_services.scss */
  .services_five {
    padding-top: 40px;
    margin-top: 60px;
  }
}
/* line 395, scss/layouts/pages/_services.scss */
.services_five .number_box {
  margin-left: -15px;
  width: calc(100% + 30px);
  font-size: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* line 403, scss/layouts/pages/_services.scss */
.services_five .number_box .in_box {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 48px;
  width: 20%;
  text-align: center;
  display: flex;
  justify-content: center;
}
/* line 411, scss/layouts/pages/_services.scss */
.services_five .number_box .in_box div {
  width: 220px;
  padding: 0 15px;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}
/* line 418, scss/layouts/pages/_services.scss */
.services_five .number_box .in_box div img {
  margin-bottom: 20px;
}
/* line 421, scss/layouts/pages/_services.scss */
.services_five .number_box .in_box div p {
  text-align: center;
  font-size: 16px;
  line-height: 25.6px;
  margin-bottom: 0;
}
/* line 426, scss/layouts/pages/_services.scss */
.services_five .number_box .in_box div p.black {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
@media screen and (max-width: 1399px) {
  /* line 438, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box {
    width: calc(100% / 3);
  }
  /* line 441, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box div {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  /* line 448, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box {
    width: 50%;
  }
  /* line 452, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box div p.black {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  /* line 462, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box {
    width: 100%;
  }
  /* line 464, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box div {
    width: 100%;
  }
  /* line 466, scss/layouts/pages/_services.scss */
  .services_five .number_box .in_box div img {
    width: 180px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

/* line 480, scss/layouts/pages/_services.scss */
.services_seven {
  padding-top: 85px;
  margin-top: 100px;
  border-top: solid 1px rgba(150, 150, 150, 0.2);
}
@media screen and (max-width: 1400px) {
  /* line 480, scss/layouts/pages/_services.scss */
  .services_seven {
    padding-top: 60px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 480, scss/layouts/pages/_services.scss */
  .services_seven {
    padding-top: 40px;
    margin-top: 60px;
  }
}
/* line 492, scss/layouts/pages/_services.scss */
.services_seven .number_box {
  margin-left: -15px;
  width: calc(100% + 30px);
  font-size: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* line 500, scss/layouts/pages/_services.scss */
.services_seven .number_box .in_box {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 48px;
  width: calc(100% / 7);
  text-align: center;
  display: flex;
  justify-content: center;
}
/* line 508, scss/layouts/pages/_services.scss */
.services_seven .number_box .in_box div {
  width: 220px;
  padding: 0 15px;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}
/* line 515, scss/layouts/pages/_services.scss */
.services_seven .number_box .in_box div img {
  margin-bottom: 20px;
}
/* line 518, scss/layouts/pages/_services.scss */
.services_seven .number_box .in_box div p {
  text-align: center;
  font-size: 16px;
  line-height: 25.6px;
  margin-bottom: 0;
}
/* line 523, scss/layouts/pages/_services.scss */
.services_seven .number_box .in_box div p.black {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
@media screen and (max-width: 1600px) {
  /* line 535, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box {
    width: 25%;
  }
}
@media screen and (max-width: 1199px) {
  /* line 541, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box {
    width: calc(100% / 3);
  }
  /* line 544, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box div {
    width: 220px;
  }
}
@media screen and (max-width: 900px) {
  /* line 551, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box {
    width: 50%;
  }
  /* line 555, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box div p.black {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  /* line 565, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box {
    width: 100%;
  }
  /* line 567, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box div {
    width: 100%;
  }
  /* line 569, scss/layouts/pages/_services.scss */
  .services_seven .number_box .in_box div img {
    width: 180px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

/* line 583, scss/layouts/pages/_services.scss */
.services_eight {
  padding-top: 85px;
  margin-top: 100px;
  border-top: solid 1px rgba(150, 150, 150, 0.2);
}
@media screen and (max-width: 1400px) {
  /* line 583, scss/layouts/pages/_services.scss */
  .services_eight {
    padding-top: 60px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 583, scss/layouts/pages/_services.scss */
  .services_eight {
    padding-top: 40px;
    margin-top: 60px;
  }
}
/* line 595, scss/layouts/pages/_services.scss */
.services_eight .number_box {
  margin-left: -15px;
  width: calc(100% + 30px);
  font-size: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* line 603, scss/layouts/pages/_services.scss */
.services_eight .number_box .in_box {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 48px;
  width: calc(100% / 8);
  text-align: center;
  display: flex;
  justify-content: center;
}
/* line 611, scss/layouts/pages/_services.scss */
.services_eight .number_box .in_box div {
  width: 220px;
  padding: 0 8px;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}
/* line 617, scss/layouts/pages/_services.scss */
.services_eight .number_box .in_box div img {
  margin-bottom: 20px;
}
/* line 620, scss/layouts/pages/_services.scss */
.services_eight .number_box .in_box div p {
  text-align: center;
  font-size: 16px;
  line-height: 25.6px;
  margin-bottom: 0;
}
/* line 625, scss/layouts/pages/_services.scss */
.services_eight .number_box .in_box div p.black {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
@media screen and (max-width: 1600px) {
  /* line 637, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box {
    width: 25%;
  }
  /* line 639, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box div {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 646, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box {
    width: calc(100% / 3);
  }
  /* line 649, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box div {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  /* line 656, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box {
    width: 50%;
  }
  /* line 660, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box div p.black {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  /* line 670, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box {
    width: 100%;
  }
  /* line 672, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box div {
    width: 100%;
  }
  /* line 674, scss/layouts/pages/_services.scss */
  .services_eight .number_box .in_box div img {
    width: 180px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}

/* line 688, scss/layouts/pages/_services.scss */
.border_box {
  margin-bottom: 25px;
  font-size: 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
/* line 694, scss/layouts/pages/_services.scss */
.border_box p {
  border: solid 1px #B78830;
  margin: 0 7.5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 8px 30px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
/* line 702, scss/layouts/pages/_services.scss */
.border_box p span {
  font-size: 16px;
  line-height: 22px;
  color: #828282;
  position: relative;
}
/* line 707, scss/layouts/pages/_services.scss */
.border_box p span:first-child {
  font-weight: 400;
  color: #000000;
  padding-right: 15px;
  margin-right: 15px;
  white-space: nowrap;
}
/* line 713, scss/layouts/pages/_services.scss */
.border_box p span:first-child:before {
  height: 12px;
  top: 50%;
  content: '';
  width: 1px;
  background: #828282;
  position: absolute;
  right: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  display: block;
}
@media screen and (max-width: 900px) {
  /* line 688, scss/layouts/pages/_services.scss */
  .border_box {
    flex-wrap: wrap;
  }
  /* line 730, scss/layouts/pages/_services.scss */
  .border_box p {
    width: 100%;
    justify-content: center;
  }
  /* line 734, scss/layouts/pages/_services.scss */
  .border_box p span:first-child {
    width: 115px;
  }
}
@media screen and (max-width: 550px) {
  /* line 742, scss/layouts/pages/_services.scss */
  .border_box p {
    display: inline-block;
    padding: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
  }
  /* line 746, scss/layouts/pages/_services.scss */
  .border_box p span {
    display: block;
    font-size: 14px;
    line-height: 20px;
  }
  /* line 750, scss/layouts/pages/_services.scss */
  .border_box p span:first-child {
    padding-right: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    width: 100%;
  }
  /* line 757, scss/layouts/pages/_services.scss */
  .border_box p span:first-child:before {
    display: none;
  }
}

/* line 772, scss/layouts/pages/_services.scss */
.detail_page .cosmetic-block,
.detail_page .hair-block {
  background-image: url(./images/services/services_bg.webp);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
}
/* line 778, scss/layouts/pages/_services.scss */
.detail_page .cosmetic-block .breadcrumbs,
.detail_page .hair-block .breadcrumbs {
  text-align: right;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 600px) {
  /* line 778, scss/layouts/pages/_services.scss */
  .detail_page .cosmetic-block .breadcrumbs,
  .detail_page .hair-block .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 0;
  }
}
/* line 790, scss/layouts/pages/_services.scss */
.detail_page .cosmetic-block .service_detail .breadcrumbs,
.detail_page .hair-block .service_detail .breadcrumbs {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media screen and (max-width: 768px) {
  /* line 790, scss/layouts/pages/_services.scss */
  .detail_page .cosmetic-block .service_detail .breadcrumbs,
  .detail_page .hair-block .service_detail .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(150, 150, 150, 0.2);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 650px) {
  /* line 790, scss/layouts/pages/_services.scss */
  .detail_page .cosmetic-block .service_detail .breadcrumbs,
  .detail_page .hair-block .service_detail .breadcrumbs {
    text-align: center;
  }
}

/* line 807, scss/layouts/pages/_services.scss */
.mob_show {
  margin-top: 60px;
}
/* line 809, scss/layouts/pages/_services.scss */
.mob_show p {
  font-size: 16px;
  line-height: 30px;
  color: #7B7B7B;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 649px) {
  /* line 807, scss/layouts/pages/_services.scss */
  .mob_show {
    display: block !important;
  }
}

/* line 823, scss/layouts/pages/_services.scss */
.scroll_box {
  width: 100%;
  overflow-y: auto;
  margin-bottom: 90px;
}
/* line 827, scss/layouts/pages/_services.scss */
.scroll_box + .mob_show {
  margin-top: -30px;
  margin-bottom: 90px;
}
/* line 830, scss/layouts/pages/_services.scss */
.scroll_box + .mob_show p {
  margin-bottom: 15px;
}
/* line 833, scss/layouts/pages/_services.scss */
.scroll_box + .mob_show img {
  margin-bottom: 0;
}
/* line 837, scss/layouts/pages/_services.scss */
.scroll_box .mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 5px;
}
/* line 840, scss/layouts/pages/_services.scss */
.scroll_box .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}
/* line 843, scss/layouts/pages/_services.scss */
.scroll_box table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* line 849, scss/layouts/pages/_services.scss */
.scroll_box table tr td img,
.scroll_box table tr th img {
  max-width: inherit;
}
/* line 854, scss/layouts/pages/_services.scss */
.scroll_box table p {
  margin: 0;
  letter-spacing: 0.1em;
}
/* line 859, scss/layouts/pages/_services.scss */
.scroll_box.type_01 {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* line 864, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  width: auto;
  min-width: 100%;
  border: solid 1px rgba(150, 150, 150, 0.2);
  overflow: hidden;
  background: rgba(150, 150, 150, 0.2);
}
/* line 872, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td {
  padding: 30px 26px;
  color: #681414;
  white-space: nowrap;
  font-size: 0;
  font-weight: 400;
  background: #ffff;
  text-align: center;
  position: relative;
}
/* line 881, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td:before {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(150, 150, 150, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
}
/* line 890, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td.slash {
  position: relative;
  overflow: hidden;
}
/* line 893, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td.slash span {
  transform-origin: top left;
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 1px;
  background: rgba(150, 150, 150, 0.2);
}
/* line 903, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td:nth-child(even) {
  background: #F5F3F1;
}
/* line 906, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td p {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
/* line 913, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td:first-child {
  background: #681414;
  white-space: nowrap;
  padding: 30px 26px;
  border-left: none;
  text-align: left;
}
/* line 919, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr td:first-child p {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
  color: #ffff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 767px) {
  /* line 929, scss/layouts/pages/_services.scss */
  .scroll_box.type_01 table tr td p {
    font-size: 16px;
    line-height: 26px;
  }
}
/* line 937, scss/layouts/pages/_services.scss */
.scroll_box.type_01 table tr:last-child td:before {
  display: none;
}
/* line 946, scss/layouts/pages/_services.scss */
.scroll_box.type_02 {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* line 951, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  width: auto;
  min-width: 100%;
  border: solid 1px rgba(150, 150, 150, 0.2);
  overflow: hidden;
  background: rgba(150, 150, 150, 0.2);
}
/* line 959, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td {
  padding: 30px 26px;
  color: #681414;
  white-space: nowrap;
  font-size: 0;
  font-weight: 400;
  background: #ffff;
  position: relative;
}
/* line 967, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td:before {
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(150, 150, 150, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
}
/* line 976, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td:nth-child(even) {
  background: #F5F3F1;
}
/* line 979, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td p {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
/* line 985, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td p.star_s5 {
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  min-width: 120px;
}
/* line 990, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td p.star_s5 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  margin-bottom: 0;
}
/* line 996, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td p.star_s5 img:last-child {
  margin-right: 0;
}
/* line 1002, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td:first-child {
  background: #681414;
  white-space: nowrap;
  padding: 30px 26px;
  border-left: none;
}
/* line 1007, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr td:first-child p {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
  color: #ffff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  /* line 1016, scss/layouts/pages/_services.scss */
  .scroll_box.type_02 table tr td p {
    font-size: 16px;
    line-height: 26px;
  }
}
/* line 1024, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr:last-child td:before {
  display: none;
}
/* line 1031, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr:first-child td p {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
  color: #681414;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
}
/* line 1037, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr:first-child td p:nth-child(2) {
  display: block;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}
/* line 1045, scss/layouts/pages/_services.scss */
.scroll_box.type_02 table tr:first-child td:first-child p {
  color: #ffff;
  font-weight: 500;
}
/* line 1057, scss/layouts/pages/_services.scss */
.scroll_box.type_02.center table tr td {
  text-align: center;
}
/* line 1059, scss/layouts/pages/_services.scss */
.scroll_box.type_02.center table tr td p {
  text-align: center;
}
/* line 1062, scss/layouts/pages/_services.scss */
.scroll_box.type_02.center table tr td:first-child {
  text-align: left;
}
/* line 1064, scss/layouts/pages/_services.scss */
.scroll_box.type_02.center table tr td:first-child p {
  text-align: left;
}

/* line 1075, scss/layouts/pages/_services.scss */
.services_top {
  text-align: center;
  padding-top: 58px;
  position: relative;
  z-index: 2;
}
/* line 1081, scss/layouts/pages/_services.scss */
.services_top p:not(.Cormorant) {
  letter-spacing: 0.2em;
}
/* line 1085, scss/layouts/pages/_services.scss */
.services_top .Cormorant {
  font-size: 250px;
  line-height: 1em;
  color: #F5F3F1;
  margin-bottom: -0.21em;
}
@media screen and (max-width: 1500px) {
  /* line 1092, scss/layouts/pages/_services.scss */
  .services_top .Cormorant {
    font-size: 17vw;
  }
}
@media screen and (max-width: 767px) {
  /* line 1097, scss/layouts/pages/_services.scss */
  .services_top .Cormorant {
    font-size: 19.5vw;
  }
}

/* line 1104, scss/layouts/pages/_services.scss */
.services_center {
  position: relative;
  background: #F5F3F1;
  position: relative;
  z-index: 3;
  -webkit-border-radius: 0 200px 0 0;
  -moz-border-radius: 0 200px 0 0;
  border-radius: 0 200px 0 0;
}
/* line 1110, scss/layouts/pages/_services.scss */
.services_center .services_nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  text-align: center;
  z-index: 99;
}
/* line 1118, scss/layouts/pages/_services.scss */
.services_center .services_nav .wp1520 {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 949px) {
  /* line 1118, scss/layouts/pages/_services.scss */
  .services_center .services_nav .wp1520 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 950px) {
  /* line 1127, scss/layouts/pages/_services.scss */
  .services_center .all_nav {
    display: inline-block;
    width: 920px;
    max-width: 100%;
    background: #ffff;
    border: solid 1px #C3B8A2;
    max-width: 100%;
    padding: 26px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
  }
  /* line 1137, scss/layouts/pages/_services.scss */
  .services_center .all_nav .has_select {
    display: none;
  }
  /* line 1140, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu {
    font-size: 0;
    display: block !important;
    width: 100%;
  }
  /* line 1144, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 18px;
    line-height: 26px;
    padding: 0 10px;
    margin: 0 15px;
    text-align: center;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* line 1156, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a:before {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #828282;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    max-height: 32%;
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    opacity: 0;
    pointer-events: none;
  }
  /* line 1175, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a:hover {
    color: #B78830;
    transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -webkit-transform: translate(10px, 0);
  }
  /* line 1178, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a:hover:before {
    left: -10px;
    background: #B78830;
    opacity: 1;
  }
  /* line 1184, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a.active {
    color: #681414;
    transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
    -o-transform: translate(10px, 0);
    -webkit-transform: translate(10px, 0);
  }
  /* line 1187, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a.active:before {
    left: -10px;
    background: #681414;
    opacity: 1;
  }
}
@media screen and (min-width: 950px) and (max-width: 1200px) {
  /* line 1127, scss/layouts/pages/_services.scss */
  .services_center .all_nav {
    padding: 20px;
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
    border-radius: 33px;
  }
  /* line 1201, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a {
    font-size: 16px;
    line-height: 24px;
    padding: 0 8px;
    margin: 0 10px;
  }
}

@media screen and (max-width: 949px) {
  /* line 1127, scss/layouts/pages/_services.scss */
  .services_center .all_nav {
    padding: 8px;
    background: #ffff;
    border: 1px solid #F5F3F1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-align: left;
    position: relative;
    width: 610px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 1222, scss/layouts/pages/_services.scss */
  .services_center .all_nav .has_select {
    font-size: 16px;
    line-height: 38px;
    position: relative;
    padding-left: 13px;
    padding-right: 40px;
    cursor: pointer;
  }
  /* line 1229, scss/layouts/pages/_services.scss */
  .services_center .all_nav .has_select span {
    color: rgba(0, 0, 0, 0.5);
  }
  /* line 1232, scss/layouts/pages/_services.scss */
  .services_center .all_nav .has_select .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    pointer-events: none;
  }
  /* line 1241, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 5;
    background: #ffff;
    border: 1px solid #F5F3F1;
    margin-top: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  /* line 1252, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a {
    font-size: 16px;
    line-height: 45px;
    display: block;
    border-bottom: solid 1px #F5F3F1;
    padding: 5px 21px;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* line 1261, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a.active {
    display: none;
  }
  /* line 1263, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a.active.select_type {
    display: block;
  }
  /* line 1267, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a:hover {
    color: #681414;
  }
  /* line 1270, scss/layouts/pages/_services.scss */
  .services_center .all_nav .type_menu a:last-child {
    border-bottom: none;
  }
}
/* line 1277, scss/layouts/pages/_services.scss */
.services_center .in_wp {
  width: 1426px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 100%;
}
/* line 1284, scss/layouts/pages/_services.scss */
.services_center .in_wp > div {
  display: flex;
  padding-left: 30px;
  padding-right: 30px;
}
/* line 1292, scss/layouts/pages/_services.scss */
.services_center .services_list_top {
  position: relative;
  z-index: 5;
}
/* line 1295, scss/layouts/pages/_services.scss */
.services_center .services_list_top .img_box {
  width: 54.7%;
}
/* line 1297, scss/layouts/pages/_services.scss */
.services_center .services_list_top .img_box .hide_img {
  overflow: hidden;
  -webkit-border-radius: 100px 0 100px 0;
  -moz-border-radius: 100px 0 100px 0;
  border-radius: 100px 0 100px 0;
}
/* line 1302, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box {
  width: 584px;
  max-width: 45.3%;
}
/* line 1305, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .solid_title {
  margin-bottom: 30px;
}
/* line 1307, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .solid_title:after {
  height: 22px;
}
@media screen and (max-width: 767px) {
  /* line 1311, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 3px;
  }
}
@media screen and (max-width: 380px) {
  /* line 1316, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1321, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 1326, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 4px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 1331, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 5px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 1336, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .solid_title:after {
    top: 6px;
  }
}
/* line 1341, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box {
  position: relative;
  padding-top: 65px;
  padding-bottom: 120px;
  min-height: 100%;
}
/* line 1346, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .h10 {
  margin-bottom: 80px;
}
/* line 1349, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service {
  left: 0;
  bottom: 30.56%;
  position: absolute;
  transform: translate(0, 50%);
  -moz-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  font-size: 0;
  background: #ffff;
  border: solid 1px #C3B8A2;
  width: 232px;
  padding: 23px 0;
  text-align: center;
  -webkit-border-radius: 0 33px 33px 33px;
  -moz-border-radius: 0 33px 33px 33px;
  border-radius: 0 33px 33px 33px;
  cursor: pointer;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1364, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service span {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: 18px;
  margin-right: 20px;
  color: #C3B8A2;
  letter-spacing: 0.1em;
}
/* line 1374, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service svg {
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1378, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service svg path {
  stroke: #C3B8A2;
  fill: #C3B8A2;
}
/* line 1383, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service:hover {
  background: #681414;
  border: solid 1px #681414;
}
/* line 1386, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service:hover span {
  color: #ffff;
}
/* line 1390, scss/layouts/pages/_services.scss */
.services_center .services_list_top .text_box .in_box .go_service:hover svg path {
  stroke: #ffff;
  fill: #ffff;
}
/* line 1399, scss/layouts/pages/_services.scss */
.services_center .services_list_top .wp1634 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 1403, scss/layouts/pages/_services.scss */
.services_center .services_list_top .wp1634 .in_wp {
  position: relative;
  z-index: 5;
}
/* line 1407, scss/layouts/pages/_services.scss */
.services_center .services_list_top .wp1634:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 30.56%;
  left: 0;
  bottom: 0;
  background: #ffff;
  -webkit-border-radius: 50px 50px 0 0;
  -moz-border-radius: 50px 50px 0 0;
  border-radius: 50px 50px 0 0;
  z-index: 1;
}
/* line 1422, scss/layouts/pages/_services.scss */
.services_center .services_list .wp1634 {
  background: #ffff;
  -webkit-border-radius: 0 0 50px 50px;
  -moz-border-radius: 0 0 50px 50px;
  border-radius: 0 0 50px 50px;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 1428, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box {
  width: 700px;
  max-width: 50%;
  margin-bottom: 57px;
}
/* line 1432, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box {
  display: block;
  text-align: left;
  position: relative;
  width: 100%;
}
/* line 1437, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .hide_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom-left-radius: 60px;
  z-index: 3;
  width: 100%;
}
/* line 1444, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .hide_img .imgBox {
  padding-bottom: 75%;
}
/* line 1447, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .hide_img img {
  transition: all .5s;
}
/* line 1451, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box {
  padding: 64px 62px;
  padding-right: 48px;
  padding-bottom: 58px;
  -webkit-border-radius: 50px 0 50px 0;
  -moz-border-radius: 50px 0 50px 0;
  border-radius: 50px 0 50px 0;
  position: relative;
  z-index: 5;
  width: 560px;
  max-width: 90%;
  margin-right: 0;
  margin-left: auto;
  background: #ffff;
  margin-top: -46px;
}
/* line 1464, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box .title {
  display: inline-block;
  background: #681414;
  padding: 7px 30px;
  min-width: 160px;
  text-align: center;
  color: #ffff;
  -webkit-border-radius: 35px 30px 30px 0;
  -moz-border-radius: 35px 30px 30px 0;
  border-radius: 35px 30px 30px 0;
  transition: all .5s;
  position: absolute;
  left: 62px;
  top: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 1478, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a {
  display: block;
}
/* line 1480, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a span {
  letter-spacing: 0.1em;
  display: block;
}
/* line 1483, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a span.link {
  margin-top: 27px;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 16px;
  color: #B78830;
  margin-right: 20px;
}
/* line 1492, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a span.info-arrow {
  margin-top: 27px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 33px;
  height: 12px;
  overflow: hidden;
  transition: all .5s ease;
}
/* line 1501, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a span.info-arrow svg {
  right: 0;
  width: 53px;
  display: flex;
  position: absolute;
  top: 0;
}
/* line 1510, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a .solid_title {
  margin-bottom: 18px;
}
/* line 1512, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a .solid_title:after {
  height: 22px;
}
@media screen and (max-width: 767px) {
  /* line 1516, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (max-width: 380px) {
  /* line 1521, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1526, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 3px;
  }
}
@media screen and (min-width: 1000px) {
  /* line 1531, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 4px;
  }
}
@media screen and (min-width: 1400px) {
  /* line 1536, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 5px;
  }
}
@media screen and (min-width: 1600px) {
  /* line 1541, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box a .solid_title:after {
    top: 6px;
  }
}
/* line 1547, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a > .h10 {
  letter-spacing: 0.1em;
}
/* line 1552, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box a:hover span.info-arrow {
  width: 53px;
}
/* line 1558, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box .date {
  font-size: 0;
  margin-left: -7.5px;
  margin-right: -7.5px;
  margin-top: 22px;
  margin-bottom: 10px;
}
/* line 1564, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box .date a {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  padding: 0 12px;
  margin: 0 7.5px;
  border: solid 1px #C3B8A2;
  color: #C3B8A2;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}
/* line 1575, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box .in_box .text_box .date a:hover {
  color: #ffff;
  border: solid 1px #681414;
  background: #681414;
}
@media screen and (max-width: 1199px) {
  /* line 1558, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box .date {
    margin-left: -4px;
    margin-right: -4px;
  }
  /* line 1584, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box .date a {
    margin: 0 4px;
    margin-bottom: 8px;
  }
}
/* line 1595, scss/layouts/pages/_services.scss */
.services_center .services_list .list_box:hover .in_box .hide_img img {
  transform: scale(1.05);
}
@media screen and (max-width: 1600px) {
  /* line 1104, scss/layouts/pages/_services.scss */
  .services_center {
    -webkit-border-radius: 0 160px 0 0;
    -moz-border-radius: 0 160px 0 0;
    border-radius: 0 160px 0 0;
  }
  /* line 1606, scss/layouts/pages/_services.scss */
  .services_center .in_wp > div {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1400px) {
  /* line 1104, scss/layouts/pages/_services.scss */
  .services_center {
    -webkit-border-radius: 0 130px 0 0;
    -moz-border-radius: 0 130px 0 0;
    border-radius: 0 130px 0 0;
  }
  /* line 1615, scss/layouts/pages/_services.scss */
  .services_center .in_wp > div {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 1622, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .img_box .hide_img {
    -webkit-border-radius: 80px 0 80px 0;
    -moz-border-radius: 80px 0 80px 0;
    border-radius: 80px 0 80px 0;
  }
  /* line 1628, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .solid_title {
    margin-bottom: 20px;
  }
  /* line 1631, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .go_service {
    bottom: 25%;
    width: 180px;
    padding: 18px 0;
    -webkit-border-radius: 0 27px 27px 27px;
    -moz-border-radius: 0 27px 27px 27px;
    border-radius: 0 27px 27px 27px;
  }
  /* line 1636, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .go_service span {
    font-size: 16px;
    line-height: 16px;
    margin-right: 15px;
  }
  /* line 1645, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .wp1634:before {
    max-height: 25%;
  }
  /* line 1651, scss/layouts/pages/_services.scss */
  .services_center .services_list .wp1634 {
    padding-top: 60px;
  }
  /* line 1656, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .hide_img {
    border-bottom-left-radius: 50px;
  }
  /* line 1659, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box {
    padding: 50px 45px;
    padding-right: 30px;
    padding-bottom: 30px;
    margin-top: -40px;
    -webkit-border-radius: 40px 0 40px 0;
    -moz-border-radius: 40px 0 40px 0;
    border-radius: 40px 0 40px 0;
  }
  /* line 1665, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box .title {
    left: 45px;
  }
}
@media screen and (max-width: 1250px) {
  /* line 1678, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .h10 {
    margin-bottom: 20px;
  }
  /* line 1681, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .go_service {
    bottom: 70px;
  }
  /* line 1688, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .wp1634:before {
    max-height: 70px;
  }
  /* line 1696, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box {
    margin-top: -35px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 950px) {
  /* line 1104, scss/layouts/pages/_services.scss */
  .services_center {
    -webkit-border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    border-radius: 0 100px 0 0;
  }
  /* line 1707, scss/layouts/pages/_services.scss */
  .services_center .services_list_top {
    margin-bottom: 80px;
  }
  /* line 1710, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .wp1634:before {
    display: none;
  }
  /* line 1714, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .in_wp {
    display: block;
  }
  /* line 1717, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .img_box {
    max-width: 100%;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 1723, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box {
    max-width: 100%;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  /* line 1729, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box {
    padding-top: 30px;
    padding-bottom: 0;
  }
  /* line 1732, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .solid_title {
    margin-bottom: 15px;
  }
  /* line 1735, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .h10 {
    margin-bottom: 0;
  }
  /* line 1738, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .text_box .in_box .go_service {
    margin-top: 30px;
    position: relative;
    bottom: auto;
    transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  /* line 1750, scss/layouts/pages/_services.scss */
  .services_center .services_list .in_wp {
    display: block;
  }
  /* line 1753, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box {
    width: 650px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 1760, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box {
    width: 90%;
    padding-right: 15px;
  }
  /* line 1766, scss/layouts/pages/_services.scss */
  .services_center .services_list .wp1634 {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* line 1104, scss/layouts/pages/_services.scss */
  .services_center {
    -webkit-border-radius: 0 80px 0 0;
    -moz-border-radius: 0 80px 0 0;
    border-radius: 0 80px 0 0;
  }
  /* line 1773, scss/layouts/pages/_services.scss */
  .services_center .services_list_top {
    margin-bottom: 60px;
  }
  /* line 1775, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .wp1634 {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 1783, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box {
    width: 95%;
    max-width: 95%;
    padding: 40px 30px;
    padding-right: 5px;
    padding-bottom: 25px;
  }
  /* line 1789, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box .title {
    left: 30px;
  }
  /* line 1795, scss/layouts/pages/_services.scss */
  .services_center .services_list .wp1634 {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 550px) {
  /* line 1805, scss/layouts/pages/_services.scss */
  .services_center .services_list_top {
    margin-bottom: 40px;
  }
  /* line 1807, scss/layouts/pages/_services.scss */
  .services_center .services_list_top .wp1634 {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 1815, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  /* line 1819, scss/layouts/pages/_services.scss */
  .services_center .services_list .list_box .in_box .text_box .title {
    left: 30px;
  }
  /* line 1825, scss/layouts/pages/_services.scss */
  .services_center .services_list .wp1634 {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 950px) {
  /* line 1836, scss/layouts/pages/_services.scss */
  .cosmetic-block .services_center .all_nav {
    width: 1000px;
    max-width: 100%;
  }
}

/* line 1847, scss/layouts/pages/_services.scss */
.service_banner {
  position: relative;
}
/* line 1849, scss/layouts/pages/_services.scss */
.service_banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* line 1854, scss/layouts/pages/_services.scss */
.service_banner .wp1520 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
}
/* line 1860, scss/layouts/pages/_services.scss */
.service_banner .wp1520 > div {
  width: 70%;
}
/* line 1863, scss/layouts/pages/_services.scss */
.service_banner .wp1520 p {
  letter-spacing: 5px;
}
/* line 1866, scss/layouts/pages/_services.scss */
.service_banner .wp1520 .h7 {
  line-height: 1em;
  letter-spacing: 4.8px;
}
/* line 1869, scss/layouts/pages/_services.scss */
.service_banner .wp1520 .h7:last-child {
  margin-bottom: 30px;
}
/* line 1873, scss/layouts/pages/_services.scss */
.service_banner .wp1520 .banner_date {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 36px;
  position: relative;
  padding-left: 60px;
  color: #828282;
  letter-spacing: 0.1em;
}
/* line 1881, scss/layouts/pages/_services.scss */
.service_banner .wp1520 .banner_date span {
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 15px;
}
/* line 1889, scss/layouts/pages/_services.scss */
.service_banner .wp1520 .banner_date span:before {
  position: absolute;
  display: block;
  content: '';
  right: 0;
  top: 18px;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 1px;
  height: 14px;
  background: #828282;
}
@media screen and (max-width: 1920px) {
  /* line 1904, scss/layouts/pages/_services.scss */
  .service_banner img {
    min-height: 500px;
  }
}
@media screen and (max-width: 992px) {
  /* line 1909, scss/layouts/pages/_services.scss */
  .service_banner .h4 {
    font-size: 30px;
    line-height: 45px;
  }
  /* line 1913, scss/layouts/pages/_services.scss */
  .service_banner img {
    min-height: 400px;
  }
}
@media screen and (max-width: 650px) {
  /* line 1847, scss/layouts/pages/_services.scss */
  .service_banner {
    position: relative;
  }
  /* line 1919, scss/layouts/pages/_services.scss */
  .service_banner img {
    min-height: 70vh;
  }
  /* line 1922, scss/layouts/pages/_services.scss */
  .service_banner .pic {
    position: relative;
    z-index: 1;
  }
  /* line 1926, scss/layouts/pages/_services.scss */
  .service_banner:before {
    z-index: 2;
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+100,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.3) 80%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.3) 80%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 80%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
  }
  /* line 1945, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 {
    position: absolute;
    transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    top: auto;
    bottom: 25px;
    z-index: 5;
  }
  /* line 1951, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 p {
    color: #ffff;
  }
  /* line 1953, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 p.color1 {
    color: #ffff;
    margin-bottom: 15px;
  }
  /* line 1959, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 .h7:last-child {
    margin-bottom: 85px;
  }
  /* line 1963, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 .banner_date {
    color: #ffff;
  }
  /* line 1965, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 .banner_date span {
    color: #ffff;
  }
  /* line 1967, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 .banner_date span:before {
    background: #ffff;
  }
  /* line 1972, scss/layouts/pages/_services.scss */
  .service_banner .wp1520 > div {
    width: 100%;
  }
}

/* line 1979, scss/layouts/pages/_services.scss */
.service_detail {
  background: #F5F3F1;
}
/* line 1981, scss/layouts/pages/_services.scss */
.service_detail .wp1520 {
  position: relative;
}
/* line 1985, scss/layouts/pages/_services.scss */
.service_detail .service_back {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 5;
}
/* line 1991, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box {
  width: 225px;
  height: 67px;
  display: flex;
  transition: all .3s ease;
  border: none;
}
/* line 1997, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box .rwd-link-p {
  font-size: 18px;
  transition: all .3s ease;
  margin-left: 20px;
  letter-spacing: 0.1em;
}
/* line 2003, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box:hover {
  background-color: #681414;
}
/* line 2005, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box:hover .rwd-link-p {
  color: #FFF;
}
/* line 2008, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box:hover .rwd-link-icon {
  animation: arrow-left 0.8s linear infinite alternate;
}
/* line 2012, scss/layouts/pages/_services.scss */
.service_detail .service_back .rwd-link-box:hover svg path {
  fill: #FFF;
  stroke: #FFF;
}
@media screen and (max-width: 1400px) {
  /* line 2021, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box {
    width: 200px;
    height: 60px;
  }
  /* line 2025, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box .rwd-link-icon svg {
    width: 28px;
  }
  /* line 2029, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box .rwd-link-p {
    font-size: 17px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 900px) {
  /* line 2037, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box {
    width: 180px;
    height: 50px;
  }
  /* line 2041, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box .rwd-link-icon svg {
    width: 26px;
  }
  /* line 2045, scss/layouts/pages/_services.scss */
  .service_detail .service_back .rwd-link-box .rwd-link-p {
    font-size: 16px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1985, scss/layouts/pages/_services.scss */
  .service_detail .service_back {
    display: none;
  }
}
/* line 2059, scss/layouts/pages/_services.scss */
.service_detail .detail_top .row > div,
.service_detail .detail_bottom .row > div {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  /* line 2070, scss/layouts/pages/_services.scss */
  .service_detail .detail_top .row > div,
  .service_detail .detail_bottom .row > div {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  /* line 2080, scss/layouts/pages/_services.scss */
  .service_detail .detail_top .row > div,
  .service_detail .detail_bottom .row > div {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 550px) {
  /* line 2091, scss/layouts/pages/_services.scss */
  .service_detail .detail_top .row > div,
  .service_detail .detail_bottom .row > div {
    width: calc(100% - 40px);
  }
}
/* line 2099, scss/layouts/pages/_services.scss */
.service_detail .detail_top {
  position: relative;
  z-index: 2;
}
/* line 2103, scss/layouts/pages/_services.scss */
.service_detail .detail_top .row > div {
  text-align: center;
  padding-top: 38px;
  margin-bottom: 60px;
}
/* line 2107, scss/layouts/pages/_services.scss */
.service_detail .detail_top .row > div p {
  letter-spacing: 0.1em;
}
/* line 2111, scss/layouts/pages/_services.scss */
.service_detail .detail_top .row > div .h10.gary {
  text-align: left;
}
/* line 2116, scss/layouts/pages/_services.scss */
.service_detail .detail_top .h6_1 {
  margin-bottom: 17px;
}
/* line 2120, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom {
  background: #ffff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: relative;
  z-index: 5;
}
/* line 2126, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_nav {
  padding: 26px 0;
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
  text-align: center;
}
/* line 2132, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .all_nav {
  display: block;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  /* line 2137, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .has_select {
    display: none;
  }
  /* line 2140, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu {
    font-size: 0;
    display: block !important;
    width: 100%;
  }
  /* line 2144, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
    padding: 12px 41px;
    text-align: center;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    margin: 0 7px;
    letter-spacing: 0.1em;
  }
  /* line 2157, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a:hover {
    color: #681414;
  }
  /* line 2160, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a.active {
    background: #681414;
    color: #ffff;
  }
  /* line 2163, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a.active:hover {
    color: #ffff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  /* line 2144, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a {
    margin: 0 6px;
    font-size: 17px;
    line-height: 27px;
    padding: 11px 38px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  /* line 2144, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a {
    margin: 0 5px;
    font-size: 16px;
    line-height: 26px;
    padding: 9px 33px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
  }
}

@media screen and (max-width: 767px) {
  /* line 2132, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav {
    padding: 8px;
    background: #681414;
    border: 1px solid #681414;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  /* line 2190, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .has_select {
    font-size: 16px;
    line-height: 38px;
    position: relative;
    padding-left: 13px;
    padding-right: 40px;
    cursor: pointer;
  }
  /* line 2197, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .has_select span {
    color: #ffff;
  }
  /* line 2200, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .has_select .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    pointer-events: none;
  }
  /* line 2209, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 5;
    background: #ffff;
    border: 1px solid #F5F3F1;
    margin-top: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  /* line 2220, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a {
    font-size: 16px;
    line-height: 45px;
    display: block;
    border-bottom: solid 1px #F5F3F1;
    padding: 5px 21px;
    text-decoration: none;
    color: #828282;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* line 2229, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a.active {
    display: none;
  }
  /* line 2231, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a.active.select_type {
    display: block;
  }
  /* line 2235, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a:hover {
    color: #681414;
  }
  /* line 2238, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .all_nav .type_menu a:last-child {
    border-bottom: none;
  }
}
/* line 2246, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content {
  padding-top: 50px;
  padding-bottom: 58px;
}
/* line 2249, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .gallery_img {
  display: block;
}
/* line 2252, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content p {
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 36px;
  color: #828282;
  margin-bottom: 30px;
}
/* line 2258, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content p.bold {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #333;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 2265, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content p + .p_border {
  margin-top: 90px;
}
/* line 2268, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content p + .p_no_border {
  margin-top: 90px;
}
/* line 2275, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 50px;
}
/* line 2281, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content img + .p_border {
  margin-top: 90px;
}
/* line 2284, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content img + .p_no_border {
  margin-top: 90px;
}
/* line 2289, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content table img {
  margin-bottom: 0;
  max-width: inherit;
}
/* line 2295, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_border {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #000000;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 2303, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_border:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: calc(100% - 10px);
  width: 2px;
  background: #000000;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 2314, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_border + .p_icon {
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  /* line 2295, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_border {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 2295, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_border {
    font-size: 20px;
    line-height: 30px;
  }
}
/* line 2329, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_no_border {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #000000;
  position: relative;
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
}
/* line 2336, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_no_border + .p_icon {
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  /* line 2329, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_no_border {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  /* line 2329, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_no_border {
    font-size: 20px;
    line-height: 30px;
  }
}
/* line 2349, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}
/* line 2355, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon.h8 {
  font-family: "Noto Serif TC", 'Noto Sans SC', sans-serif;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  padding-left: 43px;
}
@media screen and (max-width: 992px) {
  /* line 2355, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_icon.h8 {
    font-size: 18px;
    line-height: 28px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  /* line 2355, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_icon.h8 {
    font-size: 16px;
    line-height: 26px;
    padding-left: 35px;
  }
}
/* line 2372, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon img {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  max-width: 26px;
}
@media screen and (max-width: 767px) {
  /* line 2372, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .p_icon img {
    max-width: 20px;
  }
}
/* line 2384, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon + .p_border {
  margin-top: 55px;
}
/* line 2387, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon + .p_no_border {
  margin-top: 55px;
}
/* line 2390, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon + img {
  margin-top: 30px;
}
/* line 2393, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .p_icon:last-child {
  margin-bottom: 58px;
}
/* line 2398, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .tab_title {
  text-align: center;
  padding-bottom: 26px;
  position: relative;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  margin-bottom: 60px;
}
/* line 2406, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .tab_title + .p_border {
  margin-top: 0;
}
/* line 2409, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .tab_title + .p_no_border {
  margin-top: 0;
}
/* line 2412, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .tab_title + p {
  margin-top: 0;
}
/* line 2415, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .tab_title:before {
  height: 1px;
  top: 100%;
  left: 50%;
  content: '';
  width: 2em;
  background: #681414;
  position: absolute;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: block;
}
/* line 2430, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box {
  margin-bottom: 45px;
  padding-left: 30px;
  position: relative;
}
/* line 2434, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box > p.Cormorant {
  position: absolute;
  left: 0;
  top: -16px;
  background: #681414;
  color: #ffff;
  text-align: center;
  font-size: 20px;
  line-height: 55px;
  width: 55px;
  -webkit-border-radius: 28px 28px 0 28px;
  -moz-border-radius: 28px 28px 0 28px;
  border-radius: 28px 28px 0 28px;
  font-weight: 700;
}
/* line 2447, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box {
  padding: 34px 90px;
  width: 100%;
  border: solid 1px #C3B8A2;
  -webkit-border-radius: 0 50px 0 50px;
  -moz-border-radius: 0 50px 0 50px;
  border-radius: 0 50px 0 50px;
}
/* line 2452, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div {
  position: relative;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 23px;
  padding-left: 35px;
  color: #000000;
  letter-spacing: 0.1em;
  border-bottom: solid 1px rgba(150, 150, 150, 0.2);
  margin-bottom: 0;
}
/* line 2462, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div img {
  margin-top: 30px;
  margin-bottom: 0;
}
/* line 2466, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div ul {
  margin-top: 18px;
  list-style-type: none;
}
/* line 2469, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div ul li {
  font-size: 16px;
  line-height: 35px;
  color: #828282;
  padding-left: 27px;
  position: relative;
  letter-spacing: 0.1em;
}
/* line 2476, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div ul li:before {
  height: 1px;
  top: 17px;
  left: 12px;
  content: '';
  width: 4px;
  height: 4px;
  background: #828282;
  position: absolute;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* line 2492, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div a {
  color: #681414;
  text-decoration: underline;
}
/* line 2495, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div a:hover {
  color: #B78830;
}
/* line 2499, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div .Cormorant {
  left: 0;
  top: 0;
  position: absolute;
  font-size: 24px;
  line-height: 25px;
  color: #681414;
  font-weight: 600;
}
/* line 2508, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div:last-child {
  padding-bottom: 0;
  margin-top: 18px;
  font-size: 16px;
  line-height: 35px;
  color: #828282;
  border-bottom: none;
}
/* line 2515, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box .in_box div:last-child .Cormorant {
  top: 5px;
  color: #C3B8A2;
}
/* line 2522, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .qa_box:last-child {
  margin-bottom: 92px;
}
@media screen and (max-width: 1600px) {
  /* line 2526, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box {
    padding: 34px 70px;
  }
}
@media screen and (max-width: 1400px) {
  /* line 2532, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box {
    padding: 34px 50px;
  }
}
@media screen and (max-width: 1200px) {
  /* line 2537, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box {
    padding: 35px 40px;
  }
  /* line 2539, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div {
    padding-left: 30px;
  }
  /* line 2543, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box:last-child {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  /* line 2548, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box:last-child {
    margin-bottom: 60px;
  }
  /* line 2552, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div {
    font-size: 16px;
    line-height: 25px;
  }
  /* line 2555, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div .Cormorant {
    font-size: 22px;
    line-height: 25px;
  }
  /* line 2560, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div ul li {
    font-size: 16px;
    line-height: 25px;
  }
  /* line 2563, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div ul li:before {
    top: 12px;
  }
  /* line 2569, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div:last-child {
    font-size: 15px;
    line-height: 33px;
  }
  /* line 2572, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box div:last-child .Cormorant {
    top: 4px;
  }
}
@media screen and (max-width: 550px) {
  /* line 2430, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box {
    padding-left: 0;
  }
  /* line 2581, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box > p.Cormorant {
    left: -16px;
  }
  /* line 2584, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .qa_box .in_box {
    padding: 30px 15px;
    padding-top: 55px;
  }
}
/* line 2592, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show {
  margin-top: -30px;
  margin-bottom: 90px;
}
/* line 2595, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show p {
  margin-bottom: 15px;
}
/* line 2598, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show img {
  margin-bottom: 0;
}
/* line 2601, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.notoSerifTC {
  margin-top: 110px;
}
/* line 2604, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.bold {
  margin-top: 110px;
}
/* line 2607, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.bg {
  margin-top: 110px;
}
@media screen and (max-width: 550px) {
  /* line 2611, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.notoSerifTC {
    margin-top: 60px;
  }
  /* line 2614, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.bold {
    margin-top: 60px;
  }
  /* line 2617, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + .mob_show + p.bg {
    margin-top: 60px;
  }
}
/* line 2622, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + p.notoSerifTC {
  margin-top: 110px;
}
/* line 2625, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + p.bold {
  margin-top: 110px;
}
/* line 2628, scss/layouts/pages/_services.scss */
.service_detail .detail_bottom .tab_content .scroll_box + p.bg {
  margin-top: 110px;
}
@media screen and (max-width: 550px) {
  /* line 2633, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + p.notoSerifTC {
    margin-top: 60px;
  }
  /* line 2636, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + p.bold {
    margin-top: 60px;
  }
  /* line 2639, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_content .scroll_box + p.bg {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  /* line 2120, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  /* line 2649, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_nav {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    padding: 0;
    border-bottom: none;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    width: 100%;
  }
  /* line 2660, scss/layouts/pages/_services.scss */
  .service_detail .detail_bottom .tab_container .tab_content {
    padding-top: 70px;
  }
}
/* line 2666, scss/layouts/pages/_services.scss */
.service_detail .detail_list {
  overflow: hidden;
}
/* line 2669, scss/layouts/pages/_services.scss */
.service_detail .post_list {
  width: 1422px;
}
/* line 2671, scss/layouts/pages/_services.scss */
.service_detail .post_list .menu_link {
  padding: 46px 0;
  width: auto;
  background: #ffff;
  width: 180px;
  -webkit-border-radius: 50px 50px 0 0;
  -moz-border-radius: 50px 50px 0 0;
  border-radius: 50px 50px 0 0;
}
/* line 2678, scss/layouts/pages/_services.scss */
.service_detail .post_list div {
  padding: 46px 0;
  width: calc(50% - 90px);
}
/* line 2681, scss/layouts/pages/_services.scss */
.service_detail .post_list div:first-child {
  text-align: left;
}
/* line 2684, scss/layouts/pages/_services.scss */
.service_detail .post_list div:last-child {
  text-align: right;
}
@media screen and (max-width: 1300px) {
  /* line 2689, scss/layouts/pages/_services.scss */
  .service_detail .post_list .menu_link {
    padding: 40px 0;
    width: 160px;
    -webkit-border-radius: 45px 45px 0 0;
    -moz-border-radius: 45px 45px 0 0;
    border-radius: 45px 45px 0 0;
  }
  /* line 2694, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    padding: 40px 0;
    width: calc(50% - 80px);
  }
}
@media screen and (max-width: 1000px) {
  /* line 2700, scss/layouts/pages/_services.scss */
  .service_detail .post_list .menu_link {
    padding-bottom: 30px;
    width: 140px;
    -webkit-border-radius: 40px 40px 0 0;
    -moz-border-radius: 40px 40px 0 0;
    border-radius: 40px 40px 0 0;
  }
  /* line 2705, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    padding-bottom: 30px;
    width: calc(50% - 70px);
  }
}
@media screen and (max-width: 767px) {
  /* line 2711, scss/layouts/pages/_services.scss */
  .service_detail .post_list .menu_link {
    padding-bottom: 30px;
    width: 120px;
    -webkit-border-radius: 30px 30px 0 0;
    -moz-border-radius: 30px 30px 0 0;
    border-radius: 30px 30px 0 0;
  }
  /* line 2716, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    padding-bottom: 30px;
    width: calc(50% - 60px);
  }
}
@media screen and (max-width: 550px) {
  /* line 2722, scss/layouts/pages/_services.scss */
  .service_detail .post_list .menu_link {
    width: 100px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  /* line 2728, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    width: calc(50% - 50px);
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 450px) {
  /* line 2735, scss/layouts/pages/_services.scss */
  .service_detail .post_list .menu_link {
    width: 80px;
    padding-top: 25px;
  }
  /* line 2740, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    width: calc(50% - 40px);
    padding-top: 25px;
  }
}
@media screen and (max-width: 380px) {
  /* line 2669, scss/layouts/pages/_services.scss */
  .service_detail .post_list {
    margin-top: 0;
  }
  /* line 2747, scss/layouts/pages/_services.scss */
  .service_detail .post_list div {
    width: 50%;
    padding: 28px 0;
  }
}

/* line 2757, scss/layouts/pages/_services.scss */
.hair-block .services_nav {
  position: relative;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  padding-top: 33px;
  z-index: 99;
}
/* line 2763, scss/layouts/pages/_services.scss */
.hair-block .services_list {
  position: relative;
  z-index: 5;
}
/* line 2767, scss/layouts/pages/_services.scss */
.hair-block .services_bottom {
  position: relative;
  z-index: 5;
}
/* line 2773, scss/layouts/pages/_services.scss */
.hair-block .services_top .Cormorant {
  margin-bottom: -0.47em;
}
/* line 2780, scss/layouts/pages/_services.scss */
.hair-block .service_banner .wp1520 .color1 {
  color: #B78830;
}
/* line 2789, scss/layouts/pages/_services.scss */
.hair-block .service_detail .service_back .rwd-link-box:hover {
  background: #B78830;
}
/* line 2797, scss/layouts/pages/_services.scss */
.hair-block .services_center:before {
  content: '';
  height: 100%;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 674px;
  max-width: 70%;
  background-image: url(./images/services/hair_bg.webp);
  background-position: right top;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (min-width: 950px) {
  /* line 2812, scss/layouts/pages/_services.scss */
  .hair-block .services_center .all_nav {
    width: 1000px;
    max-width: 100%;
  }
}
/* line 2821, scss/layouts/pages/_services.scss */
.hair-block .detail_top .row div {
  width: 1100px;
  text-align: center;
  max-width: 100%;
  margin-bottom: 85px;
}
/* line 2826, scss/layouts/pages/_services.scss */
.hair-block .detail_top .row div .h6_1 {
  margin-bottom: 40px;
}
/* line 2829, scss/layouts/pages/_services.scss */
.hair-block .detail_top .row div .h10.gary {
  text-align: center;
}
@media screen and (min-width: 768px) {
  /* line 2840, scss/layouts/pages/_services.scss */
  .hair-block .detail_bottom .all_nav .type_menu a:hover {
    color: #B78830;
  }
  /* line 2843, scss/layouts/pages/_services.scss */
  .hair-block .detail_bottom .all_nav .type_menu a.active {
    background: #B78830;
  }
}
@media screen and (max-width: 767px) {
  /* line 2836, scss/layouts/pages/_services.scss */
  .hair-block .detail_bottom .all_nav {
    background: #B78830;
    border: 1px solid #B78830;
  }
}
