/*-----------------------------------
ブランドページ
-----------------------------------*/
#keiroBrandPage{
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 600;
}
#keiroBrandPage .header img {
  width: 100%;
  margin-bottom: 20px;
}
#keiroBrandPage .header .text h2 {
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
  color:#692927;
  font-size: 26px;
}
#keiroBrandPage .header .text {
  padding: 15px;
  color: #262626;
  text-align: center;
  font-size: 110%;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#keiroBrandPage .subtitle {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
  color:#692927;
  font-size: 26px;
}

/*-----------------------------------
ブランドページ 戻るボタン
-----------------------------------*/
#keiroBrandPage .back_button{
  margin: 20px 0 50px;
  text-align: center;
  position: relative;
}
#keiroBrandPage .back_button a{
  padding: 15px 30px 15px 50px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #bc3b51;
  text-decoration: none;
  position: relative;
  border-radius: 50px;
}

#keiroBrandPage .back_button a::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  width: 8px;
  height: 8px;
  transition: .3s;
  transform: translateY(-50%) rotate(-135deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}
#keiroBrandPage .back_button a:hover::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  transition: .3s;
  transform: translateY(-50%) rotate(-135deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}

/*-----------------------------------
進むボタン
-----------------------------------*/
.go_button{
  margin: 0 auto;
  width: 60%;
  text-align: center;
  position: relative;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
}
.go_button:nth-of-type(n+3){
  margin-top: 20px;
}
.go_button a {
  padding: 15px 50px 15px 30px;
  font-size: 20px;
  font-weight: bold;
  color: #fff!important;
  background-color: #bc3b51;
  text-decoration: none;
  position: relative;
  border-radius: 50px;
  display: block;
}
.go_button a:hover{
  background: #ce5771;
}
.go_button a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  height: 8px;
  transition: .3s;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}
.go_button a:hover::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  transition: .3s;
  transform: translateY(-50%) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}

/*-----------------------------------
ボタン2カラム
-----------------------------------*/
.bt-wrapper{
  margin: 20px 40px;
  display: flex;
  justify-content: center;
}
.bt-wrapper > div{
  width: calc((100% - 20px) / 2)!important;
}
.bt-wrapper > div:first-of-type{
 margin-right: 20px;
}

