



/*========= 共通 ===============*/


body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 100%;
}

@font-face {
  font-family: 'Corporate-Logo-Bold';
  src: url('../font/Corporate-Logo-Bold-ver3.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Corporate-Logo-Medium';
  src: url('../font/Corporate-Logo-Medium-ver3_1.ttf') format('truetype');
  font-display: swap;
}





/*========= PC ===============*/
@media only screen and  (min-width : 481px) {


  /* パソコンで見たときは"pc"のclassがついた画像が表示される */
  .pc { display: block !important; }
  .sp { display: none !important; }

    /* パソコンで見たときのみ改行 */
  .br-sp {display: none; }

 


  
   
/*追従バナーはじめ*/

/*========= 上部固定させるためのCSS ===============*/
.header {
  height: 90px;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

#header02 {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.logo img{
  width: 100px;
    margin-left: 10px;
}

/*========= レイアウトのためのCSS ===============*/
.header nav {
  margin-left: 0;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin-right: 100px;
}

nav ul li {
  text-align: center;
  margin-right: 10px;
}

nav ul li img {
  width: 200px;
  display: block;
}


/*追従バナーおわり*/



/*ハンバーガーメニューはじめ*/
.menu-btn {
  position: fixed;
  top: 15px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #333;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}


.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #333;
}
.menu-content ul {
  padding: 70px 10px 0;
  font-size: 20px;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;

}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 10px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 20px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(51,51,51,0.9);
  transition: all 0.5s;/*アニメーション設定*/
}


#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}

/*ハンバーガーメニューおわり*/





/*会社情報*/


#hanamaru{
  background-color: #ededed;
  padding-bottom: 10px;
}

#hanamaru img{
  width: 200px;
  margin-top: 20px;
  margin-left: 20px;
}

    #概要 {
      font-size: 15px;
      line-height: 25px;
      padding-top:  20px;
      margin-bottom: -20px;
      margin-left: 20px;
      text-align: left;
     }

     #概要 h3 {
      margin-bottom: 20px;
     }

     
    #概要 p {
      text-align: left;
      margin-bottom: 10px;
pointer-events: none;
     }



    
     .accordion {
      margin-top: 40px;
      max-width: 100%;
    }
    .accordion__summary {
      display: block;
      background: #FFF; /* 見出しの背景色 */
      position: relative;
      list-style: none; /* 矢印を消す */
      cursor: pointer;
      text-align: left;
      padding: 10px 10px 10px 50px;
    }
    .accordion__summary::-webkit-details-marker {
      display: none;
    }
    .accordion__summary::after {
      content: "+";
      font-size: 1.4em; /* 記号のサイズ */
      position: absolute;
      left: 20px;
      top: 45%;
      transform: translateY(-50%);
    }
    .accordion[open] .accordion__summary::after {
      content: "−";
    }
    .accordion__detail {
      padding: 4px 10px;
      margin: 10px 0;
    }
    .accordion__text {
      margin: 0;
    }


/*会社情報*/


/*問い合わせ*/
#toiawaseimg{
  text-align: center;
  margin: 0 auto;
}

#toiawaseimg img{
  text-align: center;
width: 40%;
margin: 20px auto;
}

/*問い合わせ*/

/*注釈*/
#注釈 {
  margin: 20px auto;
 }

#注釈 p{
  text-align: center;
 font-size: 13px;
}

/*注釈*/

/*top*/

.top{
  display: block;
}

.top h1{
  font-family: 'Corporate-Logo-Bold', sans-serif;
  text-align: center;
  background-color: #3DB156;
  padding: 10px 0 !important;
  font-size:35px !important;
  color: #FFF;
  margin: 0 auto;
  max-width: 45%;
}

.top h1 span{
  color: #fff100;
  font-size: 40px;
  margin: 0 5px;
}

.topimg{
  margin: 0 auto;
  width: 45%;
  display: block;
}

.toptitle{
  margin: 70px auto;
  width: 40%;
  display: block;
}

.topsubt{
  margin: 0 auto 70px auto;
  font-size: 25px;
  text-align: center;
  line-height: 60px;
  color: #000;
}

/*top*/


/*各カテゴリのタイトル*/
.categoryt{
  text-align: center;
}

.categoryt h2{
  position: relative;
display: inline-block;
margin: 100px auto;
padding-bottom: 8px;
font-weight: bold;
color: #000;
font-size: 30px;
}


.categoryt h2::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 3px;
  background: #3DB156;
}


.categoryt h3{
  position: relative;
display: inline-block;
margin: 100px auto;
padding-bottom: 8px;
font-weight: bold;
color: #000;
font-size: 30px;
}


.categoryt h3::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 3px;
  background: #f08300;
}

/*各カテゴリのタイトル*/


