@charset "UTF-8";
/*======================================================= 
    買取用スタイル
=======================================================*/
section{
    padding: 50px 0;
}
.zen {
    font-family: "Zen Old Mincho", serif;
}

/* top */
.trade-top{
    background-color: #F8F8F8;
    padding: 0;
}
.trade-top .inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.trade-tit{
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    align-items: center;
    line-height: 1.2;
}
.trade-tit h2{
    margin: 0;
}
.trade-tit .tx-large{
    font-size: 2em;
}
.trade-tx .tx-large{
    font-size: 2em;
}
.trade-top .l-block{
    position: relative;
}
.trade-top-img{
    position: absolute;
    bottom: 0;
    right: -25px;
}
/* form */
.trade-form{
    background-color: #fff;
    border: 5px solid #DF0716;
}
.form-tit{
    background-color: #DF0716;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}
.form-tit .form-pr{
    font-size: 2em;
    color: #FFF989;
    padding-left: 5px;
}
.form-content{
    padding: 15px;
}
.form-content label{
    display: block;
    background-color: #f1f1f1;
    padding: 5px;
    margin: 10px 0;
}
.form-content label .hissu{
    background-color: #DF0716;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 5px;
}
button.btn-check{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #DF0716;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px;
    margin: 10px 0;
}
button.btn-check span{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #DF0716;
    border-radius: 50px;
    font-size: 12px;
    width: 2.5em;
    height: 2.5em;
    margin-right: 10px;
}
/* 買取実績 */
.slider-3,
.slider-3 .slick-list {
  overflow: hidden;
}
.slick-track{
    padding-bottom: 20px;
}
.trade-item{
    background-color: #fff;
    box-shadow: 0 0 8px #adadad;
    border-radius: 5px;
    margin: 0 10px;
}
.trade-car-name{
    background-color: #454545;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 5px 5px 0 0;
    padding: 5px;
}
.trade-info{
    padding: 15px;
}
/* tableデザイン削除 */
table{
    margin: 0;
}
table:not(.has-border-color) :where(th, td){
    border: none;
}
table tr:nth-of-type(2n+1),
table th{
    background-color: transparent;
}
table th, table td{
    padding: 5px;
}
table th{
    text-align: left;
}
table td{
    text-align: right;
}

/* 選ばれる3つの理由 */
.reason-block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.reason-tit{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 15px;
}

/* 買取の流れ */
.trade-flow-item{
    position: relative;
    background-color: #fff;
    border: 1px solid #454545;
    border-radius: 5px;
    margin-bottom: 70px;
}
.trade-flow-item::after{
    position: absolute;
    content: "▼";
    color: #454545;
    font-weight: bold;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
}
.trade-flow-item:last-child.trade-flow-item::after{
    display: none;
}
.trade-flow-num{
    background-color: #454545;
    color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 5px 20px;
}
.trade-flow-content{
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 15px 20px;
}
.trade-flow-tit{
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #454545;
    margin-bottom: 15px;
}

/* 買取に必要な書類 */
.trade-need{
    max-width: 750px;
    background-color: #f8f8f8;
    border: 1px solid #454545;
    margin: auto;
}
.trade-need-tit{
    background-color: #454545;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}
.trade-need ul{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0 15px;
    padding: 15px 30px;
}
.trade-need ul li{
    list-style: inside;
}

/*1000px以下*/
@media screen and (max-width: 1000px){
    .trade-tit{
        grid-template-columns: 120px 1fr;
    }
    .trade-tit .tx-large{
        font-size: 1.5em;
    }
    .reason-block{
        gap: 15px;
    }
    .reason-tit{
        font-size: 18px;
        padding-bottom: 10px;
    }
}

/*750px以下*/
@media screen and (max-width: 750px){
    .trade-top .inner{
        grid-template-columns: 1fr;
    }
    .trade-tit{
        display: flex;
    }
    .trade-tit img{
        max-width: 120px;
    }
    .trade-tit .tx-large{
        font-size: 2em;
    }
    .trade-flow-item{
        margin-bottom: 50px;
    }
    .trade-flow-item::after{
        top: calc(100% + 10px);
    }
    .trade-flow-content{
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    .trade-flow-tit{
        font-size: 20px;
    }
    .trade-need ul{
        padding: 15px;
    }
    .reason-block{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .reason-block img{
        width: 100%;
        margin-bottom: 15px;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){
    .trade-flow-content{
        grid-template-columns: 80px 1fr;
        gap: 10px;
        padding: 15px;
    }
}