@charset "utf-8";

html {
scroll-behavior: smooth;
}

:root{
  --gap-s:clamp(10px, 0.341rem + 1.21vw, 20px);
  --gap-ms:clamp(15px, 0.511rem + 1.82vw, 30px);
  --gap-m:clamp(20px, 0.682rem + 2.42vw, 40px);
  --gap-l:clamp(40px, 1.364rem + 4.85vw, 80px);

  --color-blue:#004da1;
  --color-pale-blue:#e2f5fb;
  --color-light-blue:#00a2e6;
  --color-gray:#f6f6f6;
  --color-red:#e43344;

  --color-delivery:#e97132;
  --color-pale-delivery:#f6c6ad;
  --color-dark-delivery:#b65622;
  --color-shop:#37a1d1;
  --color-pale-shop:#c1e5f5;
  --color-dark-shop:#24789f;

  --filter-white:brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(217deg) brightness(104%) contrast(101%);
  --filter-dark-delivery:brightness(0) saturate(100%) invert(33%) sepia(92%) saturate(524%) hue-rotate(340deg) brightness(99%) contrast(90%);
  --filter-dark-shop:brightness(0) saturate(100%) invert(36%) sepia(31%) saturate(1166%) hue-rotate(154deg) brightness(101%) contrast(83%);
}

/*-------------------------------------
ページトップ
---------------------------------------*/
.rollOver{
  transition: all 0.3s ease;
}
.rollOver:hover{
  transform: translateY(-5px);
}

#pagetop {
  opacity: 1;
  position: fixed;
  bottom: 30px;
  right: 50px;
  transition: opacity .5s;
  z-index: 10;
}

#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: 1139px) {
  #pagetop {
    bottom: 15px;
    right: 10px;
    display:block !important;
  }
}

@media screen and (max-width: 767px) {
  #pagetop {
    right: 10px;
    bottom: 10px;
  }
}

/*------------------------------------------
ページ基本設定
-------------------------------------------*/
.used-buy-top{
  position:relative;
  width:100%;
  text-align:center;
  font-size:clamp(14px, 0.818rem + 0.24vw, 16px);
}

.used-buy-top img{
  width:100%;
  object-fit: contain;
}

.used-buy-top .c-button{
  width:100%;
  letter-spacing:0.02em;
}

.used-buy-top .c-button > span{
  line-height:1.1;
  letter-spacing:0.02em;
}

.used-buy-top p{
  line-height:1.6;
}

.used-buy-top p.note{
  font-size:clamp(12px, 0.693rem + 0.24vw, 14px);
}

.used-buy-top p.caution{
  font-weight:500;
  color:var(--color-red);
}

.used-buy-top .c-link--blue{
  cursor: pointer;
}

/*------------------------------------------
共通レイアウト
-------------------------------------------*/

/*セクション関連
-------------------*/
.cont-section{
  position:relative;
  width:100%;
  padding:var(--gap-l) 0;
  overflow: hidden;
}

.contents-inner{
  width: calc(100% - 30px);
  max-width: 1140px;
  margin: auto;
  text-align:left;
}

.bkg-gray{
  background:var(--color-gray);
}

/*テキスト関連
-------------------*/
.sec-ttl{
  font-size: clamp(18px, 0.841rem + 1.21vw, 28px);
  font-weight: 900;
  font-style: italic;
  margin-bottom:var(--gap-m);
  line-height:1.2;
  text-align:center;
}

.lead-txt{
  font-size:clamp(14px, 0.761rem + 0.48vw, 18px);
  margin-bottom:var(--gap-m);
  text-align:center;
}

.sec-ttl + .lead-txt{
  margin-top:calc((var(--gap-m) / 2) * -1);
}

@media screen and (max-width: 767px) {
  .lead-txt{
    text-align:left;
  }
}

/*ドットリスト
-------------------*/
.dot-list{
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.5em;
  padding-left: 1.5em;
  line-height:1.4;
  margin-left:5px;
  margin-bottom:10px;
}

.dot-list li + li{
  margin-top:10px;
}

/*番号リスト
-------------------*/
.num-list{
  list-style-type: decimal;
  list-style-position: inside;
  text-indent: -2em;
  padding-left: 2em;
  line-height:1.4;
  margin-left:5px;
  margin-bottom:10px;
}

.num-list li + li{
  margin-top:10px;
}

