



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


body{
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  max-width: 100%;
  margin: 0;
  padding: 0;
}






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


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

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

 /* top */
 #top img{
  width: 80%;
  margin: 0px auto 0 auto;
 }
/* top */

 /*追従ヘッダー*/
#header{
  display: flex;
  align-items: center;
  position: fixed;/*追従ナビのためpositionをfixedにする*/
top:0;/*ポジション設定topを0*/
  gap: 30px;
  padding: 20px 0;
  background-color:#fff;
  height: 80px;
width: 100%;
  font-size: 15px;
  z-index: 150;
}

#logo{
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

#logo img{
  width:200px;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}

#page-link {
  display: flex;
  margin-left: auto;
  padding: 0;
  list-style: none;
  align-items: center;
  gap:20px;
}

#page-link li{
  display: flex;
  align-items: center;
}

#page-link li #denwa {
  width:300px;
  display: block;
}

#page-link li #satei {
  width:200px;
  display: block;
}



 /*ハンバーガーメニュー*/
 a {
font-family: sans-serif;
text-decoration: none;
}
.hamburger {
    display: block;
    height: 70px;
    margin-left: auto;
    margin-right: 20px;
    position: relative;
    z-index: 10;
    width: 70px;
    border: none;
    background-color:#f08300
}
.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}
.hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #fff;
    transition: 0.4s;
}
.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
}
.hamburger__line:before {
    top: -8px;
}
.hamburger__line:after {
    top:8px;
}
.hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.hamburger__text::before {
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}
.header {
  width: 300px;
}
.header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 300px;
    visibility: hidden;
    padding-top: 60px;
    background-color: #fff;
    transition: 0.4s;
}
.header__nav-area.-active {
    left: 0;
  visibility: visible;
}
.global-navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
}
.global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__link {
  display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    transition: color 0.4s;
    font-size: 0.875rem;
}
.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
}


.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
}
.accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
}
.accordion__list li {
    font-size: 0.75rem;
}
.accordion__list li + li {
     margin-top: 21px;
}
.accordion__link {
    color: #fff;
}
  /*ハンバーガーメニュー*/

 /*追従ヘッダー*/


 /*説明①*/

 #setsumei{
  margin: 150px auto;
  
 }
/* 初期状態 */
.fade-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示状態 */
.fade-target.show {
  opacity: 1;
  transform: translateY(0);
}

  h1 img{
   display: block;
  margin: 0 auto 50px auto;
  width: 30%;
 }


  #setsumei p{
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
  font-size: 18px;
    }

    #setsumeiimg nav ul{
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
    }

    #setsumeiimg nav ul li img{
      width: 300px;
    }

  /*説明①*/

  /*ボタン*/
/* ボタン中央配置 */
.btn03 {  
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  position: relative;
  text-decoration: none;
  text-align: center;
  background: transparent;
  border-radius: 25px;
  border: solid 1px #6c3400;
  outline: none;
  transition: all 0.2s ease;
  font-size: 17px;
}

/* hover時 */
.btn03:hover {
  border-color: transparent;
}

/* テキスト */
.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 30px;
  background: #fff;
  border-radius: 25px;
  color: #6c3400;
  transition: all 0.3s ease;
}

/* 影 */
.pushdown::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #6c3400;
}

/* 押し込み */
.pushdown:hover span {
  background-color: #6c3400;
  color: #fff;
  transform: translateY(4px);
}
  /*ボタン*/



/*カルーセル*/
/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  max-width: 50%;
  margin: 50px auto;
}
/* スライド3枚のグループ */
.slider {
  animation: scroll-left 150s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.slide {
  width: calc(100vw / 6); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 70%;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*カルーセル*/


 /*説明2*/

#wave1,#wabe2 {
   display: block;
}

#wave1{
   margin-top: 150px;
}

#wave2{
  display: flex;
  z-index: 1;
  margin-top: -50px;
  margin-bottom: 50px;
}

 #setsumei2{
  background-color: #fff5d7;
  padding: 50px 0 100px 0;
  margin: -1px auto;
}

  #setsumei2p,#setsumei3p,#cooling_off p{
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
  font-size: 18px;
    }

 #setsumei3{
  margin: 0px auto 150px auto;
 }

  /*説明2*/

