@charset "utf-8";

/*-------------------------------------
　基本設定（htmlタグ、id指定）
---------------------------------------*/
html {
  scroll-behavior: smooth;
}

#lp_page {
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
}

#lp_page img {
  margin: auto;
  max-width: 100%;
}

#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) {
  #lp_page {
    font-size: 3.6vw;
    margin: 0 auto;
    position: relative;
    width: 100%;
  }

  #pagetop {
    right: 2%;
  }
}

/*-------------------------------------
　コンテナ
---------------------------------------*/
.contents-inner {
  margin: 0 auto;
  width: calc(100% - 30px);
  max-width: 1050px;
}

@media screen and (max-width: 767px) {
  .contents-inner {
    width: calc(100% - 30px);
  }
}

/*-------------------------------------
　ページ内リンク
---------------------------------------*/
.page_link {
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 1050px;
}

@media screen and (max-width:767px) {
  .page_link {
    width: 100%;
    position: static;
    transform: translateX(0);
    flex-wrap: wrap;
    padding: 15px 0 10px;
    background: #df0011;
    justify-content: space-around;
  }

  .page_link a {
    padding: 0 15px;
    width: 50%;
  }
}

/*-------------------------------------
　リンク時アニメーション
---------------------------------------*/
.page_link a {
  margin: 0;
}

.rollover:hover,
.page_link a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}

/*-------------------------------------
　ナビ
---------------------------------------*/
.nav_box {
  height: 80px;
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.nav_box li>a {
  /*  background-color: #E83642;*/
  color: #fff;
  display: table-cell;
  /*  font-size: 20px;*/
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  padding: 12px 4px;
  text-align: center;
  height: 100%;
  vertical-align: middle;
}

.nav_box li>a:hover {
  backdrop-filter: brightness(1.2);
}

.nav_box li.disable_link>a {
  background-color: #fff;
  cursor: none;
  pointer-events: none;
}

.nav_box .inside,
.nav_box .inside ul {
  height: 100%;
}

.nav_box .inside>ul>li:first-of-type {
  border-left: 1px solid #fff;
}

.nav_box .inside>ul>li {
  border-right: 1px solid #fff;
}

.inside {
  margin: 0 auto;
  padding: 0;
  width: min(100%, 1050px);
}

.inside>ul {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
}

.inside>ul>li {
  display: table;
  border-right: 1px solid #000;
  width: calc(100%/4);
}

.inside>ul>li:first-of-type {
  border-left: 1px solid #000;
}

.fix-anchor {
  margin-top: -80px;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .nav_box {
    height: 15vw;
  }

  .nav_box li>a {
    font-size: 2.8vw;
    letter-spacing: 0;
    padding: 4px 2px;
    display: table-cell;
  }

  .inside {
    width: 100%;
  }

  .inside>ul>li {
    width: calc(100%/2);
  }

  .inside ul li:first-of-type {
    border-left: none;
  }

  .inside ul li:last-of-type {
    border-right: none;
  }

  .nav_box .inside>ul>li:first-of-type {
    border-left: none;
  }

  .nav_box .inside>ul>li:last-of-type {
    border-right: none;
  }

  .fix-anchor {
    margin-top: -12vw;
    padding-top: 12vw;
  }
}

/*-------------------------------------
　背景
---------------------------------------*/
.bg-odd-even .bg-odd-even__inner {
  padding: 0 0 80px 0;
  position: relative;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  overflow: hidden;
}

.bg-odd-even .bg-odd-even__inner::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width:767px) {
  .bg-odd-even .bg-odd-even__inner::before {
    height: 100%;
    position: absolute;
  }
}

.bg-odd-even .bg-odd-even__inner::after {
  height: 20px;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
}

.bg-other-camp {
  background: #fff;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.bg-other-camp::before {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
}

@media screen and (max-width:767px) {
  .bg-odd-even .bg-odd-even__inner {
    padding: 0 0 10.67vw 0;
  }

  .bg-odd-even .bg-odd-even__inner::after {
    height: 2.67vw;
  }

  .bg-other-camp {
    padding-top: 10.67vw;
  }
}

