@charset "utf-8";

/*-------------------------------------
基本設定（htmlタグ、id指定）
---------------------------------------*/
/* html {
  scroll-behavior: smooth;
} */

#event-sale {
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
}

#event-sale img {
  max-width: 100%;
}

#event-sale .c-button {
  width: 100%;
}

.caution {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  #event-sale {
    margin: 0 auto;
    position: relative;
    width: 100%;
  }
}

/*-------------------------------------
リンク時アニメーション
---------------------------------------*/
.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(1.125rem, calc(1.064rem + 0.261vw), 1.25rem);
  /* min: 18px, max: 20px */
  ;
  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;
  }
}

/*-------------------------------------
コンテナ
---------------------------------------*/
.contents-inner {
  margin: 0 auto;
  width: 92vw;
  max-width: 1140px;
}

/*-------------------------------------
ヒーローイメージ
---------------------------------------*/
.hero-image {
  position: relative;
  width: 100%;
}

.hero-image .hero-image_inner {
  margin: 0 auto;
}

.hero-image .hero-image_inner img {
  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: 2.8vw;
  }

  .fix-anchor {
    scroll-margin-top: 18vw;
  }
}

/*------------------------------------------------------------------
セクション背景・タイトル
--------------------------------------------------------------------*/
/*-------------------------------------
セクション背景
---------------------------------------*/
.bg-odd-even {
  position: relative;
}

.bg-odd-even .bg-odd-even__inner {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.bg-odd-even section {
  margin-top: 60px;
}

.bg-odd-even section:first-child {
  margin-top: 0;
}

@media screen and (max-width:767px) {
  .bg-odd-even section {
    margin-top: 10.67vw;
  }

  .bg-odd-even .bg-odd-even__inner {
    padding: 10.67vw 0;
  }

  .bg-odd-even .bg-odd-even__inner::after {
    height: 2.67vw;
  }
}

/*-------------------------------------
各セクションタイトル
---------------------------------------*/
.section-title {
  margin: 0 0 40px;
  padding: 0.5em 1em;
  display: block;
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, calc(0.637rem + 2.614vw), 2.5rem);
  /* min: 20px, max: 40px */
  ;
  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 {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.section-title__decoration {
  display: flex;
  gap: 0.5em;
  align-items: flex-end;
}

.section-title__decoration::before,
.section-title__decoration::after {
  content: '';
  width: 3px;
  height: 1em;
  display: inline-block;
  background: #fff;
  transform: rotate(-45deg);
}

.section-title__decoration::before {
  transform: rotate(-45deg);
}

.section-title__decoration::after {
  transform: rotate(45deg);
}

.section-title::before,
.section-title::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  clip-path: polygon(0 0, 90% 0, 87% 100%, 0 100%);
}

.section-sub-title {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(1.125rem, calc(0.574rem + 2.353vw), 2.25rem);
  /* min: 18px, max: 36px */
  font-weight: 700;
  text-align: center;
  border-radius: 1140px;
  padding: 0.5em 1em;
  line-height: 1.25;
  background: #555;
}

@media (max-width:767px) {
  .section-sub-title {
    margin-bottom: 15px;
  }
}

.hd-ttl {
  margin-bottom: 1em;
  border-bottom: 1px solid #004da1;
  color: #004da1;
  font-weight: 700;
  font-size: clamp(1.5rem, calc(1.316rem + 0.784vw), 1.875rem);
  /* min: 24px, max: 30px */
  ;
  text-align: center;
  /*   -webkit-text-stroke: 8px #fff;
  paint-order: stroke; */
}

@media screen and (max-width:767px) {
  .section-title {
    filter: drop-shadow(0px 0.7vw 1.4vw rgba(0, 0, 0, 0.5));
  }

  .section-title::before,
  .section-title::after {
    clip-path: polygon(0 0, 95% 0, 92% 100%, 0 100%);
  }

  .section-ttl-image {
    margin: 0 auto 20px auto;
  }

  .section-title span {
    text-align: left;
  }
}


/*---------------------------------------
セクション(odd)
----------------------------------------*/
/*セクション背景*/
.bg-odd-even:nth-child(odd) .bg-odd-even__inner {
  background: #ececec;
}

/*セクションタイトル*/
.bg-odd-even:nth-child(odd) .section-title {
  -webkit-text-stroke: 15px #004da1;
}

.bg-odd-even:nth-child(odd) .section-title::before {
  background: #004da1;
}

.bg-odd-even:nth-child(odd) .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) {
  .bg-odd-even:nth-child(odd) .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  .bg-odd-even:nth-child(odd) .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);
  }
}