/*申し込みボタン
-------------------*/
.c-button--apply{
  background:#f60;
  border-color:#f60;
  color:#fff;
}
.c-button--apply::after{
  border-color:#fff;
}
.c-button--apply::before{
  background:rgba(255,255,255,0.4);
}

/*------------------------------------------
ページ下部固定ナビ
cont-btm-fix
-------------------------------------------*/
.cont-btm-fix{
  width:100%;
  position:fixed;
  bottom:0;
  left:0;
  z-index:10;
  background:rgba(255,255,255,0.9);
  padding:10px 0;
  transition: all 0.3s ease-in-out;
}

.btm-navi-list{
  display:flex;
  gap:var(--gap-m);
}

.btm-navi-list li{
  flex:1;
}

@media screen and (max-width: 1139px) {
  .btm-navi-list{
    padding-right:60px;
  }
}

@media screen and (max-width: 767px) {
  .btm-navi-list{
    gap:10px;
  }
  .btm-navi-list .c-button{
    height: 34px;
    font-size: 12px;
    padding:0 20px 0 10px;
  }
  .btm-navi-list .c-button::after{
    right:15px;
  }
}

.cont-btm-fix.is-hidden {
  opacity: 0;
  z-index: -1;
}

/*------------------------------------------
KV
cont-kv
-------------------------------------------*/
.cont-kv{
  width: 100%;
  padding: var(--gap-ms) 0px;
  background: #fff;
  color: var(--color-blue);
  position: relative;
}

.kv-wrapper{
  width:100%;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap:var(--gap-s);
}

.kv-img{
  width:50%;
  max-width:500px;
  margin:0 auto;
}

.kv-text {
  flex:1;
}

.kv-text h1 {
  font-size: clamp(30px, 1.278rem + 2.55vw, 51px);
  font-weight: 900;
  line-height: 1;
}
.kv-text h1 span {
  display: inline-block;
  font-size: clamp(14px, 0.761rem + 0.48vw, 18px);
  letter-spacing: 0.03em;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
}

@media screen and (max-width: 767px) {
  .kv-wrapper{
    flex-direction: column;
  }
  .kv-text {
    width:100%;
  }
  .kv-img{
    width:90%;
    margin:auto;
  }
}

/*------------------------------------------
ドスパラの中古買取が選ばれる３つの理由
cont-advantage
-------------------------------------------*/
.cont-advantage{
  width: 100%;
  padding: var(--gap-ms) 0px;
  background: #fff;
  position: relative;
}

.advantage-list{
  display:flex;
  width: 100%;
}

.advantage-list li{
  flex:1;
  border-right:1px solid #ccc;
  padding:0 var(--gap-ms);
  display:flex;
  gap:20px;
  align-items:center;
}
.advantage-list li:first-child{
  border-left:1px solid #ccc;
}

.advantage-list li .advantage-icon{
  width:50px;
}

.advantage-list li .advantage-txt{
  flex:1;
}

.advantage-list li .advantage-txt h3{
  font-size:clamp(18px, 0.955rem + 0.73vw, 24px);
  font-weight:900;
  color:var(--color-blue);
  margin-bottom:0.5em;
}

@media screen and (max-width: 767px) {
  .advantage-list{
    flex-direction: column;
  }
  .advantage-list li:first-child,
  .advantage-list li{
    border:none;
    padding:0;
  }
  .advantage-list li + li{
    border-top:1px solid #ccc;
    margin-top:var(--gap-ms);
    padding-top:var(--gap-ms);
  }
}

/*------------------------------------------
ページ内ナビ
cont-navi
-------------------------------------------*/
.navi-list{
  display:grid;
  gap:var(--gap-s);
  grid-template-columns: repeat(4,1fr);
}

.navi-list .c-button{
  padding-right:15px;
}

.navi-list .c-button::after{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 15px;
}

@media screen and (max-width: 767px) {
  .navi-list{
    grid-template-columns: repeat(2,1fr);
  }
}

/*------------------------------------------
買取価格を調べる
cont-check
-------------------------------------------*/

/*買取対象商品について
-------------------*/
.about-items{
  text-align:center;
  margin-bottom:var(--gap-s);
}

.about-items span {
  position:relative;
  padding-left:1.5em;
}

