@charset "UTF-8";
/* CSS Document */

@import url("https://use.typekit.net/cox6lzm.css");

/*  */

#cnav {
    width: 100%;
    margin: 32px 0;
}

#cnav ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
}

#cnav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    min-width: 170px;
    box-sizing: border-box;
    position: relative;
}

#cnav li:not(:last-child) {
    border-right: 1px solid #CEE0E4;
}

#cnav a {
    text-decoration: none;
    color: var(--sanei-green-dark);
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 6px;
    margin-top: 0;
    display: block;
    transition: color .2s;
    padding-top: 24px;
    padding-bottom: 12px;
}

#cnav a::after {
    content: "";
    display: block;
    margin: 2px auto 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--sanei-green-dark);
    transition: transform 0.2s cubic-bezier(.4, 1, .7, 1), opacity 0.2s;
    transform: translateY(0);
    opacity: 1;
}

#cnav a:hover::after,
#cnav a:focus::after {
    transform: translateY(3px) scale(1.1);
    opacity: 0.85;
}

/*  */

section.flow {
    max-width: 1104px;
    margin: 80px auto 0;
    padding: 0 16px;
}

section.flow .ttl {
    position: relative;
}

section.flow .ttl h3 {
    font-size: 4.8rem;
    color: var(--sanei-blue-deep);
    font-weight: 500;
    position: relative;
    padding-left: 94px;
    padding-bottom: 0.2em;
}

section.flow .ttl h3::before {
    content: '';
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--sanei-blue-light);
    background-image: url(/for_owners/assets/img/icon_owners_wh.png);
    background-position: 15px 10px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: -4px;
    left: 14px;
    overflow: hidden;
}

section.flow .ttl h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 56px;
    background-color: #EDF7FD;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

section.flow .ttl h3 span {
    font-size: 0.6em;
    margin-left: 0.1em;
}

section.flow .ttl img {
    width: 300px;
    height: auto;
    transform: rotate(-4deg);
    position: absolute;
    border: #F8F8F8 solid 12px;
    top: -14px;
    right: 60px;
}

#tatemono.flow .ttl img {
    transform: rotate(5deg);
}

section.flow:nth-child(odd) .ttl img {
    transform: rotate(4deg);
    top: -10px;
}

section.flow .ttl p {
    margin-top: 12px;
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 640px;
    margin-left: 30px;
    margin-top: 1.4em;
    letter-spacing: 0.02em;
}

/*  */

section.flow ul:not(.sublist) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
    counter-reset: flownum;
    padding: 0;
    margin: 40px 0 0 0;
    padding-left: 30px;
}

section.flow>ul>li {
    counter-increment: flownum;
    position: relative;
    display: flex;
}

/* section.flow>ul>li:not(:first-child) {
	margin-top: 50px;
} */

section.flow>ul>li:nth-child(2) {
    margin-top: 150px;
}

section.flow>ul>li:nth-child(3) {
    margin-top: -80px;
}

#tatemono.flow>ul>li:nth-child(3) {
    margin-top: -110px;
}

section.flow>ul>li:nth-child(4) {
    margin-top: 80px;
}

section.flow>ul>li:nth-child(5) {
    margin-top: -130px;
}

/* #tatemono.flow>ul>li:nth-child(5) {
	margin-top: -100px;
} */

section.flow ul>li>figure {
    flex-shrink: 0;
    margin-left: auto;
    margin-top: 24px;
}

section.flow ul>li>figure img {
    display: block;
    width: 269px;
    height: 256px;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
}

/* 連番 */
section.flow>ul>li .text_wrap::before {
    content: counter(flownum, decimal-leading-zero);
    color: var(--sanei-blue-light);
    font-size: 6.4em;
    font-family: "new-frank", sans-serif;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
}

/*  */

section.flow h5 {
    font-size: 3.2em;
    color: var(--sanei-blue-deep);
    font-weight: 500;
    margin-top: 0.2em;
    line-height: 1.2;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.05em;
}

