@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');


html{
    font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
	font-size:1.6rem;/* 16px*/
	line-height: 1.7;
	-webkit-text-size-adjust: 100%;
	color:#565656;
  background: #f5f4f0;
  }
.jost{font-family: "Jost", sans-serif;}

a{color:#565656; text-decoration:none;}
	
img{
	max-width: 100%;
	height: auto;
}

.Center{text-align: center;}
.Right{text-align: right;}
.Bold{font-weight: 500;}

.red{color: #b64e4e;}

.m_b_10{margin-bottom: 10px;}
.m_b_20{margin-bottom: 20px;}
.m_b_30{margin-bottom: 30px;}


@media screen and (min-width:768px){
  .pc_hidden{display: none;}
  a:hover{
    opacity:0.6;
    transition: 0.5s all;}
  }
@media screen and (max-width:767px) {
  body{font-size: 1.4rem;}
  .sp_hidden{display: none;}
}

/*common//////////////////////////////////*/
.Contents{max-width: 1280px; margin: 0 auto; padding:0 15px; position: relative;}
.Contents_inner{max-width: 1060px; margin: 0 auto;}

.Wrapper{margin-top: 150px;}

.bg_beige{
  background: #eceade;
  padding: 100px 0;
}
.bg_light-beige{
  background: #f5f4f0;
  padding: 70px 0;
}
.link_head{
  margin-top: -150px;
  padding-top: 150px;
}

  @media screen and (max-width:1280px){
    .Wrapper{margin-top: 70px;}
    .link_head{
      margin-top: -70px;
      padding-top: 70px;
    }
  }
  @media screen and (max-width:767px){  
    .bg_beige{padding: 50px 0;}
    .bg_light-beige{padding: 30px 0;}
  }
  
/*header////////////////*/
header{
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 150px;
  z-index: 10;
  background: #f5f4f0;
}

.logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
  }
  .logo img{width: 150px;}

.Gnav{
  font-family: "Jost", 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
}
.Gnav a,
.Gnav .nav_parent_inner{
  color: #797979;
  display: block;}
  
.Gnav span.nav_en{
  color: #5c3227;
  font-size: 1.8rem;
  display: block;
}

.head_icon{
  display: flex;
  align-items: flex-start;
  margin-top: 55px;
}
.head_icon img{width: 30px;}

input::placeholder{
  color: #CCC;
}
input.search-keyword{
  border: none;
  font-size: 1.6rem;
  background: none;
  width:calc(100% - 35px);
  box-sizing: border-box;
  margin-left: 35px;
  height: 30px;
}
.header-cart-count{
  width: 24px;
  height: 24px;
  border-radius: 24px;
  color: #FFF;
  background: #e25364;
  text-align:center;
  line-height: 24px;
  display: inline-block;
  font-size: 1.4rem;
}
  .search-btn{
    position: absolute;
    top:0;
    left: 0;
  }


@media screen and (min-width:1281px){
  .header_inner{
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 0 15px;
  }
  
  
  .Gnav{display: flex; margin-top: 50px;}
  
  li.nav_parent{margin: 0 20px;}
  
  li.nav_parent > a,
  li.nav_parent .nav_parent_inner{
    padding-bottom: 51px;
    position: relative;
    text-align: center;
    display: block;
  }
  li.nav_parent > a:after,
  li.nav_parent .nav_parent_inner:after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      bottom: 0;
      width: 100%;
      background:transparent;
      height: 4px;
      transition: 0.4s;
      transform: scale(0, 1);
      transform-origin: left top;
    }
  
  li.nav_parent a:hover:after,
  li.nav_parent .nav_parent_inner:hover:after{
      background:#444450;
      transform: scale(1,1);} 
    
  
  li.nav_parent > a:hover{
    opacity: 1;}
  
  .subnav{
    width: 100vw;
    position: absolute;
    top: 150px;
    left: 0;
    height: 340px;
    padding-top: 50px;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    box-sizing: border-box;
    background: #eceade;
    transition: 0.3s;
  }
  .subnav.open{
    opacity: 1;
    transition: 0.3s;
    visibility: visible;
  }
  
  .subnav_inner{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .subnav_ttl{
    width: 17%;
    font-family: "Jost", 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
    font-size: 3.4rem;
    color: #5c3227;
  }
  .subnav_ttl span{
    font-size: 1.6rem;
    color: #797979;
    display: block;
  }
  
  .subnav ul{
    display: flex;
    justify-content: flex-start;
    width: 82%;
  }
  .subnav ul li{
    width: 15.2%;
    margin-right: 1.76%;
    line-height: 1.5;
    font-size: 1.6rem;
    text-align: left;
  }
  .subnav ul li a{color: #444450;}
  
  .subnav ul li:last-child{
    margin-right: 0;
  }
  .subnav_img{
    margin-bottom: 15px;
    position: relative;
  }
  .subnav_img:before{
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background: #FFF;
    position: absolute;
    right: 5px;
    bottom: 5px;
  }
  .subnav_img:after{
    content: '';
    display: block;
    position: absolute;
    right: 9px;
    bottom: 11px;
    background: url("../images/arrow_bl.svg") no-repeat 0 0;
    width: 13px;
    height: 10px;
    background-size: 100%;
  }
  
  .head_search{
    width: 215px;
    border-bottom: 1px solid #aaa5a2;
    padding-bottom: 5px;
    position: relative;
    margin-right: 10px;
  }
  .sp_search{display: block !important;}
  .sp_search_btn{display: none;}
  
  .head_cart{
    margin:0 15px;}
  
  .sp_menu,
  .sp_nav_close{
    display: none;
  }
}  

@media screen and (max-width:1280px){
  .logo{top: 10px;}
  .logo img{width: 90px;}    

  header{
    display: flex;
    justify-content: flex-end;
    height: 70px;
  }
  .head_icon{
    margin-top: 20px;
  }
  .head_icon img{
    width: 22px;
  }
  .head_cart{
    margin:0 10px;}
  
     .Nav_wrapper {
      position: fixed;
      left: 0;
      top: 70px;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      z-index: 10;
      background:#eceade;
      width: 100%;
      padding: 15px;
      box-sizing: border-box;
      overflow-y: scroll;
      height: calc(100% - 70px);
      }
	  .Nav_wrapper.close{opacity: 0; transition: .1s;}
	  .Nav_wrapper.open {opacity:1; transition: .1s; visibility: visible;}
    
     /*hamburger*/
	  .nav-button,
	  .nav-button span {
      display: inline-block;
      transition: all 0.4s;
      box-sizing: border-box;}

	  .nav-button {
	  	display: block;
      cursor: pointer;
      z-index: 20;
      position: absolute;
      top: 30px;
      left:15px;
      width: 25px;
      height: 15px;
      box-sizing: border-box;
      }
       

	  .nav-button span {
      position: absolute;
      left: 0;
      width: 25px;
      height: 1px;
      background-color: #5c3227;}

	  .nav-button span:nth-of-type(1) {top: 0;}
	  .nav-button span:nth-of-type(2) {top: 7px;}
	  .nav-button span:nth-of-type(3) {bottom: 0;}
    
    
	  .nav-button.active span:nth-of-type(1) {
		-webkit-transform: translateY(5px) rotate(-45deg);
		transform: translateY(5px) rotate(-45deg);
	  }

	  .nav-button.active span:nth-of-type(2) {opacity: 0;}

	  .nav-button.active span:nth-of-type(3) {
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	  }
    
    .nav-button-txt{
      font-size: 1.2rem;
      font-family: "Jost",sans-serif;
      color: #5c3227;
      position: absolute;
      top: 2px;
      line-height: 1;
      left: 35px;
    }
    .nav-button-txt:before{
      content: 'MENU';
    }
    .active .nav-button-txt:before{
      content: 'CLOSE';
    }
    
    .nav_en,.subnav_ttl,.subnav_img{display: none !important;}
    
    .Gnav li{
      font-size: 1.5rem;
      
    }
    .Gnav li a,
    .Gnav .nav_parent_inner{
      display: block;
      position: relative;
      padding: 10px 30px 10px 5px;
      border-bottom: 1px solid #aaa5a2;
    }
    
    .Gnav li a:after{
      content: '';
      display: block;
      background: url("../images/arrow_bl.svg") no-repeat 0 0;
      width: 13px;
      height: 10px;
      background-size: 100%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
    }
    
    .subnav{
      background: #FFF;
    }
    .subnav_inner li a{
      padding-left: 15px;
    }
    .subnav br{display: none;}
    
    .sp_menu{
      font-size: 1.4rem;
      margin: 30px 0;
    }
    
    .sp_menu li{
      display: inline-block;
      margin-right: 20px;
      margin-bottom: 5px;
    }
    .sp_menu li:first-child{display: block;}
    
    .sp_nav_close{
      display: block;
      font-size: 1.4rem;
      border: 1px solid #aaa5a2;
      text-align: center;
      font-family: "Jost", sans-serif;
      padding: 10px;
    }
    .sp_nav_close img{
      vertical-align: middle;
      margin-right: 5px;
    }
    
    .sp_search_btn{
      margin-right: 10px;
    }
    .sp_search{
        position: absolute;
        background: #FFF;
        padding: 20px;
        width: 100vw;
        left: 0;
        top: 70px;
        box-sizing: border-box;
        text-align: center;
        z-index: 9999;
        display: none;}
    
    input.search-keyword{font-size: 1.4rem;}
    
    .search-btn{
      top:20px;
      left: 20px;
    }
    
}
/*footer///////////////////////////////////*/
footer{
  background: #eceade;
  padding: 90px 0 50px 0;
}
.footer_inner{
  padding-bottom: 60px;
  border-bottom: 1px solid #aaa5a2;
  margin-bottom: 20px;
}
.foot_logo{
  width: 230px;
  margin-bottom: 40px;
}
.sns_insta{
  font-family: "Jost",sans-serif;
}
.sns_insta a{
  display: flex;
  align-items: center;
  color: #444450;
}
.sns_insta img{
  width: 32px;
  margin-right: 10px;
}
.foot_guide_ttl{
  border-bottom: 1px solid #aaa5a2;
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #444450;
}
.foot_guide_txt{
  margin-bottom: 30px;
}
.foot_nav li{
  margin-bottom: 15px;
}
.foot_nav li a{
  border-bottom: 1px solid #aaa5a2;
  color: #444450;
}
.footer_bottom{
  font-family: "Jost",sans-serif;
}
.PageTop a{
  display: flex;
  align-items: center;
}
.PageTop img,
.PageTop_fixed img{
  width: 40px;
}
.PageTop a span{margin-right: 15px;}

.PageTop_fixed{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  width: 40px;
  height: 40px;
}


.footer_bottom{
      display: flex;
      align-items: center;
      justify-content: space-between;}
      
  @media screen and (min-width:768px){
    .footer_inner{
      display: flex;
      justify-content: space-between;}
    .foot_area1{
      margin-right: 5%;}
      
    .foot_area2{
      width: 36%;
     
    }
    .foot_area3{
      margin-right: 5%;
    }  
  }
  @media screen and (max-width:1280px){  
    .footer_inner{
      font-size: 1.4rem;
    }
    .foot_guide_ttl{font-size: 1.6rem;}
    .foot_area3{
      margin-right: 0;
    }  
  }
  
  @media screen and (max-width:767px){
    footer{
      padding: 50px 0 20px 0;}
    
    .footer_inner{
      padding-bottom: 30px;
      margin-bottom: 10px;}
      
    .foot_logo{
      width: 170px;
      margin: 0 auto 20px auto;
    }
    .foot_area2{
      margin: 40px 0;
    }
    .foot_guide_ttl{font-size: 1.6rem;}
    .foot_guide_txt{font-size: 1.3rem;}
    
    .PageTop a span{display: none;}
    .PageTop_fixed{
      right: 10px;
      bottom: 10px;}
      
    .Copyright{
      font-size: 1.3rem;
    }
  }
/*top page///////////////////////////////////*/
/*kv*/
.kv{
  position: relative;
  padding-bottom: 60px;
}

.slick_kv_item{
  position: relative;
}
.kv_txt{
  position: absolute;
  bottom: 20px;
  left: 50px;
   line-height: 1.4
}


.letter_wh a,.letter_wh{color:#FFF; text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.9);}
.letter_bl a,.letter_bl{
  color:#000; 
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1),0px 0px 5px rgba(255, 255, 255, 1);}


.kv_txt_1{font-size: 8rem; margin-bottom: 10px; line-height: 1.2; font-family: "Jost", 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;}
.kv_txt_1.small{font-size: 5rem;  font-weight: 500;}
.kv_txt_2{font-size: 2.8rem; margin-bottom: 20px;}
.kv_txt_3{}

.kv_btn{text-shadow:none;}

.slick-dots{
  position: absolute;
  bottom: -30px;
  left: 10px;
  display: flex;
  align-items: center;
}

.slick-dots li{
  margin:0 8px;
}
.slick-dots button{
  background:#cfb695;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-indent: -99999px;
  overflow: hidden;
}
.slick-dots li.slick-active button{
  background:#81544e;
  width: 16px;
  height: 16px;
}

/*下層スライダー*/
.second_slider {
  overflow: hidden;
  padding-bottom: 60px;}
  .second_slider .slick-list{
    overflow: visible;
}
.second_slider .kv_txt_1{font-size: 6rem;}
.second_slider .kv_txt_1.small{font-size: 3.6rem;}
.second_slider .kv_txt_2{font-size: 2.4rem;}
.second_slider .kv_txt_3{font-size: 1.5rem;}

.second_slider .slick-dots{
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  }
/**/

  @media screen and (min-width:768px){
    .kv{
      margin: 0 15px;
    }
    .kv_txt{
     width: calc(100% - 160px - 50px - 30px);/*ボタンとpaddingを引いた数*/
    }
    .kv_btn{
        position: absolute;
        bottom: 0px;
        right: -160px;
        
      }
    .slick-dots button:hover{
      opacity: 0.6;
      transition: 0.3s;
    }
    .slick_kv .slick-slide,
    .second_slider .slick-slide{
        margin-right: 20px!important;
        margin-left: 20px!important;
        overflow: hidden;
    } 
  
  }
  @media screen and (max-width:1280px){
    .kv_txt{
      left: 30px;
      }
    .kv_txt_1{font-size: 5rem;}
    .kv_txt_1.small{font-size: 2.8rem;}
    .kv_txt_2{font-size: 2.2rem; margin-bottom: 10px;}
    .kv_txt_3{}
    .kv_btn{right: -190px;}
    
    .second_slider .kv_txt_1{font-size: 4rem;}
    .second_slider .kv_txt_1.small{font-size: 3rem;}
    .second_slider .kv_txt_2{font-size: 2rem;}
    .second_slider .kv_txt_3{font-size: 1.4rem;}
    
    .slick_kv .slick-slide{
        margin-right: 0px!important;
        margin-left: 0px!important;
    }
    .second_slider .slick-slide{
        margin-right: 5px!important;
        margin-left: 5px!important;
    }
    
  }
  @media screen and (max-width:767px){
    img.kv_img{
      width: 280%;
      max-width: 280%;
      margin-left: -90%;
    }
    .slick_kv_item{
      overflow: hidden;
    }
    
    .kv_txt{
      padding: 0 15px;
      bottom: 20px;
      left: 0;}
    
    .kv_btn{margin-top: 10px;}
    .kv_txt_1{font-size: 4rem; margin-bottom: 10px;}
    .kv_txt_1.small{font-size: 2.4rem;}
    .kv_txt_2{font-size: 2.2rem; margin-bottom: 10px;}
    .kv_txt_3{}
    
    .second_slider .slick-slide{
        margin-right: 0px!important;
        margin-left: 0px!important;
    }
    
    .second_slider .kv_txt_1{font-size: 3rem;}
    .second_slider .kv_txt_1.small{font-size: 2rem;}
    .second_slider .kv_txt_2{font-size: 1.8rem;}
    
  }
  
/*btn*/
.btn{
  width: 160px;
}
.btn a,
.btn span{
  background: linear-gradient(90deg,rgba(157, 119, 58, 1) 0%, rgba(189, 159, 96, 1) 100%);
  color: #FFF;
  font-family: "Jost", 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
  display: block;
  line-height: 1;
  padding: 10px 20px;
  position: relative;
  border-radius: 50px;
}
.btn a:after,
.btn span:after{
  content: '';
  display: block;
  width: 14px;
  height: 12px;
  background: url("../images/arrow_wh.svg") no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  transition: 0.3s;
}
.btn.btn_large{
  width: auto;
  
}
.btn.btn_large a{
  font-size: 2.2rem;
  line-height: 1.4;
  padding: 20px;
}
.btn.btn_large a:after{
  width: 24px;
  height: 18px;
  right: 20px;
}

  @media screen and (min-width:768px){
    
    .btn a:hover:after,
    .btn span:hover:after{
      right: 10px;
      transition: 0.3s;
    }
    .btn a:hover,
    .btn span:hover{
      opacity:0.6;
    }
  }
  
  @media screen and (max-width:767px){  
    .btn{
      width: 240px;
      font-size: 1.6rem;
    }
    .btn a,
    .btn span{
      padding: 15px 30px;}
      
    .btn.btn_large a{font-size: 1.6rem; padding: 10px 20px;}
    .btn.btn_large a:after{
      width: 14px;
      height: 12px;
      right: 15px;}
  }
  
/*Top ttl*/
.ttl_top{
  text-align: center;
}
.ttl_img_wrap{
  position: relative;
  display: inline-block;
}

.ttl_en{
  font-family: "Jost",sans-serif;
  font-size: 5.2rem;
  display: inline-block;
  z-index: 2;
  color: #444450;
}
.ttl_jp{
  display: block;
  background: #eceade;
  font-size: 2rem;
  padding: 10px;
  margin-top: 10px;
}
.sttl{
  margin-bottom: 30px;
  position: relative;
}
.sttl_en{
  font-family: "Jost",sans-serif;
  font-size: 4rem;
  display: block;
  color: #444450;
}
.sttl_jp{
  color: #797979;
}
  @media screen and (max-width:1280px){
    .ttl_en{font-size: 4.8rem;}
    
    .sttl_en{font-size: 3.6rem;}
  }
  
  @media screen and (max-width:767px){
    .ttl_en{font-size: 3.6rem;}
    .ttl_jp{font-size: 1.4rem;}
    
    .sttl_en{font-size: 3rem;}
    .sttl_jp{font-size: 1.4rem;}
  }

/*Top About*/
.ttl_img_caffarel{
  width: 236px;
  transform: translateX(-5px);
  z-index: 1;
}
.Top_about_wrap{
  background: #1c273e;
  color: #FFF;
  padding-bottom: 60px;
}

.Top_about_txt_box h3{
  font-size: 2rem;
  margin-bottom: 40px;
}
.Top_about_lead1{
  font-size: 3rem;
  display: block;
}
.Top_about_lead2{
  font-family: "Jost",sans-serif;
  font-size: 8.6rem;
}
.Top_about .slick-dots{
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  }

.Top_about .slick-dots button{
  background:#8796c2;
}
.Top_about .slick-dots li.slick-active button{
  background:#FFF;
}
.Top_about_txt{
  line-height: 2;
  margin-bottom: 40px;
  font-size: 1.5rem;
}
.slick_about{
  background: #FFF;
}

  @media screen and (min-width:768px){
    .Top_about_wrap{
      padding-bottom: 85px;
    }
    .Top_about{
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
    }

    .Top_about_txt_box {
      width: 44%;
      padding-top: 110px;
      margin-left: 5.5%;
    }

    .Top_about_img_box {
      margin-right: calc(50% - 50vw);
      width: calc(56% + (50vw - 640px)); 
      padding-left: 10%;
      box-sizing: border-box;
    }

    .Top_about_img_box img {
      width: 100%;
      height: auto;
      display: block;
    }
    .slick_about {
      width: 100%;
    }
  }
 
  @media screen and (min-width:768px) and (max-width:1280px){
    .Top_about_lead1{
      font-size: 2rem;
    }
    .Top_about_lead2{
      font-size: 5.6rem;
    }
    .Top_about_img_box {
      margin-right:-15px;
      width: 50%; 
      padding-left: 0;
    }
 
    .Top_about_txt_box{
      margin-left: 0;
      width: 48%;
      padding-top: 40px;
    }
  }
  
  @media screen and (max-width:767px){  
    .ttl_img_caffarel{width: 165px;}
    
    .Top_about_txt_box h3{
      margin-bottom: 10px;}
      
    .Top_about_lead1{
      font-size: 2rem;
    }
    .Top_about_lead2{
      font-size: 5.6rem;
    }
    .Top_about_img_box{
      margin: 0 -15px 75px -15px;
    }
  }
  
/*bnr_200*/
.bnr_200{
  position: relative;
  max-width: 1600px;
  margin: 0 auto 100px auto;
}
.bnr_200 .btn{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}
.bnr_200_cs{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  font-size: 2rem;
  color:#5C4131;
  font-weight: 600;
}
  

  @media screen and (max-width:767px){  
    .bnr_200{margin-bottom: 45px;}
    .bnr_200 .btn{display: none;}
    .bnr_200_cs{
      top: 38%;
      font-size: 1.4rem;
      left: 50%;
      transform: none;}
  }
  
/*Collections*/  
.ttl_collections .ttl_en{
  transform: translateX(-85px);
}
.ttl_img_caffarel2{
  width: 236px;
  z-index: 1;
}  

#rec{
  margin: 80px auto;
}
.rec_ttl{
  position: relative;
  font-size: 2.2rem;
  color: #444450;
  padding-left: 90px;
}
.rec_ttl:before{
  content: '';
  display: block;
  background: url("../images/icon_recommend.webp") no-repeat 0 0;
  width: 76px;
  height: 30px;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
.rec_copy{
  font-size: 1.5rem;
}

.rec_item a{
  display: block;  
}

  @media (min-width: 1025px) {
  .rec_item_wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .rec_img_pc{
    width: 50%;
    position: relative;
  }
  .rec_txt_pc{
    width: 45%;
  }
  .rec_img_pc_inner{
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }

  .rec_img_pc_inner.show {
    opacity: 1;
    pointer-events: auto;
  }
  #rec_hover_img {
    opacity: 1;
    transition: 0.4s;
  }

  #rec_hover_img.fade-out {
    opacity: 0;
  }
  .rec_img_sp{
    display: none;
  }
  
  .rec_item a{
    border-bottom: #aaa5a2 solid 1px;
    position: relative;
    padding: 30px 60px 30px 20px;
  }
  .rec_item:first-of-type a{
    border-top: #aaa5a2 solid 1px !important;
  }
  .rec_item a:hover{
    background: #FFF;
    opacity: 1;
  }
  
  .rec_item a:after{
    content: '';
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow_bl.svg") no-repeat 0 0;
    width: 22px;
    height: 20px;
    background-size: 100%;
    transition: 0.3s;
  }
  .rec_item a:hover:after{
    right: 15px;
    transition: 0.3s;
  }
  .rec_copy{
    display: none;
    margin-top: 20px;
  }
  
  .rec_item a:hover .rec_copy{display: block;}
}  
  @media screen and (max-width:1024px){
    .rec_img_pc{
      display: none;
    }
    .rec_txt_pc{
       max-width: 720px;
       margin: 40px auto;
    }
    .rec_item_wrap{
      border-bottom: 1px solid #aaa5a2;
   }
    .rec_img_sp{
      margin-bottom: 20px;
    }
    .rec_item{
      margin-bottom: 30px;
    }
    .rec_ttl{margin-bottom: 10px; font-size: 2rem;}
  }
  @media screen and (max-width:767px){
    #rec{
      margin: 40px auto;
    }
    .ttl_collections .ttl_en{
      transform: translateX(-25px);
    }
    .ttl_img_caffarel2{width: 140px; transform: translate(25px,-8px);}
    .rec_copy{font-size: 1.4rem;}
  }
  
