/* custom_title_type_1 */
.custom_title_type_1 .text {
    margin: 0 0 25px;
    margin-bottom: 25px;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #fb7c39;
    position: relative;
}

.custom_title_type_1.comment .text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 20px;
    height: 20px;
    margin: auto;
    background-color: #fb7c39;
    transform: rotate(225deg);
}

/* custom_title_type_2 */
.custom_title_type_2 .text {
    width: 95%;
    margin: 0 auto 25px;
    margin-bottom: 25px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #eb5505;
    border-radius: 100px;
    position: relative;
}

.custom_title_type_2.comment .text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 20px;
    height: 20px;
    margin: auto;
    background-color: #eb5505;
    transform: rotate(225deg);
}

@media (max-width: 767px) {
/* custom_title_type_1 */
    .custom_title_type_1 .text {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .custom_title_type_1.comment .text::after {
        bottom: -7px;
        width: 14px;
        height: 14px;
    }
    /* custom_title_type_2 */
    .custom_title_type_2 .text {
        width: 90%;
        margin-bottom: 20px;
        padding: 8px 10px;
        font-size: 15px;
    }
    .custom_title_type_2.comment .text::after {
        bottom: -7px;
        width: 14px;
        height: 14px;
    }
}


/* 通話・国内SMS (toolTip) */
.unlimiteduse_iconHead {
    background-color: #fff;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    padding: 10px;
}


.unlimiteduse_iconWrap {
    display: flex;
    flex-wrap: wrap;
}

.unlimiteduse_icon-01 {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 50%;
    padding: 10px;
    text-align: center;
}

.unlimiteduse_iconWrap .firstTip {
    right: -20px !important;
}

@media (max-width: 980px) {
    .unlimiteduse_iconWrap .firstTip {
        right: -100px !important;
    }
}

@media (max-width: 767px) {
    .unlimiteduse_icon-01 {
        flex-direction: column;
        justify-content: start;
        position: relative;
    }

    .unlimiteduse_icon-01 figure {
        margin: 0 0 5px 0;
    }

    .unlimiteduse_icon-01 .toolTip-section {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .unlimiteduse_icon-01 .text-left-sp {
        text-align: left;
    }
}


/* △吹き出し */
.custom_text_upturn_1 {
    position: relative;
    display: inline-block;
    margin: 1em 10px 0 10px;
    padding: 7px 10px;
    min-width: 80%;
    max-width: 100%;
    background: #FFF;
    border: solid 3px #eb5505 ;
    box-sizing: border-box;
}
.custom_text_upturn_1:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 16%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-bottom: 12px solid #FFF;
    z-index: 2;
}
.custom_text_upturn_1:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 16%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-bottom: 14px solid #eb5505 ;
    z-index: 1;
}
.custom_text_upturn_1 p {
    margin: 0;
    padding: 0;
}