@charset 'UTF-8';
/* 基本 */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  color: #2c2c2c;
}
p {
  hanging-punctuation: none;
}
img {
  width: 100%;
}
#wrapper {
  width: 1200px;
  margin: auto;
}
h1 {
  display: none;
}
h2 {
  font-size: 22.5px;
  padding-bottom: 2rem;
  line-height: 1.8;
}
.delete_blanc{
  padding-left:-50px ;
}
h3 {
  font-family: "Elms Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 50px;
  display: flex;
  flex-direction: column;
  letter-spacing: 3px;
  padding-bottom: 2rem;
}
.h3_small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}
h4 {
  font-family: "Elms Sans", "Zen Kaku Gothic New", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 35px;
  line-height: 1.25;
  letter-spacing: 1px;
}
.h4_small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

section {
  padding-bottom: 5rem;
}
.feature_intro {
  font-size: 16px;
  line-height: 1.8;
}
/* スライドバナー */
.feature_intro_sec {
  width: 70%;
  margin: auto;
}
/* スライドバナー */
.swiper {
  width: 100%;
  margin-top: 70px;
  margin-bottom: 4rem;
}
/* スライドバナーの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}
/* ヘッダー */
header {
  width: 100%;
  height: 70px;
  background-color: #fff;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
  box-shadow: 6px 6px 10px 0px rgba(87, 87, 87, 0.4);
}
header.hide {
  transform: translateY(-120%);
}
.to_home {
  width: 300px;
  margin-top: 10px;
}
header nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
header nav ul {
  width: 50%;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.nav_category:hover {
  opacity: 0.5;
}
.nav_category_small:hover {
  color: inherit;
}
/* ページトップリンク */
#wrapper {
  position: relative;
}
#to_top {
  width: 70px;
  position: fixed;
  right: 5%;
  bottom: 5%;
  animation: ease-in-out;
  z-index: 100;
  opacity: 0.9;
}
#to_top a img:hover {
  opacity: 0.5;
}
.nav_category {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav_category_small {
  display: block;
  font-size: 12px;
  margin-top: 2.5px;
}
/* 各カテゴリー文章 */
.category_intro {
  width: 70%;
  margin: auto;
}
h5 {
  font-size: 25px;
  padding-bottom: 2rem;
}
.category_intro {
  font-size: 16px;
  line-height: 1.8;
}
/* おすすめブランド */
.recommend_brand {
  display: flex;
  gap: 2rem;
}
.left_column,
.right_column {
  width: 50%;
}
.right_column {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* PC/TB: カルーセルラッパーは透過させてlogo_boxを直接right_columnのflexアイテムにする */
.logo_carousel_track {
  display: contents;
}
.logo_box {
  box-sizing: border-box;
  width: calc(50% - 2rem);
  border: 1px #f7f7f7 solid;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
}

.logo_box a:hover {
  opacity: 0.8;
}
.scroll{
  display: none;
}
/* ピックアップ商品 */
.pickup_item_wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pickup_item_box {
  width: 33.33%;
  box-sizing: border-box;
  padding: 3rem;
  transition-duration: 4s;
  animation-duration: 5s;
}
.pickup_item_box img:hover {
  opacity: 0.8;
}
.item_info {
  display: block;
  line-height: 1.5;
  padding-bottom: 1rem;
}
.item_name{
  font-weight: bold;
}
.brand {
  font-size: 14px;
  font-weight: bold;
  color: rgb(88, 88, 88);

}
.price {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: rgb(88, 88, 88);
}
.tax {
  font-size: 13px;
  color: inherit;
}
.sale {
  color: rgb(128, 0, 0);
}
.sale::after {
  content: "SALE";
  color: #fff;
  background-color: rgb(128, 0, 0);
  border-radius: 2px;
  padding: 0 5px;
  margin-left: 5px;
  font-size: 14px;
}
.pr_comment {
  line-height: 1.8;
  font-weight: medium;
}
/* ボタン */
.view_more {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: #2c2c2c 1.7px solid;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 0;
  margin: 3rem 0 0 0;
}
.view_more a {
  display: block;
  width: fit-content;
}
.view_more::after {
  background: #2c2c2c;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.view_more:hover {
  color: #fff;
}
.view_more:hover::after {
  transform: scale(1, 1);
}
  .sp_invisible{
color: inherit;
  }
/* フッター */
footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
/*フェードインアニメーション*/
.js-fadein {
  opacity: 0.5;
  transform: translateY(40px);
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ブラーアニメーション */

.blur.is-visible-b {
  animation: 2s blur ease;
}
@keyframes blur {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
/*小型ディスプレイ(1200px以下)*/
@media (max-width: 1199px) and (min-width: 768px) {
  body {
  }
  #wrapper {
    width: 90%;
  }
  .pc_only {
    display: none;
  }
  /*ヘッダー*/
  header {
    height: 60px;
  }
  .to_home {
    width: 250px;
    margin-top: 10px;
  }
  header nav ul {
    width: 60%;
  }
  /* スライドバナー */
  .swiper {
    margin-top: 60px;
  }
  /* ピックアップ商品 */

  .pickup_item_box {
    width: 33.33%;
    padding: 1rem;
  }
  .pr_comment {
    line-height: 1.5;
  }
}

/*スマホ*/
@media (max-width: 767px) {
  .pc_only {
    display: none;
    visibility: collapse;
  }
  .sp_invisible{
    display: none;
  }
  #wrapper {
    width: 100%;
  }
  h1 {
    display: none;
  }
  h2 {
    font-size: 20px;
    width: fit-content;
    margin: auto;
    padding-bottom: 2rem;
  }
  .feature_intro {
    font-size: 15px;
  }
  h3 {
    font-size: 35px;
    padding-left: 2rem;
  }
  .h3_small {
    font-size: 14px;
  }
  h5{
    font-size: 20px;
  }
  /* ヘッダー */
  header {
    width: 100%;
    height: 50px;
    background-color: #fff;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    box-shadow: 6px 6px 10px 0px rgba(87, 87, 87, 0.4);
  }
  .to_home {
    width: 200px;
    margin-left: calc(50% - 60px);
  }
  header nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 7px;
  }
  header nav ul {
    visibility: collapse;
    width: 60%;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .nav_category {
    font-size: 12px;
  }
  .nav_category_small {
    font-size: 9px;
    white-space: nowrap;
  }
  /* スライドバナー */
  .swiper {
    margin-top: 50px;
  }
  /* おすすめブランド */
  .recommend_brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .left_column,
  .right_column {
    width: 100%;
  }
  .right_column {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .logo_box {
    box-sizing: border-box;
    width: 90%;
    border: 1px #eee solid;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
  }
  .logo_box a:hover {
    opacity: 0.8;
  }

  /* ロゴカルーセル（スマホのみ） */
  .right_column {
    /* スマホではflexを解除してカルーセルのコンテナに変える */
    overflow: hidden;
    width: 100%;
  }
  .logo_carousel_track {
    display: flex;
    gap: 4%;
    padding-left: 10%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .logo_carousel_track::-webkit-scrollbar {
    display: none;
  }
  .logo_carousel_track .logo_box {
    flex: 0 0 80%;
    scroll-snap-align: start;
    width: auto;
    aspect-ratio: 1/1;
  }

  /* 右スクロールアニメーションの位置 */
.scroll_wrapper{
  position: relative;
  display: flex;
  padding: 1rem;
}
.scroll {
  position: absolute;
  right: 8%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap:0.5rem;
}
.scroll_icon {
  display: inline-block;
  vertical-align: middle;
  color: #4e4e4e;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
  animation:1s slide ease-in-out infinite;
}

.scroll_icon::before, .scroll_icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.scroll_icon::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.scroll_icon::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/* 線のアニメーション */
@keyframes slide {
  0% {
    transform: translateX(0) rotate(45deg);
    opacity: 1;
}
  100% {
    transform: translateX(20px) rotate(45deg);
    opacity: 0;
  }
}
  /* ピックアップ商品 */
  .pickup_item_wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .pickup_item_box {
    width: 50%;
    padding: 1rem;
  }
  .view_more {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