/*お客様の声画像*/
#uservoice {
  margin: 50px auto 150px auto;
}

#uservoice img{
  margin: 100px auto;
  display: block;
  width: 50%;
}
/*お客様の声画像*/


/*買取商品画像*/
#kaitorishouhin nav ul{
    max-width: 80%;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px auto 0 auto;
}

#kaitorishouhin nav ul li h2{
  font-size: 20px;
  color: #f08300;
  font-weight: bold;
  margin-top: 10px;
}

#kaitorishouhin nav ul li {
  gap: 20px;
  margin: 20px;
}


#kaitorishouhin nav ul li img{
  width: 250px;
}


#kaitorishouhin nav ul li p{
    font-size: 15px;
    margin-top: 10px;
}


/*買取商品画像*/



/*買取実績画像*/
#kaitorishouhin2 nav ul{
    max-width: 80%;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px auto 0 auto;
}


#kaitorishouhin2 nav ul li {
  gap: 20px;
  margin: 20px;
}


#kaitorishouhin2 nav ul li img{
  width: 250px;
}


/*買取実績画像*/


/*フッター*/
.footer-3 {
    padding: 3rem 2rem 1.5rem;
}

.footer-3__container {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(5, auto);
    max-width: 100%;
    margin: 0 auto;
    gap: 60px;
}

#footer-3__logo {
    width: 200px;
    height: auto;
}

.footer-3__head p {
    margin: 10px 0;
}

#footer-3__caption {
    margin-top: 0;
    color: #f08300;
    font-size: 15px;
    margin-top: 10px;
}

#footer-3__caption2 {
    margin-top: 0;
    color: #000;
    font-size: 12px;
    line-height: 20px;
}

.footer-3__title,
.footer-3__link {
    margin: 0 0 .8em;
    color: #333;
    font-size: .9em;
}

.footer-3__title {
    font-weight: 600;
}

.footer-3__list {
    padding: 0;
    list-style-type: none;
    display: block;
}

.footerimg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.footerimg,#shutyo,#denwa2 {
    max-width: 500px;
    width: 100%;
    display: block;
}

.footer-3__link {
    display: block;
}

.footer-3__link:not(:hover) {
    text-decoration: none;
}
/*フッター*/


/*パンくずリスト*/
.breadcrumb-002 {
  justify-content: center;
    margin: 150px auto 20px auto;
    display: flex;
    gap: 0 15px;
    list-style: none;
    font-size: 15px;
}

.breadcrumb-002 li {
    display: flex;
    align-items: center;
}

.breadcrumb-002 li:not(:last-child)::after {
    display: inline-block;
    margin-left: 15px;
    color: #333333;
    content: '|';
}

.breadcrumb-002 a {
    color: #333333;
    text-decoration: none;
}
/*パンくずリスト*/


/*買取実績ページタイトル*/
#subt{
  text-align: center;
  font-size: 20px;
  color: #000;
}

#setsumei3 h3{
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #f08300;
  margin-top: 10px;
}

#title2{
  background-color: #fff5d7;
  margin: 50px 0 -20px 0 ;
  padding: 40px 0 20px 0;
}

#title{
  background-color: #fff5d7;
  margin: 50px 0;
  padding: 100px 0;
}
/*買取実績ページタイトル*/


/*ガイドページ横並び画像*/
#guide{
    margin:100px 0 0 0 ;
}
#guide nav ul{
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}



#guide nav ul li img{
  width: 500px;
  margin: 0 20px;
}


#guide nav ul li h4{
  color: #f08300;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

#guide nav ul li p{
  color: #000;
  font-size: 15px;
  line-height: 25px;
}

#guide2{
  max-width: 60%;
 margin:50px  auto 100px auto ;
}
#guide2 nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

#guide2 nav ul li img{
  width: 70%;
  display: block;
  margin: 0 auto;
}

#guide3{
  max-width: 60%;
 margin:50px  auto 50px auto ;
}
#guide3 nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

#guide3 nav ul li img{
  width: 80%;
  display: block;
  margin: 0 auto;
}

#denwa3{
  display: block;
  width: 30%;
  margin: 80px auto 50px auto;
}

#form{
 display: block;
  width: 30%;
  margin: 50px auto;
}


/*ガイドページ横並び画像*/



