@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poltawski+Nowy:ital,wght@0,400..700;1,400..700&family=Zen+Kaku+Gothic+New&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  letter-spacing: 0.06em;
  line-height: 1.4;
  position: relative;
  background-color: #161b1e;
  overflow-x: hidden;
  transition: background-color 1s ease;
}
body.bg-color {
  background-color: #6c6460;
}
body.show {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img {
  width: 100%;
}

.onlyPC {
  display: block !important;
}

.onlySP {
  display: none !important;
}

@media (width < 768px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block !important;
  }
}
.wrapper {
  overflow-x: hidden;
}

.scroll-target {
  position: absolute;
  top: -60px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
}
.scroll-target__wrap {
  position: relative;
}

.headline {
  position: relative;
  z-index: 1;
}
.headline__main, .headline__sub {
  display: block;
}
.headline__main {
  position: relative;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  color: #000;
  padding-left: 31px;
}
.headline__main::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #e75e02;
  position: absolute;
  left: 0;
  top: 16px;
}
.headline__sub {
  padding-left: 33px;
  font-size: 14px;
  font-weight: 500;
  color: #e75e02;
  line-height: 1.86;
  margin-top: 5px;
}
@media (width < 768px) {
  .headline__main {
    font-size: 36px;
    line-height: 0.9;
  }
  .headline__main::before {
    top: 16px;
  }
  .headline__sub {
    margin-top: 0;
  }
}

.entry__btn {
  margin-inline: auto;
  max-width: 500px;
  height: 73px;
  border-radius: 40px;
  background-color: #e75e02;
}
.entry__btn-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s ease;
}
.entry__btn-link:hover {
  opacity: 1;
}
.entry__btn-link:hover .entry__btn-circle {
  background-color: #fff;
}
.entry__btn-link:hover .entry__btn-icon {
  fill: #000;
}
.entry__btn-link:hover .entry__btn-text:nth-child(1) {
  left: 100%;
}
.entry__btn-link:hover .entry__btn-text:nth-child(2) {
  left: 0;
}
.entry__btn-text-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.entry__btn-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.5s ease;
  text-align: center;
  padding-right: 9px;
}
.entry__btn-text:nth-child(1) {
  left: 0;
}
.entry__btn-text:nth-child(2) {
  left: -100%;
}
.entry__btn-circle, .entry__btn-icon {
  transition: all 0.5s ease;
}
.entry__btn-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  background-color: #000;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry__btn-icon {
  fill: #fff;
  width: 14px;
  height: 14px;
}
@media (width < 768px) {
  .entry__btn {
    max-width: 335px;
    height: 64px;
  }
  .entry__btn-text {
    font-size: 18px;
  }
  .entry__btn-circle {
    width: 40px;
    height: 40px;
  }
}

.bnr {
  width: 706px;
  margin-top: 138px;
  margin-inline: auto;
}
.bnr__inner {
  border: 1px solid #fff;
}
.bnr__link {
  padding-top: 35px;
  padding-bottom: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.bnr__image {
  width: 350px;
  margin-inline: auto;
}
.bnr__text {
  color: #fff;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 18px;
  letter-spacing: 0.34em;
  line-height: 2.3;
  padding-right: 70px;
  background: url(../img/icon_arrow_white.svg) no-repeat center right 0/47.76px;
}
@media (width < 768px) {
  .bnr {
    width: 300px;
    margin-top: 95px;
  }
  .bnr__link {
    padding-top: 37px;
    padding-bottom: 36px;
    gap: 27px;
  }
  .bnr__image {
    width: 215px;
  }
  .bnr__text {
    font-size: 14px;
    padding-right: 63px;
  }
}

.header {
  position: relative;
  z-index: 100;
  transition: all 0.5s ease;
  padding-top: 26px;
  padding-bottom: 17px;
  width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161b1e;
  z-index: 200;
}
.header__btn {
  display: none;
}
@media (width < 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 17px;
    justify-content: start;
  }
  .header__btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 14px;
    width: 32px;
    height: 32px;
    transition: all 0.5s ease;
    background: url(../img/btn_nav_open.png) no-repeat center/24px;
  }
  .header__btn.show {
    background: url(../img/btn_nav_close.png) no-repeat center/24px;
  }
}

.header-logo__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header-logo__item--boucheron {
  position: relative;
}
.header-logo__item--boucheron::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  width: 1px;
  height: 40px;
  background-color: #fff;
}
.header-logo__link {
  display: block;
  pointer-events: none;
}
.header-logo__image--forbes {
  width: 122px;
}
.header-logo__image--boucheron {
  width: 226px;
}
@media (width < 768px) {
  .header-logo__list {
    gap: 19px;
    position: relative;
  }
  .header-logo__item--boucheron::before {
    left: -10px;
    height: 26px;
  }
  .header-logo__image--forbes {
    width: 78px;
  }
  .header-logo__image--boucheron {
    width: 145px;
  }
}

