/* mv
------------------------------------------*/
.mv {
    background: linear-gradient(180deg, #dff4f0 0%, #fff 100%);
}

.mv .mv-logo {
    width: min(360px, 55%);
    /* transform: translate(-50%, 45%); */
}

/* features_wrp
------------------------------------------*/
.features_wrp .features_system {
    background-color: #ebf6f5;
}

.features_wrp .features_system-img {
    width: min(860px, 100%);
    margin: 0 auto;
}

.features_wrp .features_system-img figcaption {
    margin-bottom: 2em;
    text-align: center;
    color: var(--color-gray);
    letter-spacing: .05em;
    font-size: min(2.5em, 6vw);
}

/* modal contents
------------------------------------------*/
.pagemodal-bg .close-btn {
    --border-color: var(--color-mind);
}

.pagemodal {
    width: min(860px, 100%);
}

.mind-features .pill-hd {
    width: max-content;
    margin-bottom: 1.5em;
    padding: .5em 1.5em;
    font-size: min(1.05em, 3.8vw);
    line-height: 1.5;
    letter-spacing: .05em;
    color: #fff;
    background-color: var(--color-mind);
    border-radius: 100vmax;
}

@media screen and (max-width: 767px) {
    .make-features .pill-hd {
        max-width: 100%;
        padding: .5em 1.5em;
    }
}

/* mind-feature1 */
.mind-feature1 .subtitle {
    font-size: min(1.1em, 4vw);
    line-height: 1.7;
}

.mind-feature1 .title {
    margin-top: .5em;
    font-size: min(1.7em, 5vw);
    text-align: center;
    color: var(--color-mind);
}

.mind-feature1 .lead-wrp {
    margin-top: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em 0;
}

.mind-feature1 .lead-wrp .box-left {
    width: 47%;
    margin: 0;
    position: relative;
}

@media screen and (max-width: 767px) {
    .mind-feature1 .lead-wrp .box-left {
        width: 100%;
    }
}

.mind-feature1 .lead-wrp .box-left .balloon {
    width: 8em;
    height: 8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
    position: absolute;
    left: -2em;
    top: -2em;
    color: #fff;
    background-color: var(--color-mind);
    border-radius: 100%;
}

.mind-feature1 .lead-wrp .box-right {
    width: 47%;
}

@media screen and (max-width: 767px) {
    .mind-feature1 .lead-wrp .box-right {
        width: 100%;
    }
}

.mind-feature1 .lead-wrp .box-right p {
    font-size: min(1em, 3.6vw);
    line-height: 1.7;

}

.mind-feature1 .copy {
    margin: 2em 0;
    color: var(--color-mind);
    font-size: min(1.15em, 4.2vw);
    line-height: 1.6;
}

.mind-feature1 .link-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3em 0;
}

.mind-feature1 .link-wrp .box {
    width: 47%;
}

@media screen and (max-width: 767px) {
    .mind-feature1 .link-wrp .box {
        width: 100%;
    }
}

.mind-feature1 .link-wrp .box .hd {
    width: 100%;
    padding: 1em .5em;
    font-size: min(1.05em, 3.8vw);
    line-height: 1.5;
    letter-spacing: .05em;
    text-align: center;
    /* color: var(--color-mind); */
    color: #333;
    background-color: #e4f4f1;
    border-radius: 1rem 1rem 0 0;
}

.mind-feature1 .link-wrp .box figure {
    margin: 0;
    border-radius: 0 0 1rem 1rem;
    overflow: clip;
}

.mind-feature1 .link-wrp .box p {
    margin-top: 1em;
    font-size: min(.95em, 3.8vw);
    text-align: center;
    line-height: 1.6;
}

.mind-feature1 .link-wrp .box .btn {
    display: block;
    width: min(22em, 100%);
    margin: 1em auto 0;
    padding: .75em;
    font-size: min(.95em, 3.5vw);
    text-align: center;
    background-color: var(--color-mind);
    color: #fff;
    /* border: solid 2px; */
    border-radius: 100vmax;
    position: relative;
}

.mind-feature1 .link-wrp .box .btn.btn-instagram {
    color: #fff;
    background-color: #e1306c;
    background: linear-gradient(90deg, #6920f5 0%, #ee7930 50%, #e83362 100%);
}

@media screen and (max-width: 767px) {
    .mind-feature1 .link-wrp .box .btn {}
}

.mind-feature1 .link-wrp .box .btn .arrow {
    width: 1.5em;
    position: absolute;
    left: calc(100% - 2.5em);
    top: 50%;
    border-top: solid 2px;
    transition: width .3s 0s ease;
}

.mind-feature1 .link-wrp .box .btn:hover .arrow {
    width: 1.9em;
}

.mind-feature1 .link-wrp .box .btn .arrow::after {
    content: "";
    width: .8em;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(30deg);
    transform-origin: right bottom;
    border-top: solid 2px;
}