@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
html {
  /*remで指定しない時は切ること*/
  font-size: 62.5%;
}

body {
  position: relative;
  color: #171c2a;
  font: normal 300 1.3rem/1.7 "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  line-height: 1.85;
  word-break: break-all;
  word-wrap: break-word;
  width: 100%;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.6rem;
  }
}

#wrap {
  overflow: hidden;
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

/* staff 追加↓ */
@media print, screen and (max-width: 919px) {
  .sp02 {
    display: none;
  }
}
/* staff 追加↑ */

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 321px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
*:before,
* :after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*スマホ時のfocusの青枠削除*/
a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*a アニメーション*/
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 920px) {
  a:hover img {
    opacity: 0.8;
  }
  a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

img {
  max-width: 100%;
  height: auto;
}

figure img,
picture img {
  width: 100%;
}

/*リスト*/
ul.list {
  list-style: none;
  line-height: 0;
}
ul.list li {
  line-height: 1.7;
}
ul.list li + li {
  margin-top: 5px;
}
ul.list.dot li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.list.dot li::before {
  content: "・";
}
@media print, screen and (min-width: 920px) {
  ul.list li + li {
    margin-top: 10px;
  }
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 1.6rem;
}
input:hover,
input:focus,
input:active,
button:hover,
button:focus,
button:active,
label:hover,
label:focus,
label:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  padding-left: 10px;
  padding-right: 40px;
  width: 100%;
  height: 40px;
  background-color: #fff;
}
.header .logo {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-right: auto;
  max-width: 150px;
}
/* staff 追加↓ */
.header .nav {
  margin-right: 30px;
}
.header .lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 69px;
  margin: 0 0 0 auto;
  margin-left: auto;
  color: #171c2a;
}

.slash {
  color: #171c2a;
  font-size: 14px;
  display: block;
  padding: 0 13px 0 15px;
  position: relative;
  top: -2px;
}
.lang__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang__item a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: #171c2a;
}
.lang__item a:hover {
  opacity: 0.7;
}
.lang__item.current a {
  font-weight: 700;
  cursor: initial;
  pointer-events: none;
}
/* staff 追加↑ */
.header .pages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  right: 0;
  overflow: hidden;
  visibility: hidden;
  top: 40px;
  width: 100%;
  border-top: 1px solid #8c8c8c;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .pages.open {
  visibility: visible;
  z-index: 1;
  opacity: 1;
}
.header .pages li {
  border-bottom: 1px solid #8c8c8c;
  font-size: 1.6rem;
}
.header .pages a {
  display: block;
  padding: 10px 15px;
  color: #171c2a;
  text-decoration: none;
}
.header .pages a:hover {
  text-decoration: underline;
}
.header .btn_wrap.reservation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.header .btn_wrap.reservation a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  row-gap: 2px;
  padding: 5px 0;
  width: 50%;
  height: 100%;
  background-color: rgba(213, 179, 41, 0.8);
  color: #171c2a;
  font-size: 1.3rem;
  line-height: 1.2;
  text-decoration: none;
}
.header .btn_wrap.reservation a + a {
  border-left: 1px solid #fff;
}
.header .btn_wrap.reservation span {
  display: block;
  font-size: 0.8em;
}
.header .hamburger {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
}
.header .hamburger::before,
.header .hamburger::after {
  content: "";
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.header .hamburger::before,
.header .hamburger::after,
.header .hamburger i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #8c8c8c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .hamburger::before {
  top: -12px;
}
.header .hamburger::after {
  bottom: -12px;
}
.header .hamburger.open::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header .hamburger.open::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .hamburger.open i {
  opacity: 0;
}
@media print, screen and (min-width: 920px) {
  .header {
    padding-left: 25px;
    padding-right: 0;
    height: 75px;
  }

  .header .lang {
    width: 77px;
  }
  .header .pages {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 15px 20px;
    position: relative;
    top: auto;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    /* margin-right: 20px; */
    border-top-width: 0;
  }
  .header .pages li {
    border-bottom-width: 0;
    font-size: 1.4rem;
  }
  .header .pages a {
    padding: 0;
  }
  .header .btn_wrap.reservation {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    left: auto;
    bottom: 0;
    width: auto;
  }
  .header .btn_wrap.reservation a {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 15px;
    row-gap: 3px;
    width: 100%;
    font-size: 1.8rem;
    text-align: left;
  }
  .header .btn_wrap.reservation a:hover {
    opacity: 0.8;
  }
  .header .btn_wrap.reservation a + a {
    border-left-width: 0;
    border-top: 1px solid #fff;
  }
  .header .hamburger {
    display: none;
  }
}
@media print, screen and (min-width: 1140px) {
  .header {
    padding-left: 8%;
  }
  .header .logo {
    max-width: 240px;
    min-width: 120px;
  }
  .header .pages {
    /* margin-right: 30px; */
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .header .pages li {
    font-size: 1.6rem;
  }
}
.main_contents {
  padding-top: 40px;
}
@media print, screen and (min-width: 920px) {
  .main_contents {
    padding-top: 75px;
  }
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 25px 55px;
  background-color: #171c2a;
  color: #fff;
}
.footer .title_wrap {
  /* staff 追加↓ */
  width: 100%;
  max-width: 100%;
  /* staff 追加↑ */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}
.footer .title {
  line-height: 1.2;
}
.footer .title .english {
  display: block;
  font-size: 1.4rem;
}
.footer .title .japanese {
  display: inline-block;
  margin-top: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  font-size: 1rem;
}
.footer .title a {
  color: #fff;
  text-decoration: none;
}
.footer .contact {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}
.footer .award_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* 2025/05/09 変更↓ */
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  /* 2025/05/09 変更↑ */
  /* 2025/05/09 追加↓ */
  flex-wrap: wrap;
  /* 2025/05/09 追加↑ */
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #d5b329;
}
.footer .award_wrap .logo_wsa {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34%;
}
.footer .award_wrap .award {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  /* 2025/05/09 staff 変更↓ */
  padding: 0 6% 0 13%;
  /* 2025/05/09 staff 変更↑ */
  width: 43%;
}
.footer .award_wrap .jbsh {
  margin-top: 7px;
  /* staff 追加↓ */
  max-width: 78%;
  /* staff 追加↑ */
}