section.flow h5 span {
    display: block;
    font-size: 0.8em;
}

section.flow ul.sublist {
    margin-left: 0.4em;
    margin-top: 1.4em;
}

section.flow ul.sublist>li {
    font-size: 1.6rem;
    position: relative;
    list-style: none;
    padding-left: 0.8em;
    /* text-indent: -0.8em; */
}

section.flow ul.sublist>li span {
    display: block;
    font-size: 0.8em;
    margin-top: 0.2em;
}

section.flow ul.sublist>li:not(:first-child) {
    margin-top: 0.6em;
}

section.flow ul.sublist>li::before {
    content: "・";
    color: var(--sanei-blue-light);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

/*  */

#itaku {
    text-align: center;
    background-color: #EDF7FD;
    margin-top: 64px;
    padding-bottom: 80px;

    & .wrap {
        max-width: 1104px;
        margin-inline: auto;
        padding-top: 50px;
        margin-bottom: 60px;

        & .ttl {
            color: var(--sanei-blue-deep);
            position: relative;
            text-align: center;
            position: relative;
            padding-bottom: 12px;
        }

        & .ttl::after {
            content: '';
            display: block;
            width: 100%;
            height: 56px;
            background-color: #fff;
            border-radius: 4px;
            position: absolute;
            bottom: 0;
        }

        & .ttl h3 {
            font-size: 4.0rem;
            text-align: center;
            position: relative;
            z-index: 9;
        }

        & .ttl p {
            font-size: 2.0rem;
            text-align: center;
            position: relative;
            z-index: 9;
            margin-top: 0;
            line-height: 1.4;
        }

        & h4 {
            font-size: 2.4rem;
            font-weight: 500;
            text-align: center;
            margin-top: 0.8em;
        }

        & p {
            font-size: 1.6rem;
            text-align: center;
            margin-top: 1.0em;
            line-height: 1.8;
        }

        & figure {
            width: 660px;
            margin-inline: auto;
            margin-top: 60px;
            position: relative;
        }

        & figure::before {
            content: '';
            display: block;
            width: 263px;
            height: 127px;
            background-image: url(../img/art_apartments.svg);
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: 100% auto;
            position: absolute;
            bottom: 20px;
            left: -150px;
        }

        & figure::after {
            content: '';
            display: block;
            width: 126px;
            height: 174px;
            background-image: url(../img/icon_calculator.svg);
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: 100% auto;
            position: absolute;
            bottom: 10px;
            right: -60px;
            transform: rotate(20deg);
        }
    }

}

/*  */