/*サブタイトル*/
.bg-odd-even:nth-child(odd) .section-sub-title {
  background: #004da1;
}

/*---------------------------------------
セクション(even)
----------------------------------------*/
/*セクション背景*/
.bg-odd-even:nth-child(even) .bg-odd-even__inner {
  background: #fff;
}

/*セクションタイトル*/
.bg-odd-even:nth-child(even) .section-title {
  -webkit-text-stroke: 15px #004da1;
}

.bg-odd-even:nth-child(even) .section-title::before {
  background: #004da1;
}

.bg-odd-even:nth-child(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) {
  .bg-odd-even:nth-child(even) .section-title {
    -webkit-text-stroke-width: 1.33vw;
  }

  .bg-odd-even:nth-child(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);
  }
}

/*サブタイトル*/
.bg-odd-even:nth-child(even) .section-sub-title {
  background: #004da1;
}

/*-------------------------------------
タイトル下説明
---------------------------------------*/
.exp-block {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.date-limeted {
  font-weight: 700;
  color: #e43344;
}

.exp-txt {
  color: #00a2e6;
}

.exp-txt label,
.exp-txt span {
  display: block;
  width: 100%;
  padding: 0.5em;
  cursor: pointer;
  background: #fff;
  line-height: 1;
  border-radius: 10px;
}

.exp-txt:hover {
  opacity: 0.7;
}

#event-sale .exp-txt img,
#event-sale .exp-txt svg {
  width: 1em !important;
  height: 1em;
  margin: 0;
  margin-left: 0.25em;
  vertical-align: middle;
  overflow: visible;
}

/*-------------------------------------
その他のキャンペーン
---------------------------------------*/
.sec-campaign {
  position: relative;
  padding: 60px 0;
  background: #fff;
}

@media screen and (max-width:767px) {
  .sec-campaign {
    padding: 10.67vw 0;
  }
}

.sec-ttl {
  margin: 0 0 40px;
  font-size: clamp(1.25rem, calc(0.637rem + 2.614vw), 2.5rem);
  /* min: 20px, max: 40px */
  ;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: #d02b29;
}

