/* --------------------------------------------------------------- */
/*   R32 style                                                     */
/* --------------------------------------------------------------- */

.sp_only{
    display: none;
}

.h3_blue + .h4_default{
    margin-top: 0;
}
.h4_default{
    margin-bottom: 0;
}

.flex-parent{
    display: flex;
    gap: 40px;
}
.flex-child_text{
    width: calc((100% - 40px) * 3 / 4);
}
.flex-child_img{
    width: calc((100% - 40px) * 1 / 4);
}
.notes{
    text-indent: -1.5em;
    padding-left: 1.5em;
}
.notes.indent-2em{
    text-indent: -2em;
    padding-left: 2em;
}

p sub{
    vertical-align: bottom;
	position: relative;
	bottom: 0.1em;
}
    

@media only screen and (max-width: 640px) {
    .pc_only{
        display: none;
    }
    .sp_only{
        display: block;
    }

    .bnr_one_column{
        margin-bottom: 30px;
    }

    .flex-parent{
        display: block;
    }
    .flex-child_text{
        width: 100%;
    }
    .flex-child_img{
        width: 80%;
        margin: 20px auto 0;
    }
}

