@charset "UTF-8";
/* cssのリセット */
html,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  font-size: 100%;  margin: 0;  padding: 0;  vertical-align: baseline;  border: 0;  outline: 0;  background: transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
a {
  color: #EB3323; transition: .3s all; font-size: 100%;  margin: 0;  padding: 0;  vertical-align: baseline;  background: transparent;
}
a:hover{
  opacity: .8;
}
ol,ul,li{
  list-style: none;  padding:0;  margin:0;
}

/* サイト全体設定 */
html {
  font-size: 20px;
  line-height: 1.5;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #222;
}
.-bold{
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.-red{
  color: #EB3323;
}
img {
  max-width: 100%;
  height: auto;
}
.inner{
  max-width: 1200px;
  margin: 0 auto;
}
.in_inner{
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px){
  .inner{
    padding: 0 2%;
  }
}
h2.-ttl{
  color: #141D48;
  text-align: center;
  font-size: 40px;
}
@media screen and (max-width: 767px){
  h2.-ttl{
    font-size: 25px;
  }
}

/* sp版pc版での表示切り替え */
.pc_item{display: block!important;}
.sp_item{display: none!important;}

@media screen and (max-width: 767px){
  .pc_item{display: none!important;}
  .sp_item{display: block!important;}
}

/* jacket画像 */
.dec_img{
  display: block;
  width: 80vw;
  max-width: 570px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .dec_img{
    margin: 0 auto;
  }
}

/* jacket背景画像 */
.bg_img{
  width: 100%;
  max-width: 1360px;
  height: 350px;
  margin: auto;
  background: url(../img/bg01.png) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .bg_img{
    height: 200px;
  }
}

/* ヘッダー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.head_logo img{
  width: 200px;
}
.head_logo p{
  font-size: 12px;
  color: #818181;
  line-height: 1;
}
.head_menu{
  display: flex;
  align-items: center;
  gap: 20px;
}
.head_menu a{
  text-decoration: none;
  color: #222;
  font-size: 14px;
}
.head_menu .contact{
  background: #EB3323;
  color: #fff;
  padding: 12px 35px;
}
@media screen and (max-width: 1000px) {
  .head_menu{
    gap: 10px;
  }
  .head_menu a{
    font-size: 12px;
  }
  .head_menu .contact{
    padding: 10px 20px;
  }
}
@media screen and (max-width: 820px) {
  .head_menu a:not(.contact){
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .head_menu a{
    display: none;
  }
}


/* FV */
.first_view{
  position: relative;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.first_view::before{
  position: absolute;
  content: '';
  width: 130vw;
  height: 100vh;
  max-width: 1360px;
  background: url(../img/fv-bg.png) no-repeat;
  background-position: top;
  background-size: contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.first_view .-ttl {
  background: #fff;
  display: table;
  font-size: 45px;
  line-height: 1;
  padding: 15px 20px;
  text-align: right;
  margin: 0 0 0 auto;
  box-shadow: 0px 2px 10px #00000029;
}
.first_view .-ttl:not(:last-of-type) {
  margin-bottom: 35px;
}
.first_view .-btn{
  width: fit-content;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  background: #141D48;
  border-left: 10px solid #FFDA60;
  position: relative;
  padding: 30px 80px 30px 50px;
  margin: 90px 0 0 auto;
}
.first_view .-btn::after{
  position: absolute;
  content: '▶︎';
  height: fit-content;
  color: #FFDA60;
  font-size: 20px;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.first_view .-btn span{
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .first_view{
    height: 100vw;
  }
  .first_view::before{
    width: 150vw;
    left: 0;
    transform: translateX(0);
  }
  .first_view .-ttl {
    font-size: 6.5vw;
    padding: 1.5vw 2vw;
  }
  .first_view .-ttl:not(:last-of-type) {
    margin-bottom: 4vw;
  }
  .first_view .-btn{
    padding: 3vw 8vw 3vw 4vw;
    margin: 9vw 0 0 auto;
    font-size: 5vw;
  }
  .first_view .-btn::after{
    font-size: 3vw;
    right: 3vw;
  }
  .first_view .-btn span{
    font-size: 3vw;
  }
}

/* 強み */
#Strengths{
  margin: 100px auto;
}
#Strengths .-ttl{
  color: #567EA5;
  text-align: center;
  font-size: 40px;
}
#Strengths .-txt{
  margin-top: 50px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #Strengths{
    margin: 70px auto;
  }
  #Strengths .-ttl{
    font-size: 25px;
  }
  #Strengths .-txt{
    margin-top: 30px;
  }
}