/* 2025/05/09 staff 追加↓ */
.design-award {
  width: 23.5%;
  padding-top: 3%;
}
/* 2025/05/09 staff 追加↑ */

@media print, screen and (min-width: 920px) {
  .footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* 2025/05/09 staff変更↓ */
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    /* 2025/05/09 staff変更↑ */
    padding: 60px 8% 50px;
  }
  .footer .title_wrap {
    /* staff 追加↓ */
    width: 33%;
    max-width: 440px;
    /* staff 追加↑ */
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 25px;
  }
  .footer .title .english {
    /* staff 変更↓ */
    font-size: 2.2rem;
    /* staff 変更↓ */
  }
  .footer .title .japanese {
    margin-top: 15px;
    padding-bottom: 3px;
    font-size: 1.7rem;
  }
  .footer .contact {
    padding: 5px 20px;
    font-size: 1.5rem;
  }
  .footer .contact:hover {
    background-color: #fff;
    color: #171c2a;
  }
  .footer .award_wrap {
    /* staff 追加↓ */
    width: 65%;
    max-width: 800px;
    /* staff 追加↑ */
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    /* 2025/05/09 staff追加↓ */
    flex-wrap: wrap;
    /* 2025/05/09 staff追加↑ */
    margin-top: 0;
    /* staff 変更↓ */
    margin-left: 0;
    /* staff 変更↑ */
    padding-top: 0;
    /* staff 変更↓ */
    padding-left: 2%;
    /* staff 変更↑ */
    border-top-width: 0;
    border-left: 1px solid #d5b329;
  }
  .footer .award_wrap .logo_wsa {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px;
    width: 27.3%;
  }
  .footer .award_wrap .award {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* staff 追加↓ */
    align-items: flex-start;
    /* staff 追加↑ */
    padding: 0;
    width: 64.2%;
  }
  /* staff 変更↓ */
  /* .footer .award_wrap .award img {
    width: 49%;
    max-width: 250px;
  } */
  .footer .award_wrap .award__img {
    width: 50%;
    max-width: 258px;
  }
  /* staff 変更↑ */
  .footer .award_wrap .jbsh {
    margin-top: 0;
    margin-left: 10px;
    /* staff 追加↓ */
    max-width: 74.8%;
    /* staff 追加↑ */
  }

  /* 2025/05/09 staff追加↓ */
  .design-award {
    width: 17%;
    padding-top: 0;
    margin: 3% auto 0 0;
  }
  /* 2025/05/09 staff追加↑ */
}