.navigation {
  display: none;
  z-index: 110;
}
.navigation__bg {
  display: none;
  z-index: 100;
}
@media (width < 768px) {
  .navigation {
    display: block;
    position: fixed;
    top: calc((100% - 75px) * -1);
    right: 0;
    width: 100%;
    background-color: #161b1e;
    color: #fff;
    transition: all 0.5s ease;
    padding-top: 90px;
    padding-bottom: 150px;
  }
  .navigation.show {
    top: 75px;
  }
  .navigation__bg {
    display: block;
    transition: all 0.5s ease;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    animation: fadeOut 0.5s ease-in 0s forwards;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
  }
  .navigation__bg.show {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease-in 0s forwards;
  }
  .navigation__item + .navigation__item {
    margin-top: 58px;
  }
  .navigation__link {
    display: block;
    color: #fff;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
  }
  .navigation__item-eng, .navigation__item-ja {
    display: block;
    text-align: center;
    line-height: 1;
  }
  .navigation__item-eng {
    font-family: "Poltawski Nowy", serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }
  .navigation__item-ja {
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.34em;
    margin-top: 9px;
  }
}

.footer {
  position: relative;
  background-color: #000;
  padding: 51px 20px 43px;
  margin-top: 112px;
}
.footer__logo-link {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 45px;
  margin-inline: auto;
}
.footer__logo {
  width: 135px;
}
.footer__copyright {
  margin-top: 28px;
  color: #666;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (width < 769px) {
  .footer {
    margin-top: 107px;
    padding: 51px 15px 62px;
  }
  .footer__logo-link {
    margin-top: 40px;
  }
  .footer__logo {
    width: 119px;
  }
  .footer__copyright {
    margin-top: 27px;
    font-size: 10px;
    color: #727272;
  }
}

