@charset "UTF-8";

/* FADE IN CSS */
.fadein--hook {
  position: relative;
}

.fadein--hook {
  -webkit-transform: translateZ(0);
  opacity: 0;
}

body.kiosk-enabled .fadein--hook {
  position: relative !important;
  -webkit-transform: translateZ(0) !important;
  bottom: 0;
}

.fade-initial,
body.kiosk-enabled .fade-initial {
  position: relative;
  bottom: 0;
  opacity: 1;
  -webkit-transform: translateZ(0);
}

.fade-initial {
  transition: all ease-in 1s;
}

body.kiosk-enabled .fade-initial {
  transition: all ease-in 0s;
}

.fadein--wrapper {
  overflow: hidden !important;
  -webkit-transform: translateZ(0) !important;
}

/* FADE IN CSS END */
/* Product Carousel Styles */
.product-carousel {
  margin-left: 0;
  text-align: left;
  overflow: hidden;
}

.product-carousel .slick-arrow {
  width: 20px;
  height: 36px;
  position: absolute;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
}

.product-carousel .slick-next.slick-arrow {
  right: 10px;
}

.product-carousel .slick-prev.slick-arrow {
  left: -60px;
}

.product-carousel .slick-slider {
  margin-bottom: 0;
}

.product-carousel__carousel {
  display: block;
  position: relative;
  margin-left: 32px;
}

.product-carousel__carousel .slide__image {
  margin: auto;
  width: 100%;
}

.product-carousel .slick-list {
  overflow: visible;
}

@media screen and (min-width: 2560px) {
  .product-carousel__carousel .slide__image {
    min-width: 524px;
  }
}

.product-carousel__carousel .slide__text {
  font-family: TimesLTStd-Roman;
  line-height: 1.14;
  letter-spacing: 1px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .product-carousel__carousel .slide__text {
    margin-left: 0;
  }
}

.product-carousel__carousel .slide__text--badge {
  font-family: "UntitledSans-Medium";
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 24px;
}

@media screen and (min-width: 1800px) {
  .product-carousel__carousel .slide__text--badge {
    font-size: 16px;
  }
}

.product-carousel__carousel .slide__text--prod-name {
  font-size: 18px;
  margin-top: 12px;
  min-height: 40px;
}

@media screen and (min-width: 1800px) {
  .product-carousel__carousel .slide__text--prod-name {
    font-size: 30px;
  }
}

@media screen and (min-width: 2500px) {
  .product-carousel__carousel .slide__text--prod-name {
    font-size: 40px;
  }
}

.product-carousel__carousel .slide__text--prod-price {
  font-family: "Times";
  line-height: 2;
  font-size: 16px;
}

@media screen and (min-width: 1800px) {
  .product-carousel__carousel .slide__text--prod-price {
    font-size: 20px;
  }
}

@media screen and (min-width: 2560px) {
  .product-carousel__carousel .slide__text--prod-price {
    font-size: 24px;
  }
}

.product-carousel__carousel .slide__text--prod-price--original.strike {
  text-decoration: line-through;
}

.product-carousel__carousel .slide__text--prod-price--reduced {
  color: red;
  margin-left: 30px;
}

.product-carousel .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.product-carousel .slick-slide {
  height: unset !important;
}

.product-carousel .slide {
  padding: 0 5px;
  margin-left: -5px;
}

@media (min-width: 1920px) {
  .product-carousel .slide {
    padding: 0 8px;
  }
}

@media (min-width: 2400px) {
  .product-carousel .slide {
    padding: 0 10px;
  }
}

.product-carousel .slick-arrow {
  top: 44%;
  transform: translateY(0%);
}

.product-carousel .slick-list.draggable {
  padding-top: 42px;
}

.product-carousel .slick-slide {
  height: unset !important;
}

.product-carousel .product-carousel_switcher {
  display: flex;
  justify-content: space-between;
}

.product-carousel .product-carousel_switcher p {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.67px;
  font-family: "Times-Roman";
  width: 50%;
  position: relative;
  cursor: pointer;
  text-align: center;
}

.product-carousel .product-carousel_switcher p span {
  color: #5d5d5e;
}

