@charset "utf-8";
/* trampoline css
 * music_therapy.css duplication
 */
section.description {
    padding: 60px 120px;
}

.description-content-wrap {
    justify-content: space-between;
    align-items: flex-start;
}

.description-img,
.description-text {
    display: block;
    width: 47%;
    height: auto;
}

.description-img {
    box-shadow: 10px 10px #FCE251;
}

.link-button {
    margin-top: 30px;
    flex-flow: column;
    align-items: flex-start;
}

.link-button .button-style:not(:last-child) {
    margin-bottom: 15px;
}

@media screen and (max-width:900px) {
    section.description {
        padding: 40px 15px;
    }

    .description-content-wrap {
        justify-content: unset;
    }

    .description-img,
    .description-text {
        width: 100%;
    }

    .description-img {
        max-width: 600px;
        margin: 20px auto 0;
        box-shadow: 5px 5px #FCE251;
    }

    .link-button {
        margin-top: 20px;
        align-items: center;
    }
}

/*-------------------- for --------------------*/
section.for-child,
section.for-senior {
    padding: 60px 120px;
}

.for-catch {
    text-align: center;
    margin-bottom: 50px;
}

.for-img {
    margin-bottom: 30px;
}

.for-img img {
    display: block;
    width: 320px;
    height: 220px;
    margin: 0 10px;
    box-shadow: 0px 5px #FCE251;
    object-fit: cover;
    object-position: center;
}

.flow-list {
    position: relative;
    margin-bottom: 40px;
}

.flow-list::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 23.5px;
    content: "";
    display: block;
    width: 3px;
    height: calc(100% - 50px);
    margin: auto 0;
    background-color: silver;
    z-index: 0;
}

.flow-list li {
    position: relative;
    font-size: 1rem;
    line-height: 22px;
    padding: 20px 0 20px 60px;
    z-index: 1;
}

.flow-list li .flow-label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    margin: auto 0;
    text-align: center;
    border-radius: 50%;
    background-color: #91CDBB;
    font-size: 1.1rem;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
}

@media screen and (max-width:900px) {

    section.for-child,
    section.for-senior {
        padding: 40px 15px;
    }

    .for-catch {
        text-align: left;
        margin-bottom: 30px;
    }

    .for-img {
        margin-bottom: 30px;
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .for-img img {
        display: block;
        width: 320px;
        height: 220px;
        margin: 0 10px;
        box-shadow: 0px 5px #FCE251;
        object-fit: cover;
        object-position: center;
    }

    .for-img img:not(:last-child) {
        margin-bottom: 20px;
    }

    .flow-list {
        margin-bottom: 20px;
    }

    .flow-list::before {
        height: calc(100% - 100px);
    }
}

section.consulation {
    padding: 60px 120px 80px;
}
@media screen and (max-width:900px) {
    section.consulation {
        padding: 60px 20px 80px;
    }
}
.work-content {
    padding: 30px;
    box-shadow: 0px 0px 8px #f1f1f1;
    border: 1px solid #f1f1f1;
}
.work-content:nth-child(n+2) {
    margin-top: 50px;
}

.work-content h4 {
    color: #91CDBB;
}

.report-list li {
    padding: 5px 0;
}

.report-list li a {
    position: relative;
    display:block;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 22px;
    padding-left: 20px;
}

.report-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: auto 0;
    background: url(../images/material/pdf_icon.png) center no-repeat;
    background-size: contain;
}

a:hover {
  color: #90dcc5;  
}