/*-------------------------------------
　ヒーローイメージ
---------------------------------------*/
.hero-image {
  position: relative;
  width: 100%;
}

.hero-image .hero-image_inner {
  margin: 0 auto;
}

.hero-image .hero-image_inner img {
  width: 100%;
}

/*-------------------------------------
　各セクションタイトル
---------------------------------------*/
.section-title {
  margin: 0 0 40px 0;
  padding: 40px 40px 80px 40px;
  display: block;
  position: relative;
  z-index: 1;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  -webkit-text-fill-color: #fff;
  paint-order: stroke fill;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
}

.section-title span {
  transform: skew(-10deg);
  display: block;
}

.section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  clip-path: polygon(50% 100%, 100% 70%, 100% 0, 0 0, 0 70%);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  clip-path: polygon(50% calc(100% - 10px), calc(100% - 10px) calc(70% - 10px), calc(100% - 10px) 10px, 10px 10px, 10px calc(70% - 10px));
  z-index: -1;
}

.badge-section-title {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 120px;
}

.section-subtitle {
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  border-radius: 1em;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

@media screen and (max-width:767px) {
  .section-title {
    margin: 0 0 5.33vw 0;
    padding: 5.33vw 3vw 10.67vw 3vw;
    font-size: 6.400vw;
    filter: drop-shadow(0px 0.7vw 1.4vw rgba(0, 0, 0, 0.5));
  }

  .section-title::after {
    clip-path: polygon(50% calc(100% - 1.33vw), calc(100% - 1.33vw) calc(70% - 1.33vw), calc(100% - 1.33vw) 1.33vw, 1.33vw 1.33vw, 1.33vw calc(70% - 1.33vw));
  }

  .section-subtitle {
    font-size: 5.333vw;
  }
}

/*-------------------------------------
　その他のキャンペーン
---------------------------------------*/
.bg-other-campaign {
  padding: 80px 0;
}

@media screen and (max-width:767px) {
  .bg-other-campaign {
    margin-top: -12vw;
    padding-top: 24vw;
  }
}

.title-other-campaign {
  margin-bottom: 80px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: #d02b29;
}

@media screen and (max-width:767px) {
  .title-other-campaign {
    margin-bottom: 10.67vw;
    font-size: 6.4vw;
  }
}

.campaign__panel a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}

/*-------------------------------------
　sale-model上書き調整
---------------------------------------*/
.more-link .c-button--primary-white {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .more-link .c-button--primary-white {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
  }
}