/*Ctg_list*/  
#ctg{
  margin: 80px auto;
}
.Ctg_list_wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Ctg_box{
  width: 32.8%;
  margin-bottom: 30px;}

.Ctg_name{
  font-size: 1.8rem;
  margin-top: 5px;
  color: #444450;
  line-height: 1.4;
}
.Ctg_img{
  position: relative;
}
  .Ctg_img:before{
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: #FFF;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  .Ctg_img:after{
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    bottom: 22px;
    background: url("../images/arrow_bl.svg") no-repeat 0 0;
    width: 14px;
    height: 12px;
    background-size: 100%;
  }

  @media screen and (max-width:1280px){
    .Ctg_box{width: 48%;}
    
    .Ctg_name{
      font-size: 1.6rem;}
  }

  @media screen and (max-width:767px){
    #ctg{
      margin: 40px auto;
    }
    .Ctg_name{
      font-size: 1.4rem;}
      
    .Ctg_img:before{
      width: 27px;
      height: 27px;
      right: 5px;
      bottom: 5px;}
      
    .Ctg_img:after{
      width: 10px;
      height: 8px;
      right: 12px;
      bottom: 15px;
    }
  }

/*Contents_search*/
.Contents_search{
  max-width: 470px;
  margin: 60px auto;
  border-bottom: 1px solid #aaa5a2;
  padding-bottom: 10px;
  position: relative;
}
.Contents_search-icon{
  position: absolute;
  left: 0;
  top: 0px;
}
.Contents_search-btn{
  position: absolute;
  right: 0;
  top: -5px;
}
  @media screen and (max-width:767px){
    .Contents_search{margin: 30px auto 60px auto;}
    .Contents_search .search-btn img{width: 22px;}
  }