#flow {
    width: 1104px;
    margin-inline: auto;
    margin-top: 110px;
    margin-bottom: 100px;

    & .ttl {
        width: 100%;

        & h3 {
            font-size: 4.0rem;
            color: var(--sanei-blue-deep);
            font-weight: 500;
            text-align: center;
            position: relative;
        }

        & h3::before {
            content: '';
            display: block;
            width: 100%;
            height: 56px;
            background-color: #EDF7FD;
            border-radius: 4px;
            position: absolute;
            bottom: -0.5em;
            z-index: -1;
        }

        & p {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 500;
            line-height: 1.6;
            margin-top: 2.2em;
        }

    }

    /*  */

    & #steps {
        width: 1050px;
        margin-inline: auto;
        margin-top: 68px;
        counter-reset: stepnum;

        & li {
            border: #CCCCCC solid 1px;
            border-radius: 16px;
            padding: 10px 38px 48px;
            counter-increment: stepnum;
            position: relative;
        }

        & li:not(:first-child) {
            margin-top: 110px;
        }

        & li:last-child {
            & figure {
                margin-right: -10px;
            }
        }

        & li:not(:last-child)::after {
            content: '';
            display: block;
            width: 118px;
            height: 109px;
            background-image: url(../img/arrow_btm_blue.svg);
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: 100% auto;
            position: absolute;
            left: 50%;
            transform: translate(-50%, -50%);
            bottom: -140px;
        }

        & h5 {
            font-size: 3.2rem;
            color: var(--sanei-blue-deep);
            position: relative;
            padding-bottom: 0;
        }

        & li:last-child h5 {
            display: inline-flex;
            align-items: center;
        }

        & h5 strong,
        & h5 span {
            font-family: "new-frank", sans-serif;
            font-weight: 300;
            font-style: italic;
            color: var(--sanei-blue-light);
            font-size: 2.4rem;

            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-right: 0.8em;

            font-feature-settings: "palt" 1;
            letter-spacing: 0.05em;
        }

        & li:last-child h5 strong {
            font-size: 6.4rem;
            font-weight: 300;
            font-style: italic;
            margin-right: 0;
            letter-spacing: -0.02em;
            margin-right: 0.15em;
        }

        & h5 span::after {
            content: counter(stepnum, decimal-leading-zero);
            color: var(--sanei-blue-light);
            font-family: "new-frank", sans-serif;
            font-weight: 300;
            font-style: italic;
            font-size: 6.4rem;
            margin-left: 0.1em;
            position: relative;
            top: -0.05em;
        }

        & h5::after {
            content: '';
            display: block;
            width: 1049px;
            height: 1px;
            background-color: #ccc;
            position: absolute;
            bottom: 0;
            left: -38px;
        }

        & div.step_body {

            display: flex;
            justify-content: space-between;

            & p {
                font-size: 1.8rem;
                line-height: 1.8;
                max-width: 42%;
                margin-top: 2em;
            }

            & div.txt p:not(:first-child) {
                margin-top: 0.6em;
            }

            & figure {
                width: 282px;
                height: 282px;
                margin-top: -68px;
                position: relative;
                z-index: 9;
            }

            & img {}

        }

        & li figure::before {
            content: '';
            display: block;
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: 100% auto;
            position: absolute;
            /* border-radius: 16px; */
        }

        & li:nth-child(1) figure::before {
            width: 235px;
            height: 130px;
            background-image: url(../img/fig_23.svg);
            left: -180px;
            bottom: 0;
        }

        & li:nth-child(2) figure::before {
            width: 118px;
            height: 100px;
            background-image: url(../img/fig_24.svg);
            left: -70px;
            bottom: 0;
        }

        & li:nth-child(2) div.txt {
            max-width: 44%;
        }

        & li:nth-child(2) p {
            max-width: initial;
        }

        & li:nth-child(3) figure::before {
            width: 110px;
            height: 107px;
            background-image: url(../img/fig_25.svg);
            left: -108px;
            bottom: 0;
        }

        & li:nth-child(3) p {
            max-width: 44%;
        }

        & li:nth-child(4) figure::before {
            width: 199px;
            height: 104px;
            background-image: url(../img/fig_26.svg);
            left: -170px;
            bottom: 0;
        }

        & li:nth-child(4) div.txt {
            max-width: 44%;
        }

        & li:nth-child(4) p {
            max-width: initial;
        }

        & li:nth-child(6) p {
            max-width: 46%;
        }

        & li:nth-child(7) div.txt {
            max-width: 44%;
        }

        & li:nth-child(7) p {
            max-width: initial;
        }

        & li:nth-child(9) figure::before {
            width: 96px;
            height: 194px;
            background-image: url(../img/toko-chan_flag.svg);
            left: -110px;
            bottom: 0;
        }

        & li:nth-child(9) div.txt {
            max-width: 46%;
        }

        & li:nth-child(9) p {
            max-width: initial;
        }

        /*  */
    }

}

