﻿/* ========================================
   キタムラ会員サービス スタイルシート
   ======================================== */

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: "Noto Sans JP", "Noto Sans", sans-serif;
    font-size: 10px;
    /* 1rem = 10px */
    line-height: 1.6;
}

body {
    font-family: "Noto Sans JP", "Noto Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #3d3333;
    background-color: #fff;
}


/* ========================================
   共通コンポーネント
   ======================================== */

/* ボタンコンポーネント */
a.btn {
    max-width: 636px;
    width: 100%;
    height: 102px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 1.25rem 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    color: #FFF;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.44px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

a.btn:hover {
    opacity: .75;
}

.btn__theme-primary {
    background: #06A865;
    -webkit-box-shadow: 4px 8px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 4px 8px 4px 0 rgba(0, 0, 0, 0.15);
}

.btn__text {
    margin-right: 0.5rem;
}

@media (max-width:767px) {
    a.btn{
        /* max-width: 344px; */
        width: 88.2051282051282%;
        height: 55px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding: 1rem 2rem;
        font-size: 2rem;
    }
}



/* ========================================
   メインビジュアルセクション (.mv)
   ======================================== */
.mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}


/* ========================================
   下取り方法
   ======================================== */
.guide {
    width: 100%;
    padding: 0;
    background: #F2E04E;
}

.guide__container {
    max-width: 1091px;
    margin: 0 auto;
    padding: 62px 0 69px;
    z-index: 3;
    position: relative;
}

.guide__title-area {
    width: 100%;
    max-width: 322px;
    padding: 0;
    margin: 0 auto 97px;
    display: block;
    position: relative;
}

.guide__title-area:before,
.guide__title-area:after {
    content: "";
    width: 100%;
    min-width: 322px;
    margin: auto;
    display: block;
}

.guide__title-area:before {
    height: 2px;
    background: #000;
}

.guide__title-area:after {
    height: 11px;
    background: url(/lp/kaikae-ouen/images/202511/ttl_img.svg) no-repeat center center;
}

.guide__title-area [class *=-title] {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.44px;
}



/* 受付エリア */
.guide__reception-area {
    margin: 0 auto;
    position: relative;
}

.guide__title-area .guide__reception-title {
    padding: 26px 20px 27px;
}