.black-white-case__top {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.black-white-case {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.black-white-case>div {
  width: calc(50% - 5px);
}

.c-button--secondaryB-white,
.c-button--secondaryB-black {
  border-radius: 3em;
  width: 100%;
}

.contents-inner .sale-model .model-box a.review-in-recommend__link {
  align-items: center;
  flex-direction: row;
  margin-bottom: 0;
}

.contents-inner .sale-model .model-box a.review-in-recommend__link .review-in-recommend__star,
.contents-inner .sale-model .model-box a.review-in-recommend__link .review-in-recommend__score {
  margin-right: 4px;
}

.sale-model .model-box__spec li:last-child {
  border-bottom: none;
}

.sale-model__lead {
  padding: 15px;
  background: #fff;
  border-radius: 12px;
}

.sale-model__lead h3 {
  color: #fd2014;
}

.sale-model__lead ul {
  margin-top: 1em;
}

.sale-model__lead ul li {
  position: relative;
  margin-left: 1.5em;
  line-height: 1.5;
  text-align: left;
  font-weight: normal;
}

.sale-model__lead ul li::before {
  position: absolute;
  content: '※';
  top: 0;
  left: -1em;
}

/*------------------------------------------------------------------------プレゼント内容----*/
.present-block {
  background-color: rgba(255, 255, 255, 1);
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.present-block__title {
  color: #fff;
  padding: 20px 15px;
  line-height: 1.2;
  background: #e32211;
}

.present-block__title h3 {
  color: #fff;
  padding: 15px;
  font-weight: bold;
  line-height: 1.2;
  font-size: 36px;
}

.present-block__title h3 strong {
  color: #ff0;
}

.present-block__title .lead-txt {
  font-size: 36px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
}

.present-block__title ul.caution {
  padding-top: 20px;
}

.present-block__title ul.caution li {
  position: relative;
  margin-left: 1.5em;
  line-height: 1.5;
  text-align: left;
  font-weight: normal;
}

.present-block__title ul.caution li::before {
  position: absolute;
  content: '※';
  top: 0;
  left: -1em;
}

.present-block h4 {
  font-weight: bold;
  line-height: 1.2;
  font-size: 30px;
}

.present-block table {
  width: 100%;
  margin-top: 40px;
  font-size: 24px
}

.present-block table tr {
  border-top: 1px solid #484848;
  border-right: 1px solid #484848;
}

.present-block table th,
.present-block table td {
  padding: 0.5em 1em;
  border-left: 1px solid #484848;
  border-bottom: 1px solid #484848;
  background: #fff;
  text-align: center;
  vertical-align: middle;
}

.present-block table thead th {
  background: #e32211;
  color: #fff;
}

.present-block table strong {
  font-weight: 700;
  font-size: 150%;
}

.present-block__body {
  padding: 40px;
}

.present-block__body h4::before {
  content: "──";
  margin-right: 0.5em;
}

.present-block__body h4::after {
  content: "──";
  margin-left: 0.5em;
}

.present-block__body section+section,
.present-block__body section+.present-entry-btn {
  margin-top: 40px;
}

.present-block__rank-icon {
  width: 5em;
}

.present-block__rank-icon span {
  width: 3em;
  height: 3em;
  clip-path: circle(50% at 50% 50%);
  background: #f3f3f3;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.present-block__rank-icon--1 span {
  background: linear-gradient(135deg,
      #f9e79f 0%,
      #f1c40f 25%,
      #f5f5dc 45%,
      #f1c40f 65%,
      #d4af37 100%);
}

.present-block__rank-icon--2 span {
  background: linear-gradient(135deg,
      #f0f0f0 0%,
      #cfd8dc 20%,
      #e0e0e0 40%,
      #b0bec5 65%,
      #eceff1 100%);
}

.present-block__rank-icon--3 span {
  background: linear-gradient(135deg,
      #f6d6b8 0%,
      #d08c60 25%,
      #f1c6a0 50%,
      #b87333 75%,
      #f6d6b8 100%);
}

.present-block__rank-point,.present-block__rank-num{
  text-align: right !important; 
}

.present-block__rank-point strong {
  color: #e32211;
}

.present-block .coupon-code{
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  color: #484848;
}

.present-block .coupon-code__inner{
  border: 1px solid #fff;
}

.present-block__body h5{
  margin: 2em 0 1em;
  font-weight: 700;
  font-size: 120%;
}

.present-block__body ul.present-block__target-list{
  list-style: disc;
  list-style-position: inside;
}

.present-block__body ul.present-block__target-list li{
  text-align: left;
}

/* エントリーはこちらボタン*/
.present-entry-btn a {
  border: 2px solid #fff;
  border-radius: 100vh;
  box-shadow: 4px 4px 7px -5px #000;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1.2px;
  padding: 20px 30px;
  position: relative;
  text-align: center;
  transition: .3s;
  margin-inline: auto;
  max-width: 780px;
  background: #e32211;
}

.present-entry-btn a span {
  font-size: 36px;
}

.present-entry-btn a::after {
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-right: 4px solid;
  border-bottom: 4px solid;
  border-color: #fff;
  content: '';
}

.present-entry-btn a:hover {
  box-shadow: none;
  transform: translate3d(0, -5px, 0);
}

@media screen and (max-width: 767px) {
  .present-block__title {
    color: #fff;
    padding: 15px;
    line-height: 1.2;
    background: #e32211;
  }

  .present-block__title h3 {
    padding: 4vw;
    font-size: 5.333vw;
  }

  .present-block__title .lead-txt {
    font-size: 5.333vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .present-block__title ul.caution {
    padding-top: 4vw;
  }

  .present-block h4 {
    font-size: 4.8vw;
  }

  .present-block table {
    margin-top: 4vw;
    font-size: 4.2667vw;
  }

  .present-block__body {
    padding: 4vw;
  }

  .present-block__body section+section {
    margin-top: 4vw;
  }

  .present-entry-btn a {
    font-size: 4vw;
  }

  .present-entry-btn a::after {
    right: 15px;
  }

  .present-block table thead th {
    font-size: 3.9vw;
  }
}

/*------------------------------------------------------------------------PCパーツ・中古----*/
/*-------------------------------------
　景品一覧
---------------------------------------*/
.present-product-wrapper {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.present-product-wrapper img {
  width: 100%;
}

.present-product-wrapper>div {
  width: calc((100% - 60px) / 4);
  background-color: #fff;
  border: 2px solid #b0b0b0;
  box-shadow: none;
  position: relative;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.present-product-wrapper>div a {
  width: 100%;
  padding: 10px;
}

.present-product-wrapper .no-link {
  width: 100%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .present-product-wrapper {
    gap: 10px;
    flex-wrap: wrap;
  }

  .present-product-wrapper>div {
    width: calc((100% - 20px) / 3);
  }

  .present-block ul.caution,
  .present-entry-btn {
    padding: 20px;
  }

  .present-product-wrapper {
    padding: 10px;
  }
}


/*-------------------------------------
　対象商品
---------------------------------------*/
.campaign-subject {
  padding-top: 40px;
  width: 100%;
}

.campaign-subject h3 {
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(22px, 0.882rem + 2.47vw, 40px);
  background: #1e2b57;
  color: #fff;
  padding: 10px;
  border-radius: 3rem;
  text-align: center;
}

.campaign-subject ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}


.campaign-subject ul li a {
  position: relative;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  line-height: 1.2;
  box-shadow: 4px 4px 7px -5px #000;
  overflow: hidden;
}

.campaign-subject ul li a:hover {
  box-shadow: none;
  transform: translate3d(0, -5px, 0);
}

.campaign-subject ul li a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: #484848;
  content: '';
}

.campaign-subject ul li img {
  width: 30% !important;
}

.campaign-subject ul li p {
  width: 65%;
}

@media screen and (max-width: 767px) {
  .campaign-subject ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/*------------------------------------------------------------------------終了----*/

.end-txt {
  margin: auto;
  padding-top: 80px;
  text-align: center;
}

.end-txt h2 {
  font-size: clamp(20px, 0.886rem + 1.82vw, 36px);
  font-weight: bold;
  -webkit-text-fill-color: #333;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}


/*------------------------------------------------------------------------キャンペーン独自設定部分----*/

/*---------------------------------------
セクション01
----------------------------------------*/

/*セクションライン*/
#anchor-point.bg-odd-even .bg-odd-even__inner::after {
  background: #e32211;
}

/*セクション背景*/
#anchor-point.bg-odd-even .bg-odd-even__inner::before {
  background: #fff url(../images/bg-01.webp?250902-001) no-repeat top center / cover;
}

/*セクションタイトル*/
#anchor-point.bg-odd-even .section-title {
  -webkit-text-stroke: 15px #c22315;
}

#anchor-point.bg-odd-even .section-title::before {
  background: #e32211;
}

#anchor-point.bg-odd-even .section-title::after {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, transparent 10px, transparent 20px);
}

@media screen and (max-width:767px) {
  #anchor-point.bg-odd-even .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  #anchor-point.bg-odd-even .section-title::after {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1.33vw, transparent 1.33vw, transparent 2.67vw);
  }
}

/*サブタイトル*/
#anchor-point.bg-odd-even .section-subtitle {
  background: #1e2b57;
}

#anchor-point .present-block__title {
  background: #1e2b57;
}

#anchor-point .present-block table thead th {
  background: #643919;
}

