@charset "utf-8";

.subvisual {
    background-image: url("./image/visual.jpg");
    background-repeat: no-repeat;
}

/* introduction */
#introduction {
    margin-top: 84px;
}

#introduction .catch {
    display: block;
    margin: 0 auto 60px;
}

#introduction .case-wrap {
    display: flex;
    justify-content: space-between;
}
#introduction .case {
    position: relative;
    width: calc(50% - 18px);
    padding: 1.75em;
    border-radius: 1.5em;
    box-sizing: border-box;
    border: 2px solid #f2909e;
    text-align: center;
}
#introduction .case b {
    position: absolute;
    top: -0.6em;
    left: 48px;
    display: inline-block;
    padding: 0 .5em;
    background-color: #fff;
    color: #f2909e;
    line-height: 1;
}
#introduction .case ul {
    list-style: none;
    text-align: left;
    
}
#introduction .case ul li {
    display: flex;
    align-content: center;
    margin-bottom: .5em;
}
#introduction .case ul li:last-child {
    margin-bottom: 0;
}
#introduction .case ul li::before {
    display: inline-block;
    font-family: 'Material Icons';
    content: '\e1c4';
    color: #f2909e;
    font-size: 150%;
    margin-right: .25em;
    line-height: 1;
}

@media screen and (max-width:1160px) {
    #introduction .case-wrap {
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }
    #introduction .case {
        width: 100%;
    }
    #introduction .case:first-of-type {
        margin-bottom: 48px;
    }
}


/* flow */
#flow {
    margin-top: 72px;
}

#flow h2 {
    margin-bottom: 30px;
    text-align: center;
}
#flow h2 span {
    display: block;
    color: #f2909e;
    font-weight: 400;
}

#flow .flow-list {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
#flow .flow-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1.5em;
    margin-bottom: 80px;
    background-color: #fcf0f2;
    border-radius: 1em;
    box-sizing: border-box;
    position: relative;
}
#flow .flow-box .img {
    width: 216px;
}
#flow .flow-box .desc {
    width: calc(100% - 240px);
}
#flow .flow-box b {
    display: block;
    margin-bottom: .5em;
    color: #f2909e;
}

#flow .flow-list .arrow {
    position: absolute;
    bottom: -58px;
    left: calc(50% - 44px);
    width: 88px;
    height: 34px;
}

@media screen and (max-width:750px) {    
    .ua-sp #flow .flow-box {
        padding: 1em;
        align-items: center;
    }
}


/* summary */
#summary {
    padding-top: 72px;
    margin-top: 72px;
    margin-bottom: 80px;
    text-align: center;
    background: url("image/summary-bg.png") no-repeat top center;
}

#summary .first-msg {
    display: block;
    margin-bottom: 48px;
}
#summary .first-msg span {
    line-height: 1.3;
}
#summary .first-msg .fs-3l {    
    padding: 0 .25em;
    background:linear-gradient(transparent 60%, #f2909e 60%);
}

#summary p {
    line-height: 1.8;
    letter-spacing: .2ex;
    margin-bottom: 1em;
}






