@charset "utf-8";
/*基本*/
:root {
  --basecolor: #f3f3f3;
  --brand-name: #646464;
  --brue: #3d91c9;
  --brown: rgb(82, 43, 12);
  --saleprice: rgb(158, 12, 12);
  --category: 40px;
  --copy: 25px;
  --fz: 16px;
  --brand-name-fz: 12px;
  --model-name-fz:14px;
  --off-price: 20px;
}
* {
  scroll-behavior: smooth;
  background-color: var(--basecolor);
  font-family:
    YuGothic, "Yu Gothic", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック",
    "Hiragino Sans", sans-serif;
  line-height: 1.5;
  color: var(--brown);
  font-size: var(--fz);
  box-sizing: border-box;
}
img {
  width: 100%;
}

#wrapper {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 10rem;
}
section {
  margin-bottom: 3rem;
}
h1{
  font-size:25px;
  font-weight: 500;
  line-height: 40px;
  padding: 2rem 0;
}

h2 {
  font-size: var(--category);
  background-repeat: no-repeat;
  width: 500px;
  height: 100px;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;

}
h3 {
  font-size: var(--copy);
  padding-bottom: 2rem;
  font-weight: 500;
  line-height: 3rem;
}
h4{
  text-align: center;
  padding:3rem 0 2rem 0;
  font-weight: 500;
}
/*h2画像置換*/
#h2_business {
  background-image: url(https://nextfocus.jp/event/summersale2026/img/h2_business.svg);
}
#h2_casual{
  background-image: url(https://nextfocus.jp/event/summersale2026/img/h2_casual.svg);
}
#h2_sneakers{
    background-image: url(https://nextfocus.jp/event/summersale2026/img/h2_sneakers.svg);
}
#h2_brand{
  background-image: url(https://nextfocus.jp/event/summersale2026/img/h2_brand.svg);
}
.sp_only{
  display: none;
}
#picture_wrapper{
  padding-bottom: 4rem;
}
/*企画紹介*/
.feature_intro{
text-align: center;
}
.feature_intro p {
  line-height: 2;
}
/*リンクリスト*/
#link_list {
  width: 850px;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
#link_list li {
  width: 200px;
}
#link_list li a {
  display: block;
  width: 200px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
#link_list li a:hover{
animation: 0.8s forwards opacity;
transform: translateY(-5px);
}