.campaign-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.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;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-------------------------------------
プレゼントブロック
---------------------------------------*/
.present-block {
  position: relative;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.bg-odd-even:nth-child(even) .present-block {
  background: #ececec;
}

.present-block span {
  color: #ff0;
}

.present-block span strong {
  font-size: 150%;
}

.present-block .present-block__img {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

.present-block table.present-block__rank {
  width: 60%;
  margin: 0 auto;
}

.present-block table.present-block__rank tr {
  border-top: 1px solid #484848;
  border-right: 1px solid #484848;
}

.present-block table.present-block__rank th,
.present-block table.present-block__rank 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.present-block__rank thead th {
  background: #004da1;
  color: #fff;
}

.present-block table.present-block__rank strong {
  font-weight: 700;
  font-size: 150%;
  color: #e32211;
}

@media screen and (max-width:767px) {
  .present-block table.present-block__rank {
    width: 100%;
  }
}

/*-------------
タイトル
---------------*/
.present-block .present-block__ttl {
  color: #fff;
  padding: 20px 15px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.present-block.-dblue .present-block__ttl {
  background: #004da1;
}

.present-block.-blue .present-block__ttl {
  background: #004da1;
}

.present-block.-red .present-block__ttl {
  background: #e32211;
}

.present-block.-green .present-block__ttl {
  background: #21811c;
}

.present-block__ttl p {
  font-size: clamp(1rem, calc(0.755rem + 1.046vw), 1.5rem);
  /* min: 16px, max: 24px */
  ;
  font-weight: 700;
}

.present-block__ttl h3 {
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.125rem, calc(0.574rem + 2.353vw), 2.25rem);
  /* min: 18px, max: 36px */
  ;
}

.present-block ul.caution li {
  position: relative;
  margin-left: 1.5em;
  line-height: 1.5;
  text-align: left;
  font-weight: normal;
}

.present-block ul.caution li:before {
  position: absolute;
  content: '※';
  top: 0;
  left: -1em;
}

/*-------------
中身
---------------*/
.present-block .present-block__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.present-block .present-block__body section {
  margin-top: revert;
}

.present-block .present-block__body details {
  text-align: left;
}

.present-block .present-block__body details .c-button::after {
  transform: rotate(45deg);
}

.present-block .present-block__body details[open] .c-button::after {
  transform: rotate(-135deg);
}

.present-block__attention {
  text-align: left;
}

.present-block__attention li {
  position: relative;
  padding-left: 1.5em;
}

.present-block__attention li::before {
  position: absolute;
  content: '※';
  top: 0;
  left: 0;
}

.present-block__card {
  padding: 15px;
  border-radius: 7px;
  background: #fff;
  border: 3px solid #00a2e6;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.present-block__card h4 {
  margin: -15px -15px 15px -15px;
  padding: 15px;
  color: #fff;
  background: #00a2e6;
  font-weight: 700;
  font-size: clamp(1.125rem, calc(0.941rem + 0.784vw), 1.5rem);
  /* min: 18px, max: 24px */
}

.present-block__card strong {
  color: red;
  font-weight: 700;
  font-size: clamp(1.5rem, calc(1.316rem + 0.784vw), 1.875rem);
  /* min: 24px, max: 30px */
}

.present-block__card-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

span.present-block__card-arrow {
  margin: 0 1em;
  color: red;
}

.present-block__card--memory {
  border-color: #e43344;
}

.present-block__card--memory h4 {
  background-color: #e43344;
}

.present-block__card--power {
  border-color: #f26e01;
}

.present-block__card--power h4 {
  background-color: #f26e01;
}

.present-block__card--ssd-no-cache {
  border-color: #68ac26;
}

.present-block__card--ssd-no-cache h4 {
  background-color: #68ac26;
}

.present-block__card--ssd-cache {
  border-color: #0161f2;
}

.present-block__card--ssd-cache h4 {
  background-color: #0161f2;
}

.present-block__card-detail {
  font-weight: 700;
  line-height: 1.25;
}

span.present-block__card-merit {
  font-size: clamp(1.5rem, calc(1.316rem + 0.784vw), 1.875rem);
  /* min: 24px, max: 30px */
  ;
  color: revert;
}

.present-block__body .card--flow+.card--flow:before {
  content: '▶';
  position: absolute;
  left: calc(var(--grid-gap-x) * -1.5);
  top: 50%;
  transform: translateY(-50%);
}

/*-------------
エントリーボタン
---------------*/
.entry-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-entry {
  width: 80%;
  border: 2px solid #fff;
  border-radius: 100vh;
  box-shadow: 4px 4px 7px -5px #000;
  color: #fff;
  display: block;
  font-size: clamp(1.125rem, calc(0.941rem + 0.784vw), 1.5rem);
  /* min: 18px, max: 24px */
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1em 2em;
  position: relative;
  text-align: center;
  transition: .3s;
  margin-inline: auto;
  cursor: pointer;
  background: #004da1;
}

@media screen and (max-width: 767px) {
  .btn-entry {
    padding: 10px 20px;
    line-height: 1.2;
  }
}

.btn-entry:hover {
  box-shadow: none;
  transform: translate3d(0, 5px, 0);
}

/*-------------------------------------
もっと見るボタン
---------------------------------------*/
.more-link {
  width: 100%;
  margin: 40px auto 0 auto;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .more-link {
    margin: 20px auto 0 auto;
  }

}

/*-------------------------------------
sale-model上書き調整
---------------------------------------*/

/*-----------------
レビュー
--------------------*/
#event-sale .model-review {
  text-align: left;
  margin-bottom: 5px;
}

#event-sale .review-in-recommend__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  width: fit-content;
  margin: 0;
}

