.fukidashi01 {
    position: relative;
    padding: 0.6em;
    background: #fff0c6;
    border-radius: 0.8em;
}

.fukidashi01:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #fff0c6;
    width: 0;
    height: 0;
}


/* タイトル付き囲み枠 */
.box26 {
    position: relative;
    margin: 2em 0;
    padding: 1.5em 1em;
    border: solid 3px #000;
/*    border: solid 3px #95ccff; */
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 30px;
    background: #FFF;
    color: #ed4f44;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 3.0rem;
}

/* 文字下半分蛍光ペン */
.under {
    background: linear-gradient(transparent 50%, #a8eaff 50%);
}

/* 文字全体蛍光ペン */
.under2 {
    background: linear-gradient(transparent 0, yellow 0);
}

.under_red {
    background: linear-gradient(transparent 0, red 0);
    color: #fff;
}

.under_sky {
    background: linear-gradient(transparent 0, skyblue 0);
    color: #fff;
}

/* ストライプ風 */
.stripe {
    position: relative;
    padding: 0.3em;
}

.stripe:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: repeating-linear-gradient(-45deg, skyblue, skyblue 2px, white 2px, white 4px);
}

.stripe_red {
    position: relative;
    padding: 0.3em;
}

.stripe_red:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: repeating-linear-gradient(-45deg, red, red 2px, white 2px, white 4px);
}

.shadow_blue {
    color: #00bcd4;
    text-shadow: 2px 2px #fff, 5px 5px rgba(0, 188, 212, 0.4);
}

.shadow_red {
    color: #d93448;
    text-shadow: 2px 2px #fff, 5px 5px rgba(187, 55, 73, 0.4);
}

.shadow_green {
    color: #a3ab40;
    text-shadow: 2px 2px #fff, 5px 5px rgba(164, 169, 74, 0.4);
}

@media screen and (min-width: 736px) {
    .non_br br {
        display: none;
    }
}