/*-----------------------------------
ブランドページ　おすすめ商品
-----------------------------------*/
.pickup_block {
  margin: 40px 0;
  width: 100%;
}
.pick_title {
  margin: 0;
  margin-left: 20px;
  color: #b47b1f;
  font-size: 30px;
  font-weight: bold;
}
.pick_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  border-top: 1px solid #b47b1f;
  padding-top: 30px;
}
.pick_item{
  width: calc((100% - 30px)/4);
  margin-right: 10px;
}
.pick_item:nth-of-type(4n){
  margin-right: 0;
}
.pick_item .item_img{
  display: flex;
  justify-content: center;
  width: 100%;
}
.pick_item .pick_item:nth-of-type(4n){
  margin-right: 0;
}
#keiroBrandPage a{
  color: #000000;
  transition: 0.5s;
}
.pick_item .item_img img {
  width: 80%;
  margin: 10px auto;
  text-align: center;
}
.pick_item  a {
  transition: .3s;
  text-decoration: none;
  position: relative;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pick_item a:hover p{
  color: #e29b26;
  text-decoration: none;
}

.txt_data{
  display: inline-block;
}
.txt_data p {
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.5;
}
.txt_data .price {
  font-size: 18px;
  font-weight: bold;
}
.txt_data .price span{
  font-size: 13px;
  font-weight: bold;
}


/*-----------------------------------
ブランドページ　おすすめ商品スライダー
-----------------------------------*/
/*　　3枚スライダー　　*/
.slick-wrapper{
  padding: 30px 20px;
}
.slick-wrapper .slick-item{
  margin: 0 20px;
  width: calc((100% - 100px) / 6);
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 2%;
}

.slick-wrapper .item-info{
  position: absolute;
  bottom: 0;
  left: 5%;
}
.slick-wrapper a{
  text-decoration: none;
  transition: 0.3s;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.slick-wrapper a img{
  transition: 0.3s;
}
.slick-wrapper a:hover img{
  opacity: 0.7;
  transform: scale(0.9);
}
.slick-wrapper .item-info-wrap .i-img{
  width: 100%;
}
.slick-item:hover .item-info{
  left: 0;
}
.slick-wrapper .item-info{
  position: absolute;
  bottom: 0;
  left: -200px;
  margin-bottom: 10px;
  padding: 10px;
  width: 90%;
  font-size: 15px;
  color: #616161;
  background:rgba(255,255,255,0.6);
  border-radius: 20px;
  transition: 0.3s;
}
.slick-wrapper .item-info > .b-name{
  margin: 0 0 5px -5px;
  padding: 5px 10px;
  background: #616161;
  color: #fff;
  border-radius: 100vh;
  display: inline-block;
}
.slick-wrapper .item-info > .pr-tag{
  font-weight: 600;
}
.slick-wrapper .item-info > .pr-tag span{
  font-size: 13px;
}

/*　　5枚スライダー　　*/
.slick-five-wrapper{
  padding: 30px 20px;
}
.slick-initialized .slick-slide {
  display: block;
  height: auto!important;
}

/*　　スライダーページボタン　　*/
button.slick-prev.slick-arrow{
  width: 30px;
  height: 60px;
  background-color: #616161;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 0;
  transform: translateY(-50%);
  border-radius: 100vh;
  z-index: 100;
  border: none;
}
button.slick-prev.slick-arrow::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 30%;
  z-index: 10;
  width: 7px;
  height: 7px;
  border: none;
  background: transparent;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff; 
  transform: rotate(45deg) translateY(-50%);
}
button.slick-next.slick-arrow{
  width: 30px;
  height: 60px;
  background-color: #616161;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0;
  transform: translateY(-50%);
  border-radius: 100vh;
  border: none;
}
button.slick-next.slick-arrow::after{
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 40%;
  z-index: 10;
  width: 7px;
  height: 7px;
  border: none;
  background: transparent;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff; 
  transform: rotate(-135deg);
}

/*----------------------------
カード
-----------------------------*/
.card-sec {
  padding-top: 60px; /* ページタイトルの上の余白 */
  padding-bottom: 142px; /* カード下の余白*/
  background-color: #EFEFEF; /* 背景色 */
}
 
.page-title {
  position: relative;
  color: #333333;
  font-size: 60px;
}
 
.page-title:before { /* page-titleの下線 */
  display: inline-block;
  position: absolute;
  width: 76px;
  height: 5px;
  border-radius: 2px;
  background-color: #3F51B5;
  content: '';
  bottom: -42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
 
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(342px, 1fr));
  gap: 20px 30px;
  margin: 109px auto 0;
  text-align: start;
}
 
.card-item {
  width: 100%;
  max-width: 342px;
  margin: 0 auto;
  padding: 16px 16px 35px;
  background-color: #ffffff;
}
 
.card-img {
  width: 100%;
  max-width: 310px;
  height: auto; 
  vertical-align: bottom;
}
 
.card-tit {
  margin-top: 20px;
  color: #6F7579;
  font-size: 20px;
  line-height: 1.2;
}
 
.card-item p {
  margin-top: 20px;
  color: #6F7579;
  font-size: 16px;
  line-height: 1.5;
}

/*カテゴリ内ボタン追加*/
#cardlayout-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  margin: 2em auto;
  max-width: 980px;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

a.card-link {
  text-decoration: none;
}
#cardlayout-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.card-figure {
  margin: 0;
  padding: 0;
  }
.card-figure:hover {
  opacity: .7;
}

.card-title {
  margin: 0.6em 0 0;
  color: #333333;
  text-align: center;
  font-size: 1.2em;
}

.card-text-tax {
  margin: 0;
  padding: 1em;
  color: #818181;
  font-size: 0.8em;
}

.card-list {
  margin: 0.5em auto;
  padding: 0;
  width: 96%;
  background: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

@media all and (min-width: 768px) {
.card-list {
  margin: 0.5em 0;
  width: calc(96% / 2); 
}
}

@media all and (min-width: 992px) {
.card-list {
  width: calc(96% / 3);
}

#cardlayout-wrap::after{
  content: "";
  display: block;
  width: calc(96% / 3);
}
}
.headline {
  margin: 21px 0 0;
}