/* * {
    outline: 1px blue solid;
} */
/* .title img{
    width: auto;
    height: 50vh;
    background-color: white;
} */
.concept-container {
    height: auto;
    margin-left: 20%;
    padding-top: 100px;
    /* pointer-events: none; */
}
.concept-bg {
    background: url(../../img/water-bg.webp);
    background-position: left;
    background-size: cover;
    height: 500px;
    border-radius: 25px;
    padding-top: 100px;
}
.concept-bg canvas {
    border-radius: 25px;
}
.concept-text {
    writing-mode: vertical-rl;
    position: relative;
    font-family: var(--jp-fontFamily);
    width: 100%;
    
}
.concept-text p {
    position: absolute;
    height: 26rem;
    font-size: 1.25rem;
    line-height: 1.5;
}
.concept-text p:first-of-type {
    left: 70%;
}
.concept-text p:nth-of-type(2) {
    left: 45%;
}
.concept-text p:last-of-type {
    left: 20%;
}
.concept-mainimg {
    width: 100%;
    margin-top: 140px;
}
.concept-subtext {
    font-family: var(--jp-fontFamily);
    font-size: 1.25rem;
    width: 100%;
    margin-top: 125px;
    line-height: 1.8;
}
.concept-subimg {
    width: 100%;
    margin-top: 120px;
}
.subtext-2 {
    padding-top: 70px;
}
.concept-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    margin-top: 120px;
}
.concept-grid img{
    width: 100%;
}
.is-sp {
    display: none;
}

/* レスポンシブ
----------------------------- */
@media(max-width: 820px){
    .concept-bg {
        background: none;
    }
    .title img {
        height: 20vh;
        background-color: white;
    }
    .concept-container {
        height: auto;
        margin-left: 0%;
        padding-top: 10px;
    }
    .concept-text {
        font-size: 1rem;
    }
    .concept-text p:nth-of-type(2) {
        left: 45%;
        top: 100px;
    }
    .concept-text p:last-of-type {
        left: 20%;
        top: 200px;
    }
    .concept-subtext {
        margin-top: 0;
        line-height: 1.8;
    }
    .concept-subtext {
        font-size: 1.125rem;
        margin-top: 0;
        line-height: 1.8;
    }
    .is-pc {
        display: none;
    }
    .is-sp {
        display: inline-block;
    }
    .concept-subimg {
        margin-top: 100px;
    }
    .subtext-1 {
        width: 75%;
        margin: 0 auto;
        padding-top: 55px;
    }
    .subtext-2 {
        width: 75%;
        margin: 0 auto;
    }
    .concept-grid {
        margin-top: 90px;
        gap: 5px;
    }
}