.cm-content {
    font-family: "A P-OTF A1 Mincho StdN",serif;
    font-feature-settings: "palt";
    --blue: #009FE8;
    padding-top: 65px;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* sec--lead */
.sec--lead {
    padding-block: 84px 88px;
    background: linear-gradient(to bottom, rgb(0 159 232/0) 0%,rgb(0 159 232/0.05) 100%);
    position: relative;
}

.sec--lead__deco {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
}

.sec--lead__deco::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    background: var(--blue);
    rotate: -45deg;
    position: absolute;
    top: 100%;
    transform-origin: left;
}

.sec--lead__deco--01 {
    top: 32px;
    left: calc(50% + 96px);
}

.sec--lead__deco--02 {
    bottom: 32px;
    left: calc(50% - 112px);
}

.sec--lead__txt {
    font-size: 1.4rem;
    line-height: 2.07;
    letter-spacing: 0.1em;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .cm-content { 
        padding-top: 90px;
    }

    .sp {
        display: none;
    }
    
    .pc {
        display: block;
    }

    /* sec--lead */
    .sec--lead {
        padding-block: 190px;
    }
    
    .sec--lead__deco {
        width: 72px;
        height: 72px;
    }
    
    .sec--lead__deco::after {
        width: 100px;
    }
    
    .sec--lead__deco--01 {
        top: 80px;
        left: calc(50% + 104px);
    }
    
    .sec--lead__deco--02 {
        bottom: 80px;
        left: calc(50% - 160px);
    }
    
    .sec--lead__txt {
        font-size: 1.6rem;
        line-height: 2.875;
        letter-spacing: 0.2em;
    }
    
}