/*---------------------------------------
セクション02
----------------------------------------*/

/*セクションライン*/
#anchor-galleria-coupon.bg-odd-even .bg-odd-even__inner::after {
  background: #643919;
}

/*セクション背景*/
#anchor-galleria-coupon.bg-odd-even .bg-odd-even__inner::before {
  background: #fff url(../images/bg-02.webp?250902-001) no-repeat top center / cover;
}

/*セクションタイトル*/
#anchor-galleria-coupon.bg-odd-even .section-title {
  -webkit-text-stroke: 15px #2e1809;
}

#anchor-galleria-coupon.bg-odd-even .section-title::before {
  background: #643919;
}

#anchor-galleria-coupon.bg-odd-even .section-title::after {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, transparent 10px, transparent 20px);
}

@media screen and (max-width:767px) {
  #anchor-galleria-coupon.bg-odd-even .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  #anchor-galleria-coupon.bg-odd-even .section-title::after {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1.33vw, transparent 1.33vw, transparent 2.67vw);
  }
}

/*サブタイトル*/
#anchor-galleria-coupon.bg-odd-even .section-subtitle {
  background: #1e2b57;
}

#anchor-galleria-coupon .present-block__title {
  background: #1e2b57;
}

#anchor-galleria-coupon .present-block table thead th {
  background: #1e2b57;
}