.headline.type2 {
  margin-bottom: 25px;
  color: #171c2a;
  font-size: 2.2rem;
  line-height: 1.3;
}
.headline.type2 .word {
  display: inline-block;
  position: relative;
  margin-left: 5px;
  padding: 0 6px;
  line-height: 1;
  vertical-align: bottom;
}
.headline.type2 .word::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 6px;
  right: 0;
  height: 1px;
  background-color: #171c2a;
}
.headline.type2 .word img {
  max-height: 50px;
}
@media print, screen and (min-width: 920px) {
  .headline.type2 {
    font-size: 4rem;
  }
  .headline.type2 .word img {
    max-height: none;
  }
}
.headline.type3 {
  font-size: 1.8rem;
}
@media print, screen and (min-width: 920px) {
  .headline.type3 {
    font-size: 3rem;
  }
}

.v-writing {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.v-writing .upright {
  text-combine-upright: all;
}
.v-writing a {
  text-decoration: overline;
}

.anchors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 55px;
}
.anchors a {
  display: inline-block;
  position: relative;
  overflow: visible;
  color: #171c2a;
  text-decoration: none;
}
.anchors a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #171c2a;
}
.anchors .text {
  display: inline-block;
  line-height: 1.2;
  word-break: break-word;
  text-align: center;
  vertical-align: middle;
}
.anchors .lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
  margin-top: 10px;
}
.anchors .lists li {
  position: relative;
  width: 65px;
  text-align: center;
}
.anchors .lists img {
  position: relative;
  z-index: 2;
  bottom: -5px;
  max-height: 28px;
}
@media print, screen and (min-width: 920px) {
  .anchors {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 65px;
    font-size: 2.2rem;
  }
  .anchors a::after {
    bottom: 2px;
  }
  .anchors .lists {
    gap: 30px;
    margin-top: 0;
    margin-left: 1.5%;
  }
  .anchors .lists li {
    width: auto;
  }
  .anchors .lists a {
    padding: 0 8px;
  }
  .anchors .lists img {
    max-height: 56px;
  }
}

.video .wrap {
  position: relative;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 none;
}

.pages_bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}
.pages_bottom li {
  position: relative;
  padding: 5px 0;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: center;
}
.pages_bottom li + li::before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #171c2a;
}
.pages_bottom a {
  color: #171c2a;
  text-decoration: none;
}
.pages_bottom a:hover {
  text-decoration: underline;
}
@media print, screen and (min-width: 920px) {
  .pages_bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px 40px;
    margin-top: 100px;
  }
  .pages_bottom li {
    padding: 10px 0;
    font-size: 2rem;
  }
  .pages_bottom li + li::before {
    left: -20px;
  }
}

/* staff 追加↓ */
@media print, screen and (max-width: 919px) {
  .pages_bottom {
    flex-wrap: wrap;
  }
  .pages_bottom li {
    width: calc((100% - 20px) / 2);
    max-width: 280px;
  }
  .pages_bottom li:nth-child(3):before {
    display: none;
  }
}
/* staff 追加↑ */

.swiper {
  line-height: 1;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
}

.swiper-nav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 20px 0 0;
  padding: 0 15px;
  width: 100%;
}
@media print, screen and (min-width: 920px) {
  .swiper-nav {
    margin: 25px auto 0;
    width: 51.3%;
    min-height: 35px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  color: #fff;
  margin: 0;
  padding: 0;
  width: 12px;
  height: 20px;
  cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  font-size: 0;
  border-top: 1px solid #171c2a;
  border-right: 1px solid #171c2a;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
@media print, screen and (min-width: 920px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 24px;
    height: 34px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  left: 4px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media print, screen and (min-width: 920px) {
  .swiper-button-prev::after {
    left: 8px;
  }
  .swiper-button-prev:hover::after {
    left: 0;
  }
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  right: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media print, screen and (min-width: 920px) {
  .swiper-button-next::after {
    right: 8px;
  }
  .swiper-button-next:hover::after {
    right: 0;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  bottom: auto;
  line-height: 0;
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background-color: #887f6f;
  margin: 0 10px;
  width: 8px;
  height: 8px;
  opacity: 1;
  cursor: pointer;
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background-color: #433c34;
  opacity: 1;
}
@media print, screen and (min-width: 920px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 20px;
    width: 12px;
    height: 12px;
  }
}
