.p-top-logo {
  font-size: 20px;
  line-height: 1.4;
  max-width: 90%;
  margin: 30px auto;
  text-align: center;
}

.p-top-logo a {
  display: block;
  transition: opacity .2s;
  text-decoration: none;
  color: #2e271a;
}

.p-top-logo a:hover {
  opacity: .66;
}

.p-top-logo a:active {
  opacity: 1;
}

#slider-wrapper .bx-controls-direction a {
  z-index: 100;
}

#slider-wrapper .bx-viewport {
    top: 0;
    left: 0;
    border: 0;
    background: #f8f8f8;
    box-shadow: none;
}
#slider-wrapper .bx-viewport,
#slider-wrapper .bx-viewport #slider > div{
    height: calc( 100vh - 51px - 119px - 140px - 158px )!important;
}
@media screen and (min-width: 600px){
    #slider-wrapper .bx-viewport,
    #slider-wrapper .bx-viewport #slider > div{
        height: calc( 100vh - 169px - 76px - 141px - 159px )!important;
    }
}
@media screen and (min-width: 960px){
    #slider-wrapper .bx-viewport,
    #slider-wrapper .bx-viewport #slider > div{
        height: calc( 100vh - 169px - 48px - 141px )!important;
    }
}
@media screen and (min-width:1620px){
    #slider-wrapper .bx-viewport,
    #slider-wrapper .bx-viewport #slider > div{
        height: calc( 100vh - 169px - 48px - 159px )!important;
    }
}

#slider-wrapper .bx-wrapper img {
}

#slider-wrapper .bx-caption {
  top: 0;
  bottom: auto;
  background: rgba(0, 0, 0, .3);
}

#slider-wrapper .bx-caption span {
  padding: 1.5em;
}

#slider-wrapper .bx-pager {
  bottom: 10px;
  padding-top: 0;
}

#slider-wrapper .bx-pager a {
  background: #fff;
}

#slider-wrapper .bx-pager a:hover,
#slider-wrapper .bx-pager a.active {
  background: #6f5493;
}

/*BXスライダーオプション*/
#slider > div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#slider > div {
    animation: anime_zoom 10s linear;
}
#slider > div.active-slide {
    transform: scale(1.1);
}
@keyframes anime_zoom {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
    }
}

/*キャッチコピー*/
#slider-wrapper{
}
#slider-wrapper > div.catch_copy{
    display: none;
}
/*#slider-wrapper > div.catch_copy > h2{
    font-size: 1rem;
    color: #fff;
    background-color: rgba(46,39,26,.9);
    padding: 15px;
}
#slider-wrapper > div.catch_copy > h2 > span{
    display: inline-block;
}
@media screen and (min-width: 960px){
    #slider-wrapper{
        position: relative;
    }
    #slider-wrapper > div.catch_copy{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        box-sizing: border-box;
        max-width: 1240px;
        margin: 0 auto;
    }
    #slider-wrapper > div.catch_copy > h2{
        font-size: 2.25rem;
        padding: 20px;
        display: inline-grid;
    }
}*/

/*カテゴリ*/
.top_category_wrap > div{
    position: relative;
}
.top_category_wrap > div .c-section__heading{
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
}
.top_category_wrap > div .c-section__heading--title,
.top_category_wrap > div .c-section__heading--sub-title{
    color: #fff;
}
@media screen and (min-width: 960px){
    .top_category_wrap > div .c-section__heading{
        top: -170px;
    }
}

.p-info {
  line-height: 1.5;
}

.p-contents {
  line-height: 1.5;
  margin-bottom: 40px;
}