/*---------------------------------------
セクション03
----------------------------------------*/

/*セクションライン*/
#anchor-silver-week-coupon.bg-odd-even .bg-odd-even__inner::after {
  background: #e32211;
}

/*セクション背景*/
#anchor-silver-week-coupon.bg-odd-even .bg-odd-even__inner::before {
  background: #fff url(../images/bg-01.webp?250902-001) no-repeat top center / cover;
}

/*セクションタイトル*/
#anchor-silver-week-coupon.bg-odd-even .section-title {
  -webkit-text-stroke: 15px #c22315;
}

#anchor-silver-week-coupon.bg-odd-even .section-title::before {
  background: #e32211;
}

#anchor-silver-week-coupon.bg-odd-even .section-title::after {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, transparent 10px, transparent 20px);
}

@media screen and (max-width:767px) {
  #anchor-silver-week-coupon.bg-odd-even .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  #anchor-silver-week-coupon.bg-odd-even .section-title::after {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1.33vw, transparent 1.33vw, transparent 2.67vw);
  }
}

/*サブタイトル*/
#anchor-silver-week-coupon.bg-odd-even .section-subtitle {
  background: #1e2b57;
}


#anchor-silver-week-coupon .present-block__title {
  background: #1e2b57;
}

#anchor-silver-week-coupon .present-block table thead th {
  background: #1e2b57;
}



/*20250805　追記*/

/*---------------------------------------
セクション02
----------------------------------------*/

/*セクションライン*/
#anchor-diy-and-used.bg-odd-even .bg-odd-even__inner::after {
  background: #643919;
}

/*セクション背景*/
#anchor-diy-and-used.bg-odd-even .bg-odd-even__inner::before {
  background: #fff url(../images/bg-02.webp?250902-001) no-repeat top center / cover;
}

/*セクションタイトル*/
#anchor-diy-and-used.bg-odd-even .section-title {
  -webkit-text-stroke: 15px #2e1809;
}

#anchor-diy-and-used.bg-odd-even .section-title::before {
  background: #643919;
}

#anchor-diy-and-used.bg-odd-even .section-title::after {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 10px, transparent 10px, transparent 20px);
}

@media screen and (max-width:767px) {
  #anchor-diy-and-used.bg-odd-even .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  #anchor-diy-and-used.bg-odd-even .section-title::after {
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1.33vw, transparent 1.33vw, transparent 2.67vw);
  }
}

/*サブタイトル*/
#anchor-diy-and-used.bg-odd-even .section-subtitle {
  background: #1e2b57;
}


#anchor-diy-and-used .present-block__title {
  background: #1e2b57;
}

#anchor-diy-and-used .present-block table thead th {
  background: #1e2b57;
}

/*-------------------------------------
　検索結果上書き調整
---------------------------------------*/
.p-products-all-item__results.results-include {
  max-width: none;
  padding: 0;
}

.include-search-products .p-products-all-item {
  outline: none;
}

.include-search-products .u-pc-width {
  display: contents;
}