/*よくある質問*/
.accordion-001 {
      margin: 20px auto;
    max-width: 800px;
    background-color: #ffffff;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
  font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 25px;
    background-color: #f08300;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #000000;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}
/*よくある質問*/


/*会社情報*/
.company {
 width: 50%;
 margin: 0 auto;
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
}
.company th {
  color: #000;
 padding: 30px 20px;
 font-weight: bold;
 font-size: 15px;
 border-bottom: solid 1px #6c3400;
}
.company td {
  color: #000 !important;
  pointer-events: none;
 border-bottom: solid 1px #6c3400;
}
/*会社情報*/


/*利用規約*/
#terms{
 display: block;
  margin: 0 auto;
  max-width: 60%;
}

#termsn{
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
}

#termst{
  margin-top: 20px;
  font-weight: bold;
  text-align: left;
  font-size: 15px;
}
/*利用規約*/

/*クーリングオフ*/

#cooling_off img{
  width: 60%;
  margin: 0 auto 50px auto;
  display: block;
}

#cooling_offp{
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}

#cooling_offp2{
  max-width: 50%;
  margin: 50px auto 50px auto;
  padding: 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
}

#cooling_offc{
  margin: 100px auto;
}

#cooling_offt{
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
  color: #f08300;
  font-weight: bold;
}

#cooling_offy nav ul{
 margin-top: 30px;
display: flex;
justify-content: center;
}

#cooling_offy nav ul li{
 margin: 0 20px;
}

#cooling_offys {
  font-weight: bold;
  font-size: 20px;
  color: #f08300;
  text-align: center;
  margin-bottom: 10px;
}

#cooling_offyt {
    font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  padding: 10px;
  background-color: #f08300;
    border-radius: 5px;
}

#cooling_offys2 {
  font-weight: bold;
  font-size: 20px;
  color: #6c3400;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}

#cooling_offyt2 {
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #6c3400;
 font-family: "Zen Maru Gothic", sans-serif;
}

/*クーリングオフ*/
}











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


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

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


 #top img{
  width: 100%;
  margin: 90px auto 0 auto;
 }


 /*追従ヘッダー*/
#header{
  display: flex;
  align-items: center;
  position: fixed;
   top:0;/*ポジション設定topを0*/
  padding: 20px 0;
  background-color:#fff;
  height: 50px;
  width: 100%;
  font-size: 15px;
   z-index: 150;
}

#logo{
  display: flex;
  align-items: center;
  width: 100%;
}

#logo img{
  width: 80%;
   margin-left: 5px;
}

#page-link {
  display: flex;
  margin-left: auto;
  padding: 0;
  list-style: none;
  align-items: center;
  gap:5px;
}

#page-link li{
  display: flex;
  align-items: center;
}
#page-link li #denwa {
  width:50px;
  display: block;
}

#page-link li #satei {
  width:150px;
  display: block;
}

 /*ハンバーガーメニュー*/
 a {
font-family: sans-serif;
text-decoration: none;
}
.hamburger {
    display: block;
    height: 50px;
    margin-left: auto;
    margin-right: 5px;
    position: relative;
    z-index: 10;
    width: 50px;
    border: none;
    background-color:#f08300
}
.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}
.hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #fff;
    transition: 0.4s;
}
.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
}
.hamburger__line:before {
    top: -8px;
}
.hamburger__line:after {
    top:8px;
}
.hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.hamburger__text::before {
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 300px;
    visibility: hidden;
    padding-top: 60px;
    background-color: #fff;
    transition: 0.4s;
}
.header__nav-area.-active {
    left: 0;
  visibility: visible;
}
.global-navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
}
.global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__link {
  display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    transition: color 0.4s;
    font-size: 0.875rem;
}
.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
}


.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
}
.accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
}
.accordion__list li {
    font-size: 0.75rem;
}
.accordion__list li + li {
     margin-top: 21px;
}
.accordion__link {
    color: #fff;
}
  /*ハンバーガーメニュー*/

 /*追従ヘッダー*/



 /*説明①*/

 #setsumei{
  margin: 150px auto;
 }

 /* 初期状態 */