#event-sale .review-in-recommend__link img {
  width: auto !important;
  height: 1em;
  margin: 0 0 0.2em !important;
}

/*-----------------
スペック
--------------------*/
.model-card-wrapper .model-spec>li {
  display: block;
  position: relative;
  padding-left: 1em;
}

.model-card-wrapper .model-spec>li::before,
.model-card-wrapper .model-spec>li+li::before {
  position: absolute;
  content: '・';
  top: 0;
  left: 0;
}

/*-------------------------------------
商品検索結果上書き調整
---------------------------------------*/
.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;
  word-break: break-all;
}

.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;
  }
}

#counter {
  position: absolute;
  width: 6em;
  bottom: -2.5em;
  left: calc(50% - 3em);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5em 0;
  border-radius: 5px;
  cursor: default;
}

.label-campaign {
  padding: 2px 7px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
}

.label-campaign+.label-campaign {
  margin-left: 7px;
}

.label-campaign--memory {
  background: #e43344;
}

.label-campaign--power {
  background: #f26e01;
}

.model-card-wrapper .model-card-list--horizontal>li {
  width: calc((100% - 15px) / 2);
}

.model-card-wrapper .model-card-list--horizontal>li>.grid-container.full {
  margin-left: 0;
  margin-right: 0;
}

.model-card-wrapper .model-card-list--horizontal .model-logo {
  width: 100% !important;
}

.model-card-wrapper .model-card-list--horizontal .model-spec-cols {
  align-self: center;
}

.model-card-wrapper .model-card-list--horizontal .model-spec {
  font-size: revert;
}

.model-card-wrapper .model-card-list--horizontal .model-price-cols {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.model-card-wrapper .model-card-list--horizontal .coupon-wrapper {
  margin: var(--model-card-gap) 0;
}

.model-card-wrapper .model-card-list--horizontal .coupon-wrapper .coupon-value::before {
  display: none;
}

.model-card-wrapper .model-card-list--horizontal .coupon-wrapper .coupon-value__detail {
  padding-left: 0;
  font-size: 20px;
  line-height: 1;
}

.model-card-wrapper .model-card-list--horizontal .model-price-cols .model-price {
  font-size: revert;
  text-align: right;
  white-space: nowrap;
}

.model-card-wrapper .model-card-list--horizontal .model-price-cols .model-price span {
  font-size: 24px;
}

.model-card-wrapper .model-card-list--horizontal .model-price-cols .model-price--normal,
.model-card-wrapper .model-card-list--horizontal .model-price-cols .model-price--normal span {
  font-weight: 400;
  color: revert;
  font-size: revert;
}

.c-button--anchor {
  border-radius: 1140px;
  text-align: center;
  line-height: 1.2;
}

.c-button--anchor::after {
  transform: rotate(45deg);
}

@media (max-width:767px) {
  .grid-x.small-grid-x-overflow {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .model-card-wrapper .model-card-list--horizontal>li {
    width: 100%;
  }

  .present-block__body .card--flow+.card--flow:before {
    left: calc(var(--grid-gap-fluid) * -1.5);
  }
}

/*----------------------------------------
  260521追加
  ------------------------------------------*/
.hd-sub-ttl {
  margin-bottom: 0.2em;
  font-weight: 700;
  font-size: clamp(1.5rem, calc(1.316rem + 0.784vw), 1.875rem);
  text-align: center;
}

/*------------------------------
  swipe
  ------------------------------*/
.model-swipe-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.model-swipe-outer .model-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 1141px;
  margin: auto;
}

.model-swipe-outer .model-card-wrapper .coupon-wrapper {
  margin: var(--model-card-gap) 0;
}

.model-swipe-outer .model-card-wrapper .coupon-wrapper .coupon-value::before {
  display: none;
}

.model-swipe-outer .model-card-wrapper .coupon-wrapper .coupon-value__detail {
  padding-left: 0;
  font-size: 20px;
  line-height: 1;
}

.model-card-wrapper .model-name{
  -webkit-line-clamp: revert;
}

.model-stkname {
  color: #e43344;
  border: 1px solid #e43344;
  padding: 0.2em 0.5em;
  width: fit-content;
}

.model-card-wrapper .model-spec>li::before,
.model-card-wrapper .model-spec>li+li::before {
  display: none;
}

.model-card-wrapper .model-spec li {
  list-style: none;
  font-size: 15px;
  padding: 0.2em 0;
  border-bottom: 1px solid #b6b6b6;
}

.model-swipe-outer .model-card-wrapper .model-price {
  font-size: 16px;
  text-align: right;
}

.model-swipe-outer .model-card-wrapper .model-price span {
  font-size: 26px;
}

.model-swipe-outer .model-card-wrapper .model-price.model-price--normal {
  color: revert;
  font-size: 16px;
}

.model-swipe-outer .model-card-wrapper .model-price.model-price--normal span {
  font-weight: 400;
  font-size: revert;
}

.model-swipe-outer .model-card-wrapper .model-card-list>li {
  justify-content: flex-start;
}


.model-list-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(98, 98, 98, 0.5);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  backdrop-filter: blur(5px);
}