.about-items span::before {
  position:absolute;
  content:'';
  top:0.3em;
  left:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath fill='%2300a1e8' d='M80 0C35.8 0 0 35.8 0 80s35.8 80 80 80 80-35.8 80-80S124.2 0 80 0zm12.5 135h-25V70h25v65zM80 55c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15z'/%3E%3C/svg%3E")
    no-repeat left center / cover;
  width:1em;
  height:1em;
}

.used-buy-top .about-items img{
  width:1em;
}


/*------------------------------------------
買取価格を検索
cont-sub-section
-------------------------------------------*/

.cont-sub-section{
  border-radius:var(--gap-s);
  padding:var(--gap-m);
  text-align:center;
}

.p-used-buy-search {
  display: flex;
  margin:auto;
  width:100%;
  max-width: 800px;
  font-size: clamp(14px, 0.784rem + 0.45vw, 18px);
  border: 1px solid #999;
  background: #fff;
  margin-bottom:var(--gap-s);
}

.p-used-buy-search__input {
    flex: 1 1 auto;
}
.p-used-buy-search__input input{
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 11px;
  text-align: left;
}
.p-used-buy-search::before {
  margin: 0;
  padding: 0.8em;
  content: "買取価格を検索";
  background: #999;
  display: inline-block;
  color: #fff;
  font-size: clamp(12px, 0.659rem + 0.45vw, 16px);
}

.p-used-buy-search__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  flex: 0 0 auto;
  padding-left: 11px;
  padding-right: 11px;
}

@media screen and (max-width: 767px) {
  .p-used-buy-search::before {
    padding: 0.5em;
    content: "買取価格\Aを検索";
    white-space: pre-wrap;
  }
}

/*------------------------------------------
Pickupキーワード
pickup-keyword
-------------------------------------------*/

.pickup-keyword {
  margin-top:var(--gap-s);
  display: flex;
  gap: 0.5em 1em;
  justify-content: center;
  flex-wrap:wrap;
}

.pickup-keyword::before {
  margin: 0;
  padding: 0.5em 1em 0.5em 0.5em;
  content: "Pickupキーワード";
  background: #00a2e6;
  display: inline-block;
  color: #fff;
  clip-path: polygon(calc(100% - 1rem) 0, 100% 50%, calc(100% - 1rem) 100%, 0 100%, 0 0);
}

.pickup-keyword a{
  padding: 0.5em 0;
}

@media screen and (max-width: 767px) {
  .pickup-keyword {
    justify-content: flex-start;
  }
}

/*------------------------------------------
カテゴリ検索
-------------------------------------------*/
.cont-sub-section + section{
  margin-top:var(--gap-m);
}

.category-list{
  width:100%;
  display:grid;
  gap:var(--gap-s);
  grid-template-columns: repeat(4,1fr);
  text-align:center;
}

.category-list li a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #a3a3a3;
  background: #fff;
  padding: clamp(10px, 0.341rem + 1.21vw, 20px);
  border-radius: 2px;
}

.category-list li a:hover {
  border: 1px solid var(--color-light-blue);
  filter: drop-shadow(5px 5px 5px rgba(0, 162, 230, 0.1));
}

.used-buy-top .category-list li a img{
  width:50%;
  margin:0 auto;
}

.category-list li a p{
  margin-top:10px;
  font-weight: 700;
  font-size: clamp(14px, 0.761rem + 0.48vw, 18px);
}

@media screen and (max-width: 1280px) {
  .category-list{
    grid-template-columns: repeat(3,1fr);
  } 
}

@media screen and (max-width: 767px) {
  .category-list{
    grid-template-columns: repeat(2,1fr);
  } 
}

/*------------------------------------------
キャンペーン
sec-campaign
-------------------------------------------*/
.sec-campaign section + section{
  margin-top:var(--gap-m);
}

.sec-campaign section + section a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-name: hover-flash;
  animation-duration: 1s;
  opacity: 1;
}

/*------------------------------------------
選べる買取方法
sec-select
-------------------------------------------*/
.table-wrap{
  width:100%;
}

.select-sell{
  width:100%;
  table-layout: fixed; 
}

.select-sell + .select-sell{
  margin-top:10px;
}

.select-sell th,
.select-sell td{
  padding:0.7em;
  border:1px solid #ccc;
  vertical-align:middle;
  text-align:center;
}

.select-sell th{
  background:#f6f6f6;
  white-space:nowrap;
  width:20%;
}

