@charset "utf-8";

main {
    padding: 96px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

@media screen and (max-width: 1024px) {
    main {
        padding: 96px 16px;
    }
}

.ttl_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

.ttl-sub {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.features_container {
    display: flex;
    max-width: 1024px;
    width: 100%;
    padding: 64px;
    flex-direction: column;
    gap: 40px;
    border-radius: 10px;
    border: 1px solid #80CFF4;
    background: #FFF;
}

.features_contents {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.features_box {
    position: relative;
    display: flex;
    max-width: 240px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: auto;
}

.features_box .h3_ttl_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features_box .h3_ttl_box p {
    font-size: 20px;
}

.features_box h3 {
    font-size: 24px;
}

.features_box:nth-of-type(2)::before,
.features_box:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    background-color: var(--line-blue);
}

.features_box:nth-of-type(2)::before {
    left: -16px;
}

.features_box:nth-of-type(2)::after {
    right: -16px;
}

.features_container .heading_sm {
    padding: 8px 16px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
    .features_container {
        padding: 40px 16px;
    }

    .features_contents {
        width: 100%;
        flex-direction: column;
        gap: 32px;
    }

    .features_box {
        max-width: 100%;
    }

    .features_box img {
        max-width: min(160px, 44vw);
    }

    .features_box:nth-of-type(2)::before,
    .features_box:nth-of-type(2)::after {
        content: none;
    }

    /* スクロールヒント */
    .sec_container .scroll-hint-icon:before {
        width: 30px;
        height: 30px;
    }

    .sec_container .scroll-hint-icon {
        top: 0;
        bottom: 0;
        margin: auto;
        height: fit-content;
    }
}

/* low-price */
.low-price_contents {
    gap: 24px;
}

/* table  */
.table_box,
table {
    width: 100%;
}

table {
    border-spacing: 0;
}

.th_title {
    width: 174px;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    line-height: 2.5;
    padding: 8px;
    background: var(--freebit-mobile-Biz-WEB-bg_table_primary, #EEFCFF);
}

.table_box .border-top {
    border-top: 1px solid var(--freebit-mobile-Biz-WEB-form_line, #C4C4C4);

}

.table_box .border-left {
    border-left: 1px solid var(--freebit-mobile-Biz-WEB-form_line, #C4C4C4);
}

.table_box .border-right {
    border-right: 1px solid var(--freebit-mobile-Biz-WEB-form_line, #C4C4C4);
}

.table_box .border-bottom {
    border-bottom: 1px solid var(--freebit-mobile-Biz-WEB-form_line, #C4C4C4);
}

.th_giga,
.td_price {
    position: relative;
    width: calc((100% - 174px)/5);
    padding: 12px;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
}

.th_giga {
    font-size: 24px;
    font-weight: normal;
}

.th_giga .txt_big {
    font-size: 30px;
}

.td_price {
    font-size: 20px;
}

.td_price .txt_big {
    font-size: 36px;
}

.td_price::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 1px;
    background-image: linear-gradient(to right, #DCDCDC 7px, transparent 7px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}

table.data .td_price {
    font-weight: normal;
}

.yen {
    position: relative;
}

.excluding-tax {
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translate(-45%, 0);
    white-space: nowrap;
    font-size: 10px;
}

.th_sim {
    padding: 6px 0;
    background: var(--primary);
}

.th_kakeho {
    padding: 6px 0;
    background: var(--tertiary);
}

.sim_title_warp {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.sim_title {
    padding: 4px 17px;
    font-size: 18px;
    background: var(--white);
    border-radius: 4px;
}

.th_data {
    background: #919191;
    color: var(--white);
}

@media screen and (max-width: 1024px) {

    .th_title,
    .th_giga,
    .td_price {
        font-size: 14px;
    }

    .td_price .txt_big,
    .th_giga .txt_big {
        font-size: 28px;
    }

    .table_box {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .table_box table th,
    .table_box table td {
        white-space: nowrap;
    }

    .th_giga,
    .td_price {
        width: auto;
        padding: 12px;
    }

    .excluding-tax {
        position: static;
        font-size: 10px;
    }
}

/* safe */
.safe_contents {
    gap: 24px;
    width: 100%;
}

.safe_flexbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* convenient */
.convenient_contents {
    gap: 24px;
}

.choose {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.choose_flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.choose_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 154px;
    width: 45%;
}

.choose_balloon {
    position: relative;
    display: block;
    padding: 16px 0;
    text-align: center;
    gap: 8px;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    background: var(--freebit-mobile-Biz-WEB-bg_table_primary, #EEFCFF);
}

.choose_balloon::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    margin: auto;
    height: calc(30px / 2 * tan(60deg));
    width: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: var(--freebit-mobile-Biz-WEB-bg_table_primary, #EEFCFF);
}

@media screen and (max-width: 768px) {
    .choose_flexbox {
        justify-content: center;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }
}


/* option_contents */
.option_contents {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.option_time {
    display: flex;
    padding: 3rem 2.4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 0.8rem;
    background: #E5F5FD;
}

.option_time p {
    color: #494D4E;
    text-align: center;
    font-size: 24px;
}

.txt-big {
    font-size: 2rem;
}

.option_img_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.option_flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.option_img_flexbox {
    display: flex;
    max-width: 586px;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    gap: 1.4rem;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

    /* option */
    .option_flexbox {
        flex-direction: column;
    }

    .option_time {
        display: flex;
        padding: 1rem 1.2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        width: 100%;
    }

    .option_time p {
        font-size: 1rem;
    }

    .txt-big {
        font-size: 1.4rem;
    }

    .option_img_flexbox img {
        max-width: 253px;
        width: 100%;
    }
}

/* about */
.about_flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.about_q {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 40%;
}

.about_q-txt {
    text-align: center;
    font-size: 20px;
}

.about_a {
    position: relative;
    display: flex;
    width: 564px;
    padding: 16px 24px 16px 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: var(--freebit-mobile-Biz-WEB-bg_table_primary, #EEFCFF);
}

.about_a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 50px;
    height: calc((100% + 48px) / 2 * tan(60deg));
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: var(--white);
}

.about_a-title {
    font-size: 20px;
    text-align: center;
}

.about_a-subtitle {
    font-size: 16px;
}

.about_txt {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .about_flexbox {
        flex-direction: column;
        padding: 0 0 16px 0;
    }

    .about_q {
        width: 100%;
    }

    .about_q {
        max-width: 229px;
    }

    .about_q-txt {
        font-size: 16px;
    }

    .about_a {
        width: 100%;
        padding: 48px 16px 16px 16px;
    }

    .about_a::after {
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(38px / 2 * tan(60deg));
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

    .about_a-title {
        font-size: 16px;
    }

    .about_a-subtitle {
        font-size: 14px;
    }

    .about_txt {
        font-size: 14px;
    }
}


/* freemo */
.freemo .h2_ttl_wrap img{
    max-width: 300px;
}

.freemo_txt {
    gap: 4px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.freemo_txt-lg {
    font-size: 36px;
}

@media screen and (max-width: 768px) {
    .freemo_txt {
        font-size: 14px;
    }

    .freemo_txt-lg {
        font-size: min(24px, 6.6vw);
    }
}