@charset "utf-8";

/* mainVisual */
#call_c {
    width: 100%;
    height: 100%;
    background: url(../../img/top/mv_bg_full.png) center / cover no-repeat;
}

.mv_container {
    padding-top: 48px;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: auto;
}

.mv_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.freemobiz_logo {
    margin: 0 auto;
}

.mv_right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 585px;
    width: 100%;
}

/* mv_audio-sim */
.mv_audio-sim,
.mv_data-sim {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.mv_audio-sim_ttl_wrap,
.mv_data-sim_ttl_wrap {
    display: flex;
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--white);
    border-radius: 8px 8px 0 0;
    font-weight: normal;
}

.mv_audio-sim_ttl_wrap {
    background: linear-gradient(102deg, #0091E1 0%, #0051C6 100%), #00A0E9;
}

.mv_data-sim_ttl_wrap {
    background-color: var(--black);
}

.mv_audio-sim_ttl {
    display: flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: var(--white);
    color: #0051C6;
    font-size: 16px;
    font-weight: bold;
}

.mv_audio-sim_container,
.mv_data-sim_container {
    display: flex;
    padding: 14px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    border-radius: 0 0 8px 8px;
    background-color: var(--white);
}

.mv_audio-sim_box_wrap,
.mv_audio-sim_flexbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv_audio-sim_data-ttl {
    display: flex;
    padding: 6px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #D5E6FF;
    color: #0051C6;
    font-size: 14px;
    font-weight: 500;
}

.mv_audio-sim_giga_flexbox {
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: baseline;
}

.mv_right .giga {
    font-size: 16px;
}

.mv_right .giga .txt_big {
    font-size: 24px;
}

.color_dark-blue {
    color: #0051C6;
}

.mv_audio-sim_giga_flexbox .price {
    font-size: 16px;
}

.mv_audio-sim_giga_flexbox .price.txt_big {
    font-size: 32px;
}

.mv_audio-sim_giga_flexbox .price .yen {
    font-size: 17px;
}

.price+.yen .excluding-tax {
    top: -8px;
    left: 50%;
    transform: translate(-50%, 0);
}

.mv_audio-sim_flexbox .plus {
    font-weight: bold;
    font-size: 20px;
    color: #00DAF7;
}

.mv_audio-sim_kakeho_ttl {
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #D5E6FF;
    color: #0051C6;
    font-size: 14px;
    font-weight: 500;
}

.mv_right .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 10px solid #00daf7;
    border-right: 0;
}

/* mv_data-sim */
.mv_data-sim {
    display: flex;
    max-width: 427px;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.mv_data-sim_ttl {
    display: flex;
    padding: 5px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
}

.mv_data-sim_flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mv_data-sim_data-ttl {
    display: flex;
    padding: 6px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #E1E1E1;
    font-size: 14px;
    font-weight: 500;
}

.mv_data-sim_giga_flexbox {
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: baseline;
}

/* mv_remarks
--------------------------------*/
.mv_remarks {
    width: 100%;
    background-color: var(--white);
    padding: 16px 0;
}

.remarks_inner {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.remarks {
    font-size: 12px;
}

@media screen and (max-width: 1180px) {
    #call_c {
        background: url(../../img/top/mv_bg.png) center / cover no-repeat;
    }

    .mv_container {
        width: 94%;
        padding: 0;
        gap: 48px;
    }

    .freemobiz_logo {
        max-width: 300px;
        width: 100%;
    }

    .mv_people {
        display: none;
    }

    .mv_left {
        justify-content: center;
    }

    .mv_right {
        padding: 48px 0;
    }

    .mv_remarks {
        max-width: 100%;
        padding: 16px;
    }
}

@media screen and (max-width: 869px) {
    .mv_container {
        flex-direction: column;
        width: 94%;
        gap: 0;
    }

    .mv_left {
        padding-top: 32px;
        margin-bottom: 24px;
    }

    .mv_right {
        margin: auto;
        padding: 0 0 32px;
    }
}

@media screen and (max-width: 768px) {
    #call_c {
        background: url(../../img/top/mv_bg_sp.png) center / cover no-repeat;
    }

    .mv_container {
        flex-direction: column;
        width: 94%;
        gap: 0;
    }

    .freemobiz_logo {
        max-width: 200px;
    }

    .mv_left {
        flex-direction: column;
        align-items: center;
    }

    .mv_right .triangle {
        display: none;
    }

    .mv_audio-sim_container {
        gap: 32px;
    }

    .mv_audio-sim_data-ttl {
        padding: 6px 30px;
    }

    .mv_audio-sim_flexbox {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .mv_audio-sim_flexbox {
        position: relative;
    }

    .mv_audio-sim_flexbox:first-of-type::after {
        content: "";
        position: absolute;
        bottom: -16px;
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed #D5E6FF;
    }

    .mv_data-sim_data-ttl {
        padding: 6px 24px;
    }

    .price+.yen .excluding-tax {
        position: absolute;
    }

    .mv_data-sim {
        max-width: 100%;
    }
}