.guide__reception-steps-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    color: #000;
    padding: 0 13px 0 25px;
    font-size: 36px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(58%, transparent), color-stop(42%, #fff));
    background: -o-linear-gradient(transparent 58%, #fff 42%);
    background: linear-gradient(transparent 58%, #fff 42%);
    display: block;
    position: relative;
}
.guide__reception-steps-title span{
    margin-left:-5px;
}

h4.guide__reception-steps-title:before,
h4.guide__reception-steps-title:after {
    content: "";
    width: 4px;
    height: 40px;
    display: block;
    background: #000;
    position: absolute;
    top: 14px;
}

h4.guide__reception-steps-title:before {
    left: 13px;
    -webkit-transform: rotate(-14deg);
    -ms-transform: rotate(-14deg);
    transform: rotate(-14deg);
}

h4.guide__reception-steps-title:after {
    right: 13px;
    -webkit-transform: rotate(14deg);
    -ms-transform: rotate(14deg);
    transform: rotate(14deg);
}

.guide__reception-steps-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.guide__reception-step {
    max-width: 340px;
    width: 100%;
    min-height: 374px;
    padding: 59px 0 0;
    margin: 0 auto 25px;
    text-align: center;
    border-radius: 30px 30px 0 0;
    background: #FFF;
    position: relative;
}

.guide__reception-step-number {
    width: 160px;
    height: 48px;
    padding: 0;
    margin: 0 auto;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    border-radius: 50px;
    background: #231815;
    z-index: 1;
}

.guide__reception-step p {
    margin: 0 auto;
    padding: 0 6px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.72px;
    text-align: center;
}

.guide__reception-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.guide__reception-step:first-child .guide__reception-img {
    width: 321px;
    margin-top: 44px;
}

.guide__reception-step:nth-of-type(2) .guide__reception-img {
    width: 287px;
    margin-top: 20px;
}

.guide__reception-step:last-child .guide__reception-img {
    width: 319px;
    margin-top: 46px;
}

.guide__reception-step-text {
    font-size: 1.2rem;
    line-height: 1.4;
}



/* ========================================
Q&A
   ======================================== */
.qa {
    padding: 70px 0;
}

.qa__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.qa__header {
    width: 100%;
    max-width: 322px;
    padding: 0;
    margin: 0 auto 57px;
    display: block;
    position: relative;
}

.qa__title {
    padding: 26px 20px 27px;
    font-size: 3.6rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    text-align: center;
}

.qa__header:before,
.qa__header:after {
    content: "";
    width: 100%;
    max-width: 322px;
    margin: auto;
    display: block;
}

.qa__header:before {
    height: 2px;
    background: #000;
}

.qa__header:after {
    height: 11px;
    background: url(/lp/kaikae-ouen/images/202511/ttl_img.svg) no-repeat center center;
}

.qa__content {
    max-width: 1000px;
    margin: 0 auto 85px;
    padding: 0 35px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

dl.qa__text {
    margin: 0 auto 27px;
}

.qa__text-item {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

dt.qa__text-item {
    padding-bottom: 12px;
    color: #000;
    background-image: -o-radial-gradient(circle, #000000 1px, transparent 1px);
    background-image: radial-gradient(circle, #000000 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 11px 2px;
}

span.icon-qa {
    margin: 0 .5em 0 0;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.12px;
}

span.period {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.72px;
}

dd.qa__text-item,
dd.qa__text-item span.icon-qa,
dd.qa__text-item span.period {
    color: #6FA9DB;
}

.qa__text-item p {
    margin: 0;
    line-height: 150%;
    display: inline-block;
}



/* ========================================
レスポンシブデザイン
   ======================================== */

@media (min-width: 768px) {
    .mv {
        margin: 0 auto;
        padding: 54px 0 49px;
        overflow: hidden;
    }

    .logo {
        width: 103px;
        height: 103px;
        position: absolute;
        top: 32px;
        left: 32px;
    }

    .mv__container {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
    }

    .mv__content {
        z-index: 2;
    }

    .mv__title-area {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 630px;
        margin: 0 auto 19px;
        display: -ms-grid;
        display: grid;
        gap: 31px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .mv__title {
        margin: 0 auto;
        position: relative;
    }

    .mv__title-main {
        max-width: 630px;
        margin: 0 auto;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        display: block;
    }

    .mv__title-text {
        max-width: 256px;
        margin: 0 auto;
        position: absolute;
        left: -198px;
        top: 99px;
        display: block;
    }

    .mv__title-image {
        max-width: 225px;
        position: absolute;
        right: -181px;
        top: 144px;
    }

    p.mv__title-date {
        max-width: 632px;
        margin: 0 auto;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .mv__description {
        max-width: 881.34px;
        margin: 0 auto 17px;
    }

    .mv__description h2 {
        margin: 0 0 0 -8px;
    }

    .cta {
        margin: 0 auto 0;
        text-align: center;
        position: relative;
    }

    .mv .cta {
        margin-top: -80px;
    }

    .guide__reception-steps-list {
        width: 100%;
        margin: 0 auto 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .cta-text {
        margin: 0 auto;
    }

    .cta-text p {
        margin: 0 auto;
        color: #231815;
        font-size: 24px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.96px;
        text-align: center;
        display: block;
    }

    .cta-text p.fukidasi:before,
    .cta-text p.fukidasi:after {
        content: "";
    }

    .cta-text p.fukidasi:before {
        content: "＼";
    }

    .cta-text p.fukidasi:after {
        content: "／";
    }

    .cta-text p.small {
        margin: 0 auto 10px;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.64px;
    }

    .cta ul {
        margin: 35px auto 0;
        text-align: left;
        display: table;
    }

    .cta ul li {
        color: #000;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.15px;
    }
}



/* タブレット (767px以下) */
@media (max-width: 767px) {
    .mv {
        margin: 0 auto;
        padding: 0 0 83px;
    }

    .logo {
        width: 58px;
        height: 58px;
        margin: 14px 14px 10px;
        position: relative;
    }

    .mv__container {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
    }

    .mv__content {
        padding: 0;
        z-index: 2;
    }

    .mv__title-area {
        /* max-width: 359px; */
        width: 92.05128205128204%;
        margin: 0 auto 29px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        /* justify-content: flex-start; */
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: center;
        align-content: center;
        position: relative;
    }

    .mv__title {
        width: 100%;
        /* max-width: 359px; */
        margin: 0;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .mv__title-main {
        /* max-width: 345.16px; */
        width: 92.05128205128204%;
        margin: 0 auto;
        display: block;
    }

    .mv__title-text {
        /* max-width: 169.768px; */
        width: calc(47.353760445682454% + 5px);
        margin: 18px 5px 0 0;
        display: block;
    }

    .mv__title-image {
        /* max-width: 166px; */
        width: calc(46.239554317548745% + 6px);
        margin: 24px 0 0 6px;
    }

    p.mv__title-date {
        /* max-width: 356px; */
        width: 100%;
        margin: 17px auto 0;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .mv__description {
        /* max-width: 348px; */
        width: 89.23076923076924%;
        height: auto;
        margin: 0 auto;
    }

    .mv__description h2 {
        margin: 0 0 0 -3px;
    }

    .cta {
        margin: 0 auto 0;
        text-align: center;
        position: relative;
    }

    .mv .cta {
        margin-top: 21px;
    }

    .guide__reception-steps-list {
        margin-bottom: 28px;
    }

    .cta-text {
        margin: 0 auto;
    }

    .cta-text p {
        margin: 0 auto;
        color: #231815;
        font-size: 2rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
        text-align: center;
        display: block;
    }

    p.fukidasi {
        padding: 0 .4em;
        position: relative;
        display: inline-block;
    }

    p.fukidasi span {
        margin-left: -5px;
    }

    p.fukidasi:before,
    p.fukidasi:after {
        content: "";
        width: 2px;
        height: 22px;
        display: block;
        background: #000;
        position: absolute;
        top: 6px;
    }

    p.fukidasi:before {
        left: 3px;
        -webkit-transform: rotate(-14deg);
        -ms-transform: rotate(-14deg);
        transform: rotate(-14deg);
    }

    p.fukidasi:after {
        right: 7px;
        -webkit-transform: rotate(14deg);
        -ms-transform: rotate(14deg);
        transform: rotate(14deg);
    }

    .cta-text p.small {
        margin: 5px auto 10px;
        color: #000;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0;
    }

    .cta ul {
        /* max-width: 360px; */
        width: 92.3076923076923%;
        margin: 40px auto 0;
        padding: 0 15px;
        text-align: left;
        display: table;
    }

    .cta ul li {
        color: #000;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.15px;
    }



    /* ========================================
下取り方法
   ======================================== */
    .guide__container {
        padding: 62px 25px 45px;
    }

    .guide__title-area {
        margin: 0 auto 55px;
    }

    .guide__title-area:before,
    .guide__title-area:after {
        content: "";
        width: 100%;
        max-width: 322px;
        min-width: unset;
        margin: auto;
        display: block;
    }

    .guide__title-area:before {
        height: 2px;
        background: #000;
    }

    .guide__title-area:after {
        height: 11px;
        background: url(/lp/kaikae-ouen/images/202511/ttl_img.svg) no-repeat center center;
    }

    .guide__title-area [class *=-title] {
        font-size: 2.4rem;
        line-height: 1;
    }


    /* 受付エリア */
    .guide__title-area .guide__reception-title {
        padding: 22px 14px 24px;
    }

    .guide__reception-steps-title {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        color: #000;
        margin: -20px auto 0;
        padding: 0 0 0 7px;
        font-size: 2rem;
        font-weight: 700;
        line-height: 2.4;
        letter-spacing: 0;
        text-align: center;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(50%, #fff));
        background: -o-linear-gradient(transparent 65%, #fff 50%);
        background: linear-gradient(transparent 60%, #fff 50%);
        display: block;
        position: relative;
    }

    h4.guide__reception-steps-title:before,
    h4.guide__reception-steps-title:after {
        content: "";
        width: 1.5px;
        height: 21px;
        display: block;
        background: #000;
        position: absolute;
        top: 16px;
    }

    h4.guide__reception-steps-title:before {
        left: 0px;
        -webkit-transform: rotate(-14deg);
        -ms-transform: rotate(-14deg);
        transform: rotate(-14deg);
    }

    h4.guide__reception-steps-title:after {
        right: 0;
        -webkit-transform: rotate(14deg);
        -ms-transform: rotate(14deg);
        transform: rotate(14deg);
    }

    .guide__reception-steps-list {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        display: block;
    }

    .guide__reception-step {
        max-width: 340px;
        min-height: 374px;
        padding: 59px 9px 0;
        margin: 0 0 45px;
        text-align: center;
        border-radius: 30px 30px 0 0;
        background: #FFF;
        position: relative;
    }



    /* ========================================
   Q&A
   ======================================== */
    .qa {
        padding: 107px 0;
    }

    .qa__container {
        margin: 0 auto 73px;
        padding: 0 34px;
    }

    .qa__header {
        margin: 0 auto 58px;
        display: block;
        position: relative;
    }

    .qa__title {
        padding: 22px 14px 24px;
        font-size: 2.4rem;
        line-height: 1;
    }

    .qa__content {
        margin: 0 auto;
        padding: 0;
    }

    span.icon-qa {
        margin: 0 .25em 0 0;
    }
}

/* スマホ (389px以下) */
@media (max-width:389px) {
    .mv {
        padding: 0 15px 83px;
    }
    .mv__title-text {
        width: calc(47.353760445682454% + 1.392757660167131%);
        margin: 18px 1.392757660167131% 0 0;
    }

    .mv__title-image {
        width: calc(46.239554317548745% + 1.6713091922005572%);
        margin: 24px 0 0 1.6713091922005572%;
    }
}