/*強みアコーディオンメニュー*/
.accordion-008 {
  margin: 0 auto;
    max-width: 45%;
    margin-bottom: 40px;

}

.accordion-008 summary {
     font-family: 'Corporate-Logo-Medium', sans-serif;
     border-radius: 5px;
    display: flex;
    background-color: #f08300;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.accordion-008 summary::-webkit-details-marker {
    display: none;
}

.accordion-008 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: '';
    transition: transform .3s;
}

.accordion-008[open] summary::after {
    transform: rotate(225deg);
}

.accordion-008 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 15px 10px;
    color: #000;
    background-color: #FFF;
    transition: transform .5s, opacity .5s;
}

.muryou{
  font-family: 'Corporate-Logo-Medium', sans-serif;
  display: flex;
  justify-content: center;
  
}

.muryou li p{
  margin: 10px 20px;
}

.muryou li p{
  font-family: 'Corporate-Logo-Medium', sans-serif;
  color: #f08300;
  font-size: 25px;
  padding: 10px;
  border-radius: 20px;
  border: 3px solid #f08300;
  text-align: center;
}

.accordion-008[open] p {
    transform: none;
    opacity: 1;
}

.accordiont{
  font-size: 18px;
  line-height: 30px;
}

.accordionc{
  font-size: 16px;
  line-height: 25px;
}

/*強みアコーディオンメニュー*/


/*商材*/

#shouzai{
  max-width: 45%;
  padding: 100px 0;
  margin: 150px auto 100px auto;
  background-color: #fffeee;
  border-radius: 9999px;

}

.shouzais{
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.shouzaic{
  margin: 40px auto 80px auto;
  font-size: 17px;
  text-align: center;
}


.shouzaiimg{
  margin: 50px auto;
  display: flex;
  justify-content: center;
  width: 95%;
  flex-wrap: wrap;
}

.shouzaiimg li {
  margin: 10px;
  max-width: 45%;
}

.shouzaiimg li img{
  display: block;
  width:95%;
  margin: 0 auto;
}

.shouzaiimg li p{
  text-align: center;
  font-size: 20px;
  margin: 10px auto 5px auto;
}


.shouzaiimg2{
  margin: 50px auto;
  display: flex;
  justify-content: center;
  width: 95%;
  flex-wrap: wrap;
}

.shouzaiimg2 li {
  margin: 10px;
}

.shouzaiimg2 li img{
  width: 100px;
}

.shouzaiimg2 li p{
  text-align: center;
  font-size: 18px;
}

/*商材*/



/*買取方法*/

.tab-wrap {

  display: flex;
  flex-wrap: wrap;
  margin:20px auto;
  max-width: 45%;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #3DB156;
  display: block;
  order: -1;
}

.tab-label {
font-size: 30px;
font-weight: bold;
  color: White;
  background: rgb(164, 164, 164);
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

#tabsetsumei01{
  margin: 40px 0;
  text-align: center;
  font-size: 20px ;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background:  #3DB156;
}
.tab-switch:checked+.tab-label+.tab-content {
  background-color: #fff;
  height: 20%;
  width: 100%;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.kaitorih{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.kaitorih li{
  padding: 10px;
  margin: 30px auto;
  align-items: center;
  width: 35%;
  display: block;
  border: solid 2px #3DB156;
}

.number{
  margin: 0 auto 0 auto;
  width: 30px;
  font-size: 20px;
  text-align: center;
  color: #FFF;
  padding: 10px;
  border-radius: 500px;
  font-family: 'Corporate-Logo-Bold', sans-serif;
  background-color: #3DB156;
  position: relative;
  z-index: 1;
}

.kaitorihimg{
  margin: -20px auto 0 auto;
  width: 100%;
  display: block;
}

.kaitoriht{
   font-family: 'Corporate-Logo-Bold', sans-serif;
   color: #3DB156;
   font-size: 25px;
   margin: 5px auto;
   text-align: center;
   border-bottom: solid #333 2px;
}

.kaitorihp{
   align-items: center;
   font-family: 'Corporate-Logo-Medium', sans-serif;
   color: #000;
   font-size: 18px;
   margin: 5px auto;
   text-align: center;
}


/*買取方法*/

/*お客様の声*/

.uservoices{
  max-width: 45%;
  margin: -20px auto 0 auto;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}

.uservoiceimg{
  margin: 0 auto;
  display: block;
  max-width: 45%;
  text-align: center;
}

.uservoiceimg01 img{
width: 80%;
margin-top: 50px;
margin-bottom: 50px;
margin-right: auto;
display: block;
}

.uservoiceimg02 img{
width: 80%;
margin-left: auto;
display: block;
}

/*お客様の声*/


/*よくあるご質問*/
#question{
  margin-bottom: 100px;
}
.accordion-003 {
    margin: 0 auto;
    max-width: 45%;
    margin-bottom: 7px;
    border-bottom: 2px dotted #3db156;
}

.accordion-003 summary {
   font-size: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #000000b3;
    border-right: 3px solid #000000b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
  font-size: 18px;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    line-height: 30px;
    padding: .3em 2em 1.5em;
    color: #000000;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}

/*よくあるご質問*/

}







/*========= スマホ ===============*/
@media only screen and  (max-width : 481px) {
    


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc { display: none !important; }
.sp { display: block !important; }

  /* パソコンで見たときのみ改行 */
  .br-pc {display: none; }




  
/*追従バナーはじめ*/

/*========= 上部固定させるためのCSS ===============*/
#header{
 height: 100px;/*高さ指定*/
 max-width:100%;/*横幅指定*/
 width: 100%;
 /*以下はレイアウトのためのCSS*/
 display: flex;
  justify-content: center;
  align-items: center;
 background: #fff;
 text-align: center;
 padding: 5px;
 position: fixed;/*fixedを設定して固定*/
 z-index: 80;/*最前面へ*/
  bottom:0;/*位置指定*/
  left: 0;
}




/*========= レイアウトのためのCSS ===============*/


#header nav {
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

nav ul li {
  flex: 1;
  text-align: center;
}

nav ul li a {
  display: block;
  text-align: center;
}

nav ul li img {
  width: 100px;
  margin: 0 auto;
  display: block;
}


/*追従バナーおわり*/

    



/*ハンバーガーメニューはじめ*/
.menu-btn {
  position: fixed;
  bottom: 120px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #333;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}


.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #333;
}
.menu-content ul {
  padding: 70px 10px 0;
  font-size: 20px;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;

}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 10px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 20px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(51,51,51,0.9);
  transition: all 0.5s;/*アニメーション設定*/
}


#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}

/*ハンバーガーメニューおわり*/



/*会社情報*/


#hanamaru{
  background-color: #ededed;
  padding-bottom: 160px;
}

