@charset "utf-8";

/*-------------------------------------
基本設定（htmlタグ、id指定）
---------------------------------------*/
:root {
  --color-memory: #e43344;
  --color-power: #f26e01;
  --color-water:#00a2e6;
  --color-air:#a500b9;
  --color-ssd-no-cache: #68ac26;
  --color-ssd-cache: #0161f2;
  --color-gpu: #76b900;
}

#event-sale {
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  width:100%;
  background: #fff url(../images/bg-campaign.webp) no-repeat top center / cover;
  background-attachment: fixed;
}

#event-sale img {
  margin: auto;
  width: 100%;
  object-fit: contain;
}

#event-sale .c-button {
  width: 100%;
}

.caution {
  font-weight: normal;
}



/*-------------------------------------
リンク時アニメーション
---------------------------------------*/
.rollover:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}

/*-------------------------------------
終了テキスト
---------------------------------------*/
.end-wrap {
  width: 100%;
  padding: 10px;
  color: #f00;
  font-size: clamp(18px, 0.784rem + 1.45vw, 30px);
  font-weight: bold;
  text-align: center;
  background: #fff;
}

/*-------------------------------------
ページトップ
---------------------------------------*/
#pagetop {
  opacity: 1;
  position: fixed;
  bottom: 30px;
  right: 55px;
  transition: opacity .5s;
  z-index: 2;
}

#pagetop a {
  background-color: rgba(51, 51, 51, .8);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 1.5em;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  #pagetop {
    right: 10px;
    bottom: 10px;
  }
}

/*-------------------------------------
コンテナ
---------------------------------------*/
.used-block{
  padding-top:clamp(40px, 1.364rem + 4.85vw, 80px);
}
.sec-cont{
  padding-bottom:clamp(40px, 1.364rem + 4.85vw, 80px);
}

.contents-inner {
  margin: 0 auto;
  width: 92vw;
  max-width: 1140px;
}

/*-------------------------------------
ヒーローイメージ
---------------------------------------*/
.kv-wrapper {
  position: relative;
  width: 100%;
}

/*-------------------------------------
ナビ
---------------------------------------*/
.nav-box {
  height: 80px;
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 90;
}

.nav-box-list {
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.nav-box-list li {
  flex:1;
  border-left: 1px solid #fff;
}

.nav-box-list li:last-child {
  border-right: 1px solid #fff;
}

.nav-box-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.nav-box-list li a:hover {
  opacity: 0.7;
}

.nav-box-list li.-special a {
  background-color: #e32211;
}

.nav-box-list .tag-update {
  margin: 0 auto .5em auto;
  font-weight: bold;
  background: #ff0;
  color: #e43344;
  padding: 0 2em;
  font-size: 0.8em;
  border-radius: 1em;
  width: fit-content;
}

.fix-anchor {
  scroll-margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .nav-box {
    height: 18vw;
  }

  .nav-box-list li:first-child {
    border-left: none;
  }

  .nav-box-list li:last-child {
    border-right: none;
  }

  .nav-box-list li a {
    font-size: 10px;
  }

  .fix-anchor {
    scroll-margin-top: 18vw;
  }
}


/*-------------------------------------
その他のキャンペーン
---------------------------------------*/
#other-campaign {
  position: relative;
  background: #fff;
}

.sec-camp-cont{
  padding:clamp(30px, 1.023rem + 3.64vw, 60px) 0;
}

.ttl-title {
  margin: 0 0 40px;
  font-size: clamp(14px, 0.477rem + 1.7vw, 28px);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.campaign-list {
  display: flex;
  gap: 20px;
  flex-wrap:wrap;
  justify-content: center;
}

.campaign-list li{
  width:calc((100% - 60px)/4);
}

.campaign-list a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .campaign-list {
    gap: 10px;
  }
  .campaign-list li{
    width:calc((100% - 10px)/2);
  }
}

/*-------------------------------------
コンテンツブロック
---------------------------------------*/
.contents-block {
  position: relative;
  background: #fff;
  text-align: center;
  border-radius: clamp(10px, 0.341rem + 1.21vw, 20px);
  padding:clamp(20px, 0.682rem + 2.42vw, 40px);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.sec-ttl{
  position:relative;
  font-size:clamp(16px, 0.545rem + 1.94vw, 32px);
  font-weight:700;
  margin-bottom: clamp(10px, 0.341rem + 1.21vw, 20px);
  padding:0.3em 0.5em;
  border-radius: 100vw;
  color:#fff;
  line-height:1.2;
  letter-spacing:0.01em;
}

.sec-ttl span{
  position:relative;
  z-index:2;
}

.sec-ttl::before,
.sec-ttl::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100vw;
  z-index:1;
}

.sec-ttl::before{
  background:#004da1;
}
.sec-ttl::after {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, transparent 10px, transparent 20px);
}


/*-------------------------------------
もっと見るボタン
---------------------------------------*/
.more-link {
  width: 100%;
  max-width:600px;
  margin: 40px auto 0 auto;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .more-link {
    margin: 20px auto 0 auto;
  }
  .more-link .c-button {
    font-size: 14px;
  }
}



/*-------------------------------------
商品検索結果上書き調整
---------------------------------------*/
.c-include-search-result .productMoreGrid .p-products-all-item__item::before {
  display:none;
}
.c-include-search-result .productMoreGrid {
  justify-content: center;
  flex-wrap: wrap;
  gap:15px;
  width:100%;
}
.c-include-search-result .productMoreGrid .p-products-all-item__item {
  width: calc((100% - 45px) / 4);
  max-width: calc((100% - 45px) / 4);
  padding: 20px;
  margin-top: 0;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.p-products-all-item-product__name {
  margin-top: 10px;
}

.c-include-search-result .p-products-all-item-product__name__text {
  text-align: left;
}

.p-products-all-item-product__shipment, 
.p-products-all-item-product__shipment--red {
  margin-left:0;
}

.p-products-all-item-product__useditem__text {
  padding: 0.3em;
}
.p-products-all-item-product__useditem__status {
  margin-left: 10px;
  font-size: clamp(12px, 0.693rem + 0.24vw, 14px);
  text-align:left;
}



@media screen and (max-width: 810px) {
  .c-include-search-result .productMoreGrid {
    gap:10px;
  }
  .c-include-search-result .productMoreGrid .p-products-all-item__item {
    width: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
    padding: 10px;
  }
  .condition{
    display:block;
  }
}

/*-------------------------------------
理由
---------------------------------------*/
.p-used-top__reason {
  padding: clamp(30px, 1.023rem + 3.64vw, 60px) 0 !important;
}