.select-sell td{
  background:#fff;
}

.select-sell td .ttl{
  font-size:clamp(14px, 0.761rem + 0.48vw, 18px);
  font-weight:700;
  line-height:1.2;
}

.select-sell td .ttl{
  font-size:clamp(14px, 0.761rem + 0.48vw, 18px);
  font-weight:700;
  line-height:1.2;
}
.select-sell td.--delivery .ttl{
  color:var(--color-delivery);
}
.select-sell td.--shop .ttl{
  color:var(--color-shop);
}

.select-sell td .note{
  margin-top:5px;
}

.select-sell td .select-recommend{
  width:100%;
  border-radius:10px;
  padding:10px 20px;
  text-align:left;
}

.select-sell td.--delivery .select-recommend{
  background:var(--color-pale-delivery);
}
.select-sell td.--shop .select-recommend{
  background:var(--color-pale-shop);
}

.select-sell td .select-recommend li{
  position:relative;
  padding-left:1.5em;
  padding:0.5em 0 0.5em 2em;
  font-weight:700;
}
.select-sell td .select-recommend li::before{
  position: absolute;
  top: 0.4em;
  left: 0;
  content: '✔';
  background: #fff;
  padding: 0.2em;
  border-radius: 4px;
  width: 1.4em;
  height: 1.4em;
}
.select-sell td.--delivery .select-recommend li::before{
  color:var(--color-dark-delivery);
}
.select-sell td.--shop .select-recommend li::before{
  color:var(--color-dark-shop);
}

.select-sell thead td.--delivery{
  background:var(--color-pale-delivery);
}
.select-sell thead td.--shop{
  background:var(--color-pale-shop);
}

.select-sell thead td h3{
  position:relative;
  font-size:clamp(16px, 0.886rem + 0.48vw, 20px);
  font-weight:700;
  line-height:1;
  padding-left:2em;
  width:fit-content;
  margin:auto;
}
.select-sell thead td h3::before{
  position:absolute;
  content:'';
  top:-0.2em;
  left:0;
  width:1.4em;
  height:1.4em;
}
.select-sell thead td.--delivery h3{
  color:var(--color-dark-delivery);
}
.select-sell thead td.--delivery h3::before{
  background: no-repeat url(../images/used-buy-top/ico-delivery.svg) center/cover;
  filter:var(--filter-dark-delivery);
}
.select-sell thead td.--shop h3{
  color:var(--color-dark-shop);
}
.select-sell thead td.--shop h3::before{
  background: no-repeat url(../images/used-buy-top/ico-shop.svg) center/cover;
  filter:var(--filter-dark-shop);
}

.select-sell thead td p{
  margin:10px auto 0 auto;
  padding:0.3em 2em;
  border-radius: 100vw;
  width:fit-content;
  color:#fff;
  font-weight:700;
  font-size:80%;
  letter-spacing:0.2em;
}
.select-sell thead td.--delivery p{
  background:var(--color-delivery);
}
.select-sell thead td.--shop p{
  background:var(--color-shop);
}

@media screen and (max-width: 767px) {
  .select-sell{
    table-layout: auto;
  }
  .select-sell td{
    width:80%;
  }
  .select-sell td .select-recommend{
    padding:10px;
  }
}

/*------------------------------------------
買取の流れ
sec-select
-------------------------------------------*/
/* ラジオボタンは非表示 */
.flow-tab-contents input[type="radio"] {
  display: none;
}

/* タブ */
.navi-tab {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: var(--gap-m);
  border-bottom: 4px solid var(--color-blue);
}

.tab-btn {
  flex:1;
  position: relative;
  width: 100%;
  padding: 1em 0;
  cursor: pointer;
  font-size: clamp(12px, 0.659rem + 0.45vw, 16px);
  text-align: center;
  font-weight: 700;
  background: #f3f3f3;
  color:var(--color-blue);
  border-radius: 2px 2px 0 0;
}

.tab-btn:hover{
  background: var(--color-pale-blue);
}

/* 選択中のタブ */
#tab1:checked ~ .navi-tab label[for="tab1"],
#tab2:checked ~ .navi-tab label[for="tab2"] {
  background: var(--color-blue);
  color: white;
}

/* コンテンツ */
.tab-content {
  display: none;
  width: 100%;
}