#hanamaru img{
  width: 200px;
  margin-top: 20px;
  margin-left: 20px;
}

   #概要 {
      font-size: 12px;
      line-height: 20px;
      padding-top:  20px;
      margin-bottom: -20px;
      margin-left: 20px;
      text-align: left;
     }

     #概要 h3 {
      margin-bottom: 20px;
     }

     
    #概要 p {
      text-align: left;
      margin-bottom: 10px;
pointer-events: none;
     }

     .accordion {
      margin: 2em auto;
      max-width: 100%;
    }
    .accordion__summary {
      display: block;
      background: #FFF; /* 見出しの背景色 */
      position: relative;
      list-style: none; /* 矢印を消す */
      cursor: pointer;
      padding: 10px 10px 10px 50px;
    }
    .accordion__summary::-webkit-details-marker {
      display: none;
    }
    .accordion__summary::after {
      content: "+";
      font-size: 1.4em; /* 記号のサイズ */
      position: absolute;
      left: 20px;
      top: 45%;
      transform: translateY(-50%);
    }
    .accordion[open] .accordion__summary::after {
      content: "−";
    }
    .accordion__detail {
      padding: 4px 10px;
      margin: 10px 0;
    }
    .accordion__text {
      margin: 0;
    }


/*会社情報*/
    

/*問い合わせ*/
#toiawaseimg{
  text-align: center;
}

#toiawaseimg img{
width: 100%;
margin: 10px 0;
}

/*問い合わせ*/


/*注釈*/
#注釈 {
  margin: 20px 0;
 }

#注釈 p{
 font-size: 13px;
}

/*注釈*/


/*top*/

.top h1{
  font-family: 'Corporate-Logo-Bold', sans-serif;
  text-align: center;
  background-color: #3DB156;
  padding: 10px 0 !important;
  font-size:25px !important;
  color: #FFF;
}

.top h1 span{
  color: #fff100;
  font-size: 30px;
  margin: 0 5px;
}

.topimg{
  margin: 0 auto;
  width: 100%;
  display: block;
}

.toptitle{
  margin: 50px auto;
  width: 95%;
  display: block;
}

.topsubt{
  margin: 0 auto 50px auto;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

/*top*/



/*各カテゴリのタイトル*/
.categoryt{
  text-align: center;
}

.categoryt h2{
  position: relative;
display: inline-block;
margin: 100px auto;
padding-bottom: 8px;
font-weight: bold;
color: #000;
font-size: 25px;
}


.categoryt h2::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 3px;
  background: #3DB156;
}


.categoryt h3{
  position: relative;
display: inline-block;
margin: 100px auto;
padding-bottom: 8px;
font-weight: bold;
color: #000;
font-size: 25px;
}


.categoryt h3::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 3px;
  background: #f08300;
}

/*各カテゴリのタイトル*/