.product-carousel .product-carousel_switcher p:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 2px;
  background-color: #5d5d5e;
  bottom: -20px;
}

.product-carousel .product-carousel_switcher p:first-of-type:after {
  left: 0;
}

.product-carousel .product-carousel_switcher p:last-of-type:after {
  left: 0;
}

.product-carousel .product-carousel_switcher p.carousel_active span {
  color: #fff;
}

.product-carousel .product-carousel_switcher p.carousel_active:after {
  background-color: #fff;
}

/* End of Product Carousel styles */
.container,
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

a.as_cta {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: normal;
  font-family: "UntitledSans Medium";
  display: inline-block;
  text-decoration: none;
  margin-top: 27px;
}

a.as_cta.white {
  color: white;
}

a.as_cta.black {
  color: black;
}

a.as_cta.red {
  color: red;
}

a.as_cta.cta_underline:after {
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  border-bottom: solid 1px;
  display: block;
  border-bottom-color: inherit;
}

@media screen and (min-width: 768px) {
  a.as_cta.cta_underline:after {
    transform: scale(0);
    transition: 250ms transform ease-out;
    transform-origin: 0 0;
  }

  a.as_cta.cta_underline:hover:after {
    transform: scale(1);
    transform-origin: 100% 0;
  }

  a.as_cta.cta_underline.reverse:after {
    transform: scale(1);
  }

  a.as_cta.cta_underline.reverse:hover:after {
    transform: scale(0);
  }
}

.as_cta--button {
  min-width: 142px;
  height: 44px;
  margin: 50px 0 40px;
  display: block;
  text-decoration: none;
}

.as_cta--button button {
  min-width: inherit;
  height: inherit;
  width: 142px;
  display: inherit;
  background-color: transparent;
  text-transform: uppercase;
  font-family: "UntitledSans Medium";
  font-size: 13px;
  padding: 0;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.92;
  letter-spacing: 1.3px;
  cursor: pointer;
}

.as_cta--button button.black {
  border: 1px solid black;
  color: black;
  margin: 0 auto;
}

.as_cta--button button.white {
  color: #fff;
  font-weight: 600;
  border: 2px solid white;
}

.as_cta--button button.bg-white {
  color: black;
  font-weight: 600;
  border: 1px solid #fff;
  background-color: #fff;
}

@media only screen and (min-width: 1024px) {

  .as_cta--button button.black:hover,
  .as_cta--button button.black:focus {
    color: white;
    background-color: rgba(47, 47, 47, 0.75);
    border: 1px solid white;
  }

  .as_cta--button button.white:hover,
  .as_cta--button button.white:focus {
    background-color: white;
    color: #000;
  }
}

.leather-care-guide {
  text-align: center;
}

.leather-care-guide h1 {
  font-family: "Times New Roman", Times, "FP-ヒラギノ明朝 ProN W3", "ヒラギノ明朝 W3 JIS2004", "Hiragino Mincho W3 JIS2004", serif;
}

.leather-care-guide .leather-care-guide_text-block p:not(:last-child) {
  margin-bottom: 1em;
}

.leather-care-guide h1,
.leather-care-guide h2,
.leather-care-guide h3,
.leather-care-guide h4,
.leather-care-guide h5,
.leather-care-guide h6 {
  margin: 0;
}

.leather-care-guide .leather-care-guide_text-block {
  font-size: 16px;
}

.leather-care-guide .leather-care-guide_link-wrapper a {
  margin: 10px 0;
}

.leather-care-guide .leather-care-guide_section1 {
  padding-bottom: 25px;
}

.leather-care-guide .leather-care-guide_section1 .leather-care-guide-image-container {
  position: relative;
}

.leather-care-guide .leather-care-guide_section1 .leather-care-guide-image-container .leather-care-guide_image-heading-copy {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 45px;
  letter-spacing: 0.49px;
  width: 100%;
  text-transform: capitalize;
}

