    .profile .row {
        display: flex;
        align-items: baseline;
        gap: 2rem;
        margin-bottom: 1rem;
    }
    .profile dl .row:last-of-type {
        font-size: var(--FONT_SIZE_LG);
        margin-bottom: 1.5rem;
    }
    .profile h2 {
        color: var(--COLOR_TEXT_PRIMARY);
        font-size: var(--FONT_SIZE_2XL);
        transform: skewX(-10deg);
        display: flex;
        align-items: baseline;
        margin-bottom: 1.5rem;
    }
    .profile h2 span {
        margin-left: 2rem;
        font-size: var(--FONT_SIZE_LG);
    }
    .profile dt {
        color: var(--COLOR_TEXT_PRIMARY);
        font-size: var(--FONT_SIZE_MD);
        font-weight: var(--FONT_WEIGHT_BOLD);
        transform: skewX(-10deg);
    }
    .profile dd {
        font-size: var(--FONT_SIZE_LG);
    }
    .m-box:has(.profile){
    position: relative;
    overflow: hidden;    
    background-color: var(--COLOR_BACKGROUND_LIGHT_GRAY);
    }
    .profile:before {
    position: absolute;
    content: "";
    top: auto;
    left: auto;
    width: 470px;
    height: 429px;
    background-image: url(/common/img/sharpest/line_section_box_01_pc.svg);
    transform: translateY(-350px);
    right: -300px;
  }
  .key-message{
    color: var(--COLOR_TEXT_PRIMARY);
    padding-bottom: 12px;
    font-size: var(--FONT_SIZE_LG);
    font-weight: var(--FONT_WEIGHT_BOLD);
    line-height: var(--LINE_HEIGHT_LOOSE);
    position: relative;
    text-align: center;
    }