.include-search-products .productMoreGrid {
  display: flex;
  gap: var(--coupon-model-gap);
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.include-search-products .productMoreGrid .p-products-all-item__item {
  width: calc((100% - var(--coupon-model-gap) * 3) / 4);
  max-width: none;
  flex: 0 0 auto;
  border: 0;
  padding: 15px;
  margin: 0;
  line-height: 1.5;
  background: #fff;
}

.include-search-products .p-area-add-wish-list {
  display: none;
}

@media screen and (min-width: 768px) {
  .include-search-products .p-products-all-item-product {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.include-search-products .p-products-all-item-product__image {
  width: 100%;
  padding: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1/1;
}

.include-search-products .p-products-all-item-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.include-search-products .p-products-all-item-product__name .c-flex {
  justify-content: space-between;
}

.include-search-products .p-products-all-item-product__name__text {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.include-search-products .p-products-all-item-product__number {
  font-size: 22px;
}

.include-search-products .p-products-all-item-product__spec__item {
  min-width: 9em;
  padding: 4px 0;
  margin-right: 10px;
}

.include-search-products .p-products-all-item-product__spec__item::after {
  display: none;
}

.include-search-products .p-products-all-item-product__spec__text {
  padding: 4px 0;
  font-size: 12px;
}

.include-search-products .p-products-all-item-product>.p-products-all-item-product__buttons {
  padding: 15px 0 0 0;
  margin-top: auto;
  flex-direction: column;
}

.include-search-products .p-products-all-item-product>.p-products-all-item-product__buttons .p-products-all-item-product__link--detail,
.include-search-products .p-products-all-item-product>.p-products-all-item-product__buttons .p-products-all-item-product__link--cart {
  flex: 1 1 auto;
  width: 100%;
  margin: 0 auto;
}

.include-search-products .p-products-all-item-product>.p-products-all-item-product__buttons .p-products-all-item-product__link--cart {
  margin-top: 15px;
  display: none;
}

.include-search-products .productMoreGrid .p-products-all-item__item:nth-child(n+5),
.include-search-products .productMoreButton {
  display: none;
}

.include-search-products__footer {
  text-align: right;
}

.include-search-products .p-products-all-item-product__spec__body tr:nth-child(7) {
  /*ベンチマークを非表示に*/
  display: none !important;
  /*base.css上書き*/
}

@media screen and (max-width: 1140px) {
  .include-search-products .productMoreGrid .p-products-all-item__item {
    width: calc((100% - var(--coupon-model-gap)) / 2);
  }
}

@media screen and (max-width: 767px) {
  .include-search-products .productMoreGrid {
    flex-direction: column;
    gap: 0;
  }

  .include-search-products .productMoreGrid .p-products-all-item__item {
    width: 100%;
    max-width: none;
  }

  .include-search-products .p-products-all-item__item+.p-products-all-item__item {
    margin-top: 15px;
  }

  .include-search-products .p-products-all-item-product__image {
    padding-right: 15px;
  }

  .include-search-products .p-products-all-item-product__name__text {
    font-size: 14px;
  }

  .include-search-products__footer {
    margin-top: 14px;
  }

  .include-search-products__footer .c-link {
    font-size: 14px;
  }

  .include-search-products {
    margin-top: 15px;
  }

}

@media screen and (min-width: 768px),
print {
  .include-search-products .p-products-all-item-product__image {
    margin-bottom: 14px;
    padding: 0;
    width: 100%;
  }
}

/*グリッド項目追加*/
.product_pop {
  grid-area: product_pop;
  text-align: center;
  padding: 10px;
  background-color: #e43344;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .p-products-all-item-product {
    display: grid;
    grid-template-areas:
      "product_pop product_pop"
      /* ← 追加 */
      "product_label product_label"
      "product_image product_name"
      "product_image product_price"
      "product_spec product_spec"
      "product_buttons product_buttons";
    grid-template-columns: 140px 1fr;
  }
}

/*-------------------------------------
　クーポン終了表示
---------------------------------------*/
.coupon-wrapper {
  position: relative;
}

.coupon-wrapper .coupon-end {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: absolute;
  padding: 1em;
}

.coupon-wrapper .coupon-end .coupon-end-text {
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.coupon-wrapper .coupon-end .coupon-end-text span {
  font-size: 11px;
  display: inline-block;
}