.p-contents__list {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

.p-contents__list::after {
  display: block;
  clear: both;
  content: '';
}

.p-contents__list li {
  position: relative;
  box-sizing: border-box;
  padding: 0 2em 0 1em;
}

.p-contents__list li::before {
  position: absolute;
  top: .5em;
  left: 0;
  content: '-';
}

.p-contents__list a {
  display: block;
  max-width: 100%;
  padding: .5em 0;
  transition: opacity .2s;
  text-decoration: none;
  color: #2e271a;
}

.p-contents__list a:hover {
  opacity: .66;
}

.p-contents__list a:active {
  opacity: 1;
}

.p-custom-banner {
  margin-top: 50px;
  text-align: center;
}

.p-custom-banner__unit {
  background: #f7f7f7;
}

.p-custom-banner__unit--text {
  font-family: 'Montserrat', sans-serif;
  padding: 30px 10px;
  color: #f7f7f7;
  background: #2e271a;
}

.p-custom-banner__unit--text a {
  color: #f7f7f7;
}

.p-custom-banner__image {
  width: 100%;
}

.p-custom-banner__heading {
  font-size: 24px;
  padding: 10px 0;
}

.p-custom-banner__body {
  line-height: 1.5;
  padding: 10px 0;
}

@media screen and (min-width: 600px) {
  .p-top-logo {
    display: none;
  }

  #slider-wrapper .bx-pager {
    bottom: 30px;
  }

  .p-contents__list li::before {
    top: 0;
  }

  .p-contents__list li {
    float: left;
    width: 50%;
    margin-bottom: 20px;
  }

  .p-contents__list li:nth-child(2n + 1) {
    clear: left;
  }

  .p-contents__list a {
    display: inline-block;
    padding: 0;
  }

  .p-custom-banner {
    display: table;
    width: 100%;
    margin-top: 100px;
    table-layout: fixed;
  }

  .p-custom-banner__unit {
    display: table-cell;
    box-sizing: border-box;
    width: 50%;
    max-width: 50%;
    vertical-align: middle;
    word-break: break-all;
  }

  .p-custom-banner__unit--text {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 960px) {
  .p-custom-banner__heading {
    font-size: 30px;
  }
}

/*コーディネート*/
/*中央寄せ*/ .coordinate h3, .coordinate .thanks p, .coordinate .thanks h4{
    text-align: center;
}
/*右寄せ*/ .coordinate p, .coordinate ul{
    text-align: left;
    line-height: 1.5;
    margin: 0;
}
.coordinate p span{
    display: inline-block;
}
.coordinate .photo{
    margin-bottom: 30px;
    position: relative;
    z-index: -1;
}
.coordinate .h3, .coordinate .txt{
    margin-bottom: 15px;
}
.coordinate .thanks, .coordinate .list{
    padding: 15px;
}
.coordinate .thanks{
    background-color: var(--color2);
}
.coordinate .list{
    background-color: var(--color5);
}
.coordinate .list h4{
    margin-bottom: 5px;
}
.coordinate .c-product-list__item{
    width: 100%;
}
@media screen and (min-width: 600px){
    .coordinate .c-product-list__item {
        width: 50%;
    }
}
@media screen and (min-width: 960px){
    .coordinate .c-product-list__item {
        width: 25%;
    }
}
@media screen and (min-width: 1025px){
    .coordinate .c-product-list__item{
        padding: 40px;
    }
    .coordinate .c-product-list__item:nth-child(n+5) {
        width: 20%;
    }
}

/*商品が表示される数を制御 最大14*/
@media screen and (max-width: 559px){
    /*2分割*/
    .getList .c-product-list__item:nth-child(n+5){
        display: none;
    }
}
@media screen and (min-width: 600px) and (max-width: 1159px){
    /*3分割*/
    .getList .c-product-list__item:nth-child(n+7){
        display: none;
    }
}
@media screen and (min-width:1160px) /*and (max-width: 1389px)*/{
    /*4分割*/
    .getList .c-product-list__item:nth-child(n+9){
        display: none;
    }
}
/*@media screen and (min-width:1390px) and (max-width: 1619px){
    .MADE-TO-ORDER .c-product-list__item:nth-child(n+11){
        display: none;
    }
}
@media screen and (min-width:1620px) and (max-width: 1849px){
    .MADE-TO-ORDER .c-product-list__item:nth-child(n+13){
        display: none;
    }
}
@media screen and (min-width:1850px){
    .MADE-TO-ORDER .c-product-list__item:nth-child(n+13){
        display: block;
    }
}*/