.leather-care-guide .leather-care-guide_section1 .leather-care-guide_link-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block {
  margin-top: 25px;
  line-height: 1.75;
  letter-spacing: 0.44px;
  font-family: "UntitledSans";
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.leather-care-guide_section2,
.leather-care-guide_section3,
.leather-care-guide_section7,
.leather-care-guide_section8,
.leather-care-guide_section9 {
  background-color: #000;
  color: #fff;
}

.leather-care-guide_section2,
.leather-care-guide_section7 {
  padding: 25px 0 77px;
}

.leather-care-guide_section3 {
  padding-bottom: 77px;
}

.leather-care-guide_section2 .leather-care-guide_heading-copy,
.leather-care-guide_section5 .leather-care-guide_heading-copy,
.leather-care-guide_section7 .leather-care-guide_heading-copy {
  font-size: 24px;
  letter-spacing: 2.09px;
  text-transform: capitalize;
}

.leather-care-guide_section5 .leather-care-guide_heading-copy {
  margin-top: 33px;
  margin-bottom: 33px;
}

.leather-care-guide_section2 .leather-care-guide_heading-copy:not(:first-of-type),
.leather-care-guide_section5 .leather-care-guide_heading-copy:not(:first-of-type),
.leather-care-guide_section7 .leather-care-guide_heading-copy:not(:first-of-type) {
  margin-top: 57px;
}

.leather-care-guide_section2 .leather-care-guide-image-container,
.leather-care-guide_section5 .leather-care-guide-image-container,
.leather-care-guide_section7 .leather-care-guide-image-container {
  margin-top: 25px;
}

.leather-care-guide_section2 .leather-care-guide_text-block,
.leather-care-guide_section5 .leather-care-guide_text-block,
.leather-care-guide_section7 .leather-care-guide_text-block {
  margin-top: 39px;
  padding: 0 30px;
}

.leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_heading-copy,
.leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_heading-copy,
.leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_heading-copy {
  margin-bottom: 25px;
}

.leather-care-guide_section2 .leather-care-guide_text-block p,
.leather-care-guide_section5 .leather-care-guide_text-block p {
  line-height: 1.75;
  letter-spacing: 0.44px;
  font-family: "UntitledSans";
}

.leather-care-guide .leather-care-guide_section3 a,
.leather-care-guide .leather-care-guide_section3 span,
.leather-care-guide .leather-care-guide_section8 a,
.leather-care-guide .leather-care-guide_section8 span {
  color: #fff;
}

.leather-care-guide_section6 {
  margin-top: 77px;
  margin-bottom: 33px;
}

.leather-care-guide_section6 .product-carousel .product-carousel_switcher p span {
  color: #5d5d5e;
}

.leather-care-guide_section6 .product-carousel .product-carousel_switcher p:after {
  background-color: #dfdfe0;
}

.leather-care-guide_section6 .product-carousel .product-carousel_switcher p.carousel_active span {
  color: #000;
}

.leather-care-guide_section6 .product-carousel .product-carousel_switcher p.carousel_active:after {
  background-color: #000;
}

.leather-care-guide_section8 {
  padding-bottom: 77px;
}

.leather-care-guide_section11 {
  padding-bottom: 30px;
  display: flex;
}

.leather-care-guide_section11 .leather-care-guide-image-container {
  position: relative;
}

.leather-care-guide_section11 p {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  line-height: 1.17;
  letter-spacing: 2.09px;
  font-family: "Times LT W01 Roman, Times New Roman, Times, serif";
  font-size: 30px;
  width: 88%;
}

/* Accordions styles */
.leather-care-guide_accordion_tile {
  height: 108px;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-size: 100%;
}

.leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
}

.leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed p {
  font-size: 16px;
  line-height: 0.75;
  letter-spacing: 1.6px;
  margin: 0;
  font-family: "UntitledSans Medium";
}

.leather-care-guide_section9 .leather-care-guide_accordion_tile:nth-child(1) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-Reptile-openMB-375.jpg");
}

.leather-care-guide_section9 .leather-care-guide_accordion_tile:nth-child(2) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-Suede-openMB-375.jpg");
}

.leather-care-guide_section9 .leather-care-guide_accordion_tile:nth-child(3) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-Nubuck-openMB-375.jpg");
}