/*  */

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

    div#first_lead>p {
        font-size: 3.75vw;
        /* 12px */
    }

    /*  */

    #cnav {
        margin: 4vw 0 0;
    }

    #cnav ul {
        width: 90%;
        margin-inline: auto;
    }

    #cnav li {
        min-width: initial;
        padding: 0;
        width: calc(100% / 4);
    }

    #cnav a {
        font-size: 3.125vw;
        /* 10px */
        line-height: 1.2;
        padding: 0.8em 0 0.2em;
    }

    #cnav a::after {
        margin: 2vw auto 0;
        border-left: 1.5vw solid transparent;
        border-right: 1.5vw solid transparent;
        border-top: 2vw solid var(--sanei-green-dark);
    }

    /*  */

    section.flow {
        max-width: initial;
        width: 100%;
        margin: 0 auto 0;
        padding: 12vw 5vw 5vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    section.flow .ttl h3 {
        font-size: 5vw;
        /* 16px */
        padding-left: 19vw;
        padding-bottom: 0.8em;
    }

    section.flow .ttl h3::before {
        width: 15vw;
        height: 15vw;
        left: 1.8vw;
        top: auto;
        bottom: 1.6vw;
    }

    #tatemono.flow .ttl h3 {
        text-align: right;
        padding-right: 19vw;
    }

    #tatemono.flow .ttl h3::before {
        left: auto;
        right: 1.8vw;
    }

    section.flow .ttl h3 span {
        font-size: 0.8em;
    }

    section.flow .ttl h3::after {
        height: 1.6em;
    }

    section.flow .ttl img {
        border-width: 2vw;
        width: 34vw;
        right: -7vw;
    }

    #tatemono.flow .ttl img {
        right: auto;
        left: -8vw;
        width: 38vw;
        transform: rotate(-4deg);
    }

    section.flow .ttl p {
        font-size: 3.75vw;
        /* 12px */
        font-size: 3.4375vw;
        /* 11px */
        margin-left: 0;
        margin-top: 1.4em;
        max-width: 60%;
    }

    #tatemono.flow .ttl p {
        margin-left: auto;
        max-width: 57%;
    }

    /*  */

    section.flow ul:not(.sublist) {
        display: flex;
        flex-direction: column;
        gap: 7vw 0;
        margin-top: 8vw;
        padding-left: 0;
    }

    section.flow>ul>li {}

    section.flow>ul:not(.sublist)>li:nth-child(even) {
        margin-left: auto;
    }

    section.flow>ul>li .text_wrap::before {
        font-size: 9.375vw;
        /* 30px */
    }

    section.flow h5 {
        font-size: 5vw;
        /* 16px */
        margin-top: 0;
    }

    section.flow ul.sublist>li {
        font-size: 3.4375vw;
        /* 11px */
    }

    section.flow ul>li>figure {
        margin-top: 4vw;
        margin-left: 4vw;
    }

    section.flow ul>li>figure img {
        width: 34vw;
        height: calc(34vw * 0.9516728624535316);
        border-radius: 0 2vw 2vw 0;
    }

    #tatemono.flow>ul>li:nth-child(3),
    section.flow>ul>li:nth-child(5),
    section.flow>ul>li:nth-child(4),
    section.flow>ul>li:nth-child(3),
    section.flow>ul>li:nth-child(2) {
        margin-top: 0;
    }

    /*  */

    #manage_menu p.btn_a_red {
        margin-top: 6vw;
        text-align: center;
    }

    /*  */

    #itaku {
        margin-top: 14vw;
        padding-bottom: 13vw;

        & .wrap {
            width: 90%;
            max-width: initial;
            padding-top: 7vw;
            margin-bottom: 10vw;


            & .ttl {
                padding-bottom: 0.8em;
            }

            & .ttl h3 {
                font-size: 5.625vw;
                /* 18px */
                font-weight: bold;
                font-weight: 500;
            }

            & .ttl p {
                font-size: 3.125vw;
                /* 10px */
            }

            & .ttl::after {
                /* width: 90%; */
                height: 4.2em;
                border-radius: 2vw;
                /* left: 50%;
			transform: translateX(-50%); */
            }

            & h4 {
                font-size: 4.6875vw;
                /* 15px */
                line-height: 1.5;
            }

            & p {
                font-size: 4.0625vw;
                /* 13px */
                text-align: left;
                line-height: 1.5;
            }

            & figure {
                width: 100%;
                margin-top: 8vw;
            }

            & figure::before {
                width: 34vw;
                height: calc(34vw * 0.4828897338403042);
                left: 0;
                bottom: -6vw;
            }

            & figure::after {
                width: 16vw;
                height: calc(16vw * 1.380952380952381);
                right: 8vw;
                bottom: -8vw;
            }

        }

        /*  */

    }

    #flow {
        width: 90vw;
        margin-top: 8vw;
        margin-bottom: 12vw;

        & .ttl {
            & h3 {
                font-size: 5.625vw;
                /* 18px */
            }

            & h3::before {
                height: 1.4em;
                border-radius: 2vw;
                bottom: -0.8em;
            }

            & p {
                font-size: 4.0625vw;
                /* 13px */
                line-height: 1.5;
                text-align: left;
                /* font-feature-settings: "palt" 1;
                letter-spacing: 0.05em; */
            }

        }

        & #steps {
            width: 100%;
            margin-top: 8vw;

            & li {
                border-radius: 4vw;
                padding: 1vw 5vw 10vw;
            }

            & li:not(:first-child) {
                margin-top: 16vw;
            }

            & h5 {
                font-size: 4.375vw;
                /* 14px */
                width: 100%;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                font-weight: 500;
            }

            & li:last-child h5 {
                flex-direction: column;
                padding-bottom: 0.8em;
            }

            & li:last-child h5 strong {
                font-size: 8.125vw;
                /* 26px */
            }

            & h5::after {
                width: 90vw;
                height: 1px;
                left: -5vw;
            }

            & h5 strong,
            & h5 span {
                font-size: 3.4375vw;
                /* 11px */
            }

            & h5 span::after {
                font-size: 9.375vw;
                /* 30px */
            }

            & li:nth-child(1) figure::before {
                width: 26vw;
                height: calc(26vw * 0.5531914893617021);
                left: -14vw;
                bottom: -6vw;
            }

            & div.step_body {

                & p {
                    font-size: 3.4375vw;
                    /* 11px */
                    max-width: 54%;
                    margin-top: 1.4em;
                    line-height: 1.6;
                }

                & figure {
                    width: 36vw;
                    height: 36vw;
                    margin-top: 2vw;
                    right: -2vw;
                    flex-shrink: 0;
                }
            }

            & li:not(:last-child)::after {
                width: 18vw;
                height: calc(18vw * 0.923728813559322);
                bottom: -22vw;
            }

            & li:nth-child(9) div.txt,
            & li:nth-child(7) div.txt,
            & li:nth-child(4) div.txt,
            & li:nth-child(2) div.txt {
                max-width: 56%;

                & p {
                    max-width: none;
                }
            }

            & li:nth-child(9) div.txt {
                max-width: 50%;
            }

            & li:nth-child(2) figure::before {
                width: 20vw;
                height: calc(20vw * 0.847457627118644);
                left: 0;
                bottom: -20vw;
            }

            & li:nth-child(3) figure::before {
                width: 16vw;
                height: calc(16vw * 0.9727272727272728);
                left: -14vw;
                bottom: -6vw;
            }

            & li:nth-child(4) figure::before {
                width: 30vw;
                height: calc(30vw * 0.5226130653266332);
                left: auto;
                right: 2vw;
                bottom: -20vw;
            }

            & li:nth-child(9) figure {
                margin-top: 10vw;
                margin-right: 0;
            }

            & li:nth-child(9) figure::before {
                width: 14vw;
                height: calc(14vw * 2.020833333333333);
                left: 45%;
                top: -13vw;
                bottom: auto;
                position: absolute;
                transform: translateX(-45%);
            }

        }

    }


















    /*  */
}





































/*  */