@keyframes opacity {
  0%{
    opacity:1;
  }
  100%{
    opacity:0.8;
  } 
}
.to_business {
  background-image: url(https://nextfocus.jp/event/summersale2026/img/to_business.svg);
}
.to_casual {
  background-image: url(https://nextfocus.jp/event/summersale2026/img/to_casual.svg);
}
.to_sneakers {
  background-image: url(https://nextfocus.jp/event/summersale2026/img/to_sneakers.svg);
}
.to_brand {
  background-image: url(https://nextfocus.jp/event/summersale2026/img/to_brand.svg);
}
/*カテゴリー紹介文*/

.category_intro {
  text-align: center;
  padding-bottom: 3rem;
}
.category_intro p{
  line-height: 2rem;
}
/*商品リスト*/
.item_img_wrapper {
  background-color: #fff;
  display: block;
  padding: 2rem 0;
}
.item_list {
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}
.item_list li {
  width: calc(25% - 1rem);
  margin: 0.5rem;
  margin-bottom: 1.5rem;
  transition: 0.2s ease-in-out;
}
.item_list li:hover{
  transform: translateY(-10px);
  opacity: 0.8;
}
.item_info {
  padding-top: 0.5rem;
  line-height: 1.25 !important;
}
.brand_name {
  font-weight: 600;
  font-size: var(--brand-name-fz);
  color: var(--brand-name);
}
.model_name {
  font-weight: 600;
  font-size: var(--model-name-fz);
}
.price {
  font-weight: 600;
  font-size: var(--model-name-fz);
}
.off-price {
  font-weight: 600;
  font-size: var(--off-price);
  text-align: right;
  padding-right: 8px;
}
.discounted_price {
  font-size: var(--off-price);
  color: var(--saleprice);
}
.discounted_price_tax {
  color: var(--saleprice);
  font-size: medium;
}
.discount_rate {
  color: #fff;
  background-color: var(--saleprice);
  padding: 0 0.1em;
  border-radius: 5px;
}
/*矢印*/
.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}
/*もっと見る*/
.view_more {
  width: fit-content;
  height: fit-content;
  margin: 3rem auto;
  padding: 1rem 2rem;
  border-radius: 30px;
  color: var(--basecolor);
  background-color: var(--brue);
  border: var(--brue) 1px solid;
  font-weight: 500;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.view_more:hover {
  background-color: var(--basecolor);
  color: var(--brue);
  border: var(--brue) 2px solid;
  letter-spacing: 0.05em;
  border-radius: 40px;
}
.view_more_wrapper{
  display: flex;
  align-items: center;
  height: 100px;
}

/* ブランドセクション */
.brand_list{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.brand_list li{
  width: 25%;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand_list li a img{
  height: 5rem;
}

.bland_list li a img:hover{
  transform: translate(1.1);
}
/* ブランドリストページ */
#brand_list_title{
  display: block;
  text-align: center;
}
/* アルファベットリスト */
h5{
  font-size: 35px;
  border-bottom: var(--brown) 1px solid;
  margin: 3rem 0;
  padding-left: 0.5rem;
}
#alphabet_list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0 3rem 0;
}
#alphabet_list li{
  width:calc(calc(100% / 13) - 0.5rem);
  aspect-ratio: 5/3;
}
#alphabet_list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: var(--brown) 1px solid;
  border-radius: 5%;
}
#alphabet_list li a:hover{
  border: var(--basecolor) 1px solid;
  background-color: var(--brown);
  color: var(--basecolor);
  transition-duration: 0.2s;
}
/* ブランドリスト */
#brand_list_wrapper{
  width: 80%;
  margin: 0 auto;
}
.column_list li{
  line-height: 2;
}
.brand_flex{
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}
.brand_flex li{
  width: calc(100% / 3);
  padding-bottom: 1rem;
  text-align: center;
}
.brand_flex li a{
position: relative;
padding-bottom: 0.2rem;
}
.brand_flex li a::before{
  background-color: var(--brown);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0,1);
  transition: transform .3s;
}
.brand_flex li a:hover::before{
transform-origin: left top;
transform: scale(1, 1);
}
.no_content {
  background-color: #dfdfdf;
}
#alphabet_list li .no_content:hover{
   background-color: #d8d8d8;
    border: var(--brown) 1px solid;
  color: var(--brown);
}
/* スクロールアニメーション */
.scroll-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0.1s);
}

.scroll-visible{
  opacity: 1;
  transform: translateX(0);
}
/* タブレット・小型ディスプレイ */
@media(769px <= width <= 1250px){
#wrapper{
  width: 90%;
  margin: auto;
}
h3{
  font-size: 22px;
}
#link_list{
  width: 100%;
}
#link_list li{
  width: 25%;
}
#link_list li a{
  width: 100%;
}
.item_list{
  width: 100%;
}
.item_list li {
  width: calc(calc(100% / 3) - 1rem);
}
.discount_rate{
  white-space: nowrap;
  overflow: hidden;
}
}

/* スマホ　*/
@media(width <= 768px){
  #wrapper{
    width: 100%;
  }
#picture_wrapper{
  padding-bottom: 0;
}
  h2{
    margin-left: 1rem;
    width: 20%;
  }
  h1,h3{
    font-size: 20px;
  }
  .sp_only{
    display: block;
  }
  #link_list{
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 80%;
  margin: auto;
}
  #link_list li{
    width: calc(50% - 1rem);
    margin-bottom: 0.5rem;
  }
  #link_list li a{
  width: 100%;
}
.feature_intro{
  padding-top: 5rem;
  width: 80%;
  margin: auto;
}
.feature_intro p{
  text-align: left;
}
.category_intro{
  width: 80%;
  margin: auto;

}
.category_intro p{
  text-align: left;
}
.item_list{
  width: 100%;
}
.item_list li {
width: calc(50% - 1rem);
}
.discount_rate{
  white-space: nowrap;
  overflow: hidden;
}
#alphabet_list{
  width: 80%;
  margin: auto;
}
.brand_list li{
width: calc(100% / 3);
padding: 2.5rem 1rem;
}
#alphabet_list li {
    width: calc(calc(100% / 7) - 0.5rem);
    aspect-ratio: 5 / 3;
}
.brand_flex{
  width: 80%;
}
.brand_flex li{
width: 50%;
text-align: left;
}
}