/* ポイント */
#point{
  margin: 150px auto;
}
.point_con{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 50px;
}
.point_con .-item p{
  text-align: center;
  margin-top: 20px;
}
#point .annotation{
  padding: 30px 20px;
  background: #F8FCFF;
  border: 2px solid #BEDEEF;
  display: table;
  margin: 50px auto 0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #point{
    margin: 100px auto;
  }
  .point_con{
    margin-top: 30px;
  }
  .point_con .-item p{
    margin-top: 10px;
  }
  #point .annotation{
    padding: 20px 15px;
    margin: 30px auto 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .point_con{
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* 買取実績 */
#reuse_item{
  margin: 150px auto;
}
.reuse_item_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.reuse_item_list .-item{
  width: 23.5%;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 16%);
  display: flex;
  flex-direction: column;
}
.reuse_item_list .-item img{
  display: block;
  margin: 0 auto;
}
.reuse_item_list .-ttl{
  font-size: 14px;
  margin: 15px 10px 10px;
}
.reuse_item_list .-price{
  font-size: 12px;
  line-height: 1;
  margin: auto 10px 15px;
  text-align: right;
}
.reuse_item_list .-price span{
  font-size: 25px;
  margin: 0 0 0 5px;
}
@media screen and (max-width: 767px) {
  #reuse_item{
    margin: 100px auto;
  }
  .reuse_item_list{
    margin-top: 30px;
    gap: 20px 0;
  }
  .reuse_item_list .-item{
    width: 48%;
  }
  .reuse_item_list .-price span{
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .reuse_item_list .-item{
    width: 90%;
    margin: auto;
  }
}

/* 買取ステップ */
#step{
  margin: 150px auto;
}
.step_list{
  margin-top: 50px;
}
.step_list li{
  display: flex;
  align-items: center;
  gap: 4%;
}
.step_list li:not(:last-of-type){
  margin-bottom: 40px;
  position: relative;
}
.step_list li:not(:last-of-type)::after{
  position: absolute;
  content: '';
  border-top: 20px solid #BEDEEF;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: auto;
  display: table;
}
.step_list li img{
  width: 23%;
}
@media screen and (max-width: 767px) {
  #step{
    margin: 100px auto;
  }
  .step_list{
    margin-top: 30px;
  }
  .step_list li{
    flex-direction: column;
    gap: 10px;
  }
  .step_list li:not(:last-of-type){
    margin-bottom: 30px;
  }
  .step_list li:not(:last-of-type)::after{
    border-top: 15px solid #BEDEEF;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    bottom: -22px;
  }
  .step_list li img{
    width: 100%;
    max-width: 300px;
  }
  .step_list li .-txt p{
    font-size: 14px;
  }
}

/* 買取品目 */
#item{
  margin: 150px auto;
}
.item_list{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
.item_list li p{
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #item{
    margin: 100px auto;
  }
  .item_list{
    margin-top: 30px;
  }
}
@media screen and (max-width: 650px) {
  .item_list{
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* CTAボタン */
.contact_btn{
  margin: 150px auto;
}
.contact_btn .-txt{
  position: relative;
  color: #141D48;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding: 0 20px 0 28px;
}
.contact_btn .-txt::after,
.contact_btn .-txt::before{
  position: absolute;
  content: '';
  width: 2px;
  height: 18px;
  background: #141D48;
  top: 0;
  bottom: 0;
  margin: auto;
}
.contact_btn .-txt::after{
  transform: rotate(-30deg);
  left: 5px;
}
.contact_btn .-txt::before{
  transform: rotate(30deg);
  right: 5px;
}
.contact_btn .-btn{
  color: #fff;
  background: #EB3323;
  font-size: 30px;
  padding: 20px 60px 20px 30px;
  display: table;
  margin: 10px auto 0;
  text-decoration: none;
  position: relative;
  line-height: 1.2;
}
.contact_btn .-btn::after{
  position: absolute;
  content: '▶︎';
  font-size: 20px;
  height: fit-content;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact_btn{
    margin: 100px auto;
  }
  .contact_btn .-btn{
    font-size: 20px;
    padding: 15px 40px 15px 20px;
  }
  .contact_btn .-btn::after{
    font-size: 15px;
    right: 20px;
  }
}

/* 取り扱い店舗 */
#shop{
  margin: 150px auto;
}
#shop .-txt{
  margin-top: 50px;
  text-align: center;
}
#shop .-subttl{
  padding: 5px 10px;
  border-left: 7px solid #FFDA60;
  color: #141D48;
  margin: 30px 0 20px;
}
.shop_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.shop_list details{
  width: 48.5%;
  border: 2px solid #BEDEEF;
  padding: 15px 20px;
  background: #F8FCFF;
  color: #567EA5;
  box-sizing: border-box;
  font-size: 14px;
}
.shop_list details summary{
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  padding-right: 20px;
}
.shop_list details summary::after{
  position: absolute;
  content: '▼';
  color: #BEDEEF;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.shop_list details[open] summary::after{
  content: 'ー';
  font-weight: bold;
}
.shop_list details[open] summary{
  margin-bottom: 10px;
}
.shop_list details summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  #shop{
    margin: 100px auto;
  }
  #shop .-txt{
    margin-top: 30px;
  }
  .shop_list details{
    width: 100%;
  }
}