.fade-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示状態 */
.fade-target.show {
  opacity: 1;
  transform: translateY(0);
}



  h1 img{
   display: block;
  margin: 0 auto 50px auto;
  width: 100%;
 }



  #setsumei p{
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
  font-size:15px;
    }


   #setsumeiimg nav ul{
      display: flex;
      max-width: 100%;
      justify-content: center;
      gap: 5px;
      margin-top: 50px;
      flex-wrap: wrap;
    }

    #setsumeiimg nav ul li img{
      width:180px;
    }

  /*説明①*/


/*ボタン*/
/* ボタン中央配置 */
.btn03 {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;

  position: relative;
  text-decoration: none;
  text-align: center;
  background: transparent;
  border-radius: 25px;
  border: solid 1px #6c3400;
  outline: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

/* hover時 */
.btn03:hover {
  border-color: transparent;
}

/* テキスト */
.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 30px;
  background: #fff;
  border-radius: 25px;
  color: #6c3400;
  transition: all 0.3s ease;
}

/* 影 */
.pushdown::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #6c3400;
}

/* 押し込み */
.pushdown:hover span {
  background-color: #6c3400;
  color: #fff;
  transform: translateY(4px);
}
  /*ボタン*/


  
/*カルーセル*/
/* スライダー全体 */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  margin: 50px auto;
}
/* スライド3枚のグループ */
.slider {
  animation: scroll-left 150s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
}
/* スライド */
.slide {
  width: calc(100vw / 2); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.slide img {
  display: block;
  width: 180px;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*カルーセル*/


/*説明2*/

#wave1,#wabe2 {
   display: block;
}

#wave1{
   margin-top: 150px;
}

#wave2{
  display: flex;
  z-index: 1;
  margin-top: -20px;
  margin-bottom: 50px;
}

 #setsumei2{
  background-color: #fff5d7;
  padding: 50px 0;
  margin: -1px auto;
}


  #setsumei2p,#setsumei3p,#cooling_off p{
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
  font-size: 15px;
    }

 #setsumei3{
  margin: 0px auto 100px auto;
 }


  /*説明2*/

  /*お客様の声画像*/
#uservoice {
    margin: 50px auto 100px auto;
}

#uservoice img{
  margin: 50px auto;
  display: block;
  width: 95%;
}
/*お客様の声画像*/



/*買取商品画像*/
#kaitorishouhin nav ul{
    max-width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 0px auto 0 auto;
}

#kaitorishouhin nav ul li h2{
  font-size: 16px;
  color: #f08300;
  font-weight: bold;
  margin-top: 10px;
}

#kaitorishouhin nav ul li {
  max-width: 50%;
  margin: 20px 0px;
  gap: 0 5px;
}


#kaitorishouhin nav ul li img{
  display: block;
  width: 100%;
}


#kaitorishouhin nav ul li p{
    font-size: 13px;
    margin-top: 10px;
}


/*買取商品画像*/



/*買取実績画像*/
#kaitorishouhin2 nav ul{
    max-width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 0px auto 0 auto;
}


#kaitorishouhin2 nav ul li {
  max-width: 45%;
  margin: 20px 5px;
  gap: 0 5px;
}


#kaitorishouhin2 nav ul li img{
  display: block;
  width: 100%;
}




/*買取実績画像*/


/*フッター*/
.footer-3 {
    padding: 10px 10px 100px 10px;
}

.footer-3__container {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 20px;
}

#footer-3__logo {
    width: 150px;
    height: auto;
}

.footer-3__head p {
    margin: 10px 0;
}

.footer-3__head #logo02 {
    width: 50%;
}

#footer-3__caption {
    margin-top: 0;
    color: #f08300;
    font-size: 15px;
    margin-top: 10px;
}

#footer-3__caption2 {
    margin-top: 0;
    color: #000;
    font-size: 14px;
    line-height: 25px;
}

.footer-3__title,
.footer-3__link {
    margin: 0 0 .8em;
    color: #333;
    font-size: .9em;
}

.footer-3__title {
    font-weight: 600;
}

#denwa2{
  margin-top: 20px;
}

#shutyo{
  margin-bottom: 20px;
}

.footerimg {
    margin: 10px auto;
}

.footerimg,#shutyo,#denwa2 {
    width: 100%;
    display: block;
}


.footer-3__list {
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: block;
    margin: 10px 0;
}

