@charset "UTF-8";

:root {
  --p-all-model-gap: 1rem;
  --grid-gap-x: 0.5rem;
  --grid-gap-fluid: 0.5rem;
  
  --section-gap: 50px;
  --section-sub-gap: 20px;
  
  --color-l-gray:#f1f1f1;
  --color-gray:#ccc; 
  --color-d-gray:#484848;
  --color-l-blue:#e5f6fc;
  --color-m-blue:#003580;
  --color-d-blue:#001e60;
}

@media screen and (max-width:767px) {
  :root {
    --section-gap: 30px;
    --section-sub-gap: 10px;
  }
}

html {
  scroll-behavior: smooth;
}

.pc-all-section {
  padding: var(--section-gap) 0;
  width: 100%;
  text-align:center;
}
.pc-all-section.narrow {
  padding: calc(var(--section-gap) / 2) 0;
}

.pc-all-section-inner{
  margin:auto;
  width:calc(100% - 30px);
  max-width:1140px;
  text-align:left;
}

.pc-all-section .c-button {
  width:100%;
}
.pc-all-section img{
  margin:auto;
  width:100%;
  object-fit:contain;
}


.pc-all-section.color-l-gray{
  background:var(--color-l-gray);
}
.pc-all-section.color-gray{
  background:var(--color-gray);
}
.pc-all-section.color-d-gray{
  background:var(--color-d-gray);
  color:#fff;
}
.pc-all-section.color-l-blue{
  background:var(--color-l-blue);
}
.pc-all-section.color-d-blue{
  background:var(--color-d-blue);
  color:#fff;
}