/*強みアコーディオンメニュー*/
.accordion-008 {
  margin: 0 auto;
    max-width: 95%;
    margin-bottom: 30px;

}

.accordion-008 summary {
     font-family: 'Corporate-Logo-Medium', sans-serif;
     border-radius: 5px;
    display: flex;
    background-color: #f08300;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.accordion-008 summary::-webkit-details-marker {
    display: none;
}

.accordion-008 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: '';
    transition: transform .3s;
}

.accordion-008[open] summary::after {
    transform: rotate(225deg);
}

.accordion-008 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 15px 10px;
    color: #000;
    background-color: #FFF;
    transition: transform .5s, opacity .5s;
}

.muryou{
  font-family: 'Corporate-Logo-Medium', sans-serif;
  display: flex;
  justify-content: center;
  
}

.muryou li p{
  margin: 10px;
}

.muryou li p{
  font-family: 'Corporate-Logo-Medium', sans-serif;
  color: #f08300;
  font-size: 20px;
  padding: 10px;
  border-radius: 20px;
  border: 3px solid #f08300;
  text-align: center;
}

.accordion-008[open] p {
    transform: none;
    opacity: 1;
}

.accordiont{
  font-size: 16px;
  line-height: 30px;
}

.accordionc{
  font-size: 15px;
  line-height: 25px;
}

/*強みアコーディオンメニュー*/


/*商材*/

#shouzai{
  max-width: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  margin: 100px auto 50px auto;
  background-color: #fffeee;
  border-radius: 9999px;
  display: block;
}

.shouzais{
  margin-top: -20px;
  font-size: 18px;
  text-align: center;
}

.shouzaic{
  margin: 30px auto 50px auto;
  font-size: 16px;
  text-align: center;
}


.shouzaiimg{
  margin: 50px auto;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.shouzaiimg li {
  margin: 10px auto;
  width: 45%;
}

.shouzaiimg li img{
    display: block;
  width: 100%;
}

.shouzaiimg li p{
  text-align: center;
  font-size: 18px;
  margin: 10px auto 0 auto;
  align-items: center;
}


.shouzaiimg2{
  margin: 50px auto;
  display: flex;
  justify-content: center;
  width: 95%;
  flex-wrap: wrap;
}

.shouzaiimg2 li {
  margin: 10px;
}

.shouzaiimg2 li img{
  width: 100px;
}

.shouzaiimg2 li p{
  text-align: center;
  font-size: 18px;
}

/*商材*/




/*買取方法*/

.tab-wrap {

  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #3DB156;
  display: block;
  order: -1;
}
.tab-label {
  font-size: 20px;
  font-weight: bold;
  color: White;
  background: rgb(164, 164, 164);
  -weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

#tabsetsumei01{
  margin: 20px 0;

  text-align: center;
  font-size: 18px ;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background:  #3DB156;
}
.tab-switch:checked+.tab-label+.tab-content {
  background-color: #fff;
  height: 20%;
  width: 100%;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.kaitorih{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.kaitorih li{
  padding: 10px;
  margin: 10px auto;
  align-items: center;
  width: 40%;
  display: block;
  border: solid 2px #3DB156;
}

.number{
  margin: 0 auto 0 auto;
  width: 25px;
  font-size: 18px;
  text-align: center;
  color: #FFF;
  padding: 3px;
  border-radius: 50%;
  font-family: 'Corporate-Logo-Bold', sans-serif;
  background-color: #3DB156;
  position: relative;
  z-index: 1;
}

.kaitorihimg{
  margin: -10px auto 0 auto;
  width: 100%;
  display: block;
}

.kaitoriht{
   font-family: 'Corporate-Logo-Bold', sans-serif;
   color: #3DB156;
   font-size: 22px;
   margin: 5px auto;
   text-align: center;
   border-bottom: solid #333 2px;
}

.kaitorihp{
   align-items: center;
   font-family: 'Corporate-Logo-Medium', sans-serif;
   color: #000;
   font-size: 14px;
   margin: 5px auto;
   text-align: center;
}



/*買取方法*/


/*お客様の声*/

.uservoices{
  margin-top: -20px;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}

.uservoiceimg01 img{
width: 90%;
margin: 30px auto;
text-align: left;
}

.uservoiceimg02 img{
width: 90%;
margin-left: auto;
display: block;
}

/*お客様の声*/


/*よくあるご質問*/
#question{
  margin-bottom: 100px;
}

.accordion-003 {
    margin: 0 auto;
    max-width: 95%;
    margin-bottom: 7px;
    border-bottom: 2px dotted #3db156;
}

.accordion-003 summary {
   font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 3px solid #000000b3;
    border-right: 3px solid #000000b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
  font-size: 15px;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    line-height: 30px;
    padding: 20px 5px;
    color: #000000;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}

/*よくあるご質問*/


  }