@charset "utf-8";

@media (max-width: 1024px) {}

@media (max-width: 767px) {}



/* ----------------------------------------------


特徴セクション 


----------------------------------------------*/

.point-list {
    display: flex;
    gap: 2.8%;
}

.point-list__item {
    flex: 1;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 34px 3.5% 40px;
}

.point-card__title {
    color: #1D1D1D;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 900;
    margin: 1em auto 0.75em;
    letter-spacing: 0.0em;
    padding-bottom: 0.75em;
    border-bottom: 8px solid #E6FAFA;
}

.point-card__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #2C2C2C;
    
}

.point-card .point-card__img {
    height: 110px;
    width: auto;
}

.point-card__text .line {
    font-weight: 700;
}


@media (max-width: 1024px) {
    .point-list {
        flex-direction: column;
        box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        border-radius: 10px;
        padding: 0 30px;
    }

    .point-list__item {
        box-shadow: none;
        border-radius: 0;
        padding: 30px 3.5% 25px;
    }

    .point-list__item:not(:last-of-type) {
        border-bottom: 8px solid #E6FAFA;
        padding-bottom: 40px;
    }

    .point-card__title {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .point-card__title {
        font-size: 24px;
    }

    .point-card__text {
        font-size: 14px;
    }
}


/* ----------------------------------------------


お悩みセクション 


----------------------------------------------*/

.section--onayami {
    background-color: #E6FAFA;
}

.onayami-content {
    position: relative;
}

.onayami-list {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 52px;
}

.onayami-list__item {
    font-size: 18px;
    font-weight: 700;
    background-color: #fff;
    line-height: 1.5;
    border-radius: 18px;
    position: relative;
    color: #2C2C2C;
    padding: 25px 40px 25px 80px;
    width: 42%;
}

.onayami-list__em {
    font-size: 28px;
    display: block;
    color: #1D1D1D;
    margin-bottom: 0.4em;
}

.onayami-image {
    width: 250px;
    height: 224px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .onayami-list {
        gap: 10px;
    }

    .onayami-content {
        padding-bottom: 200px;
    }

    .onayami-list__item {
        width: calc(50% - 5px);
        width: 100%;
        padding: 40px 20px 40px 25px;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 40px;
    }

    .onayami-list__em {
        margin-bottom: 0;
    }

    .onayami-image {
        bottom: 0px;
        top: initial;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .section--onayami {
        padding: 10vw 0;
    }

    .onayami-content {
        padding-bottom: 140px;

    }

    .onayami-list__item {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        padding: 25px 15px 25px 10px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
    }

    .onayami-list__em {
        font-size: 22px;
        position: relative;
        padding-left: 1.5em;
    }

    .onayami-list__em:before {
        content: '';
        width: 1.5em;
        height: 1.5em;
        background: url(../img/icon_point_check.png) center center no-repeat;
        background-size: contain;
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        left: 0;
        top: 1px;
    }

    .onayami-list__em+span {
        display: inline-block;
        padding-left: 34px;
    }

    .onayami-image {
        width: 170px;
        height: auto;
    }
}


/* ----------------------------------------------


答えセクション 


----------------------------------------------*/

.section--answer {
    background-color: #22B8C6;
    padding: 80px 0;
}

.answer-content {
    background-color: #fff;
    border-radius: 18px;
    padding: 70px 40px 50px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.answer-text {
    flex: 1;
    padding-left: 40px;
    max-width: 580px;
}

.answer-image {
    max-width: 470px;
    display: flex;
    align-items: end;
}

.answer-lead__text {
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 38px;
    margin-bottom: 1.5em;
}

.answer-content__text {
    line-height: 1.75;
    margin-bottom: 2em;
}

@media (max-width: 1024px) {
    .answer-content {
        flex-direction: column;
    }

    .answer-image {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .section--answer {
        padding: 10vw 0;
    }

    .answer-content {
        padding: 40px 14px 0;
    }

    .answer-text {
        padding-left: 0;
    }

    .answer-lead__text {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 2;
        white-space: nowrap;
    }

    .answer-lead__text br {}

    .answer-image {
        width: 85%;
    }
}

/* ----------------------------------------------


ご利用シーン 


----------------------------------------------*/

.section--scene {
    background-color: #E6FAFA;
}

.scene-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.scene-item {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-right: 140px;
    margin-top: 80px;
    border-radius: 28px;
}

.scene-item:nth-last-of-type(2n) {
    flex-direction: row-reverse;
    margin-right: 0px;
    margin-left: 140px;
}

.scene-item__text {
    flex: 1;
    width: 100%;
    padding: 40px 0 60px 80px;
}

.scene-item__description {
    width: 120%;
}

.scene-item:nth-last-of-type(2n) .scene-item__text {
    padding: 60px 120px 60px 0;
    position: relative;
    left: -100px;
}

.scene-item__image {
    width: 384px;
    height: 384px;
    position: relative;
    top: -70px;
    left: 180px;
    border: 8px solid #E6FAFA;
    border-radius: 50%;
}

.scene-item:nth-last-of-type(2n) .scene-item__image {
    left: initial;
    right: 180px;
}

.scene-item__title {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 0.75em;
    line-height: 1.75;
}

.scene-item__title .scene-item__em {
    display: inline-block;
    background-color: #FFFA00;
    padding: 4px 15px;
    line-height: 1.5;
    border-radius: 2px;
    margin-right: 6px;
}

.scene-item__title .br--sp {
    display: none;
}

@media (max-width: 1024px) {

    .section--scene .section-title {
        margin-bottom: 0;
    }

    .section--scene .container {
        padding: 0;
    }

    .scene-content {
        overflow: hidden;
        padding-top: 40px;
    }

    .scene-item,
    .scene-item:nth-last-of-type(2n) {
        position: relative;
        width: calc(100% - 30px);
        margin-right: auto;
        margin-left: auto;
    }

    .scene-item__image,
    .scene-item:nth-last-of-type(2n) .scene-item__image {
        position: absolute;
        left: initial;
        right: -30px;
        top: -120px;
        width: 300px;
        height: 300px;
    }

    .scene-item__text,
    .scene-item:nth-last-of-type(2n) .scene-item__text {
        padding: 40px 60px;
        left: 0;
    }

    .scene-item__title {
        font-size: 32px;
        margin-bottom: 1.75em;
    }

    .scene-item__description {
        width: initial;
    }

}

@media (max-width: 767px) {

    .scene-content {
        gap: 30px;
    }

    .scene-item__image,
    .scene-item:nth-last-of-type(2n) .scene-item__image {
        width: 200px;
        height: 200px;
    }

    .scene-item__text,
    .scene-item:nth-last-of-type(2n) .scene-item__text {
        padding: 30px 20px 35px;
    }

    .scene-item__title {
        font-size: 22px;
        margin-bottom: 1.5em;
    }

    .scene-item__title .br--sp {
        display: block;
    }

    .scene-item__image,
    .scene-item:nth-last-of-type(2n) .scene-item__image {
        top: -120px;
        border: 6px solid #E6FAFA;
    }
}



/* ----------------------------------------------


機能一覧 


----------------------------------------------*/

.section--function {
    padding: 80px 0;
}

#function-title {
    margin-bottom: 50px;
}

.function-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.function-list__item {
    background-color: #E6FAFA;
    border-radius: 8px;
    padding: 20px 0 25px;
}

.function-list__item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;

}

.function-list__text {
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: block;
}

@media (max-width: 1024px) {
    .function-list {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .section--function {
        padding: 18vw 0;
    }

    #function-title {
        margin-bottom: 25px;
    }

    .function-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .function-list__text {
        font-size: 14px;
    }
}

/* ----------------------------------------------


料金プラン 


----------------------------------------------*/

.section--price {
    background-color: #E6FAFA;
}

.price-plans {
    display: flex;
    padding: 60px 40px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.price-plan {
    flex: 1;
    text-align: center;
    padding: 15px 25px 20px;
}

.price-plan+.price-plan {
    border-left: 2px dotted #22B8C6;
}

.price-plan__users {
    background-color: #18ADBB;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 4px 0;
    margin-bottom: 30px;
}

/* .price-plan:nth-of-type(2) .price-plan__users  {
    background-color: #439EF0;
}

.price-plan:nth-of-type(3) .price-plan__users  {
    background-color: #F57134;
}

.price-plan:nth-of-type(4) .price-plan__users  {
    background-color: #229EA7;
} */

.price-plan__label {
    font-size: 18px;
}

.price-plan__value {
    font-size: 1.5em;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.price-plan__price {
    font-size: 52px;
    font-weight: 900;
    color: #18ADBB;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0;
}

/* .price-plan:nth-of-type(2) .price-plan__price {
    color: #439EF0;
}

.price-plan:nth-of-type(3) .price-plan__price {
    color: #F57134;
}

.price-plan:nth-of-type(4) .price-plan__price {
    color: #229EA7;
} */


.price-plan__unit {
    color: #2d2d2d;
    font-size: 20px;
}

.price-plan__tax-text {
    font-size: 20px;
    color: #565656;
}

/* LINE通知オプション */

.price-option {
    /* background-color: #fff; */
    border: 1px solid #787878;
    padding: 12px 40px;
    margin-bottom: 30px;
}

.price-option__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-option__description {
    font-size: 15px;
    margin-bottom: 1.25em;
}

.price-option-list__item {
    font-size: 15px;
    position: relative;
    padding-left: 1em;
}

.price-option-list__item:before {
    content: '・';
    position: absolute;
    left: 0;
}

.price-notes__item {
    font-size: 14px;
    color: #5B5B5B;
    position: relative;
    padding-left: 1em;
}

.price-notes__item:before {
    content: '※';
    position: absolute;
    left: 0;
}

@media (max-width: 1024px) {
    .price-plans {
        flex-wrap: wrap;
        padding: 20px;
    }

    .price-plan {
        flex: initial;
        width: 50%;
        padding: 20px 30px 20px;
    }

    .price-plan+.price-plan {
        border: none;
    }
}

@media (max-width: 767px) {
    .price-plans {
        gap: 10px;
    }

    .price-plan {
        width: 100%;
    }

    .price-plan__users {
        margin-bottom: 15px;
    }

    .price-plan__price {
        font-size: 44px;
    }

    .price-plan__tax-text {
        font-size: 18px;
    }

    .price-option {
        padding: 12px 10px;
        margin-bottom: 20px;
    }

    .price-option__title {
        font-size: 18px;
        margin-bottom: 1em;
    }

    .price-option__description {
        font-size: 14px;
        margin-bottom: 1em;

    }

    .price-option-list__item {
        font-size: 14px;
    }

    .price-notes__item {
        font-size: 12px;
    }
}