.sns__list {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.sns__item {
  width: 30px;
  height: 30px;
}
.sns__item img {
  width: 100%;
}
.sns__item--youtube {
  width: 35.71px;
  height: 25px;
}
.sns__logo {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns__logo--youtube {
  width: 35.71px;
  height: 25px;
}
@media (width < 769px) {
  .sns__list {
    gap: 30px;
  }
}

.mv {
  position: relative;
  width: 1440px;
  margin-inline: auto;
}
.mv__catch, .mv__lead {
  position: absolute;
  color: #fff;
  z-index: 1;
}
.mv__catch {
  width: 111.38px;
  top: 0;
  right: 148px;
  opacity: 0;
  animation: opcity 3s ease forwards;
  animation-delay: 1s;
}
.mv__lead {
  left: 48px;
  bottom: 62px;
  font-family: "Poltawski Nowy", serif;
  font-weight: bold;
  font-size: 62px;
  letter-spacing: -0.03em;
  line-height: 1.4;
  opacity: 0;
  animation: opcity 3s ease forwards;
  animation-delay: 2s;
}
.mv__lead-letter {
  opacity: 0;
  animation: opcity 2s forwards;
}
.mv__image {
  position: relative;
  display: block;
  width: 1282px;
  margin-inline: auto;
  opacity: 0;
  filter: blur(20px);
  animation: fadeBlur 3s ease forwards;
  animation-delay: 0s;
  z-index: 0;
}
@media (width < 768px) {
  .mv {
    width: 346px;
    padding-top: 338px;
    padding-bottom: 76px;
    margin-top: 75px;
  }
  .mv__catch {
    width: 80.64px;
    top: 18px;
    right: 50%;
    transform: translateX(50%);
  }
  .mv__lead {
    left: 14px;
    bottom: 0;
    font-size: 30px;
    line-height: 1.28;
  }
  .mv__image {
    width: 342.55px;
  }
}

@keyframes opcity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeBlur {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.legacy {
  width: 1440px;
  margin-top: 180px;
  margin-inline: auto;
}
.legacy__inner {
  width: 1200px;
  margin-inline: auto;
}
.legacy__headline, .legacy__catch {
  text-align: center;
}
.legacy__headline {
  font-family: "Poltawski Nowy", serif;
  font-size: 116px;
  letter-spacing: -0.03em;
  color: #fff;
}
.legacy__catch {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  margin-top: 48px;
}
.legacy__contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-top: 70px;
  line-height: 2.8;
  font-size: 16px;
}
.legacy__image {
  width: 621px;
}
.legacy__text {
  color: #fff;
  width: 510px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.legacy__text + .legacy__text {
  margin-top: 2em;
}
@media (width < 768px) {
  .legacy {
    padding-left: 37px;
    padding-right: 37px;
    width: 100%;
    margin-top: 120px;
  }
  .legacy__inner {
    width: 100%;
  }
  .legacy__headline {
    font-size: 50px;
    line-height: 1;
  }
  .legacy__catch {
    font-size: 16px;
    margin-top: 28px;
  }
  .legacy__contents {
    flex-direction: column;
    gap: 58px;
    margin-top: 57px;
  }
  .legacy__image {
    width: 292px;
  }
  .legacy__text {
    width: 100%;
    max-width: 400px;
  }
}

.interview {
  width: 1440px;
  margin-top: 277px;
  margin-inline: auto;
}
.interview__headline {
  font-family: "Poltawski Nowy", serif;
  font-size: 116px;
  color: #000;
  width: 1140px;
  margin-inline: auto;
}
.interview__headline-text {
  display: block;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: -0.03em;
}
.interview__headline-text--top span {
  display: inline-block;
  margin-left: 0.6em;
}
.interview__headline-text--bottom {
  margin-left: auto;
}
.interview__catch {
  display: block;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #e4ccbf;
  margin-top: 23px;
  text-align: left;
  letter-spacing: 0.34em;
}
.interview__item {
  width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 47px;
  margin-top: 110px;
}
.interview__item--reverse {
  flex-direction: row-reverse;
}
.interview__figure {
  position: relative;
  width: 562px;
  padding-left: 22px;
}
.interview__figure::before, .interview__figure::after {
  content: "";
  position: absolute;
  background-color: #a88760;
  top: 0;
  height: 100%;
}
.interview__figure::before {
  left: 0;
  width: 6px;
}
.interview__figure::after {
  left: 10px;
  width: 2px;
}
.interview__figure--reverse {
  padding-left: 0;
  padding-right: 22px;
}
.interview__figure--reverse::before, .interview__figure--reverse::after {
  left: auto;
}
.interview__figure--reverse::before {
  right: 0;
}
.interview__figure--reverse::after {
  right: 10px;
}
.interview__image {
  width: 540px;
}
.interview__figcaption {
  position: absolute;
  color: #fff;
  font-family: "Poltawski Nowy", serif;
  font-size: 102px;
  font-weight: 400;
  line-height: 1;
  left: 42px;
  bottom: -42px;
}
.interview__figcaption--reverse {
  left: auto;
  right: 42px;
}
.interview__contents {
  display: flex;
  flex-direction: column;
  width: calc(100% - 515px);
  padding-top: 16px;
}
.interview__contents-catch, .interview__contents-text {
  color: #fff;
  letter-spacing: 0.08em;
}
.interview__contents-catch {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
.interview__line {
  display: inline-block;
  position: relative;
  width: 2.2em;
  height: 1px;
}
.interview__line::before {
  content: "";
  width: calc(100% - 4px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.interview__line--small::before {
  top: -5px;
}
.interview__contents-text {
  margin-top: 15px;
  line-height: 2.1;
  font-weight: 500;
}
.interview__contents-bottom {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.interview__contents-author {
  display: flex;
  flex-direction: column;
}
.interview__contents-author-catch, .interview__contents-author-name {
  color: #fff;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: bold;
  line-height: 1;
}
.interview__contents-author-catch {
  font-size: 16px;
}
.interview__contents-author-name {
  font-size: 26px;
  margin-top: 18px;
}
.interview__contents-link {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  font-family: "Poltawski Nowy", serif;
  color: #000;
  padding-left: 14px;
  background: #fff url(../img/icon_arrow.svg) no-repeat center right 12.24px/47.76px;
  transition: all 0.5s ease;
}
.interview__contents-link:hover {
  opacity: 1;
  background-position: center right 4px;
}
@media (width < 768px) {
  .interview {
    width: 100%;
    margin-top: 140px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .interview__headline {
    font-size: 50px;
    width: 100%;
  }
  .interview__headline-text {
    display: block;
    width: 100%;
    text-align: center;
  }
  .interview__headline-text + .interview__headline-text {
    margin-left: 0;
  }
  .interview__catch {
    font-size: 16px;
    margin-top: 19px;
    text-align: center;
  }
  .interview__item {
    width: 100%;
    max-width: 400px;
    margin-top: 44px;
    margin-inline: auto;
    flex-direction: column;
  }
  .interview__item--reverse {
    flex-direction: column;
  }
  .interview__item + .interview__item {
    margin-top: 90px;
  }
  .interview__figure {
    width: 100%;
    max-width: 400px;
    padding-left: 18px;
  }
  .interview__figure::after {
    left: 11px;
  }
  .interview__figure--reverse {
    padding-right: 18px;
  }
  .interview__figure--reverse::before {
    left: 0;
  }
  .interview__figure--reverse::after {
    left: 11px;
  }
  .interview__image {
    width: 100%;
  }
  .interview__figcaption {
    font-size: 70px;
    left: 32px;
    bottom: -32px;
  }
  .interview__figcaption--reverse {
    left: auto;
    right: 32px;
  }
  .interview__contents {
    width: 100%;
    padding-top: 0;
  }
  .interview__contents-catch {
    font-size: 16px;
  }
  .interview__contents-text {
    margin-top: 18px;
    font-size: 14px;
  }
  .interview__contents-bottom {
    margin-top: 18px;
    flex-direction: column;
    align-items: start;
  }
  .interview__contents-author-catch {
    font-size: 12px;
  }
  .interview__contents-author-name {
    font-size: 20px;
    margin-top: 9px;
  }
  .interview__contents-link {
    margin-top: 45px;
  }
}

.collection {
  width: 1440px;
  margin-top: 350px;
  margin-inline: auto;
}
.collection__inner {
  position: relative;
  width: 1026px;
  margin-inline: auto;
}
.collection__headline {
  font-family: "Poltawski Nowy", serif;
  font-size: 116px;
  color: #fff;
  width: 1026px;
  margin-inline: auto;
}
.collection__headline-text {
  display: block;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: -0.03em;
}
.collection__headline-text--bottom {
  margin-left: auto;
}
.collection__catch {
  display: block;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  margin-top: 23px;
  text-align: left;
  letter-spacing: 0.34em;
}
@media (width < 768px) {
  .collection {
    width: 100%;
    margin-top: 140px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .collection__inner {
    width: 100%;
  }
  .collection__headline {
    font-size: 50px;
    width: 100%;
  }
  .collection__headline-text {
    display: block;
    width: 100%;
    text-align: center;
  }
  .collection__headline-text + .collection__headline-text {
    margin-left: 0;
  }
  .collection__catch {
    font-size: 16px;
    margin-top: 19px;
    text-align: center;
  }
}

.collection-slide--top {
  padding-bottom: 46px;
}
.collection-slide__wrap {
  position: relative;
  margin-top: 80px;
}
.collection-slide__link {
  pointer-events: none;
  cursor: default;
}
.collection-slide__img-wrap {
  width: 660px;
  height: 600px;
  overflow: hidden;
  border-radius: 50%;
  margin-inline: auto;
}
.collection-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.collection-slide__contents {
  color: #fff;
  margin-top: 64px;
}
.collection-slide__catch-eng, .collection-slide__catch-ja {
  text-align: center;
}
.collection-slide__catch-eng {
  color: #e4ccbf;
  font-family: "Poltawski Nowy", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.collection-slide__catch-ja {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-top: 16px;
  line-height: 1.5;
}
.collection-slide__text {
  width: 900px;
  margin-top: 23px;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.8;
  letter-spacing: 0.18em;
}
@media (width < 768px) {
  .collection-slide--top {
    padding-bottom: 32px;
  }
  .collection-slide__wrap {
    margin-top: 53px;
  }
  .collection-slide__img-wrap {
    width: 292px;
    height: 265px;
  }
  .collection-slide__contents {
    width: 300px;
    margin-top: 52px;
    margin-inline: auto;
  }
  .collection-slide__catch-eng {
    font-size: 16px;
  }
  .collection-slide__catch-ja {
    font-size: 20px;
    margin-top: 16px;
    line-height: 1.4;
  }
  .collection-slide__text {
    width: 100%;
  }
}

.swiper-pagination {
  padding: 1px 0 !important;
}

.swiper-pagination-bullet {
  position: relative;
  transition: all 0.5s ease;
  width: 40px;
  height: 1px;
  background-color: #929292;
  border-radius: 0;
  opacity: 1;
}
.swiper-pagination-bullet::before, .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: transparent;
}
.swiper-pagination-bullet::before {
  top: -1px;
}
.swiper-pagination-bullet::after {
  bottom: -1px;
}
@media (width < 768px) {
  .swiper-pagination-bullet {
    width: 10px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 80px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before, .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #929292;
}
@media (width < 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
  }
}

/*reset*/
@media (width < 768px) {
  .swiper {
    overflow: visible;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  font-size: 0;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 6px;
  margin-right: 6px;
}
@media (width < 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 3px;
    margin-right: 3px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  top: calc(50% - 22.5px);
}
@media (width < 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
}

.swiper-button-next {
  transform: rotate(135deg);
}
@media (width < 768px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev {
  transform: rotate(-45deg);
}
@media (width < 768px) {
  .swiper-button-prev {
    left: 0;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}
/*# sourceMappingURL=style.css.map */