.model-list-button::after {
  content: '';
  width: 30%;
  height: 30%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-12.5%, 12.5%);
}

.model-list-button--prev {
  left: -80px;
  transform: rotate(-135deg);
}

.model-list-button--next {
  right: -80px;
  transform: rotate(45deg);
}

.model-list-button.swiper-button-disabled {
  background: rgba(220, 220, 220, 0.5);
  cursor: default;
  display: none;
}

.model-swipe-outer .model-card-wrapper .model-card-list {
  position: relative;
  margin: auto;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
}

.model-swipe-outer .model-card-wrapper .model-card-list>li {
  width: auto;
  height: auto;
}

@media screen and (min-width: 768px) {
  .model-swipe-outer .model-card-wrappe .model-card-list.-less4 {
    justify-content: center;
  }
}

/*----------------
  画像サイズ調整
  ----------------*/
.model-card-wrapper .model-card-list--horizontal .model-card img {
  width: 100% !important;
}

.model-card-wrapper .model-card-list--horizontal .card-images .card__img-left {
  width: 80%;
  left: -10%;
}

.model-card-wrapper .model-card-list--horizontal .card-images .card__img-right {
  width: 80%;
  right: -10%;
}

.model-card-wrapper .model-card-list--horizontal .card-images .card__img {
  width: 90%;
}

/*----------------
  セット割移植
----------------*/
:root {
  --gap-p-parts-set-discount: 60px;
}

.p-side-menu {
  display: none;
}

