@charset "euc-jp";

/* ************************************************
*  アイキャッチ (共通CSSを上書き)
* ************************************************ */
.eyecatch--top {
  height: min(40.26vw, 450px);
}

.eyecatch--top .eyecatch__title {
  font-size: min(5vw,49px);
  font-weight: bold;
  font-family: 'yu_gothic_medium', sans-serif;
}

@media screen and (max-width: 767px) {/* SP */
  .eyecatch__logo {
    position: absolute;
    top: 30px;
    transform: none;
    left: 20px;
    z-index: 1;
  
    width: 118px;
    height: auto;
  }

  .eyecatch--top {
    height: 340px;
  }
  .eyecatch--top .eyecatch__title {
    font-size: 22px;
    width: 100%;
    text-align: left;
  }
}

.top-banner {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {/* SP */
  .top-banner {
    margin-top: 0;
  }

  .top-banner .full-width-banner img{
    width: 100%;
    height: auto;
  }
}

/* ************************************************
*  おすすめ商品
* ************************************************ */
.productCard {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #EFEFEF;
  cursor: pointer;
}

.productCard:hover {
  text-decoration: none;
}

.productCard__image {
  width: 100%;
  position: relative;
  background-color: #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
}

.productCard__image img {
  width: 100%;
  aspect-ratio: 509/293;
  object-fit: cover;
}

.productCard__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 20px 20px 45px;
}

.productCard__name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.productCard__name strong {
  font-weight: bold;
  color: #E20100;
}

.productCard__price {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.productCard__price small {
  font-size: 12px;
  font-weight: bold;
}

.productCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.productCard__tags span {
  font-size: 10px;
  font-weight: bold;
}

.productCard__tags span + span {
  border-left: 1px solid #EFEFEF;
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  .productCard__detail {
    padding: 18px 18px 35px;
    gap: 18px;
  }

  .productCard__name {
    font-size: 13px;
  }
  
  .productCard__price {
    font-size: 13px;
  }
}

/* ************************************************
*  SNS
* ************************************************ */
#snsPostArea {
  justify-content: space-between;
}
#instagramPostArea {
  max-width: 550px;
  overflow-y: scroll;
}
#twitterPostArea {
  max-width: 550px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  #snsPostArea {
    flex-direction: column;
    gap: 20px;
  }
  #instagramPostArea {
    max-width: 100%;
    width: 100%;
    overflow-y: visible;
  }
  #instagramPostArea > iframe {
    margin: 0 auto !important;
  }
  #twitterPostArea {
    max-width: 100%;
    width: 100%;
    overflow-y: visible;
  }
  #twitterPostArea > .twitter-tweet {
    margin: 0 auto !important;
  }
}
