@charset "UTF-8";
@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.08, 1.08, 1.08);
    transform: scale3d(1.08, 1.08, 1.08);
  }
}
@keyframes zoomIn {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.08, 1.08, 1.08);
    transform: scale3d(1.08, 1.08, 1.08);
  }
}
/* -----------------------------------------------------
 * Home PC
----------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .zoomIn {
    overflow: hidden;
  }
  .zoomIn img {
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
  }

  .header {
    border-bottom: none;
  }

  .main-visual {
    padding-top: 44.4444444444%;
    height: 0;
    overflow: hidden;
    position: relative;
    -webkit-perspective: 0;
    perspective: 0;
  }
  .main-visual img {
    width: 100%;
  }
  .main-visual .slick-slide {
    -webkit-transition: -webkit-transform 8s;
    transition: -webkit-transform 8s;
    transition: transform 8s;
    transition: transform 8s, -webkit-transform 8s;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .main-visual > div {
    -webkit-transform: scale(1);
            transform: scale(1);
    position: absolute;
    width: 100%;
    top: 0%;
  }

  .section-title {
    text-align: center;
    margin: 0 auto 50px;
  }
  .section-title-text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-title .ja {
    font-size: 2.8rem;
    font-weight: 400;
  }
  .section-title .en {
    padding-left: 27px;
    color: #666;
    font-size: 1.5rem;
    font-weight: 400;
  }

  /* 日仏商事について
  ----------------------------------------------------- */
  .about {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .about .section-title .ja,
.about .section-title .en {
    color: #b51b35;
  }
  .about .about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
  }
  .about .about-item {
    width: 50%;
    display: block;
    text-decoration: none;
  }
  .about .about-item.product-history {
    background: #c2996c;
  }
  .about .about-item.about-us {
    background: #b51b35;
  }
  .about .about-item-image {
    position: relative;
    overflow: hidden;
    padding-top: 55.4106910039%;
  }
  .about .about-item-image img {
    left: 50%;
    top: 50%;
    position: absolute;
    max-width: 101%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .about .about-item-text {
    position: relative;
    color: #fff;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .about .about-item-title {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .about .about-item-lead {
    width: 55.5555555556%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.8571428571;
  }
  .about .about-item-read-more {
    position: absolute;
    width: auto;
    font-size: 1.2rem;
    color: #fff;
    top: 50%;
    right: 3.75%;
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
    display: block;
    background: url("/assets/img/common/arrow-light.png") no-repeat center top;
    padding-top: 20px;
  }

  /* 商品情報
  ----------------------------------------------------- */
  .product {
    padding: 65px 0;
    background: #f2f2f2;
  }
  .product-container {
    max-width: 1120px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product .product-search {
    width: 100%;
  }
  .product .product-search-form {
    float: left;
    width: 57.1428571429%;
    position: relative;
  }
  .product .product-search-input {
    font-size: 1.6rem;
    width: 100%;
    height: 80px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 24px 70px 24px 30px;
    border: 1px solid #d5d5d5;
    position: relative;
    /* google chrome, safari, opera 15+, android, ios */
    /* firefox 18- */
    /* firefox 19+ */
    /* ie 10+ */
  }
  .product .product-search-input:-moz-placeholder-shown {
    color: #aaaaaa;
  }
  .product .product-search-input:-ms-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-input:placeholder-shown {
    color: #aaaaaa;
  }
  .product .product-search-input::-webkit-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-input:-moz-placeholder {
    color: #aaaaaa;
    opacity: 1;
  }
  .product .product-search-input::-moz-placeholder {
    color: #aaaaaa;
    opacity: 1;
  }
  .product .product-search-input:-ms-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-submit {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    border: none;
    background: transparent;
  }
  .product .product-search-index {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 80px;
    width: 40.1785714286%;
  }
  .product .product-search-index-button {
    text-align: center;
    width: 48.8888888889%;
    border: 1px solid #d5d5d5;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff url("/assets/img/common/arrow-dark.png") no-repeat right 4.5454545455% center;
    background-size: 30px 11px;
    color: #333;
    text-decoration: none;
  }
  .product .product-search-index-button:hover {
    color: #fff;
    background: #333 url("/assets/img/common/arrow-light.png") no-repeat right 4.5454545455% center;
    background-size: 30px 11px;
  }
  .product .product-search-index-button:hover .product-search-index-description {
    color: #fff;
  }
  .product .product-search-index-label {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.2em;
  }
  .product .product-search-index-description {
    display: block;
    font-size: 1.4rem;
    color: #666;
  }

  /* お知らせ
  ----------------------------------------------------- */
  .information {
    padding-top: 80px;
    padding-bottom: 90px;
    max-width: 960px;
    margin: 0 auto;
  }
  .information-important {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #cccccc;
    padding: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .information-important a {
    font-size: 1.4rem;
    font-weight: normal;
  }
  .information-important a:link, .information-important a:visited {
    color: #222;
  }
  .information-important a:hover {
    text-decoration: none;
  }
  .information-tab ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 70px;
    margin-bottom: 40px;
  }
  .information-tab ul li {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #aaaaaa;
    padding-left: 30px;
    position: relative;
  }
  .information-tab ul li:hover, .information-tab ul li.active {
    background: #333333;
  }
  .information-tab ul li::after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    width: 15px;
    height: 15px;
    margin-top: -5px;
    border-left: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    -webkit-transform: translatey(-50%) rotate(-45deg);
            transform: translatey(-50%) rotate(-45deg);
  }
  .information-tab-en {
    font-size: 2.4rem;
    padding-right: 20px;
  }
  .information-tab-ja {
    font-size: 1.4rem;
  }
  .information .tab-content {
    display: none;
  }
  .information .tab-content.active {
    display: block;
  }
  .information-list {
    list-style-type: none;
    margin-bottom: 50px;
  }
  .information-item {
    margin-bottom: 27px;
  }
  .information-item a {
    color: #666666;
    text-decoration: none;
  }
  .information-item-pubdate {
    display: inline-block;
    width: 100px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .information-item-category {
    width: 120px;
    text-align: center;
    min-height: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px;
    background: #f2f2f2;
    margin-right: 20px;
  }
  .information-item-title {
    padding-top: 3px;
    display: inline-block;
    width: 700px;
    vertical-align: top;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .information-item-title:hover {
    text-decoration: underline;
  }
  .information-item-title .new-label {
    display: inline-block;
    background: #b51b35;
    color: #fff;
    margin-right: 1em;
    font-size: 1.2rem;
    padding: 3px 7px;
  }

  /* N&Fマガジン 
  ----------------------------------------------------- */
  .blog {
    padding-bottom: 90px;
    position: relative;
    padding-top: 82px;
    position: relative;
  }
  .blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    padding-top: calc(160px + 18.7%);
    background: #b51b35;
    z-index: -1;
  }

  /* ブランドサイト・オフィシャルサイト
  ----------------------------------------------------- */
}
@media print, screen and (min-width: 768px) and (min-width: 1440px) {
  .blog::before {
    padding-top: 430px;
  }
}
@media print, screen and (min-width: 768px) {
  .blog .section-title {
    line-height: 1;
  }
  .blog .section-title .ja,
.blog .section-title .en {
    color: #fff;
  }
}
@media print, screen and (min-width: 768px) {
  .blog-index {
    width: 91.6666666667%;
    max-width: 1440px;
    margin: 0 auto 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blog-index-item {
    display: block;
    width: 30.303030303%;
    max-width: 400px;
    text-decoration: none;
    color: #333;
    background: #f2f2f2;
    position: relative;
  }
  .blog-index-item:hover .blog-index-item-image > img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  .blog-index-item:hover .blog-index-item-content {
    opacity: 0.5;
  }
  .blog-index-item-image {
    background: #fff;
    overflow: hidden;
  }
  .blog-index-item-image img {
    max-width: 102%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .blog-index-item-content {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    padding: 6.5% 5% 84px;
  }
  .blog-index-item-label {
    background: #c2996c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 120px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 6px;
    vertical-align: middle;
    margin-bottom: 25px;
  }
  .blog-index-item-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .blog-index-item-sub-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
  }
  .blog-index-item-lead {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.7142857143;
  }
  .blog-index-item-read-more {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translatex(-50%);
            transform: translatex(-50%);
    font-size: 1.6rem;
    text-align: center;
    padding: 0 5px 13px;
    border-bottom: 1px solid #333;
  }
}
@media print, screen and (min-width: 768px) {
  .brands {
    padding: 70px 0;
  }
  .brands .section-title {
    margin-bottom: 70px;
  }
  .brands-list {
    max-width: 1120px;
    list-style-type: none;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .brands-list li {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 19.8214285714%;
    height: 135px;
    margin-left: 0.1785714286%;
    margin-bottom: 0.1785714286%;
  }
  .brands-list li a {
    border: 1px solid #d5d5d5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }

  .brands-list li img {
    max-height:100%;
  }
}
/* -----------------------------------------------------
 * Home sp
----------------------------------------------------- */
@media screen and (max-width: 767px) {
  @-webkit-keyframes zoomIn {
    from {
      -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
      transform: translate(-50%, -50%) scale3d(1.08, 1.08, 1.08);
    }
    to {
      -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
      transform: translate(-50%, -50%) scale3d(1.08, 1.08, 1.08);
    }
  }
  @keyframes zoomIn {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1.08, 1.08, 1.08);
    }
  }
  .zoomIn img {
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
  }

  .header {
    border-bottom: none;
  }

  .main-visual-sp {
    padding-top: 80%;
    height: 0;
    overflow: hidden;
    position: relative;
  }
  .main-visual-sp img {
    width: 100%;
  }
  .main-visual-sp .slick-list {
    position: absolute;
    width: 100%;
    top: 0%;
  }

  .section-title {
    font-size: 5.5555555556vw;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4.1666666667%;
  }
  .section-title-text {
    display: inline;
  }
  .section-title .ja {
    font-size: 5.5555555556vw;
    font-weight: 400;
  }
  .section-title .en {
    font-size: 3.6111111111vw;
    padding-top: 2.0833333333%;
    color: #666;
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
  }

  /* 日仏商事について
  ----------------------------------------------------- */
  .about {
    padding-top: 9.7222222222%;
    padding-bottom: 8.3333333333%;
  }
  .about .section-title .ja,
.about .section-title .en {
    color: #b51b35;
  }
  .about .about-item {
    width: 100%;
    display: block;
    text-decoration: none;
  }
  .about .about-item.product-history {
    background: #c2996c;
  }
  .about .about-item.about-us {
    background: #b51b35;
  }
  .about .about-item-image {
    position: relative;
    overflow: hidden;
    padding-top: 55.4106910039%;
  }
  .about .about-item-image img {
    left: 50%;
    top: 50%;
    position: absolute;
    max-width: 101%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .about .about-item-text {
    position: relative;
    color: #fff;
    padding: 2.7777777778% 0;
  }
  .about .about-item-title {
    font-size: 5vw;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1.3888888889%;
  }
  .about .about-item-lead {
    width: 88.8888888889%;
    font-size: 3.8888888889vw;
    line-height: 1.7857142857;
    margin: 0 auto 4.6875%;
  }
  .about .about-item-read-more {
    font-size: 3.3333333333vw;
    color: #fff;
    display: block;
    padding-top: 1.5625%;
    text-align: center;
    position: relative;
    width: 100%;
  }
  .about .about-item-read-more::before {
    display: block;
    content: "";
    width: 9.0277777778%;
    height: 0;
    margin: 0 auto 3.6111111111%;
    padding-top: 2.6388888889%;
    background: url("/assets/img/common/arrow-light.png") no-repeat center top;
    background-size: cover;
  }

  /* 製品情報
  ----------------------------------------------------- */
  .product {
    padding: 8.3333333333% 0;
    background: #f2f2f2;
  }
  .product-container {
    width: 88.8888888889%;
    margin: 0 auto;
  }
  .product .product-search-index-button {
    width: 100%;
    border: 1px solid #d5d5d5;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4.6875%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff url("/assets/img/common/arrow-dark.png") no-repeat right 7.1794871795% center;
    color: #333;
    text-decoration: none;
    margin-bottom: 3.125%;
  }
  .product .product-search-index-button div {
    width: 100%;
  }
  .product .product-search-index-label {
    display: block;
    width: 100%;
    font-size: 5vw;
    margin-bottom: 3.4482758621%;
  }
  .product .product-search-index-description {
    display: block;
    font-size: 3.3333333333vw;
    color: #666;
  }
  .product .product-search-form {
    position: relative;
  }
  .product .product-search-input {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    border: 1px solid #d5d5d5;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7.8125%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 28px;
    margin-bottom: 3.125%;
    /* google chrome, safari, opera 15+, android, ios */
    /* firefox 18- */
    /* firefox 19+ */
    /* ie 10+ */
  }
  .product .product-search-input:-moz-placeholder-shown {
    color: #aaaaaa;
  }
  .product .product-search-input:-ms-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-input:placeholder-shown {
    color: #aaaaaa;
  }
  .product .product-search-input::-webkit-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-input:-moz-placeholder {
    color: #aaaaaa;
    opacity: 1;
  }
  .product .product-search-input::-moz-placeholder {
    color: #aaaaaa;
    opacity: 1;
  }
  .product .product-search-input:-ms-input-placeholder {
    color: #aaaaaa;
  }
  .product .product-search-submit {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    border: none;
    background: transparent;
  }

  /* お知らせ
  ----------------------------------------------------- */
  .information {
    padding: 9.7222222222% 0;
    width: 88.8888888889%;
    margin: 0 auto;
  }
  .information-important {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #cccccc;
    padding: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .information-important a {
    font-size: 3.8888888889vw;
    font-weight: normal;
  }
  .information-important a:link, .information-important a:visited {
    color: #222;
  }
  .information-important a:hover {
    text-decoration: none;
  }
  .information-tab ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 7.8125%;
  }
  .information-tab ul li {
    padding: 3.75% 0 3.75% 3.125%;
    color: #fff;
    width: 50%;
    background: #aaaaaa;
    position: relative;
  }
  .information-tab ul li.active {
    background: #333333;
  }
  .information-tab-en {
    display: block;
    font-size: 5vw;
    margin-bottom: 4.6875%;
  }
  .information-tab-ja {
    display: block;
    font-size: 3.3333333333vw;
  }
  .information .tab-content {
    display: none;
  }
  .information .tab-content.active {
    display: block;
  }
  .information-list {
    list-style-type: none;
    margin-bottom: 12.5%;
  }
  .information-item {
    margin-bottom: 5.46875%;
  }
  .information-item a {
    color: #666666;
    text-decoration: none;
  }
  .information-item-pubdate {
    width: 7em;
    display: inline-block;
    font-size: 3.6111111111vw;
    letter-spacing: 0.05em;
  }
  .information-item-category {
    text-align: center;
    font-size: 3.6111111111vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25%;
    padding: 8px;
    background: #f2f2f2;
  }
  .information-item-title {
    padding-top: 2.34375%;
    display: block;
    vertical-align: top;
    font-size: 3.8888888889vw;
    line-height: 1.5;
  }
  .information-item-title:hover {
    text-decoration: underline;
  }
  .information-item-title .new-label {
    display: inline-block;
    background: #b51b35;
    color: #fff;
    margin-right: 1em;
    font-size: 3.3333333333vw;
    padding: 3px 7px;
  }

  /* N&Fマガジン 
  ----------------------------------------------------- */
  .blog {
    position: relative;
    padding-top: 7.6388888889%;
    padding-bottom: 13.8888888889%;
  }
  .blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    padding-top: 59.7222222222%;
    background: #b51b35;
    z-index: -1;
  }
  .blog .section-title .ja,
.blog .section-title .en {
    color: #fff;
  }

  /* ブランドサイト・オフィシャルサイト
  ----------------------------------------------------- */
  .brands {
    padding: 9.7222222222% 0 13.8888888889%;
  }
  .brands .section-title {
    margin-bottom: 8.3333333333%;
  }
  .brands-list {
    list-style-type: none;
    width: 91.2646675359%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .brands-list li {
    height: 100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 1%;
    margin-bottom: 1.1111111111%;
    -webkit-box-flex: 32%;
        -ms-flex: 32%;
            flex: 32%;
    border: 1px solid #d5d5d5;
  }
  .brands-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    position: relative;
    padding-top: 65.7894736842%;
  }
  .brands-list li img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}/*# sourceMappingURL=index.css.map */