.leather-care-guide_section9 .leather-care-guide_accordion.processing_fabric .leather-care-guide_accordion_tile:nth-child(1) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-ChromeFree-openMB-375.jpg");
}

.leather-care-guide_section9 .leather-care-guide_accordion.processing_fabric .leather-care-guide_accordion_tile:nth-child(2) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-Polyester-openMB-375.jpg");
}

.leather-care-guide_section9 .leather-care-guide_accordion.processing_fabric .leather-care-guide_accordion_tile:nth-child(3) {
  background-image: url("https://allsaints.itembox.design/item/static/contents/170921-tanned-openMB-375.jpg");
}

.leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed span {
  position: absolute;
  right: 20px;
  transform: rotate(270deg);
}

.leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed span img {
  filter: invert(1);
  width: 15px;
}

.leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
  display: none;
  width: 80%;
  margin: 30px auto 0;
  line-height: 22px;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leather-care-guide_accordion_active {
  height: 263px !important;
}

.leather-care-guide_accordion_active .leather-care-guide_accordion_tile_hidden-text {
  display: block;
}

.leather-care-guide_accordion_active .leather-care-guide_accordion_tile_collapsed span {
  position: absolute;
  right: 20px;
  transform: rotate(90deg);
}

/* End of Accordions styles */
.leather-care-guide_section9 .leather-care-guide_section9_good-to-know {
  background: #000;
  padding: 77px 30px 66px;
}