/* 選択された内容だけ表示 */
#tab1:checked ~ .content1,
#tab2:checked ~ .content2 {
  display: block;
}

/* コンテンツの中身 */
.flow-tab-contents h3{
  position:relative;
  color:var(--color-blue);
  font-weight:700;
  font-size:clamp(16px, 0.818rem + 0.91vw, 24px);
  margin-bottom: var(--gap-m);
}
.flow-tab-contents h3::before{
  position:absolute;
  content:'';
  top:calc(50% - 0.5px);
  left:0;
  width:100%;
  height:1px;
  background:#001e60;
  z-index:1;
}
.flow-tab-contents h3 span{
  position:relative;
  width:fit-content;
  background:#fff;
  padding:0 0.5em;
  z-index:2;
}

/*STEPリスト
flow-step-list
-------------------*/
.flow-step-list{
  display:flex;
  gap:var(--gap-s);
  margin-bottom: var(--gap-m);
}

.flow-step-list > li{
  flex:1;
  border: 1px solid #a3a3a3;
  border-radius: 2px;
  background:#fff;
  padding:20px;
  display:flex;
  flex-direction: column;
  gap:10px;
}

.flow-step-list > li h6{
  font-weight:700;
  color:var(--color-blue);
  margin-top:10px;
  margin-bottom:5px;
}

.flow-step-list > li .dot-list li + li,
.flow-step-list > li .num-list li + li{
  margin-top:5px;
}

.flow-step-list .step-top{
  text-align:center;
  display:flex;
  flex-direction: column;
  gap:5px;
}

.flow-step-list .step-num{
  font-weight:700;
  color:var(--color-blue);
  font-size:clamp(12px, 0.693rem + 0.24vw, 14px);
}

.flow-step-list .step-ttl{
  font-weight:700;
  font-size:clamp(16px, 0.943rem + 0.24vw, 18px);
}

.used-buy-top .flow-step-list img{
  width:70%;
  max-width:120px;
  margin:10px auto 0 auto;
}

.flow-step-list .step-btm{
  display:flex;
  flex-direction: column;
  gap:5px;
}

.flow-step-list .step-btm{
  font-size:clamp(12px, 0.693rem + 0.24vw, 14px);
}

.flow-step-list .step-sub-ttl{
  font-weight:700;
  font-size:clamp(14px, 0.818rem + 0.24vw, 16px);
  text-align:center;
}

@media screen and (max-width: 767px) {
  .flow-step-list{
    flex-direction: column;
  }
  .flow-step-list li{
    flex-direction: row;
  }
  .flow-step-list .step-top{
    width:calc(40% - 10px);
  }
  .flow-step-list .step-btm{
    width:60%;
  }

  .flow-step-list .step-sub-ttl{
    text-align:left;
  }
}

/*アコーディオン
flow-detail-list
-------------------*/
.flow-detail-list{
  display:flex;
  flex-direction: column;
  gap:10px;
}

.flow-detail-list details{
  width:100%;
}

.flow-detail-list details summary{
  padding: 10px 20px;
  border: 1px solid #484848;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 2px;
}

.flow-detail-list details summary p{
  display:inline-block;
}

.flow-detail-list .detail-cont{
  margin-top: -1px;
  padding: var(--gap-m);
  border: 1px solid #484848;
  background: #fff;
}

/*------------------------------------------
モーダル・アコーディオン内テキスト
txt-content
-------------------------------------------*/
.modaal-container {
  border-radius: 10px;
}

.txt-content{
  color:#484848;
  font-size:clamp(14px, 0.818rem + 0.24vw, 16px);
}
.txt-content p{
  line-height:1.6;
}
.txt-content section{
  display:flex;
  flex-direction: column;
  gap:10px;
}

.txt-content > section + section{
  margin-top: calc(var(--gap-m) - 10px);
  padding-top: var(--gap-m);
  border-top:1px dotted #ccc;
}

.txt-content > section > section + section{
  margin-top: calc(var(--gap-m) - 10px);
}

.txt-content h3{
  font-weight:700;
  font-size:clamp(16px, 0.818rem + 0.91vw, 24px);
  color:var(--color-blue);
  margin-bottom:var(--gap-s);
}

.txt-content h4{
  font-weight:700;
  font-size:clamp(16px, 0.886rem + 0.48vw, 20px);
  margin-bottom:var(--gap-s);
}
.txt-content h4 span{
  color:var(--color-red);
  padding-right:5px;
}

