/*********************
*
* 文字化け注意！！：
* 保存の際は必ず Unicode8
*
**********************/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    padding:0;
    margin:0;
    background-color:#fff;
}
a img:hover{
    opacity: 0.8;
    background-color: transparent;
}

body{
    font-family: "LINE Seed JP", sans-serif;
    color: #333;
}

em {
    font-style: normal;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    共通
_______________________________________________________*/

.content_area {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content_ttl{
    background: linear-gradient(to right, rgba(253,112,17,1) 0%,rgba(244,80,9,1) 100%);
    text-align: center;
    padding: 10px;
    margin-bottom: 50px;
    font-size: 32px;
    position: relative;
    color: #fff;
    line-height: 1.4;
}

.bgcolor{
    background-color: #fbecbd;
}

.sp{
    display: none;
}

@media screen and (max-width: 820px) {
    img {
        width: 100%;
    }

    .content_area {
        padding: 0 4% 8%;
    }

    .content_ttl {
        text-align: center;
        background: #fb7c00;
        font-weight: bold;
        font-size: 5.2vw;
        color: #fff;
        padding: 15px 0;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
}

@media screen and (min-width: 821px) and (max-width: 1001px) {
    .content_area {
        width: 94vw;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    CV
_______________________________________________________*/

.cv_pc {
    padding-top: 20px;
    width: 100%;
    padding-bottom: 60px;
}

.cv_pc .cv_ttl {
    color: #fff;
    background: #c70000;
    padding: 10px 0 8px;
    font-size: 34px;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
}

.cv_pc .cv_ttl::before,
.cv_pc .cv_ttl::after{
    content: '';
    display: inline-block;
    width: 0;
    height: 5px;
    vertical-align: middle;
    border-right: 0 solid transparent;
    border-top: 40px solid #fff;
    border-left: 10px solid transparent;
    margin: 0 3%;
    transform:skew(20deg,0deg);
}

.cv_pc .cv_ttl::after{
    transform:skew(-20deg,0deg) scale(-1, 1);
}

.cv_pc .cv_web{
    width: 100%;
    padding: 20px 0 30px;
    background: #fff;
    border: 3px solid #c70000;
    text-align: center;
}

.cv_pc .cv_web_btn{
    background-color: #00af4e;
    display: block;
    position: relative;
    width: 80%;
    padding: 20px 0;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 0 #005622;
}

.cv_pc .cv_web_btn:hover{
    bottom: -5px;
    box-shadow: 0 5px 0 #005622;
}

.cv_pc .cv_web_btn span{
    font-size: 20px;
    color: #fff600;
}

.cv_pc .cv_web_btn p{
    margin-top: 3px;
    font-size: 35px;
    line-height: 1.4;
    color: #fff;
}

@media screen and (min-width: 821px) {
    .cv_sp {
        display: none;
    }
}

@media screen and (max-width: 820px) {
    .cv_pc {
        display: none;
    }

    .cv_sp {
        display: block;
        width: 100%;
        padding: 10px 10px 20px;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    ヘッダー
_______________________________________________________*/

header {
    background-color: #c70000;
}

.header_logo {
    padding: 10px;
    text-align: center;
}

.header_logo img {
    width: 150px;
}

@media screen and (max-width: 820px) {
    .header_logo img {
        width: 30vw;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    メインビジュアル
_______________________________________________________*/

@media screen and (min-width: 1101px) {
    .main {
        background: linear-gradient(to bottom,
        rgba(245,191,191,1) 0%,
        rgba(245,191,191,1) 414px,
        #dedede 414px,
        #dedede 414px
        );
    }

    .main > .content_area {
        display: flex;
        position: relative;
    }

    .mv img{
        display: block;
        margin: 0 -170px 0 0 ;
        width: auto;
    }

    .main_under {
        padding: 70px 0 80px 30px;
        text-align: left;
    }
}

@media screen and (max-width: 1100px) {
    .main {
        background-color: #fbecbd;
    }

    .main .content_area {
        padding: 0;
    }

    .main > .content_area {
        display: block;
    }
}

@media screen and (min-width: 821px) and (max-width: 1100px) {
    .mv_container {
        background: #F5C0BF;
    }

    .main > .content_area {
        max-width: 100vw;
        width: 100vw;
    }

    .mv img {
        width: 100%;
    }

    .main_under {
        padding-bottom: 3%;
    }

    .main_under img {
        width: 50%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 820px) {
    .main_under{
        display: none;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    フォーム上部画像
_______________________________________________________*/

@media screen and (min-width: 821px) {
    .form_head {
        text-align: center;
        background-color: #1bbe5c;
        border-radius: 4px 4px 0 0;
        padding: 6px 0;
    }

    .form_head img {
        width: 225px;
        height: auto;
    }
}

@media screen and (max-width: 1100px) {
    .form_head_sub{
        color: #0ea349;
        font-weight: bold;
        font-size: 6.8vw;
        text-align: center;
        padding: 10px 0;
    }
}

@media screen and (max-width: 820px) {
    .form_head img {
        width: 100%;
    }
}
/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストが選ばれる理由
_______________________________________________________*/

.reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reason_item_ttl em,
.reason_item_txt em {
    color: #c70000;
    font-weight: bold;
}

.reason_content {
    display: block;
    text-align: center;
}

.reason_content img {
    width: 93vw;
    max-width: 870px;
}

@media screen and (min-width: 821px) {
    .reason {
        background-image: url(../img/reason_bg.jpg);
        background-size: auto;
        background-repeat: repeat-x;
        background-position: bottom -30px center;
    }

    .reason_list {
        margin-bottom: 20px;
    }

    .reason_item {
        border: 10px solid #efe7e7;
        background-color: #f8f3f3;
        width: 450px;
        position: relative;
        padding: 10px 0 20px;
    }

    .reason_item::before {
        content: '';
        background: url(../img/checkmark.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .reason_item_ttl {
        font-size: 2em;
        padding: 15px 0 0;
        line-height: 1.4;
    }

    .reason_item_txt {
        font-size: 1.2em;
        line-height: 1.6;
        padding: 20px 30px 0;
        text-align: left;
    }
}

@media screen and (max-width: 820px) {
    .reason {
        background-color: #fbecbd;
    }

    .reason_list {
        gap: 10px;
        padding-bottom: 0;
    }

    .reason_item {
        width: 100%;
        background: #fff;
        border: 2px solid #000;
        text-align: left
    }

    .reason_item_ttl {
        position: relative;
        font-size: 4.9vw;
        padding: 5% 10% 5% 3%;
        font-weight: bold;
    }

    .reason_item_ttl::after {
        content: "";
        position: absolute;
        right: 15px;
        top: 43%;
        transition: all 0.2s ease-in-out;
        width: 0;
        height: 0;
        transform: rotate(180deg);
        border-right: 7px solid transparent;
        border-bottom: 7px solid #c70000;
        border-left: 7px solid transparent;
    }

    .reason_item_ttl.open::after {
        transform: rotate(0deg);
        top: 43%;
    }

    .reason_item_txt {
        display: none;
        border-top: 2px dashed #dedede;
        padding: 15px;
        line-height: 1.6;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    強化
_______________________________________________________*/

@media screen and (max-width: 820px) {
    .kyouka_pc{
        display: none;
    }

    .kyouka_sp {
        background-color: #f5ebeb;
        border: 10px solid #f5d2d2;
        width: calc(100% - 20px);
        margin-inline: auto;
        padding: 10px;
        text-align: center;
    }

    .kyouka_sp h2{
        display: inline-block;
        color: #c70000;
        font-size: 1.2em;
        padding-bottom: 5px;
    }

    .kyouka_sp h2 .dots{
        position: relative;
        display: inline-block;
        padding-top: 0.5em;
    }

    .kyouka_sp h2 .dots::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 5em;
        height: 4px;
        background-image: radial-gradient(circle, currentColor 2px, transparent 2px);
        background-size: 1em 4px;
        background-repeat: repeat-x;
    }
}

@media screen and (min-width: 821px) {
    .kyouka_sp{
        display: none;
    }

    .kyouka_pc{
        background-color: #fff;
        border: 1px solid #c70000;
        box-shadow: 0 0 8px -2px #ff0000;
        border-radius: 6px;
        padding: 0 0 20px;
        margin-bottom: 30px;
    }

    .kyouka_pc h3{
        display: flex;
        align-items: center;
        gap: 5px;
        width: fit-content;
        padding: 8px 10px;
        margin: -20px auto 14px;
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        background-color: #c70000;
    }

    .kyouka_pc h3::before,
    .kyouka_pc h3::after{
        content: '';
        width: 24px;
        height: 30px;
        display: inline-block;
        background: url(../img/kyouka-icon.png) no-repeat center;
        background-size: contain;
    }

    .kyouka_pc_img{
        width: 100%;
        max-width: fit-content;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストの買取事例
_______________________________________________________*/

.jirei_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.jirei_item {
    background-color: #fff;
    padding: 10px;
    width: calc(100% / 3 - 25px);
    display: grid;
    justify-items: center;
    align-content: space-between;
    gap: 10px;
}

.jirei_item_img{
    grid-row: span 3;
}

.jirei_item_img img {
    width: 100%;
}

.jirei_item_name {
    text-align: center;
    font-size: 1.2em;
}

.jirei_item_price {
    text-align: center;
    color: #c70000;
}

.jirei_item_price em {
    font-weight: bold;
    font-size: 1.6em;
}
.jirei_item dl {
    background-color: #dedede;
    width: 90%;
    margin-inline: auto;
}

.jirei_item dt{
    float: left;
}

.jirei_item dd {
    border-bottom: 1px solid #fff;
}

.jirei_bottom_txt {
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (min-width: 821px) {
    .jirei_item dt {
        background-color: #999;
        color: #fff;
        width: 50%;
    }

    .jirei_item dt,
    .jirei_item dd {
        padding: 6px 0;
    }

    .jirei_bottom_txt {
        padding: 20px 0 30px;
        font-size: 1.6em;
        background: url("../img/jirei_arrow.png") no-repeat center top -20px;
        background-size: contain;
    }
}

@media screen and (max-width: 820px) {
    .jirei_item {
        width: 100%;
        padding: 7px;
        grid-template-columns: 2fr 3fr;
        align-items: center;
        justify-items: start;
    }

    .jirei_list{
        gap: 10px;
    }

    .jirei_item_name {
        text-align: left;
        font-size: 16px;
    }

    .jirei_item_price {
        font-size: 12px;
    }

    .jirei_item dl {
        width: 100%;
        font-size: 15px;
        line-height: 1.4;
        background-color: #fff;
    }

    .jirei_item dt::after {
        content: "：";
    }

    .jirei_item dd {
        display: flex;
    }

    .jirei_bottom_txt {
        padding: 10px;
        margin-top: 20px;
        border: 2px solid #1a1a1a;
        background-color: #fff;
        font-size: 1.2em;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    流れ
_______________________________________________________*/
.flow_ttl_sub{
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 40px;
}
.flow_step {
    display: flex;
    gap: 24px;
}

.flow_step li {
    position: relative;
    width: 25%;
}

.flow_step_img {
    filter: drop-shadow(3px 3px 4px #0000004f);
}

.flow_step_img img {
    width: 100%;
}

.flow_step_num {
    color: #ff4800;
    font-weight: bold;
}

.flow_step_num em {
    font-size: 1.5em;
}

.flow_step_txt {
    margin-top: 6px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.35;
}

.flow_step_txt_fs{
    display: block;
    font-size: 0.8em;
}

@media screen and (min-width: 821px) {
    .flow_step li::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 18px solid #999;
        z-index: 2;
    }

    .flow_step li:last-child::after {
        display: none;
    }

    .flow_step_img img {
        background: #fff;
        padding: 7px;
        box-shadow: 8px 8px 10px rgb(0 0 0 / 31%);
        clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
    }

    .flow_step_num {
        padding-left: 30px;
        padding-bottom: 5px;
        text-align: left;
    }

    .flow_step_txt {
        padding-right: 30px;
        text-align: right;
    }
}

@media screen and (max-width: 820px) {
    .flow {
        padding-bottom: 10px;
    }

    .flow_ttl_sub {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .flow_step {
        display: block;
        padding: 0;
    }

    .flow_step li {
        position: relative;
        display: grid;
        grid-template-columns: 45% 55%;
        width: 95%;
        min-height: 90px;
        margin: 0 auto 35px;
        text-align: left;
    }

    .flow_step li::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
        z-index: 0;
    }

    .flow_step_num,
    .flow_step_txt {
        position: relative;
    }

    .flow_step_img {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .flow_step_img img {
        position: absolute;
        top: -8px;
        left: -3px;
        width: auto;
        height: clamp(75px, 23vw, 90px);
    }

    .flow_step_num {
        grid-column: 2;
        align-self: end;
        padding: 0 16px;
        font-size: 18px;
        line-height: 1.2;
    }

    .flow_step_txt {
        grid-column: 2;
        align-self: start;
        padding: 0 16px;
        font-size: 16px;
    }

    .flow_step_txt_fs_sp{
        display: block;
        font-size: 0.8em;
    }

    .flow_step li::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -14px;
        width: 0;
        height: 0;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 14px solid #fff;
        z-index: 2;
    }

    .flow_step li:last-child::after {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .flow_step_img img {
        width: 100%;
    }
}
/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    初めての方へ
_______________________________________________________*/
.for_guest {
    max-width: 750px;
    padding: 30px 25px 40px;
    margin: 20px auto 10px;
    border: 3px solid #0da349;
    background-color: #fff;
    color: #0da349;
    text-align: center;
}

.for_guest_ttl {
    margin-bottom: 15px;
    background:url("../img/for-guest-bg.png") no-repeat calc(50% - 200px) 0;
    background-size: contain;
    text-align: center;
    font-size: 2em;
    line-height: 1.4;
}

.for_guest_ttl span::after{
    content: '';
    width: 34px;
    height: 36px;
    display: inline-block;
    background: url("../img/for-guest-icon.png") no-repeat center;
    background-size: contain;
    vertical-align: top;
}

.for_guest_txt {
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
    text-align: left;
    font-size: 1.2rem;
}

.for_guest_txt_point {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 20px;
    margin-top: 10px;
}

.for_guest_txt_point p {
    flex: 1;
    padding: 10px 3%;
    text-align: center;
    background-color: #d8f6e4;
}

@media screen and (min-width: 821px) {
    .for_guest_shakensho {
        width: 100%;
        padding: 10px;
        margin-inline: auto;
        background: #32b16c;
        color: #fff;
        border-radius: 30px;
        font-size: 20px;
        line-height: 1.4;
        box-shadow: 0 6px 1px 0 #eaeaea;
    }

    .for_guest_shakensho em {
        padding: 0;
        color: #ff3600;
        font-size: 1.2em;
        background: #fff000;
    }

    .for_guest_shakensho span {
        color: #fff000;
    }
}

@media screen and (max-width: 820px) {
    .for_guest {
        width: calc(100% - 20px);
        padding: 25px 25px 20px;
        border: 2px solid #0da349;
    }

    .for_guest_ttl {
        background: url(../img/for-guest-bg.png) no-repeat top left;
        background-size: contain;
        font-size: 18px;
    }

    .for_guest_ttl span::after {
        width: 20px;
        height: 20px;
    }

    .for_guest_txt {
        width: 100%;
        font-size: 16px;
    }

    .for_guest_shakensho {
        padding: 2%;
        font-size: 14px;
        text-align: left;
        color: #333;
        background-color: #f9e54d;
    }

    .for_guest_shakensho em{
        font-weight: bold;
        font-size: 1.2em;
        color: #c70000;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    よくあるご質問
_______________________________________________________*/
.faq_list {
    display: flex;
    justify-content: space-between;
    text-align:left;
}

.faq_item{
    padding: 15px 10px 20px 0;
    background-color: #fff;
    width: calc(100% / 3 - 15px);
}

.faq_q {
    color: #2b4794;
    position: relative;
    padding: 10px 0 20px 50px;
    font-size: 1.2em;
    line-height: 1.6;
}

.faq_q::before {
    content: '';
    background: url("../img/qa_q.png") no-repeat;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: -5px;
    top: 10px;
}

.faq_a {
    position: relative;
    line-height: 1.6;
    padding: 0 0 0 50px;
}

.faq_a::before {
    content: '';
    background: url("../img/qa_a.png") no-repeat;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: -5px;
}

@media screen and (max-width: 820px) {
    .faq_list {
        flex-direction: column;
        gap: 15px;
    }

    .faq_item {
        width: 100%;
    }

    .faq_list {
        padding: 0 4% 4%;
    }

    .faq_q,
    .faq_a {
        padding-left: 35px;
    }

    .faq_q::before,
    .faq_a::before {
        width: 30px;
        height: 30px;
    }
}
/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    フッター
_______________________________________________________*/
footer {
    padding: 20px 0 20px;
    background-color: #fff;
    text-align: center;
    color: #a2a2a2;
}

.footer_link{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer_link p a {
    color: #000;
}

@media screen and (max-width: 820px) {
    footer {
        border-top: 2px solid #e2e2e2;
    }

    .footer_link{
        flex-direction: column;
        gap: 20px;
    }
}