.p-parts-set-discount {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.p-parts-set-discount img {
  max-width: 100%;
}

.p-parts-set-discount input[type="radio"] {
  display: none;
}

.p-parts-set-discount label {
  padding: 15px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  outline: 1px solid #ccc;
  gap: 15px;
  cursor: pointer;
  position: relative;
}

.p-parts-set-discount label:hover {
  animation: hover-flash 1s forwards;
  opacity: 1;
}

.p-parts-set-discount label.out-of-stock {
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(1);
  order: 999;
}

.p-parts-set-discount label.out-of-stock img {
  opacity: 0.25;
}

.p-parts-set-discount label.out-of-stock:hover {
  -webkit-animation-name: none;
  animation-name: none;
}

.p-parts-set-discount label img {
  width: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.p-parts-set-discount label p:has(span[data-key="amttaxnounit"]) {
  font-weight: 700;
  color: #e43344;
}

.p-parts-set-discount label span[data-key="amttaxnounit"] {
  font-size: 120%;
}

.p-parts-set-discount label p[data-key="stkname"] {
  font-size: 80%;
}

.p-parts-set-discount label:has(input[type="radio"]:checked) {
  outline: 3px solid #004da1;
}

.p-parts-set-discount label:has(input[type="radio"]:checked)::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  width: 7px;
  height: 15px;
  border: solid #004da1;
  border-width: 0 .30px .30px 0;
  transform: rotate(45deg);
  animation: bounce 0.5s forwards;
}

@keyframes bounce {
  25% {
    transform: scale(2) rotate(45deg);
  }

  50% {
    transform: scale(0.75) rotate(45deg);
  }

  75% {
    transform: scale(1.5) rotate(45deg);
  }

  100% {
    transform: scale(1) rotate(45deg);
  }
}

.p-parts-set-discount .u-pc-width {
  width: 92vw;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

.p-parts-set-discount .c-headline {
  margin-bottom: calc(var(--gap-p-parts-set-discount) / 2);
}

.p-parts-set-discount .section-recommend {
  background: #fbf4e2;
}

.p-parts-set-discount .discount-value {
  color: #e43344;
}

.p-parts-set-discount .section-recommend .discount-value {
  color: #ffd400;
}

.p-parts-set-discount .section-campaign {
  background: #f3f3f3;
}

.p-parts-set-discount .set {
  padding: 15px;
}

.p-parts-set-discount .set .c-headline {
  width: calc(100% + 30px);
  margin: -15px -15px 15px -15px;
  padding: calc(var(--gap-p-parts-set-discount) / 4);
  background: #004da1;
}

.p-parts-set-discount .set .c-headline__h3 {
  color: #fff;
  margin: 0 auto;
  line-height: 1.25;
}

.p-parts-set-discount .set .set__pname {
  margin-top: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-bottom: 1px;
}

.p-parts-set-discount .set .set__normal-price {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 700;
}

.p-parts-set-discount .set .set__bundle-total-price {
  margin-bottom: 15px;
  color: #e43344;
  font-size: 24px;
  font-weight: 700;
}

.p-parts-set-discount .set .c-button--primary-blue {
  width: 100%;
}

.p-parts-set-discount .set .c-button--primary-blue img {
  width: 1em;
}

.p-parts-set-discount .set--child {
  border: 1px solid #ccc;
  box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, .1);
}

.p-parts-set-discount .set--child .c-headline {
  background: #f3f3f3;
}

.p-parts-set-discount .set--child .c-headline__h4 {
  font-size: 20px;
  font-weight: 700;
}

.p-parts-set-discount .lead {
  position: relative;
  margin-bottom: 30px;
  padding: 15px;
  background: #eee;
  border-radius: 45px;
  font-size: 120%;
  font-weight: 700;
  text-align: center;
}

.p-parts-set-discount .lead::after {
  content: "";
  display: block;
  height: 15px;
  aspect-ratio: 1/0.866;
  background: #eee;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-parts-set-discount .total-price {
  padding: 15px;
  background: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.p-parts-set-discount .total-price .c-button[disabled] {
  filter: grayscale(1);
  opacity: 0.25;
  pointer-events: none;
  cursor: not-allowed;
}

.p-parts-set-discount .total-price table tr th,
.p-parts-set-discount .total-price table tr td {
  padding: 7px 0;
}

.p-parts-set-discount .total-price table tr th {
  text-align: right;
}

.p-parts-set-discount .total-price table tr th+td {
  padding-left: 7px;
  text-align: left;
}

.p-parts-set-discount .discount-price__wrapper {
  color: #e43344;
  font-size: 140%;
  font-weight: 700;
}

.p-parts-set-discount .saved-price__wrapper {
  color: #e43344;
  font-size: 120%;
  font-weight: 700;
}

.p-parts-set-discount .nav {
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-parts-set-discount .nav__list {
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.p-parts-set-discount .nav__list-item {
  width: calc(100% / 3);
  border-left: 1px solid #fff;
}

.p-parts-set-discount .nav__list-item:last-child {
  border-right: 1px solid #fff;
}

.p-parts-set-discount .nav__list-item 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;
}

.p-parts-set-discount .nav__list-item a:hover {
  opacity: 0.7;
}

.nav__list-item--special a {
  background-color: #e32211;
}

.p-parts-set-discount .nav__list-item-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;
}

.p-parts-set-discount .other-set .u-pc-width {
  display: flex;
  justify-content: flex-end;
}

.p-parts-set-discount .other-set .u-pc-width .c-button {
  width: fit-content;
  padding-right: 45px;
  padding-left: 25px;
}

.p-parts-set-discount .lazy-product {
  opacity: 0;
  transition: all 0.3s ease;
}

.p-parts-set-discount .lazy-product.is-active {
  opacity: 1;
}

.p-parts-set-discount .grid-container .c-button {
  width: 100%;
}

.p-parts-set-discount .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-parts-set-discount .category-tabs button {
  width: calc((100% - (5px * 3)) / 4);
  height: 44px;
  padding: 0;
  background: #efefef;
  border-top: none;
  border: 2px solid #004da1;
  border-radius: 1140px;
  display: block;
  text-align: center;
  font-weight: 700;
}

.p-parts-set-discount .category-tabs button[aria-selected="true"] {
  background: #004da1;
  color: #fff;
}

.p-parts-set-discount .static-thumb {
  display: block;
  width: 240px;
  margin: 0 auto 15px auto;
}

.p-parts-set-discount .text-center {
  text-align: center;
}

.p-parts-set-discount .set-separator {
  height: 100%;
  font-weight: 700;
  position: relative;
  display: block;
}

.p-parts-set-discount .set-separator::before {
  content: '';
  width: 1px;
  height: 100%;
  background: #484848;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
}

.p-parts-set-discount .set-separator::after {
  content: 'または';
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 15px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  background: #fff;
  display: block;
}

.p-parts-set-discount .bundle-cartin .set .bundle-cartin-button[disabled] {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}

.p-parts-set-discount .bundle-cartin .set {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-parts-set-discount .bundle-cartin .set__body {
  flex: 1;
}

.p-parts-set-discount .bundle-cartin .set__body-inner {
  height: calc(100% + var(--grid-gap-x) * 2);
}

.p-parts-set-discount .bundle-cartin .set__body-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.p-parts-set-discount .set__thumbnail {
  aspect-ratio: 1;
}

@media screen and (max-width:767px) {
  :root {
    --gap-p-parts-set-discount: 30px;
  }

  .p-parts-set-discount .nav {
    font-size: 12px;
  }

  .p-parts-set-discount .category+.category {
    margin-top: var(--gap-p-parts-set-discount);
  }

  .p-parts-set-discount .c-button {
    height: 44px;
  }

  .p-parts-set-discount label .c-button {
    justify-content: flex-start;
    padding: 0 15px;
  }

  .p-parts-set-discount label .c-button::after {
    right: 15px;
  }

  .p-parts-set-discount .discount-price__wrapper {
    font-size: 120%;
  }

  .p-parts-set-discount .saved-price__wrapper {
    font-size: 110%;
  }

  .p-parts-set-discount .static-thumb {
    width: 32vw;
  }

  .p-parts-set-discount .set-separator {
    height: 45px;
  }

  .p-parts-set-discount .set-separator::before {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
  }

  .p-parts-set-discount .category-tabs button {
    width: calc((100% - (5px * 1)) / 2);
    font-size: 12px;
  }

  .p-parts-set-discount .set .set__normal-price {
    font-size: 14px;
  }

  .p-parts-set-discount .set .set__bundle-total-price {
    font-size: 16px;
  }
}