
#kv {
    width: 100%;
    height: 254px;
    background-image: url(../../../img/shop/home/kv.jpg);
    background-position: center right 30%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#kv .main-title {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    font-size: clamp(24px, 6vw, 46px);
}

.btn {
    width: 90%;
    border-radius: 8px;
    padding: 16px;
    margin: 0 auto;
    display: flex;
}

a.btn:hover {
    color: #fff;
}

@media (min-width: 1024px) {
    #kv {
        height: auto;
        background-position: center;
        padding-top: 40%;
    }

    #kv .main-title {
        font-size: 46px;
        left: calc(((100vw - 1024px) / 2) + 80px);
    }
}

/* ---------- */
/* バッグカルーセル */

.bag-slider {
    overflow: hidden;
}

.bag-slider-inner {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 30px 0;
    border: none;
}

.bag-slider img {
    display: block;
    width: auto;
    height: 100px;
    object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 新着バッグ */
.newarrivals-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 56px;
}

.item-box {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.item-box:hover {
    color: #000;
}

.item-box img {
    width: 177px;
}

@media (max-width: 1024px) {
    .newarrivals-list {
        display: none;
    }
}

/* ---------- */
/* 導入 */

.intro-block {
    text-align: center;
    padding: 40px 0;
}

/* ---------- */
/* ご利用の流れ */

.flow-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    counter-reset: number 0;
}

.flow-item {
    width: 100%;
    max-width: 400px;
    border: 1px solid #74AADE;
    border-radius: 10px;
    text-align: center;
    padding: 16px;
}

.flow-item h3::before {
    counter-increment: number 1;
    content: "STEP"counter(number);
    display: block;
    color: #74AADE;
    font-size: 16px;
    margin-bottom: 4px;
}

.flow-item .img {
    width: 240px;
    margin: 8px auto;
}

.flow-item p {
    font-weight: 600;
}

@media (min-width: 1024px) {
    .flow-list {
        flex-direction: row;
        justify-content: center;
    }
}

/* ---------- */
/* 満期後の3つの選択 */

.plan-intro-block {
    text-align: center;
}

.sp-only-example-block {
    background: #e1ebf9;
    border-radius: 2px;
    margin-top: 32px;
    padding: 16px;
}

.sp-only-example-caption {
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.sp-only-example {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border-radius: 2px;
    padding: 16px;
}

.sp-only-example + .sp-only-example {
    margin-top: 8px;
}

.sp-only-example-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0;
}

.sp-only-example-item dt {
    width: 100px;
    font-size: 12px;
    font-weight: 500;
    color: gray;
    flex-shrink: 0;
}

.sp-only-example-item dd {
    width: calc(100% - 100px);
    margin: 0;
}

.example-block {
    margin-top: 32px;
    display: none;
}

.example-block .table-caption {
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.table-block {
    overflow-x: auto;
    padding: 0 16px;
}

.example-block table {
    border-collapse: collapse;
    white-space: nowrap;
    margin: auto;
    font-size: 13px;
}

.example-block table th,
.example-block table td {
    border: 1px solid #000;
    padding: 5px 10px;
}

.example-block table th {
    background: #e1ebf9;
}

.choice-block {
    max-width: 500px;
    background: rgb(227 149 149 / 0.15);
    margin: 16px auto 0;
    padding: 16px;
}

.choice-block .note-text {
    color: #E39595;
}

.choice-list {
    margin-top: 8px;
}

.choice-item {
    position: relative;
    padding-left: 40px;
}

.choice-item + .choice-item {
    margin-top: 16px;
}

.choice-item::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #E39595;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.choice-item .choice-title {
    color: #E39595;
    font-size: 16px;
    font-weight: 500;
}

.example-img-block {
    margin-top: 32px;
}

.example-img-block .example-text {
    font-weight: 600;
    text-align: center;
}

.example-img-block .example-img {
    max-width: 250px;
    margin: 8px auto 0;
}

.example-img-block .note {
    text-align: right;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .sp-only-example-block {
        display: none;
    }

    .example-block {
        display: block;
    }
}

@media (min-width: 1024px) {
    .example-block {
        margin-top: 48px;
    }

    .choice-block {
        display: none;
    }

    .example-img-block {
        margin-top: 48px;
    }

    .example-img-block .note {
        display: none;
    }

    .example-img-block .example-img {
        max-width: 700px;
    }
}

/* ---------- */
/* ブランド一覧 */

.brand-section .intro-text {
    text-align: center;
    margin-bottom: 32px;
}

.brandlist {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: auto;
}

.brandlist li {
    width: 100%;
}

.brandlist li .s-size {
    font-size: 0.8em;
}

@media (min-width: 512px) {
    .btn {
        width: 329px;
        border-radius: 8px;
        padding: 16px;
        margin: 0 auto;
        display: flex;
    }
}

@media (min-width: 768px) {
    .brandlist li {
        width: calc((100% - 16px) / 2);
    }
}

@media (min-width: 1024px) {
    .brand-section .intro-text {
        margin-bottom: 48px;
    }

    .brandlist {
        gap: 32px;
    }
    
    .brandlist li {
        width: calc((100% - (32px * 2)) / 3);
    }
}