/*-----------
　txt
-------------*/
.p-all-pc__main-title{
  font-weight:700;
  font-size:clamp(20px, 0.886rem + 1.82vw, 36px);
  text-align:left;
  margin-bottom:10px;
}
.p-all-pc__recommend-title{
  font-weight:700;
  font-size:clamp(16px, 0.682rem + 1.59vw, 30px);
  text-align:left;
  margin-bottom:10px;
}
.p-all-pc__title{
  font-weight:700;
  font-size:clamp(16px, 0.818rem + 0.91vw, 24px);
  text-align:left;
  margin-bottom:10px;
}
.p-all-pc__sub-title{
  font-weight:700;
  font-size:clamp(14px, 0.739rem + 0.68vw, 20px);
  text-align:left;
  margin-bottom:10px;
}
.marker{
  width:fit-content;
  background: linear-gradient(transparent 70%, #ff6 70%);
}

.hd-catch{
  position:relative;
  padding-left:1em;
  padding-right:1em;
  margin-bottom:10px;
  font-size:clamp(14px, 0.739rem + 0.68vw, 20px);
  font-weight:700;
  width:fit-content;
}
.hd-catch::before{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:2px;
  height:1em;
  transform: rotate(-15deg);
  background:var(--color-d-gray);
}
.hd-catch::after{
  content:'';
  position:absolute;
  bottom:0;
  right:0;
  width:2px;
  height:1em;
  transform: rotate(15deg);
  background:var(--color-d-gray);
}
.txt-lead{
  font-size: clamp(14px, 0.784rem + 0.45vw, 18px);
  text-align:left;
  margin-bottom:var(--section-sub-gap);
}


/*-----------
　スマホサイズ
-------------*/
@media screen and (min-width:428px) {
  .u-tb-hide{
    display:none;
  }
}
@media screen and (max-width:427px) {
  .u-sps-hide{
    display:none;
  }
}
/*----------------------------------------------------
　h1
----------------------------------------------------*/
.pc-all__title{
  position:relative;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #f6f6f6;
  border-bottom: 1px solid #ececec;
  background-color: #fff;
  text-align: center;
}

.pc-all__title h1{
  margin:auto;
  width:calc(100% - 30px);
  max-width:1140px;
  text-align:left;
  color: #484848;
  font-size: clamp(12px, 0.659rem + 0.45vw, 16px);
  font-weight: bold;
  letter-spacing: 0.12em;
}

/*----------------------------------------------------
　KV
----------------------------------------------------*/
.pc-all__kv{
  position:relative;
  width:100%;
  overflow: hidden;
  background:#fff;
  text-align:center;
}
.pc-all__kv .kv-title{
  position:relative;
  z-index:4;
  margin:auto;
  width:100%;
  max-width:1140px;
}

.pc-all__kv .kv-title img{
  width:100%;
  object-fit:contain;
}

.pc-all__kv .item {
  position: absolute;
  opacity: 0;
  bottom: 0;
  right: 0;
  width:auto;
  height:100%;
  animation : itmFade3-chg-itm-anim 15s infinite;  
}
.pc-all__kv .item img{
  width:auto !important;
  height:100%;
  object-fit:contain;
  aspect-ratio: 4 / 1;
}

/* 1つ目のアイテム */
.pc-all__kv .item_1 {
  animation-delay : 0s;  /* アニメーション(下記「@keyframes chg-itm-anim」)の開始を0秒遅らせる */
}
/* 2つ目のアイテム */
.pc-all__kv .item_2 {
  /**
   * アニメーションの進行(下記「@keyframes chg-itm-anim」)の開始を5秒遅らせる
   * (上記アニメーション全体15秒の1/3，1枚目のアニメーションが33%に到達(フェードアウト開始)した時に2枚目のアニメーション(フェードイン)開始)
  **/
  animation-delay : 5s;
}
/* 3つ目のアイテム */
.pc-all__kv .item_3 {
  /**
   * アニメーションの進行(下記「@keyframes chg-itm-anim」)の開始を10秒遅らせる
   * (上記アニメーション全体15秒の1/3，2枚目のアニメーションが33%に到達(フェードアウト開始)した時に3枚目のアニメーション(フェードイン)開始)
  **/
  animation-delay : 10s;
}

/* アニメーションの進行 */
@keyframes itmFade3-chg-itm-anim {
  0% {
    opacity : 0;
  }
  10%{
    opacity : 1;
  }
  33%{
    opacity : 1;
  }
  /**
   * 画像が3枚のため1枚当たり33%
   * 1枚目->2枚目(33%・不透明から50%・透明)にフェードして切り替える
   * 50%到達(全体アニメーション時間の半分)で前の画像が見えなくなる
   */
  50%{
    opacity : 0;
  }
  100% {
    opacity : 0;
  }
}


@media screen and (max-width:767px) {
  .pc-all__kv .item {
    width:100%;
    height:auto;
  }
  .pc-all__kv .item img{
    width:100% !important;
    height:auto;
    aspect-ratio: 2 / 1;
  }
}

/*----------------------------------------------------
　ブランドから選ぶ
----------------------------------------------------*/

.pc-all-section.select-from-brand img.img-small{
  width:50%;
}
.select-from-brand__list-top{
  width:100%;
  display: grid;
  margin-top:var(--section-sub-gap);
  gap: var(--section-sub-gap);
  grid-template-columns: repeat(3,1fr);
}
.select-from-brand__list-top img{
  width:70%;
}

.select-from-brand__list-top > li a{
  display:block;
  width:100%;
  height:100%;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap:10px;
  padding: 10px 0;
}
.select-from-brand__list-top > li h3{
  font-weight:700;
  font-size:clamp(12px, 0.523rem + 1.14vw, 22px);
  text-align:center;
  color:#484848;
}
.select-from-brand__list-top > li p{
  margin-top:5px;
  color:#484848;
  font-size:clamp(10px, 0.489rem + 0.68vw, 16px);
  padding: 0 10px;
  text-align:center;
}

.select-from-brand__list-btm{
  width:100%;
  display: grid;
  margin-top:var(--section-sub-gap);
  gap: var(--section-sub-gap);
  grid-template-columns: repeat(3,1fr);
}
.select-from-brand__list-btm img{
  width:50%;
}
.select-from-brand__list-btm > li h3{
  font-weight:700;
  font-size:clamp(12px, 0.614rem + 0.68vw, 18px);
  text-align:center;
  color:#fff;
}


.select-from-brand__list-btm > li:nth-child(2) .c-button--primary-blue{
  background:var(--color-m-blue);
}
.select-from-brand__list-btm > li:nth-child(3) .c-button--primary-blue{
  background:var(--color-d-blue);
}


@media screen and (max-width: 767px) {
  .select-from-brand__list-btm img{
    width:80%;
    margin-right: 10%;
  }
  .select-from-brand__list-top .c-button::after,
.select-from-brand__list-btm .c-button::after{
    top:auto;
    bottom:5px;
    right:5px;
  }
}

/*----------------------------------------------------
　価格・サイズ・スペックから選ぶ
----------------------------------------------------*/
.select-from-spec__list-top{
  width:100%;
  display: grid;
  margin-top:var(--section-sub-gap);
  gap: var(--section-sub-gap);
  grid-template-columns: repeat(2,1fr);
}
.select-from-spec__list-top > li details{
  position:relative;
}
.select-from-spec__list-top > li summary{
  display:block;
  width:100%;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  color: #001e60;
  letter-spacing:0.1em;
}

/*-----------
　プルダウン
-------------*/
.desktop-all-select-from .accordion-button {
  width: 100%;
}
.select-from-spec__list-top details ul {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 5;
  width: 100%;
  transition: all 0.3s;
  opacity: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  background:#fff;
}
.select-from-spec__list-top .c-button--primary-white {
  width: 100%;
  font-size: clamp(14px, 0.739rem + 0.68vw, 20px);
  border-color: #a3a3a3;
  border-radius: 8px;
  display:flex;
}
.select-from-spec__list-top details[open] ul {
  opacity: 1;
}
.select-from-spec__list-top ul li .c-button--primary-white {
  width: 100%;
  color: #001e60;
  font-size: clamp(14px, 0.739rem + 0.68vw, 20px);
  border-radius: 0;
  display:flex;
  justify-content: flex-start;
  padding-left: 1em;
  font-weight: 500;
}
.select-from-spec__list-top details[open] ul li .c-button--primary-white{
  border: none;
  border-radius: 0;
}
.select-from-spec__list-top details[open] ul li:nth-child(even) .c-button--primary-white {
  background: #f6f6f6;
}
.select-from-spec__list-top .c-button--primary-white::after{
  border-color:#a3a3a3;
}
.select-from-spec__list-top details summary.c-button--primary-white::after{
  transform: rotate(45deg);
  transition: 0.3s all;
}
.select-from-spec__list-top details[open] summary.c-button--primary-white::after{
  transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .select-from-spec__list-top .c-button--primary-white::after{
    right: 10px;
  }
}

/*-----------
　絞り込み検索
-------------*/
.select-from-spec__list--btm{
  width:100%;
  margin-top:var(--section-sub-gap);
}

.select-from-spec__list--btm .c-button--primary-blue {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  font-size: clamp(14px, 0.739rem + 0.68vw, 20px);
  line-height: 1;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
  letter-spacing:0.1em;
  font-weight: 700;
  border-radius: 8px;
}

.select-from-spec__list--btm details .select-from-detail {
  z-index: 5;
  width: 100%;
  padding:5px;
  background:#fff;
  transition: all 0.3s;
  opacity: 0;
}
.select-from-spec__list--btm details[open] .select-from-detail {
  opacity: 1;
}

.select-from-spec__list--btm details summary.c-button--primary-blue::after{
  transform: rotate(45deg);
  transition: 0.3s all;
}
.select-from-spec__list--btm details[open] summary.c-button--primary-blue::after{
  transform: rotate(-135deg);
}


@media screen and (max-width: 767px) {
  .select-from-spec__list--btm .c-button--primary-blue::after{
    right: 15px;
  }
}

/*----------------------------------------------------
おすすめから選ぶ
----------------------------------------------------*/

.select-from-reccomend__list{
  width:100%;
  display: grid;
  margin-top:var(--section-sub-gap);
  gap: var(--section-sub-gap);
  grid-template-columns: repeat(3,1fr);
}
.select-from-reccomend__list > li a{
  display:block;
  width:100%;
  height:100%;
  padding:15px 10px;
  text-align:center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.select-from-reccomend__list > li p{
  margin-bottom:5px;
  font-size:clamp(10px, 0.489rem + 0.68vw, 16px);
}
.select-from-reccomend__list > li h3{
  font-weight:700;
  font-size:clamp(12px, 0.523rem + 1.14vw, 22px);
}

@media screen and (max-width: 767px) {
  .select-from-reccomend__list .c-button::after{
    right:10px;
  }
  .select-from-reccomend__list > li a{
    padding:10px;
  }
}


/*----------------------------------------------------
　おすすめ・ランキング
----------------------------------------------------*/
.reccomend-wrapper{
  width:100%;
  margin-top: var(--section-sub-gap);
}

/*------モデルブロック--*/
.pc-reccomend__card-list > ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4,1fr);
}

