@charset "UTF-8";
/* シングルページ用css */

/* ----------
店舗詳細ページ
----------*/
.shop_info{
  display: flex;
  gap: 20px 3%;
}
.shop_info .-img{
  width: 42%;
}
.shop_info .-list{
  width: 55%;
  border-top: 1px solid #aaa;
}
.shop_info .-list .-item{
  border-bottom: 1px solid #aaa;
  display: flex;
  padding: 15px 20px;
  line-height: 1.6;
}
.shop_info .-list .-item .-ttl{
  width: 80px;
  margin: 0 5% 0 0;
  font-weight: 700;
  font-size: 16px;
}
.shop_info .-list .-item .-txt{
  font-weight: 300;
}
.shop_info .-service{
  line-height: 1;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  padding: 7px 10px;
  margin: 0 10px 0 0;
  border-radius: 5px;
  display: inline-block;
}
.shop_info .-service.store{
  background: #EB3323;
}
.shop_info .-service.takuhai{
  background: #1B998B;
}
.shop_txt{
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .shop_info{
    flex-direction: column;
  }
  .shop_info .-img{
    width: 100%;
  }
  .shop_info .-list{
    width: 100%;
  }
  .shop_info .-list .-item{
    padding: 10px 15px;
  }
  .shop_info .-list .-item .-ttl{
    width: 60px;
    margin: 0 3% 0 0;
    font-size: 14px;
  }
}

/* ----------
買取実績詳細ページ
----------*/
.results_info{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  box-shadow: 0px 1px 8px #00000033;
}
.results_info .-img{
  width: 230px;
  height: 230px;
  object-fit: contain;
}
.results_info .-txt{
  width: calc(100% - 250px);
}
.results_info .-txt .-name{
  border-bottom: 1px solid #aaa;
  padding: 0 0 15px;
}
.results_info .-txt .-name .-artist,
.results_info .-txt .-name .-ttl{
  font-size: 16px;
  font-weight: 500;
}
.results_info .-txt .-price{
  padding: 20px 0 0;
}
.results_info .-txt .-price .-results{
  line-height: 1;
  color: #fff;
  font-size: 14px;
  background: #990100;
  display: table;
  padding: 5px 10px;
}
.results_info .-txt .-price .-num{
  margin: 10px 0 0;
  line-height: 1;
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .results_info {
    padding: 20px;
    gap: 15px;
  }
  .results_info .-img{
    width: 150px;
    height: 150px;
  }
  .results_info .-txt{
    width: calc(100% - 150px);
  }
  .results_info .-txt .-name{
    padding: 0 0 10px;
  }
  .results_info .-txt .-name .-artist,
  .results_info .-txt .-name .-ttl{
    font-size: 14px;
  }
  .results_info .-txt .-price{
    padding: 15px 0 0;
  }
  .results_info .-txt .-price .-results{
    font-size: 12px;
  }
  .results_info .-txt .-price .-num{
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .results_info{
    flex-direction: column;
  }
  .results_info .-txt{
    width: 100%;
  }
}

/* ----------
お知らせ・ブログ詳細ページ
----------*/
.column_date{
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: right;
}
.column_title{
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0 0;
}
.column_body img{
  max-width: 790px;
  margin: 50px auto;
}
.column_body h2{
  font-size: 20px;
  font-weight: 700;
  margin: 80px 0 30px;
  padding: 0;
  line-height: 1.2;
  padding: 0 20px 10px;
  border-bottom: 3px solid #FCBA04;
}
.column_body h3{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  border-left: 7px solid #EB3323;
  margin: 50px 0 20px;
}
.column_body h4{
  font-size: 20px;
  font-weight: 700;
  margin: 50px 0 20px;
  line-height: 1.2;
  color: #EB3323;
}
.column_body p{
  margin: 15px 0;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .column_title{
    font-size: 23px;
    margin: 10px 0 0;
  }
  .column_body img{
    margin: 30px auto;
  }
  .column_body h2{
    margin: 60px 0 20px;
    font-size: 18px;
  }
  .column_body h3{
    margin: 30px 0 20px;
    font-size: 18px;
  }
  .column_body h4{
    margin: 30px 0 20px;
    font-size: 18px;
  }
}

/* コラム監修者 */
.column_supervisor{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  box-shadow: 0px 1px 8px #00000033;
}
.column_supervisor .-img{
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.column_supervisor .-info{
  width: calc(100% - 170px);
}
.column_supervisor .-info .-ttl{
  font-weight: 700;
  line-height: 1;
  padding: 0 0 20px;
  border-bottom: 1px solid #aaa;
}
.column_supervisor .-info .-txt{
  font-weight: 300;
  margin: 15px 0 0;
}
@media screen and (max-width: 767px) {
  .column_supervisor{
    gap: 15px;
    padding: 20px;
  }
  .column_supervisor .-img{
    width: 100px;
    height: 100px;
  }
  .column_supervisor .-info{
    width: 100%;
  }
  .column_supervisor .-info .-ttl{
    padding: 0 0 10px;
  }
  .column_supervisor .-info .-txt{
    margin: 8px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .column_supervisor{
    flex-direction: column;
  }
}

/* ----------
お客様の声詳細ページ
----------*/
.user_voice{
  background: #F6F6F6;
  padding: 30px 3%;
  position: relative;
}
.user_voice::after{
  position: absolute;
  content: '';
  background: #fff;
  height: calc(21px / 2* tan(60deg));
  width: 21px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -1px;
  left: -1px;
}
.user_voice::before{
  position: absolute;
  content: '';
  background: #fff;
  height: calc(21px / 2* tan(60deg));
  width: 21px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: -1px;
  bottom: -1px;
}
.user_voice .-ttl{
  font-weight: 700;
  font-size: 18px;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #aaa;
}
.user_voice img{
  max-width: 500px;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .user_voice{
    padding: 20px 3%;
  }
  .user_voice .-ttl {
    font-size: 16px;
    line-height: 1.4;
  }
}
