@charset "UTF-8";
/* CSS Document */ /*products*/
/*==========================================
 ヘッダー（fixed)直下のセクションをマージンで下げてる
===========================================*/
.section-top {
  margin-top: 89px;
}
@media(min-width:1024px) {
  .section-top {
    margin-top: 140px;
  }
}
/*==================
 見出しの設定
====================*/
section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  line-height: normal;
  font-size: 2.2rem;
  text-align: center;
}
.underline_top {
  display: block;
  width: 100px;
  height: 5px;
  border-bottom: solid 1px #545456;
  margin: 0 auto;
}
.h2__text {
  text-align: center;
  margin-bottom: 60px;
}
@media(min-width:768px) {
  section h2 {
    font-size: 2.6rem;
  }
  .underline_top {
    width: 150px;
    height: 5px;
  }
}
/*========================
 トップ　SP
==========================*/
.section-top {
  padding-bottom: 80px;
}
.section-top h2 {
  padding-top: 40px;
}
.lead__img {
  max-width: 768px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px;
}
.lead {
  padding: 0 20px;
}
.lead li{
	list-style-type: none;
}
.lead:nth-child(2) {
  margin-top: 20px;
}
.lead__text-wrapper {
  display: block;
  max-width: fit-content;
  margin: 0 auto;
}
/*========================
 トップ　PC
==========================*/
@media(min-width:768px) {
  .section-top {
    max-width: none;
    padding-bottom: 10vh;
  }
  .section-top h2 {
    padding-top: 60px;
  }
  .h2__text {
    margin-top: 20px;
  }
  .lead__wrapper {
    display: flex;
    align-items: center;
    gap: 2vh;
    max-width: 1240px;
    margin: 0 auto;
  }
  .lead__img {
    max-width: 700px;
    margin: 0;
  }
  .lead__text-wrapper {
    width: 720px;
    margin: 0;
  }
}
/*1024px以上*/
@media(min-width:1024px) {
  .h2__text br {
    display: none;
  }
}
/*========================
 ラインナップ　SP
==========================*/
.products_img {
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
/**/
.products__img_wrapper {
  position: relative;
}
.products_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_h3 {
  text-align: center;
  font-size: 4.5vw; /*550px 以上は固定　下に記載あり*/
  font-family: 'Aboreto', cursive;
  color: #FFFFFF;
  text-shadow: 0 0 3px #545458;
}
.img_text {
  text-align: center;
  font-size: 3.8vw; /*550px 以上は固定　下に記載あり*/
  color: #FFFFFF;
  text-shadow: 0 0 3px #545458;
}
/**/
.products_discription {
  padding: 40px 20px 60px;
  max-width: 530px;
  margin: 0 auto;
}
.products_discription h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.products_discription p {
  letter-spacing: normal
}
.products__br, .br450 {
  display: none;
}
a.view-more{
  display: block;
  margin-top: 20px;
  text-align:left;
}
/* cv_btn その他の商品を見る（カートアイコン）*/
a.cv_btn {
  padding: 10px;
  margin: 0 auto 60px;
  display: block;
  color: #545458;
  background: #FFFFFF;
  text-decoration: none;
  text-align: center;
  border: solid 1px #545458;
  max-width: 250px;
  width: 80%;
}
a.cv_btn:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 0 0 10px;
  background: url("../images/top_images/cart_bk.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.cv_btn:hover {
  color: #FFFFFF;
  background: #545458;
  opacity: 1;
  border: 1px solid white;
  transition: 1.0s;
}
.cv_btn:hover:after {
  /* 同じサイズ */
  width: 18px;
  height: 18px;
  margin: -3px 0 0 10px;
  background: url("../images/top_images/cart_wh.png") no-repeat 0 0;
  background-size: 100%;
  vertical-align: middle;
  display: inline-block;
  content: "";
  transition: 1.0s;
}
/*550px以上　商品画像の上にあるテキストのサイズ*/
@media(min-width:550px) {
  .img_h3 {
    font-size: 2.2rem;
  }
  .img_text {
    font-size: 1.8rem;
  }
}
/*450px 以上*/
@media(min-width:450px) {
  .br450 {
    display: block;
  }
}
/*========================
 ラインナップ　PC
==========================*/
@media(min-width:768px) {
  .products__br {
    display: block;
  }
  .products_discription {
    padding: inherit;
    width: 450px;
  }
  .products__wrapper {
    display: flex;
    align-items: center;
    gap: 2vw;
    max-width: 1024px;
    margin: 0 auto 7vh;
  }
  .products_img {
    max-width: 500px;
    margin: 0;
  }
  a.cv_btn {
    max-width: 500px;
    font-size: 1.6rem;
    margin: 0 auto 80px;
  }
}