.pc-reccomend__card-list li.c-panel-arrow {
  border: none;
}
.pc-reccomend__card-list li.c-panel-arrow::after {
  background-color: #ececec;
  border-radius: 2rem;
  right:7px;
  bottom:7px;
}
.pc-reccomend__card-list li.c-panel-arrow::before {
   right: 14px;
   bottom: 13px;
   border-color: #a3a3a3;
}

.pc-reccomend__card{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  background:#fff;
  border-radius: 15px;
  padding:20px;
}
.pc-reccomend__card:hover {
  cursor: pointer;
  outline: 1px solid rgba(0, 162, 230, 0.5);
  filter: drop-shadow(5px 5px 5px rgba(0, 162, 230, 0.1));
}


/*ランキング*/
.pc-reccomend__card-list.ranking-list .pc-reccomend__card__top {
  position: relative;
}
.pc-reccomend__card-list.ranking-list .pc-reccomend__card__top::after {
  content: "";
  width: 34px;
  height: 30px;
  display: block;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index:+1;
}
.pc-reccomend__card-list.ranking-list > ul > li:nth-child(1) .pc-reccomend__card__top::after {
  background: url(../../gaming-pc/images/gamingnote-pc/icon-pc-rank-1.svg) no-repeat 50% 50% / contain;
}
.pc-reccomend__card-list.ranking-list > ul > li:nth-child(2) .pc-reccomend__card__top::after {
  background: url(../../gaming-pc/images/gamingnote-pc/icon-pc-rank-2.svg) no-repeat 50% 50% / contain;
}
.pc-reccomend__card-list.ranking-list > ul > li:nth-child(3) .pc-reccomend__card__top::after {
  background: url(../../gaming-pc/images/gamingnote-pc/icon-pc-rank-3.svg) no-repeat 50% 50% / contain;
}
.pc-reccomend__card-list.ranking-list > ul > li:nth-child(4) .pc-reccomend__card__top::after {
  background: url(../../gaming-pc/images/gamingnote-pc/icon-pc-rank-4.svg) no-repeat 50% 50% / contain;
}