/*ranking*/
.ranking_date{
  font-size: 1.7rem;
  margin-left: 20px;
}

.Rank_list_wrap{
  background: #FFF;
  padding: 30px 40px 0 40px;
  position: relative;
  margin-bottom: 60px;
}
.Rank_box{
  margin-bottom: 30px;
}
.Rank_box a{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Rank_img{
  width: 180px;
}
.Rank_txt{
  flex: 1;
  margin-left: 30px;
}
.Rank_name{
  font-size: 1.7rem;
  margin-bottom: 5px;
  color: #444450;
}
.price{
  font-family: "Jost", 'Noto Sans JP', "メイリオ", Meiryo, sans-serif;
}
.soldout_label{
  font-family: "Jost",sans-serif;
  text-align: center;    
  padding: 5px 10px;
  display: inline-block;
  line-height: 1;
  color: #FFF;
  background: #aaa5a2;
  box-sizing: border-box;
}
.Rank_price span.tax{
  font-size: 1.2rem;
}
.rank_icon{
  margin-bottom: 25px;
}
.rank_icon img{
  width: 100px;
}

  @media screen and (min-width:768px){
    .Rank_list_wrap{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .Rank_box{
      width: 48%;
    }
    .Rank_box:first-of-type{
      margin-right: 54%;
    }
    .Rank_illust{
      position: absolute;
      top: -60px;
      right: 80px;
      width: 32.5%;
      max-width: 390px;
    }
  }
  
  @media screen and (max-width:1280px){
    .Rank_list_wrap{
      padding: 30px 20px 0 20px;}
      
    .Rank_img{
      width: 32%;
    }
    .Rank_txt{
      margin-left: 10px;
    }
    .Rank_name{font-size: 1.6rem;}
    .rank_icon{
      margin-bottom: 15px;
    }
    .rank_icon img{
      width: 80px;
    }
    
    .Rank_illust{
      top: -40px;
      right: 40px;
      }
  }  
  
  @media screen and (max-width:767px){
    .Rank_illust{display: none;}
    .Rank_list_wrap{
      margin: 0 -15px 20px -15px;
      padding: 15px 15px 5px 15px;}
    .Rank_box{
      margin-bottom: 15px;
    }  
    .ranking_date{
      position: absolute;
      bottom: 0;
      left: 0;
      margin-left: 0;
    }
    .rank_sttl{
      padding-bottom: 40px;
    }
    
  }
  
/*Outlet_bnr*/
.Outlet_bnr{
  margin: 0 auto 80px auto;
  max-width: 800px;
  padding: 0 15px;
}

  @media screen and (max-width:767px){
    .Outlet_bnr{margin-bottom: 20px;}
  }

/*review*/
.ttl_img_review{
  width: 188px;
  vertical-align: text-bottom;
  margin-left: 20px;
}
.Top_review{
  margin-bottom: 100px;
}

.slick_review .slick-track {
  display: flex;
}
.slick_review .slick-slide {
  height: auto !important;background: #FFF;
}

.review_box{
  
}
    

.review_box_inner{
  padding: 30px 20px;
  font-size: 1.5rem;
  
}
.review_user_name{
  color: #444450;
}
.review_item_name{
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.review_box_inner time{
  font-family: "Jost",sans-serif;
  color: #797979;
}

.slick_review .arrow_prev,
.slick_review .arrow_next{
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}
.arrow_prev{
  left: -14px;
}
.arrow_next{
  right: -14px;
}

.reviewRate {
  display: flex;
  margin-right: 6px;
  cursor: pointer;
}
.reviewRateStar {
  font-size: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #e0e0e0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.starOn {
  background-color:#e0cd62;
}
.starOff {
  background-color: #a7a7a7;
}
.starHalf {
  background: linear-gradient(to right,#e0cd62 50%, #a7a7a7 50%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review_box_rate{
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.review_box_rate time{
  margin-right: 10px;
}

/*News*/
.ttl_img_news {
  width: 172px;
  vertical-align: text-bottom;
  margin-right: 20px;
}
.Top_News{
  max-width: 800px;
  margin: 30px auto 0 auto;
}

.News_list ul{
  border-top: 1px solid #d7cfc7;
}
.News_list time{
  display: block;
  margin-bottom: 5px;
  font-family: "Jost",sans-serif;
  color: #797979;
}
  .Shop_news.News_list time{display: inline; margin-bottom: 0; margin-right: 20px;}
  
.News_list li{
  border-bottom: 1px solid #aaa5a2;
  }
  
.News_list li a{
  display: block;
  padding: 30px 60px 30px 0;
  position: relative;
}
.News_list li span{
   color: #444450;
}
  
.bnr_line{
  max-width: 550px;
  margin: 70px auto;
  padding: 0 15px;
}  
  @media screen and (min-width:768px){
    .News_list li a:after{
      content: '';
      display: block;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: url("../images/arrow_bl.svg") no-repeat 0 0;
      width: 14px;
      height: 12px;
      background-size: 100%;
    }
    .News_btn{
      display: flex;
      justify-content: flex-end;
      margin-top: 25px;
    }
    .slick_review .slick-slide{
      margin: 0 12px;
    }
  }
  @media screen and (max-width:767px){
    .ttl_img_news {
      margin-right: 5px;
      width: 100px;}
      
    .Top_News{margin-top: 20px;}  
    .News_list li a{
      padding: 15px 0;}
    
    .News_btn{margin-top: 20px;}
    
    .ttl_img_review{width: 150px; margin-left: 5px;}
    .Top_review{
      margin: 0 -15px 50px -15px;
    }
    .slick_review .slick-slide{
      margin: 0 10px;
    }
    .arrow_prev{
      left: 10px;
    }
    .arrow_next{
      right: 10px;
    }

  }