/* よくある質問 */
#faq{
  margin: 150px auto;
}
.faq_list{
  padding-top: 50px;
}
.faq_list details{
  border-top: 2px solid #BEDEEF;
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 16px;
}
.faq_list details:last-child{
  border-bottom: 2px solid #BEDEEF;
}
.faq_list details summary{
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  padding-right: 20px;
}
.faq_list details summary::first-letter{
  color: #EB3323;
  font-weight: bold;
  margin: 0 3px 0 0;
}
.faq_list details summary::after{
  position: absolute;
  content: '▼';
  color: #BEDEEF;
  font-size: 16px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .3s all;
}
.faq_list details[open] summary{
  margin-bottom: 10px;
}
.faq_list details[open] summary::after{
  content: 'ー';
  font-weight: bold;
}
.faq_list details summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  #faq{
    margin: 100px auto;
  }
  .faq_list{
    padding-top: 30px;
  }
  .faq_list details{
    width: 100%;
  }
  .faq_list details{
    font-size: 14px;
  }
  .faq_list details summary{
    font-size: 16px;
  }
  .faq_list details summary::after{
    font-size: 14px;
  }
}

/* フッター */
.foot_con{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  gap: 20px;
}
.foot_con .-info{
  font-size: 16px;
}
.foot_con .-link{
  display: flex;
  gap: 15px;
}
.foot_con .-link a{
  color: #567EA5;
  text-align: center;
  border: 2px solid #567EA5;
  width: 220px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.2;
}
.foot_con .-link a:hover{
  opacity: 1;
  background: #567EA530;
}
footer .-copy{
  text-align: center;
  color: #818181;
  font-size: 12px;
  margin: 0 0 30px;
}
@media screen and (max-width: 820px) {
  .foot_con{
    flex-direction: column;
  }
  .foot_con .-info{
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .foot_con{
    padding: 30px 0;
  }
  .foot_con .-info{
    font-size: 14px;
  }
  .foot_con .-link{
    width: 100%;
    gap: 10px;
  }
  .foot_con .-link a{
    width: 49%;
    height: 65px;
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .foot_con .-link a{
    font-size: 12px;
  }
}

/* 古物営業法に基づく表示モーダル */

.js_modalBtnWrap {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.js_modalWrap.active {
  animation: modalOpen 0.3s ease forwards;
}
.js_modalWrap.active2 {
  animation: modalClose 0.3s ease forwards;
}
.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80vw;
  max-width: 720px;
  background-color: #fff;
  padding: 40px;
}
.js_modalCont {
  overflow-y: scroll;
  font-size: 14px;
  text-align: center;
}
.js_modalCont > * + * {
  margin-top: 10px;
}
.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: 10.5px;
  right: 10.5px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}
.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: #141D48;
  position: absolute;
  top: -5px;
  right: 9px;
  width: 2px;
  height: 30px;
}
.js_modalClose::before {
  transform: rotate(45deg);
}
.js_modalClose::after {
  transform: rotate(-45deg);
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}

/* スマホ幅に適用 */
@media (max-width: 767px) {

  .js_modalContInner {
    padding: 20px;
  }
  .js_modalClose {
    top: -30px;
  }
  .js_modalClose::before,
  .js_modalClose::after {
    background-color: #fff;
  }
}
