﻿@charset "UTF-8";

/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px) {
  .breadcrumb__list {
    padding-bottom: 1.6rem;
  }
}



/* ▼ LPのスタイル ▼ */

/* タイトル */
.main-area {
  max-width: 1200px;
  margin: 0 auto 130px;
}

.title {
  margin-bottom: 35px;
}

.title img {
  width: 100%;
  margin-bottom: 60px;
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

.title h2 {
  text-align: center;
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  margin-bottom: 20px;
}

.title-txt p {
  text-align: center;
  font-size: 4.5rem;
  line-height: 7rem;
  letter-spacing: 0.15rem;
}

@media only screen and (min-width: 768px) {
  .main-area {
    max-width: 1200px;
    margin: 0 auto 95px;
  }

  .title {
    margin-bottom: 50px;
  }

  .title img {
    margin-bottom: 50px;
  }

  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }

  .title h2,
  p {
    letter-spacing: 0.15rem;
  }

  .title h2 {
    font-size: 2rem;
  }

  .title p {
    font-size: 1.4rem;
    line-height: 3rem;
  }

}


/* 商品コンテンツ */
.content-area {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5%;
  margin-bottom: 57px;
}

.content-item {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: 49%;
  margin-bottom: 5%;
  text-align: center;
  /* cursor: pointer; */
}

.mrg-r {
  margin-right: 0;
}

.mrg-rsp {
  margin-right: 1.5%;
}

.content-img {
  overflow: hidden;
}

.content-img img {
  width: 100%;
  transition: all 0.6s;
}

.content-img:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

@media only screen and (min-width: 768px) {
  .content-area {
    padding: 0;
  }

  .content-item {
    width: 23.5%;
    margin-bottom: 5%;
    text-align: center;
    /* cursor: pointer; */
  }

  .mrg-r {
    margin-right: 2%;
  }
}

/* 商品コンテンツテキスト */

.content-txt {
  margin-top: 14px;
  line-height: 6rem;
}

.brand {
  font-size: 3.2rem;
}

.product-name {
  font-size: 3.9rem;
}

.price {
  font-size: 3.4rem;
}

.check-button {
  position: relative;
  width: 100%;

}

.check-button a {
  display: block;
}

.check-button p {
  padding: 14px 0;
  background-color: #ECE9E2;
  margin-top: 14px;
  font-size: 2.9rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.check-button::before {
  content: "";
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  top: 52%;
  right: 3%;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) {
  .content-txt {
    margin-top: 20px;
    line-height: 2.2rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  .product-name {
    font-size: 1.35rem;
  }

  .price {
    font-size: 1.15rem;
  }

  .check-button p {
    padding: 17px 0;
    margin-top: 14px;
    font-size: 1.1rem;
  }

  .check-button::before {
    height: 1rem;
    width: 1rem;
    top: 54%;
  }
}

/* ボタン */

.button {
  border: solid 1px #000;
  width: 66%;
  margin: 0 auto;
}

.button p {
  text-align: center;
  padding: 18px 0;
  font-size: 4rem;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .button {
    width: 23%;
  }

  .button:hover {
    color: #fff;
    background-color: #000;
    transition: all 0.3s;
  }

  .button p {
    padding: 16px 0;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }
}




/* -----JQuery----- */

/*アニメーション要素のスタイル*/
.content-item {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(40px);
}


/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}