.footer-3__link {
    display: block;
}

.footer-3__link:not(:hover) {
    text-decoration: none;
}

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

    .footer-3__container {
        justify-items: start;
        grid-template-columns: 1fr;
        gap: 1em;
        text-align: left;
    }

    .footer-3__head {
        grid-column: auto;
    }

}
/*フッター*/


/*買取実績ページタイトル*/
#subt{
  text-align: center;
  font-size: 15px;
  color: #000;
}

#setsumei3 h3{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #f08300;
  margin-top: 10px;
}

#title2{
  background-color: #fff5d7;
  margin: 100px 0 50px 0;
  padding: 20px 0 0 0 ;
}

#title{
  background-color: #fff5d7;
  margin: 100px 0 50px 0;
  padding: 50px 0;
}
/*買取実績ページタイトル*/


/*ガイドページ画像*/
#guide{
    margin:50px 0 0 0 ;
}

#guide nav ul{
  margin: 50px 0;
}

#guide nav ul li img{
  width: 100%;
}

#guide nav ul li h4{
  color: #f08300;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}

#guide nav ul li p{
  color: #000;
  font-size: 15px;
  line-height: 25px;
}

#guide2{
  max-width: 100%;
 margin:50px auto 0 auto ;

}
#guide2 nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#guide2 nav ul li{
 max-width: 50%;
}

#guide2 nav ul li img{
  width: 90%;
  display: block;
  margin: 0 auto 20px auto;
}


#guide3{
  max-width: 100%;
 margin:50px auto 0 auto ;

}
#guide3 nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#guide3 nav ul li{
 max-width: 50%;
}

#guide3 nav ul li img{
  width: 90%;
  display: block;
  margin: 0 auto 20px auto;
}

#denwa3{
  display: block;
  width: 95%;
  margin: 50px auto;
}

#form{
 display: block;
  width: 95%;
  margin: 0px auto;
}


/*ガイドページ画像*/


/*よくある質問*/
.accordion-001 {
      margin: 20px auto;
    max-width: 95%;
    background-color: #ffffff;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
  max-width: 95%;
  font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 25px;
    background-color: #f08300;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

.accordion-001 p {
   max-width: 95%;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #000000;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}
/*よくある質問*/


/*会社情報*/
.company {
 width: 100%;
 margin: 0 auto;
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
}
.company th {
  color: #000;
 padding: 40px 20px;
 font-weight: bold;
 font-size: 15px;
 border-bottom: solid 1px #6c3400;
}
.company td {
  color: #000;
 border-bottom: solid 1px #6c3400;
}
/*会社情報*/


/*利用規約*/
#terms{
 display: block;
  margin: 0 auto;
  max-width: 100%;
}

#termsn{
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
}

#termst{
  margin-top: 20px;
  font-weight: bold;
  text-align: left;
  font-size: 15px;
}
/*利用規約*/



/*クーリングオフ*/

#cooling_off img{
  width: 100%;
  margin: 0 auto 50px auto;
  display: block;
}

#cooling_offp{
  text-align: center;
  line-height: 30px;
  font-size: 15px;
}

#cooling_offp2{
  max-width: 95%;
  margin: 50px auto 20px auto;
  padding: 20px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
}

#cooling_offc{
  margin: 100px auto;
}

#cooling_offt{
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  color: #f08300;
  font-weight: bold;
}

#cooling_offy nav ul{
 margin-top: 30px;
}

#cooling_offy nav ul li{
 margin: 40px 10px;
}

#cooling_offys {
  font-weight: bold;
  font-size: 20px;
  color: #f08300;
  text-align: center;
  margin-bottom: 10px;
}

#cooling_offyt {
    font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  padding: 10px;
  background-color: #f08300;
    border-radius: 5px;
}

#cooling_offys2 {
  font-weight: bold;
  font-size: 20px;
  color: #6c3400;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}

#cooling_offyt2 {
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #6c3400;
 font-family: "Zen Maru Gothic", sans-serif;
}

/*クーリングオフ*/


#toiawase1 nav ul{
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
  z-index: 100;
  align-items: center;
}

#toiawase1 nav ul li {
  display: block;
  padding: 10px ;
}

#toiawase1 nav ul li img{
  width: 180px;

}

  }