.txt-content h5{
  position:relative;
  font-weight:700;
  padding-left:1.2em;
  margin-bottom:10px;
}
.txt-content h5::before{
  position:absolute;
  content:'●';
  font-size:0.8em;
  top:0.2em;
  left:0;
}

.txt-content h6{
  font-weight:700;
  color:var(--color-blue);
  margin-bottom:5px;
}

.txt-content .block-btm{
  margin-top:var(--gap-m);
  padding:var(--gap-m);
  border-radius: 10px;
}

/*more-link
-------------------*/
.more-link{
  width:100%;
  max-width:600px;
  margin:var(--gap-m) auto 0 auto;
}
.more-link + .more-link{
  margin-top:10px;
}

.more-link .c-button{
  width:100%;
  letter-spacing:0.02em;
}

/*------------------------------------------
ドスパラの買取サービスを利用いただいたお客様からのコメント
sec-customer-review
-------------------------------------------*/
.customer-review-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
}
.customer-review-list li {
  position: relative;
  padding: 20px 20px;
  background: #f0fbff;
  border-radius: 8px;
  font-weight: 500;
  color: #777;
  margin: 10px 0;
  letter-spacing: 0.05em;
}

.customer-review-list li::before,
.customer-review-list li::after {
  position: absolute;
  display: block;
  width: 20px;
  height: auto;
  min-height: 50px;
  aspect-ratio: 131/ 150;
  content: "";
}

.customer-review-list li::before {
  background: no-repeat url(../images/used-buy-top/icon-quote-left.webp) center/contain;
  top: 0;
  left: 20px;
  transform: translateY(-40%);
}

.customer-review-list li::after {
  background: no-repeat url(../images/used-buy-top/icon-quote-right.webp) center/contain;
  bottom: 0;
  right: 20px;
  transform: translateY(40%);
}

/*------------------------------------------
よくあるご質問(FAQ)
sec-faq
-------------------------------------------*/
.faq-list{
  width:100%;
}

.faq-list li + li{
  margin-top:10px;
}

.faq-list > li summary::-webkit-details-marker {
  display:none;
}

.faq-list li summary{
  list-style: none;
  display: block;
  position:relative;
  padding:1em;
  background:var(--color-gray);
  border-radius: 2px;
  cursor: pointer;
  font-weight:700;
}

.faq-list > li summary::before{
  position:absolute;
  content:'';
  top:calc(50% - 1px);
  right:1em;
  background:var(--color-blue);
  width:1em;
  height:2px;
}
.faq-list > li summary::after{
  position:absolute;
  content:'';
  top:calc(50% - 0.5em);
  right: calc(1.5em - 1px);
  background:var(--color-blue);
  width:2px;
  height:1em;
  transition: all 0.3s;
}
.faq-list > li details[open] summary::after{
  transform: rotate(90deg);
  transition: 0.3s all;
}

.faq-list > li summary p {
  position:relative;
  padding:0 1.5em;
}

.faq-list > li summary p::before {
  position:absolute;
  left:0;
  top:0;
  color:var(--color-blue);
  font-weight:700;
  content: "Q."; 
}

.faq-cont{
  position:relative;
  border:1px solid #333;
  background: #fff;
  padding:var(--gap-s);
}

.faq-cont .txt-content {
    position: relative;
}

.faq-cont .txt-content::before {
  content: "A.";
  position: absolute;
  color: var(--color-red);
  font-weight: 700;
  top:0;
  left:-1.5em;
}

.faq-txt h4{
  position:relative;
  font-weight:700;
  padding-left:1.2em;
  margin-bottom:10px;
}
.faq-txt h4::before{
  position:absolute;
  content:'●';
  font-size:0.8em;
  top:0;
  left:0;
}

.faq-txt section{
  margin-top:var(--gap-s);
}

.faq-txt p + p{
  margin-top:10px;
}

.link-adobe-banner{
  max-width:112px;
  margin-top:10px
}

/*------------------------------------------
中古買取豆知識
sec-trivia
-------------------------------------------*/
.trivia-list-wrap{
  width:100%;
  padding:var(--gap-s);
  border:1px solid #333;
  border-radius: 2px;
  background:#fff;
}

.trivia-list li + li{
  margin-top:var(--gap-s);
}