/* -----------basic_mv-----------*/
.basic_mv {
    position: relative;
    z-index: 1;
    padding: 70px 30px 51px;
}
.basic_mv_object1 {
    width: 250px;
    top: 0px;
    left: 0;
}
.basic_mv_object2 {
    width: 359px;
    top: -50px;
    right: 0px;
}
.basic_mv_object3 {
    width: 131px;
    top: 155px;
    right: 282px;
}

.basic_mv_container {
    max-width: 1110px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.basic_mv_content {
    width: calc(43% - 30px);
    max-width: 440px;
    flex-shrink: 0;
}
.basic_mv_title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}
.basic_mv_head_line {
    display: block;
    max-width: 320px;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        var(--beige) 0px,
        var(--beige) 10px,
        transparent 10px,
        transparent 15px
    );
    background-position: bottom;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}
.basic_mv_title_icon {
    width: 42px;
    height: auto;
    object-fit: contain;
}
.basic_mv_title_text {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.basic_mv_head {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--accent-green);
}
.basic_mv_desc {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.basic_mv_images {
    width: 57%;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.basic_mv_images img {
    width: calc((100% - 20px) / 3);
    object-fit: contain;
    border-radius: 8px;
}

.bookcounter_page .basic_mv_images img {
    width: 100%;
}
.basic_mv_table {
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.basic_mv_table_item {
    width: 100%;
    display: flex;
    border: 1px solid #fff;
}
.basic_mv_table_item:nth-of-type(1),
.basic_mv_table_item:nth-of-type(2) {
    width: 50%;
}
.basic_mv_table_item:nth-of-type(3),
.basic_mv_table_item:nth-of-type(4) {
    margin-top: -1px;
}
.basic_mv_table_item:nth-of-type(1) {
    border-radius: 5px 0 0 0;
}
.basic_mv_table_item:nth-of-type(2) {
    border-radius: 0 5px 0 0;
}
.basic_mv_table_item:nth-of-type(4) {
    border-radius: 0 0 5px 5px;
}

.basic_mv_table_item_title {
    width: 80px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 10px 5px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.basic_mv_table_item_text {
    width: 100%;
    font-size: clamp(12px, calc((100vw / 375) * 12), 14px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding: 9px 0 9px 20px;
    display: flex;
    align-items: center;
}
.basic_mv_table_note {
    display: block;
    font-size: clamp(12px, calc((100vw / 767) * 12), 14px);
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 10px;
    color: var(--base-gray);
}

.basic_mv .components_btn {
    margin: 50px 0 0;
    padding: 13px 24px 13px 38px;
}
.basic_mv .components_btn_icon {
    transform: rotate(90deg);
}

@media screen and (max-width: 1024px) {
    .basic_mv_object1 {
        width: 180px;
    }
    .basic_mv_object2 {
        width: 280px;
    }
    .basic_mv_object3 {
        width: 124px;
        right: 222px;
    }

    .basic_mv_content {
        width: calc(52% - 30px);
        flex-shrink: 0;
    }
    .basic_mv_images {
        width: 48%;
    }
}

@media screen and (max-width: 959px) {
    .basic_mv_title_text {
        font-size: clamp(20px, calc((100vw / 375) * 20), 36px);
    }
    .basic_mv_head {
        font-size: clamp(18px, calc((100vw / 767) * 18), 21px);
    }
    .basic_mv_desc {
        font-size: clamp(14px, calc((100vw / 767) * 16), 16px);
    }
    .basic_mv_content {
        width: calc(45% - 30px);
    }
    .basic_mv_title {
        padding-bottom: 20px;
    }
    .basic_mv_title_icon {
        width: clamp(24px, calc((100vw / 767) * 30), 30px);
    }
    .basic_mv_table_item_title {
        width: 60px;
    }
    .basic_mv_table_item_text {
        line-height: 1.2;
        padding: 5px 10px;
    }

    .basic_mv_table {
        margin-top: 20px;
    }

    .basic_mv .components_btn {
        margin: 20px 0 0;
    }
    
    .basic_mv_images {
        width: 55%;
    }
}

@media screen and (max-width: 767px) {
    .basic_mv {
        padding: 70px 30px 0;
    }
    .basic_mv_object1 {
        width: 100px;
    }
    .basic_mv_object2 {
        width: 142px;
        top: 0;
    }
    .basic_mv_object3 {
        width: 66px;
        top: 100px;
        right: 106px;
    }

    .basic_mv_container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .basic_mv_content {
        width: 100%;
        max-width: none;
    }
    .basic_mv_table_item:nth-of-type(1),
    .basic_mv_table_item:nth-of-type(2) {
        width: 100%;
    }
    .basic_mv_table_item:nth-of-type(1),
    .basic_mv_table_item:nth-of-type(2),
    .basic_mv_table_item:nth-of-type(3),
    .basic_mv_table_item:nth-of-type(4) {
        margin-top: -1px;
    }
    
    .basic_mv .components_btn {
        margin: 20px 0 0;
        padding: 5.5px 12px 5.5px 12px;
    }
    
    .basic_mv_images {
        width: 100%;
    }
}