.leather-care-guide_section9 .leather-care-guide_section9_good-to-know h1 {
  font-size: 36.6px;
  letter-spacing: 2.55px;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.leather-care-guide_section9 .leather-care-guide_section9_good-to-know p {
  font-family: "UntitledSans";
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.44px;
  margin-bottom: 0;
}

.leather-care-guide_section9 .leather-care-guide_section9_good-to-know p:not(:last-of-type) {
  margin-bottom: 35px;
}

.leather-care-guide_section10 {
  background: #000;
  color: #fff;
  padding: 78px 0;
  overflow: hidden;
}

.leather-care-guide_section12 h1 {
  font-family: "UntitledSans-Medium";
  font-size: 22px;
  letter-spacing: 8.75px;
}

/* FAQ's accordion styles */
.leather-care-guide_faq_accordion {
  margin-top: 19px;
}

.leather-care-guide_faq_accordion button {
  border: none;
  background-color: #f8f8f8;
  padding-right: 47px;
  padding-left: 20px;
  height: 48px;
  width: 100%;
  text-align: left;
  font-size: 13px;
  margin-top: 20px;
  position: relative;
}

.leather-care-guide_faq_accordion button svg {
  height: 40px;
  width: auto;
  position: absolute;
  right: 0;
  bottom: 3px;
}

.leather-care-guide_faq_accordion button.active svg {
  transform: rotate(180deg);
}

.leather-care-guide_faq_accordion .onlineBooking_faq_accordion-panel {
  border: 1px solid #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.leather-care-guide_faq_accordion .onlineBooking_faq_accordion-panel p {
  padding: 20px;
  margin: 0;
  text-align: left;
  font-size: 13px;
}

/* End of FAQ's accordion styles */
.buttons_wrapper {
  margin: 44px 0 31px;
}

.buttons_wrapper a {
  margin: 16px 0;
}

.leather-care-guide_section3,
.leather-care-guide_section8,
.leather-care-guide_section10 {
  margin-top: -2px;
}

.leather-care-guide_links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.leather-care-guide_links-wrapper a.as_cta {
  margin-top: 20px;
}

.leather-care-guide_section11 p span {
  display: none;
}

@media only screen and (min-width: 375px) {
  .leather-care-guide_accordion_active {
    height: 305px !important;
  }
}

@media only screen and (min-width: 768px) {
  .leather-care-guide .leather-care-guide_section1 .leather-care-guide-image-container .leather-care-guide_image-heading-copy {
    font-size: 80px;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block {
    width: 400px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block,
  .leather-care-guide_section5 .leather-care-guide_text-block,
  .leather-care-guide_section7 .leather-care-guide_text-block {
    padding: 0 110px;
  }

  .product-carousel__carousel {
    margin-left: 76px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(1) {
    text-align: right;
    padding-right: 21px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(2) {
    text-align: left;
    padding-left: 21px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know {
    padding: 77px 90px 66px;
  }

  .leather-care-guide_section10 {
    padding: 104px 0;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed span {
    right: 75px;
  }

  .leather-care-guide_accordion_active {
    height: 625px !important;
  }

  .leather-care-guide_section11 {
    padding-bottom: 157px;
  }

  .leather-care-guide_section11 p {
    font-size: 36px;
    width: 260px;
  }

  .leather-care-guide_section11 .leather-care-guide-image-container:nth-child(2) p {
    top: 57%;
  }

  .leather-care-guide_section11 p span {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .leather-care-guide_section11 p span a.as_cta {
    color: #fff;
    margin-top: 0;
  }

  .leather-care-guide_section11 p span a.as_cta:nth-child(2) {
    margin-top: 20px;
  }

  .leather-care-guide_faq_accordion button svg {
    bottom: -4px;
  }

  .buttons_wrapper {
    display: flex;
    justify-content: center;
  }

  .buttons_wrapper a {
    margin: 0 50px;
  }

  .leather-care-guide_links-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: block !important;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide-image-container .leather-care-guide_image-heading-copy br {
    display: none;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block {
    width: 100%;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block br {
    display: none;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_link-wrapper {
    flex-direction: row;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_link-wrapper a {
    margin: 0 33px;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block {
    margin-top: 45px;
  }

  .leather-care-guide .leather-care-guide_section1 {
    padding-bottom: 45px;
  }

  .leather-care-guide_section2,
  .leather-care-guide_section5,
  .leather-care-guide_section7 {
    display: flex;
    padding: 72px 52px 100px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block,
  .leather-care-guide_section5 .leather-care-guide_text-block,
  .leather-care-guide_section7 .leather-care-guide_text-block {
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
    margin-top: 0;
    width: 50%;
    height: 705px;
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .leather-care-guide_section2 .leather-care-guide_text-block::-webkit-scrollbar,
  .leather-care-guide_section5 .leather-care-guide_text-block::-webkit-scrollbar,
  .leather-care-guide_section7 .leather-care-guide_text-block::-webkit-scrollbar {
    display: none;
  }

  .leather-care-guide_section2 .leather-care-guide-image-container,
  .leather-care-guide_section5 .leather-care-guide-image-container,
  .leather-care-guide_section7 .leather-care-guide-image-container {
    margin-top: 0;
    width: 50%;
    padding-right: 24px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_text-block_heading {
    font-size: 30px;
    letter-spacing: 0.65px;
    font-family: "Times New Roman", Times, serif;
    margin-bottom: 39px;
    line-height: 1;
  }

  .leather-care-guide_section2 .leather-care-guide_heading-copy:not(:first-of-type),
  .leather-care-guide_section5 .leather-care-guide_heading-copy:not(:first-of-type),
  .leather-care-guide_section7 .leather-care-guide_heading-copy:not(:first-of-type) {
    margin-top: 39px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_heading-copy,
  .leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_heading-copy,
  .leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_heading-copy {
    margin-bottom: 18px;
  }

  .leather-care-guide_section6 {
    margin-top: 0;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion {
    display: flex;
    background: #fff;
    justify-content: space-between;
    padding: 77px 36px 130px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion:nth-child(1) {
    padding-bottom: 200px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion .leather-care-guide_accordion_tile {
    width: 33%;
    height: 310px;
    cursor: auto;
    background-size: 100% 100%;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed {
    position: static;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
    display: block;
    top: 330px;
    color: #000;
    margin-top: 0;
    width: 95%;
    line-height: 1.75;
    letter-spacing: 0.44px;
    left: 0;
    transform: none;
  }

  .leather-care-guide_accordion.processing_fabric .leather-care-guide_accordion_tile_hidden-text {
    color: #fff;
  }

  .leather-care-guide_section9 {
    padding-bottom: 24px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion .leather-care-guide_accordion_tile:nth-child(2) {
    margin: 0 10px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed span {
    display: none;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed p {
    font-size: 37.5px;
    line-height: 1.15;
    letter-spacing: 3.75px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know {
    padding: 77px 315px 77px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know p:last-of-type {
    margin-bottom: 0;
  }

  .leather-care-guide_section11 p br {
    display: none;
  }

  .leather-care-guide_section11 p {
    font-size: 40px;
    width: 230px;
  }

  .leather-care-guide_accordion.processing_fabric {
    background: #000;
    padding-top: 0;
  }

  .olapic-module .olapic-intro p br {
    display: none;
  }

  .leather-care-guide_section11 {
    padding: 104px 163px 157px;
  }

  .leather-care-guide_section12 .leather-care-guide_accordion {
    margin-top: 62px;
  }

  .leather-care-guide_faq_accordion .onlineBooking_faq_accordion-panel p,
  .leather-care-guide_faq_accordion button {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1280px) {
  .leather-care-guide_section9 .leather-care-guide_accordion .leather-care-guide_accordion_tile {
    height: 396px;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
    top: 420px;
  }

  .leather-care-guide_section6 {
    margin-bottom: 77px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed p {
    font-size: 41px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(1) {
    padding-right: 49px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(2) {
    padding-left: 49px;
  }
}

@media only screen and (min-width: 1920px) {
  .leather-care-guide .leather-care-guide_section1 .leather-care-guide-image-container .leather-care-guide_image-heading-copy {
    font-size: 112px;
    letter-spacing: 7.8px;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_text-block {
    margin-top: 90px;
    margin-bottom: 63px;
    font-size: 36px;
  }

  .leather-care-guide .leather-care-guide_section1 {
    padding-bottom: 115px;
  }

  .leather-care-guide .leather-care-guide_section1 .leather-care-guide_link-wrapper a {
    font-size: 16px;
  }

  .leather-care-guide_section2,
  .leather-care-guide_section5,
  .leather-care-guide_section7 {
    padding: 100px 100px 155px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_text-block_heading {
    font-size: 64px;
    margin-bottom: 81px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_heading-copy,
  .leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_heading-copy,
  .leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_heading-copy {
    font-size: 50px;
    margin-bottom: 49px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block p,
  .leather-care-guide_section5 .leather-care-guide_text-block p,
  .leather-care-guide_section7 .leather-care-guide_text-block p {
    font-size: 24px;
  }

  .leather-care-guide_section2 .leather-care-guide_heading-copy:not(:first-of-type),
  .leather-care-guide_section5 .leather-care-guide_heading-copy:not(:first-of-type),
  .leather-care-guide_section7 .leather-care-guide_heading-copy:not(:first-of-type) {
    margin-top: 72px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block,
  .leather-care-guide_section5 .leather-care-guide_text-block,
  .leather-care-guide_section7 .leather-care-guide_text-block {
    height: 962px;
    padding-left: 75px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block {
    height: 1174px;
  }

  .leather-care-guide_section2 .leather-care-guide-image-container,
  .leather-care-guide_section5 .leather-care-guide-image-container,
  .leather-care-guide_section7 .leather-care-guide-image-container {
    padding-right: 76px;
  }

  .product-carousel__carousel .slide__text--prod-name {
    font-size: 30px;
    min-height: 70px;
  }

  .product-carousel .product-carousel_switcher p span {
    font-size: 31.5px;
  }

  .product-carousel .slick-list.draggable {
    padding-top: 63px;
  }

  .product-carousel .slick-arrow {
    width: 40px;
    height: 76px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(1) {
    padding-right: 52px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(2) {
    padding-left: 52px;
  }

  .leather-care-guide_section6 {
    margin-bottom: 82px;
  }

  .leather-care-guide_section8 {
    padding-bottom: 140px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion {
    padding: 140px 155px 300px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion:nth-child(1) {
    padding-bottom: 300px;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
    font-size: 24px;
    width: 86%;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion .leather-care-guide_accordion_tile {
    width: 528px;
    height: 528px;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
    top: 570px;
    line-height: 1.54;
    letter-spacing: 0.67px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know {
    padding: 143px 197px 0;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know h1 {
    font-size: 76px;
    letter-spacing: 1.24px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know p {
    font-size: 24px;
    line-height: 2.08;
    letter-spacing: 0.67px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed p {
    font-size: 50px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion.processing_fabric {
    padding: 63px 155px 216px;
  }

  .leather-care-guide_section10 {
    padding: 246px 0;
  }

  .leather-care-guide_section11 {
    padding: 149px 185px 278px;
  }

  .leather-care-guide_section11 p {
    font-size: 76px;
    width: 620px;
  }

  .leather-care-guide_section11 .leather-care-guide-image-container:nth-child(2) p {
    top: 53.5%;
  }

  .leather-care-guide_section11 p span {
    flex-direction: row;
    justify-content: center;
  }

  .leather-care-guide_section11 p span a.as_cta {
    margin-top: 0 !important;
    margin: 0 21px;
  }

  .leather-care-guide_section12 h1 {
    font-size: 39.1px;
  }

  .leather-care-guide_faq_accordion button {
    font-size: 24px;
    height: 86px;
  }

  .leather-care-guide_faq_accordion button svg {
    bottom: 0;
    height: 80px;
  }

  .buttons_wrapper {
    margin-top: 67px;
    margin-bottom: 54px;
  }
}

@media only screen and (min-width: 2560px) {

  .leather-care-guide_section2,
  .leather-care-guide_section5,
  .leather-care-guide_section7 {
    padding: 139px 400px 155px 152px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block,
  .leather-care-guide_section5 .leather-care-guide_text-block,
  .leather-care-guide_section7 .leather-care-guide_text-block {
    height: 1150px;
  }

  .leather-care-guide_section2 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section5 .leather-care-guide_text-block .leather-care-guide_text-block_heading,
  .leather-care-guide_section7 .leather-care-guide_text-block .leather-care-guide_text-block_heading {
    margin-bottom: 115px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion .leather-care-guide_accordion_tile {
    width: 715px;
    height: 715px;
  }

  .leather-care-guide_section6 {
    margin-bottom: 138px;
  }

  .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_hidden-text {
    top: 770px;
  }

  .product-carousel__carousel .slide__text--prod-name {
    font-size: 40px;
    min-height: 90px;
  }

  .product-carousel .slick-list.draggable {
    padding-top: 111px;
  }

  .product-carousel .slick-arrow {
    top: 50%;
  }

  .product-carousel .product-carousel_switcher p:nth-child(1) {
    padding-right: 65px;
  }

  .product-carousel .product-carousel_switcher p:nth-child(2) {
    padding-left: 65px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion {
    padding: 140px 188px 280px;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion_tile .leather-care-guide_accordion_tile_collapsed p {
    font-size: 50px;
    letter-spacing: 5px;
    width: 650px;
  }

  .leather-care-guide_section9 .leather-care-guide_section9_good-to-know {
    padding: 143px 670px 0;
  }

  .leather-care-guide_section9 .leather-care-guide_accordion.processing_fabric {
    padding: 63px 188px 197px;
  }

  .leather-care-guide_section11 p {
    font-size: 112.4px;
    width: 60%;
  }

  .leather-care-guide_section11 .leather-care-guide-image-container:nth-child(2) p {
    top: 54%;
  }

  .leather-care-guide_section11 p br {
    display: none;
  }

  .leather-care-guide_section12 h1 {
    font-size: 43px;
  }
}

.leather-care-guide_section9 {
  padding-bottom: 78px;
}

@media (min-width: 768px) {
  .leather-care-guide_section9 {
    padding-bottom: 104px;
  }
}

@media screen and (min-width: 1920px) {
  .leather-care-guide_section9 {
    padding-bottom: 246px;
  }
}

/* 2023/1/10 style.css上書き */
.slick-arrow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); */
  border-top: 0;
  border-right: 0;
  top: 0;
  /* bottom: 0; */
  left: 0;
  /* margin: auto */
}

@media only screen and (min-width: 768px) {

  .leather-care-guide_text-block {
    overflow: visible;
  }  
}

/* -------------------------------------------------------- */