.pc-reccomend__card__name {
  margin-bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: clamp(13px, 0.744rem + 0.34vw, 16px);
  line-height: 1.4;
  font-weight:700;
}

.pc-reccomend__card__img {
  position:relative;
  width: 100%;
  margin-bottom: 10px;
  text-align:center;
}
.pc-reccomend__card__img>.card__img-left {
  position: relative;
  top: 10px;
  left: 0;
  z-index: 2;
  width: 65%;
}
.pc-reccomend__card__img>.card__img-right {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
  width: 65%;
}
.pc-reccomend__card__img>.card__img {
  width: 65%;
  margin:auto;
}

.pc-reccomend__card__spec {
  display: block;
  margin-bottom: 0.5rem;
}
.pc-reccomend__card__spec > li {
  width: auto;
  display: inline-block;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-size: 13px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
.pc-reccomend__card__spec > li+li::before {
  content: "/";
  padding-right:0.2em;
}
.pc-reccomend__card__review img{
  width:auto !important;
}
.pc-reccomend__card__review {
  font-size: 13px;
}
.review-in-recommend__link {
  justify-content: flex-start;
}
.review-in-recommend__star{
  height: 1em;
  vertical-align: baseline;
  margin-right:0.5em;
}

.pc-reccomend__card__spec {
  margin-top: auto;
  padding-top: 0.5rem;
}

.pc-reccomend__card__stkname {
  padding: 5px 12px 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 1em;
  color: #e43344;
  border: 1px solid #e43344;
  display: inline-block;
}

.pc-reccomend__card__price {
  margin-top: 10px;
  font-size: clamp(18px, 1.034rem + 0.45vw, 22px);
  font-weight: 700;
}
.pc-reccomend__card__price small {
  font-size: clamp(10px, 0.58rem + 0.23vw, 12px);
  font-weight: 400;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .reccomend-wrapper{
    width:100%;
    overflow-x: scroll;
  }
  .pc-reccomend__card-list > ul {
    grid-template-columns: repeat(4,250px);
  }
  .pc-reccomend__card-list li.c-panel-arrow::before {
    right: 13px;
    bottom: 12px;
  }
  
  .pc-reccomend__card{
    border-radius: 6px;
    padding:15px 10px;
  }
  .pc-reccomend__card-list.ranking-list .pc-reccomend__card__top::after {
    width: 30px;
    height: 26px;
    top:-6px;
    right:-2px;
  }
  .pc-reccomend__card__name {
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
    padding-right: 30px;
    line-height: 1.2;
  }
  .pc-reccomend__icon small {
    font-size: 6px;
  }
  .pc-reccomend__card__review {
    font-size: 11px;
  }
  .pc-reccomend__card__spec > li {
    font-size: 11px;
  }
  .pc-reccomend__card__stkname {
    padding: 3px 12px 2px 12px;
    font-size: 12px;
  }
}

/*ボタンカラー*/
.pc-reccomend__card-list .c-button {
  width:100%;
  height: 40px;
  margin-top:10px;
}
.pc-reccomend__card-list .c-button--metal {
  background:#606060;
  color:#fff;
}
.pc-reccomend__card-list .c-button--black {
  background:#000;
  color:#fff;
}
.pc-reccomend__card-list .c-button--white{
  background:#fff;
  color:#484848;
  border: 1px solid #484848;
}
.pc-reccomend__card-list .c-button--metal::after,
.pc-reccomend__card-list .c-button--black::after {
  border-color:#fff;
}
.pc-reccomend__card-list .c-button--white::after {
  border-color:#484848;
}
.pc-reccomend__card-list .c-button--metal::before,
.pc-reccomend__card-list .c-button--black::before {
  background-color: #fff;
  opacity: .1;
}
.pc-reccomend__card-list .c-button--white::before {
  background-color: #484848;
  opacity: .1;
}

/*カテゴリーわけ*/
.p-all-pc__recommend-category{
  margin-top:var(--section-gap);
}

.p-all-pc__recommend-category +.p-all-pc__recommend-category{
  margin-top:calc(var(--section-gap)*2);
}

/*もっと見るボタン*/
.p-all-pc__recommend-category .more-link{
  margin:30px auto 0 auto;
  width:100%;
  max-width:680px;
  line-height:1.2;
}
.p-all-pc__recommend-category .more-link .c-button--primary-white{
  width:100%;
}

@media screen and (max-width: 767px) {
  .p-all-pc__recommend-category .more-link .c-button--primary-white{
    font-size:3.6vw;
  }
}

/*クリエイターカテゴリタイトル*/
.p-creator-pc__recommend-item-title{
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  line-height:1.6;
  margin-bottom:10px;
}
.p-creator-pc__recommend-item-title::before{
  content: "";
  height: 100%;
  width:2px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-creator-pc__recommend-item-title.p-creator-pc__recommend-item-title--adobe::before{
  background: #ed5e8d;
}
.p-creator-pc__recommend-item-title.p-creator-pc__recommend-item-title--illustration::before{
  background: #00a7b0;
}
.p-creator-pc__recommend-item-title.p-creator-pc__recommend-item-title--movie::before{
  background: #565a8f;
}
.p-creator-pc__recommend-item-title.p-creator-pc__recommend-item-title--sound::before{
  background: #aa5ce3;
}
@media screen and (max-width: 767px) {
 .p-creator-pc__recommend-item-title{
    padding-left: 2.13vw;
    font-size: 3.2vw;
  }
}

/*--------------------------------------------
バナースライド共通（キャンペーン・お役立ち情報）
---------------------------------------------*/
.p-all-pc__insize-slide{
  width: 100%;
  max-width: 1140px;
  box-sizing: border-box;
  position: relative;
  margin:auto;
}
.p-all-pc__insize-slide-hider{
  overflow: hidden;
}
.p-all-pc__insize-slide img{
  max-width: 100%;
}
.p-all-pc__insize-slide .swiper-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.p-all-pc__insize-slide-button{
  position: absolute;
  top: 50%;
  width: 50px;
  height: 80px;
  translate: 0 -50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-all-pc__insize-slide-button::after{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-top: 3px solid #484848;
  border-left: 3px solid #484848;
}
.p-all-pc__insize-slide-button--prev{  
  left: -80px;
  z-index: 1;
}
.p-all-pc__insize-slide-button--next{
  right: -80px;
  z-index: 1;
}
.p-all-pc__insize-slide-button--prev::after{
  rotate: -45deg;
}
.p-all-pc__insize-slide-button--next::after{
  rotate: 135deg;
}
.p-all-pc__insize-slide-button.swiper-button-disabled{
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}
.p-all-pc__insize-slide-dot {
  margin-top: 15px;
  display: flex;
  gap: 6px;
}
.p-all-pc__insize-slide-dot .swiper-pagination-bullet {
  border-radius: unset;
  width: 100%;
  height: 4px;
  background: #000;
  flex: auto;
}
.p-all-pc__insize-slide-dot .swiper-pagination-bullet-active {
  background: #00a2e6;
}
@media screen and (max-width:1440px){
  .p-all-pc__insize-slide{
    padding: 0 50px;
  }
  .p-all-pc__insize-slide-button--prev{  
    left: 0px;
  }
  .p-all-pc__insize-slide-button--next{
    right: 0px;
  }
}
@media screen and (max-width:767px){
  .p-all-pc__insize-slide{
    padding: 0;
  }
  .p-all-pc__insize-slide-button--prev{  
    display: none;
  }
  .p-all-pc__insize-slide-button--next{
    display: none;
  }
}
@media screen and (max-width:428px){
  /*スライド機能をオフにして単純にスクロールさせるためのcss ブレイクポイントの数値はjsと連動させること*/
  .p-all-pc__insize-slide-hider{
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .p-all-pc__insize-slide .swiper-container .swiper-wrapper{
    gap: 3vw;
  }
  .p-all-pc__insize-slide .swiper-container .swiper-wrapper .swiper-slide {
    width: 40vw;
  }
  .p-all-pc__insize-slide-hider::-webkit-scrollbar{
    background: rgba(0, 0, 0, .2);
    width: 2px;
    height: 2px;
  }
  .p-all-pc__insize-slide-hider::-webkit-scrollbar-thumb {
    background-color: #00a2e6;
  }
}

/*背景色が濃い時の矢印*/
.pc-all-section.color-d-gray .p-all-pc__insize-slide-button::after,
.pc-all-section.color-d-blue .p-all-pc__insize-slide-button::after{
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

/*----------------------------------------------------
　お役立ち情報
----------------------------------------------------*/
.tips-block + .tips-block{
  margin-top:var(--section-gap) ;
}

.tips-block .p-all-pc__insize-slide-button.swiper-button-disabled{
  opacity: 0;
}

/*----------------------------------------------------
　こんな方におすすめ！・　さらに、こんな方にも！
----------------------------------------------------*/
.block-tips-detail{
  padding:calc(var(--section-sub-gap) * 2);
  background:#fff;
  width:100%;
  border-radius:5px;
  color: var(--color-d-gray);
}

.p-all-pc__frame-title{
    font-size: clamp(22px, 1.284rem + 0.45vw, 26px);
    font-weight: 700;
    border-top: 2px solid #00a2e6;
    padding: 20px 40px 1px 40px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    width: fit-content;
    color: var(--color-d-gray);
    clip-path: polygon(5% 0, 95% 0%, 100% 100%, 0 100%);
    margin: 0 0 -1px 20px;
    margin-bottom: -1px;
}


@media screen and (max-width:767px){
  .p-all-pc__frame-title{
    margin-left: auto;
    text-align: center;
    padding: 10px 30px 1px 30px;
    margin: 0 auto -1px auto;
  }
}


/*こんな方におすすめ！*/
.block-tips-detail dl + dl{
  margin-top:var(--section-sub-gap);
}
.block-tips-detail dl dt{
  position:relative;
  margin-bottom:5px;
  font-weight:700;
  letter-spacing:0.1em;
  color:#00a2e6;
  padding-left:1.5em;
  line-height:1.4;
  font-size:18px;
}
.block-tips-detail dl dt::before{
  content:'◆';
  position:absolute;
  left:0;
  top:0;
}
.block-tips-detail dl dd{
  padding-left:1.5em;
  line-height:1.4;
}

/*さらに、こんな方にも！*/
.block-for-more{
  width:100%;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.block-for-more img{
  width:20%;
}
.block-for-more ul{
  width:75%;
  list-style:disc;
  margin-left:1em;
  font-size:18px;
}
.block-for-more li + li{
  margin-top:20px;
}

@media screen and (max-width:767px){
  .block-for-more img{
    display:none;
  }
  .block-for-more ul{
    width:100%;
  }
}

/*----------------------------------------------------
　FAQ
----------------------------------------------------*/

.p-top-faq__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.p-top-faq__list .p-top-faq__list-item {
  width: calc((100% - 20px) / 2);
  height: 100%;
  border: 1px solid #ececec;
  box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, .1);
  transition: transform .2s;
  position: relative;
  background: #fff;
}
.p-top-faq__list .p-top-faq__list-item details summary {
  cursor: pointer;
  font-size: clamp(14px, 0.784rem + 0.45vw, 18px);
}
.p-top-faq__list .p-top-faq__list-item details {
  padding: 20px 15px;
  line-height: 1.5;
  font-size: 16px;
}
.p-top-faq__list .p-top-faq__list-item-body {
  margin-top: 20px;
}
.p-top-faq__list .p-top-faq__list-item-body .qanda-link {
  color: #00a2e6;
  text-decoration: underline;
}
.p-top-faq__list .p-top-faq__list-item-body .qanda-link:hover {
  color: #80d1f3;
}
@media screen and (max-width: 767px) {
  .p-top-faq__list {
    width: 100%;
    margin: 0 auto;
  }
  .p-top-faq__list .p-top-faq__list-item {
    width: 100%;
  }
  .p-top-faq__list .p-top-faq__list-item details {
    padding: 20px 15px;
    line-height: 1.5;
    font-size: 14px;
  }
}


/*----------------------------------------------------
　スタッフレビュー上書き
----------------------------------------------------*/
#staff-review-content .c-headline__h2+p {
    text-align: left !important;
    margin: 1em auto !important;
    max-width: 1140px !important;
}
#staff-review-content .c-headline__h2{
  margin:auto !important;
  text-align:left !important;
  transform: skewX(0) !important;
  max-width: 1140px !important;
}
.staff-reviews-list-wrapper,
.staff-reviews-products-list-wrapper {
  background: #fff;
}
.staff-review-itemname {
  margin-bottom: 1rem;
}

.pc-btm-area__inner{
  margin:auto;
  width:100%;
  max-width:1140px;
}

.pc-btm-area__title{
  margin:auto;
  text-align:left;
}
.pc-btm-area__title .l-title{
  display:none;
}
.staff-review .pc-btm-area__title h2{
  font-weight: 700;
  font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
  margin-bottom: 10px;
}
.staff-review .pc-btm-area__title p{
  font-size: clamp(14px, 0.784rem + 0.45vw, 18px);
  margin-bottom: var(--section-sub-gap);
}
.staff-reviews-list-wrapper,
.staff-reviews-products-list-wrapper {
  background: #fff;
}
.staff-review-itemname {
  margin-bottom: 1rem;
}

.staff-review-reviewer-image {
  width: 30% !important;
}

/*----------------------------------------------------
　受賞履歴
----------------------------------------------------*/
.awards_received_wrap h2 {
  font-weight: 700;
  font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
  text-align: left;
  margin-bottom: 10px;
}

/*----------------------------------------------------
　選び方のポイント
----------------------------------------------------*/
.desktop-all__select-point{
  overflow: hidden;
}
.desktop-all__select-point-slider{
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.desktop-all__select-point-slider .swiper-container{
  width: 100%;
  margin: 0 auto 80px;
  position: relative;
  overflow: visible;
}

.desktop-all__select-point-slider .swiper-slide{
  width: 500px;
  height: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 5px #eee);
  background: linear-gradient(to right, #e0e0e0 0%, #efefef 100%);
  color: #333;
}
.desktop-all__select-point-slider-thumb{
  width: calc(100% + 30px + 30px);
  margin: -30px;
  margin-bottom: 30px;
  border-radius: 16px 16px 0 0;
}
.desktop-all__select-point-slider-title{
  font-size: 20px;
  font-weight: 700;

  line-height: 1.6;
}
.desktop-all__select-point-slider-body{
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.7;
}
.desktop-all__select-point-slider-link {
  margin-top: auto;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.desktop-all__select-point-slider-link .c-button{
  height: 40px;
  border-radius: 40px;
}
.desktop-all__select-point-slider-link .c-button--primary-blue {
  background-color: #666;
  min-width: 270px;
  width: 340px;
}
.desktop-all__select-point-slider-link .c-button--primary-blue::before {
  background-color: #999
}

.desktop-all__select-point-slider-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;
  cursor: pointer;
  z-index: 1;
  backdrop-filter: blur(5px);
  position: absolute;
  bottom: -80px;
}
.desktop-all__select-point-slider-button::after {
  content: '';
  width: 30%;
  height: 30%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-12.5%, 12.5%);
}
.desktop-all__select-point-slider-button--next {
  right: 0;
  transform: rotate(45deg);
}
.desktop-all__select-point-slider-button--prev {
  right: 80px;
  transform: rotate(-135deg);
}
.desktop-all__select-point-slider-button.swiper-button-disabled {
  background: rgba(220, 220, 220, 0.5);
  cursor: default;
}
@media screen and (max-width:767px){
  .desktop-all__select-point-slider{
     width: calc(100% - 30px); 
  }
  .desktop-all__select-point-slider .swiper-slide{
    padding: 20px;
    gap: 20px;
    width: 297px;
  }
  .desktop-all__select-point-slider-thumb{
    width: calc(100% + 20px + 20px);
    margin: -20px;
    margin-bottom: 20px;
  }
  .desktop-all__select-point-slider-title{
    font-size: 4.27vw;
  }
  .desktop-all__select-point-slider-body{
    font-size: 3.2vw;
  }
  .desktop-all__select-point-slider-link{
    gap: 5px;
  }
  .desktop-all__select-point-slider-link .c-button{
    padding-right: 10px;
    font-size: 3.2vw;
    height: 8.53vw;
  }
  .desktop-all__select-point-slider-link .c-button::after{
    right: 11.31px;
  }
}

/*----------------------------------------------------
　Pickupキーワード
----------------------------------------------------*/
.pickup-keyword{
  border-top:1px solid #f6f6f6;
}
.p-all-model__pickup-keyword {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  padding-left: 200px;
  position: relative;
  gap: 1rem;
  font-size:14px;
}
.p-all-model__pickup-keyword::before {
  margin: 0;
  padding: 0.5em 2em 0.5em 1em;
  content: "Pickupキーワード";
  background: #00a2e6;
  display: block;
  color: #fff;
  clip-path: polygon(calc(100% - 1em) 0, 100% 50%, calc(100% - 1em) 100%, 0 100%, 0 0);
  position: absolute;
  top: -0.5em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-all-model__pickup-keyword {
    padding: 0;
  }
  .p-all-model__pickup-keyword::before {
    position: relative;
    width:100%;
  }
}
