/* 共通部分 */
a {
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.main {
    padding-top: 0;
    background-color: #fff;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

picture {
    width: 100%;
    height: 100%;
}

.sml-ttlbox {
    color: #fff;
    margin: 0 auto;
    text-align: center;
}

.sml-subttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 24px;
    font-weight: 500;
}

.sml-ttl {
    font-size: 34px;
    letter-spacing: 0.05em;
    line-height: 55px;
    font-weight: 600;
    margin-top: 4px;
    position: relative;
}
.sml-ttl::before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background-color: #fff;
}

.highlight {
    position: relative;
    width: max-content;
    margin: 0 auto;
}
.highlight::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: -16px;
    width: 3px;
    height: 16px;
    background-color: #000;
    rotate: -25deg;
}
.highlight::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: -16px;
    width: 3px;
    height: 16px;
    background-color: #000;
    rotate: 25deg;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-box-ttl {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 19px;
    font-weight: 500;
}

.price-box-price {
    font-size: 33px;
    letter-spacing: 0;
    line-height: 50px;
    font-weight: 600;
    position: relative;
}
.price-box-price::before {
    content: "(税込)";
    position: absolute;
    top: 5px;
    right: 45px;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 600;
}

.price-box-unit {
    font-size: 70px;
    letter-spacing: 0;
    font-weight: 500;
}

.bnr {
    width: 1081px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bnr-item {
    width: 519px;
    height: auto;
    position: relative;
    z-index: 2;
}

.bnr-item:nth-child(1) {
    width: auto;
    height: 223px;
    margin-top: -5px;
}

.bnr-item:before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 519px;
    height: 217px;
    background-color: #AAAAAA;
    border-radius: 20px;
    z-index: 1;
}

.bnr-item:nth-child(1)::before {
    top: 15px;
}

.bnr-item img {
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@media all and (min-width: 769px) {
    .concept .concept-cont .concept-text.nm {
        margin-top: 0;
    }
}

@media all and (max-width: 768px) { 
    .sml-ttlbox {
    }
    
    .sml-subttl {
        font-size: 15px;
        line-height: 1.2;
        line-height: 1;
    }
    
    .sml-ttl {
        font-size: 24px;
        margin-top: 4px;
        line-height: 1;
    }
    .sml-ttl::before {
        bottom: -22px;
    }
    
    .highlight {
    }

    .highlight::before {
        bottom: 4px;
        width: 2px;
    }
    .highlight::after {
        bottom: 4px;
        width: 2px;
    }
    
    .price-box {
    }
    
    .price-box-ttl {
        font-size: 14px;
    }
    
    .price-box-price {
    }
    .price-box-price::before {
    }
    
    .price-box-unit {
    }
    
    .bnr {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 0 33px 0 23px;
    }
    
    .bnr-item {
        width: 317px;
    }
    
    .bnr-item:nth-child(1) {
        width: 320px;
        height: auto;
        margin-top: 0;
        margin-left: 0;
    }
    
    .bnr-item:before {
        display: none;
    }
    
    .bnr-item:nth-child(1)::before {
        display: none;
    }
    
    .bnr-item img {
    }
}
/* 共通部分 */

/* ヘッダー */
.pageScroll .head, .head.on {
}

.pageScroll .lp.head {
    height: 60px;
    border-radius: 10px;
    background-color: #fff;
}

.head-nav {
    width: 100%;
    padding: 0 60px 0 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pageScroll .lp .head-nav {
    justify-content: space-between;
}

.head-nav-logo {
    display: block;
    width: 200px;
    height: 25px;
    display: none;
    transition: all 0.3s ease;
}

.pageScroll .lp .head-nav-logo {
    display: block;
}

.head-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.head-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.lp .head-nav-list {
    justify-content: end;
}

.lp .head-nav-item {
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 500;
}

.lp .head-nav-link {
    color: #fff;
    transition: color 0.3s ease;
}

.pageScroll .lp .head-nav-link {
    color: #000;
}

@media all and (max-width: 768px) {
    .lp.head {
        display: none;
    }

}
/* ヘッダー */


/* FV */
.fv {
    width: 100%;
    height: 100vh;
    background-image: url(../img/lp/fv_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv-inner {
}

.fv-imgbox {
    width: 413px;
    height: auto;
    position: relative;
}

.fv-imgbox .fv-lion {
    width: 248px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: -165px;
    object-fit: contain;
}

.fv-imgbox .fv-text {
    width: 269px;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.fv-text img {
    object-fit: contain;
}

@media all and (max-width: 768px) {
    .fv {
        height: 520px;
        background-image: url(../img/lp/fv_bg_sp.jpg);
    }
    
    .fv-inner {
        margin-top: -30px;
    }
    
    .fv-imgbox {
        width: 100%;
    }
    
    .fv-imgbox .fv-lion {
        width: 62%;
        bottom: -53px;
        right: 50%;
        transform: translateX(50%);
    }

    .fv-imgbox .fv-text {
        bottom: 54%;
        width: 178px;
    }
}
/* FV */

/* CONCEPT */
.concept {
    padding: 100px 0 110px;
    width: 100%;
    background-image: url(../img/lp/concept_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.concept-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.concept-cont {
    width: 750px;
    margin: 0 auto;
    margin-top: 63px;
}

.concept-text {
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 34px;
    font-weight: 500;
}

.concept-text + .concept-text {
    margin-top: 28px;
}

@media all and (max-width: 768px) {
    .concept {
        padding: 50px 0 69px;
    }
    
    .concept-inner {
    }
    
    .concept-cont {
        width: 90%;
        margin-top: 52px;
    }
    
    .concept-text {
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 27.2px;
    }
    
    .concept-text + .concept-text {
        margin-top: 15px;
    }
}
/* CONCEPT */


/* WHAT */
.what {
    padding: 168px 0 150px;
    width: 100%;
}

.what-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1150px;
    padding: 87px 75px 68px;
    margin: 0 auto;
    background-color: #FCF3D6;
    border-radius: 20px;
}

.what-ttlbox {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 566px;
    height: auto;
    object-fit: contain;
}

.what-lion {
    position: absolute;
    top: -45px;
    right: 230px;
    width: 100px;
    height: auto;
}

.what-cont {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 41px;
}

.what-cont-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 10px;
    width: 327px;
    height: 190px;
    padding-bottom: 25px;
    border-radius: 10px;
    border: 2px solid #F27E00;
    background-color: #fff;
}

.what-cont-item-img {
}

.what-cont-item:nth-child(1) .what-cont-item-img {
    width: 153px;
    height: auto;
}
.what-cont-item:nth-child(2) .what-cont-item-img {
    width: 79px;
    height: auto;
}
.what-cont-item:nth-child(3) .what-cont-item-img {
    width: 130px;
    height: auto;
}

.what-cont-item-img img {
    object-fit: contain;
}

.what-cont-item-text {
}

.what-cont-item-ttl {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
}

.what-cont-item-text .strong {
    font-size: 22px;
    color: #F27E00;
}

.what-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}

@media all and (max-width: 768px) {
    .what {
        padding: 101px 0 80px;
    }
    
    .what-inner {
        width: 95%;
        padding: 109px 30px 30px;
    }
    
    .what-ttlbox {
        position: absolute;
        top: -51px;
        width: 88%;
    }
    
    .what-lion {
        position: absolute;
        top: 16px;
        right: 20px;
        width: 74px;
        height: auto;
    }
    
    .what-cont {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .what-cont-item {
        flex-direction: row;
        align-items: center;
        justify-content: end;
        gap: 7px;
        width: 295px;
        height: 92px;
        padding-bottom: 0;
    }
    
    .what-cont-item-img {
    }
    
    .what-cont-item:nth-child(1) .what-cont-item-img {
        width: 89px;
        height: auto;
        margin-right: 2px;
    }
    .what-cont-item:nth-child(2) .what-cont-item-img {
        width: 52px;
        height: auto;
        margin-right: 20px;
    }
    .what-cont-item:nth-child(3) .what-cont-item-img {
        width: 84px;
        height: auto;
        margin-right: 6px;
    }
    
    .what-cont-item-img img {
    }
    
    .what-cont-item-text {
        width: 176px;
    }
    
    .what-cont-item-ttl {
        font-size: 17px;
        letter-spacing: 0;
        text-align: start;
    }
    
    .what-cont-item-text .strong {
        font-size: 20px;
    }
    
    .what-text {
        line-height: 27px;
        text-align: start;
    }

    .what-text + .what-text {
        margin-top: 20px;
    }

    .what-imgbox {
        width: 100%;
        height: 162px;
        margin-top: 30px;
        border-radius: 10px;
        overflow: hidden;
    }
}

/* WHAT */


/* PLAN */
.plan {
    padding: 0;
}

.plan-inner {
}

.plan-ttlbox {
    text-align: center;
    margin: 0 auto;
    width: max-content;
}

.plan-ttltext {
    font-size: 20px;
    letter-spacing: 0;
    font-weight: 500;
}

.plan-subttl {
    font-size: 24px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #F27E00;
    margin-top: 15px;
}

.plan-ttl {
    font-size: 50px;
    letter-spacing: 0.05em;
    line-height: 55px;
    font-weight: 600;
    color: #F27E00;
}

.plan-linkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 114px;
}

.plan-link {
    width: 242px;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: 0;
    line-height:19px;
    font-weight: 600;
    color: #fff;
    padding: 16px 0 27px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-link:before {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 37px;
    height: 37px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.plan-link:hover {
    opacity: 1;
}

.plan-link:hover::before {
    bottom: -23px;
}

.plan-link:nth-child(1) {
    background-color: #64B4CF;
}
.plan-link:nth-child(2) {
    background-color: #8CB808;
}
.plan-link:nth-child(3) {
    background-color: #E8B91F;
}
.plan-link:nth-child(4) {
    background-color: #F27E00;
}

.plan-link:nth-child(1):before {
    background-image: url(../img/lp/ico_arw_blue.svg);
}
.plan-link:nth-child(2):before {
    background-image: url(../img/lp/ico_arrow_gre.svg);
}
.plan-link:nth-child(3):before {
    background-image: url(../img/lp/ico_arw_yel.svg);
}
.plan-link:nth-child(4):before {
    background-image: url(../img/lp/ico_arw_ore.svg);
}

.plan-item {
    width: 100%;
}
.plan-item + .plan-item {
    margin-top: 60px;
}
.plan-item:nth-child(1) {
    padding: 108px 0 120px;
    background-color: #E6F0ED;
}
.plan-item:nth-child(2) {
    padding: 100px 0 109px;
    background-color: #F1F6E5;
}
.plan-item:nth-child(3) {
    padding: 100px 0 110px;
    background-color: #FCF5DB;
}
.plan-item:nth-child(4) {
    padding: 107px 0 135px;
    background-color: #FFFDEA;
}

.plan-item-ttlbox {
    text-align: center;
    margin: 0 auto;
    width: max-content;
}

.plan-item-num {
    font-size: 53px;
    line-height: 75px;
    letter-spacing: 0;
    font-weight: 500;
    position: relative;
}

.plan-item-num:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
}

.plan-item:nth-child(1) .plan-item-num:before, .plan-item:nth-child(1) .plan-item-span {
    background-color: #64B4CF;
}
.plan-item:nth-child(2) .plan-item-num:before, .plan-item:nth-child(2) .plan-item-span {
    background-color: #8CB808;
}
.plan-item:nth-child(3) .plan-item-num:before, .plan-item:nth-child(3) .plan-item-span {
    background-color: #E8B91F;
}
.plan-item:nth-child(4) .plan-item-num:before, .plan-item:nth-child(4) .plan-item-span {
    background-color: #F27E00;
}

.plan-item-ttl {
    font-size: 38px;
    letter-spacing: 0.05em;
    line-height: 62px;
    font-weight: 600;
    margin-top: 20px;
}

.plan-item-span{
    width: max-content;
    height: 31px;
    margin: 10px auto 0;
    padding: 0 23px 0 29px;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 15.5px;
}

.plan-item-span .strong {
    padding-right: 22px;
    position: relative;
}

.plan-item-span .strong::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 8px;
    width: 1px;
    height: 14px;
    background-color: #fff;
}

.plan-item-subttl {
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 30px;
    font-weight: 600;
    margin-top: 50px;
}

.plan-item-text {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 32px;
    font-weight: 500;
    margin-top: 19px;
}

@media all and (max-width: 768px) {
    .plan {
    }
    
    .plan-inner {
    }
    
    .plan-ttlbox {
    }
    
    .plan-ttltext {
        font-size: 17px;
    }
    
    .plan-subttl {
        font-size: 18px;
        margin-top: 5px;
    }
    
    .plan-ttl {
        font-size: 30px;
        line-height: 1;
        margin-top: 5px;
    }
    
    .plan-linkbox {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 17px;
        column-gap: 17px;
        margin: 27px auto 75px;
        padding: 0 30px
    }
    
    .plan-link {
        width: calc(50% - 9px);
        height: 70px;
        font-size: 16px;
        padding: 10px 0 21px;
    }

    .plan-link:nth-child(4) { 
        padding-top: 20px;
    }
    
    .plan-link:before {
        content: "";
        position: absolute;
        bottom: -10px;
        width: 29px;
        height: 29px;
    }
    
    .plan-item {
    }
    .plan-item + .plan-item {
        margin-top: 30px;
    }
    .plan-item:nth-child(1) {
        padding: 32px 0 48px;
    }
    .plan-item:nth-child(2) {
        padding: 32px 0 44px;
    }
    .plan-item:nth-child(3) {
        padding: 32px 0 39px;
    }
    .plan-item:nth-child(4) {
        padding: 40px 0 56px;
    }
    
    .plan-item-ttlbox {
        width: 100%;
        padding: 0 30px;
    }
    
    .plan-item-num {
        line-height: 60px;
        font-size: 34px;
    }
    
    .plan-item-num:before {
        width: 16px;
        height: 3px;
    }
    
    .plan-item-ttl {
        font-size: 27px;
        letter-spacing: 0;
        line-height: 1.2;
        font-weight: 600;
        margin-top: 11px;
    }
    
    .plan-item-span{
        width: 100%;
        padding: 0;
        font-size: 15px;
        letter-spacing: 0.05em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
    }
    
    .plan-item-span .strong {
    }
    
    .plan-item-span .strong::after {
    }
    
    .plan-item-subttl {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .plan-item-text {
        font-size: 16px;
        letter-spacing: 0;
        line-height: 27.2px;
        margin-top: 15px;
        text-align: start;
    }
}

/* 01 */
.item01 .plan-item-num,
.item01 .plan-item-ttl,
.item01 .price-box-unit,
.item01 .plan-works-cont-subttl,
.item01 .data-ttl {
    color: #64B4CF;
}


.plan-item-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px auto 60px;
}

.main-text {
    width: 498px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border-radius: 21px;
    margin-bottom: 40px;
}

.main-box {
    position: relative;
}

.main-img {
    width: 633px;
    height: auto;
}

.main-img .main-mainimg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-link {
    position: absolute;
    width: 30px;
    height: 34px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.btn-link:hover {
    cursor: pointer;
    opacity: 0.7;
}

.num01 {
    top: 20px;
    right: 77px;
}
.num02 {
    top: 148px;
    right: 167px;
}
.num03 {
    top: 113px;
    left: 139px;
}
.num04 {
    bottom: 102px;
    left: 32px;
}
.num05 {
    bottom: 132px;
    left: 206px;
}
.num06 {
    bottom: 20px;
    right: 97px;
}

.btn {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plan-pricebox {
    margin: 20px auto 0;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 6px;
}

.plan-head {
    width: 58px;
    height: 58px;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-bottom: 10px;
}

.plan-works {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal.is-open {
    display: flex;
}
.modal-inner {
}
.modal-item {
    height: auto;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
}
.modal-close {
    position: absolute;
    top: -17px;
    right: -17px;
    width: 61px;
    height: 61px;
}
.modal-img {
    height: auto;
    padding: 16px 20px 0;
    background-color: #fff;
    border-radius: 10px;
}
.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal01 .modal-img {
    width: calc(451px + 40px);
}
.modal02 .modal-img {
    width: calc(731px + 40px);
}
.modal03 .modal-img {
    width: calc(415px + 40px);
}
.modal04 .modal-img {
    width: calc(731px + 40px);
}
.modal05 .modal-img {
    width: calc(415px + 40px);
}
.modal06 .modal-img {
    width: calc(731px + 40px);
}

.modal-ttl {
    height: 98px;
    margin: 0 auto;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 27px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
}

.modal-ttl::before {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #64B4CF;
}
.modal01 .modal-ttl::before {
    content: "1";
}
.modal02 .modal-ttl::before {
    content: "2";
}
.modal03 .modal-ttl::before {
    content: "3";
}
.modal04 .modal-ttl::before {
    content: "4";
}
.modal05 .modal-ttl::before {
    content: "5";
}
.modal06 .modal-ttl::before {
    content: "6";
}


.modal01 .modal-ttl {
    width: 451px;
}
.modal02 .modal-ttl {
    width: 731px;
}
.modal03 .modal-ttl {
    width: 415px;
}
.modal04 .modal-ttl {
    width: 731px;
}
.modal05 .modal-ttl {
    width: 415px;
}
.modal06 .modal-ttl {
    width: 731px;
}
/* モーダル */

.item01 .price-box-ttl {
    margin-left: -60px;
}

.plan-works {
    width: 1000px;
    margin: 0 auto;
    padding: 50px 62px;
    background-color: #fff;
    border-radius: 20px;
}

.plan-works-inner {

}

.plan-works-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan-works-cont-subttl {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid #64B4CF;
    width: 100px;
    height: 31px;
    border-radius: 15.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.plan-works-cont-ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 27px;
    font-weight: 600;
    margin: 10px 0 20px;
}

.data {
    width: 620px;
    height: 70px;
    padding: 16.5px 37px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #64B4CF;
}

.data-ttl {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
}

.data-ttl:after{
    content: "";
    position: absolute;
    top: -4px;
    right: -38px;
    width:1px;
    height: 36px;
    background-color: #64B4CF;
}

.data-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 40px;
    column-gap: 22px;
}

.data-box-item {
    font-size: 13px;
    line-height: 19.5px;
    letter-spacing: 0;
}

.plan-works-cont-text {
    width: 709px;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 25.5px;
    margin-bottom: 39px;
}

.plan-works-gallery {
    width: 875px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.plan-works-gallery-item {
}

.plan-works-gallery-item.before {
    width: 225px;
    position: relative;
}

.plan-works-gallery-item.before::after {
    content: "";
    position: absolute;
    top: 111px;
    right: -55px;
    width: 38px;
    height: 18px;
    background-image: url(../img/lp/ico_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-works-gallery-item.after {
    width: 582px;
}

.plan-works-gallery-ttl {
    width: 100%;
    height: 30px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff;
}

.before .plan-works-gallery-ttl {
    background-color: #818181;
}

.after .plan-works-gallery-ttl {
    background-color: #64B4CF;
}

.plan-works-gallery-img {
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.before .plan-works-gallery-img {
    height: 157px;
}

.after .plan-works-gallery-img {
    height: 200px;
}

.plan-works-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.after .plan-works-gallery-img img {
    width: 286px;
    border-radius: 10px;
}

.plan-add {
    width: 1000px;
    height: 278px;
    margin: 30px auto 80px;
    padding: 0 40px 0 70px;
    border-radius: 20px;
    border: 3px solid #64B4CF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-add-ttlbox {
    width: 471px;
}

.plan-add-ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 27px;
    font-weight: 600;
}

.plan-add-text {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 25.5px;
    font-weight: 500;
    margin-top: 15px;
}

.plan-add-img {
    width: 364px;
    height: 208px;
}

.plan-add-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

@media all and (max-width: 768px) {
    .plan-item-main {
        margin: 20px auto 30px;
        padding: 0 30px;
    }

    .main-text {
        width: 100%;
        height: 27px;
        font-size: 13px;
        letter-spacing: 0;
        line-height: 19px;
        border-radius: 13.5px;
        margin-bottom: 13px;
    }

    .main-box {
    }

    .main-img {
        width: 100%;
    }

    .main-img .main-mainimg {
    }

    .btn-link {
        width: 22px;
        height: 26px;
    }

    .num01 {
        top: 2px;
        right: 34px;
    }
    .num02 {
        top: 70px;
        right: 83px;
    }
    .num03 {
        top: 52px;
        left: 67px;
    }
    .num04 {
        bottom: 45px;
        left: 18px;
    }
    .num05 {
        bottom: 60px;
        left: 99px;
    }
    .num06 {
        bottom: 11px;
        right: 45px;
    }

    .btn {
    }

    .plan-pricebox {
        margin: 50px auto 0;
    }

    .plan-head {
    }

    /* モーダル */
    .modal {
    }
    .modal.is-open {
    }
    .modal-inner {
    }
    .modal-item {
        margin: 0 20px;
    }
    .modal-close {
        position: absolute;
        top: -17px;
        right: -7px;
        width: 35px;
        height: 35px;
    }
    .modal-img {
        height: auto;
        padding: 16px 20px 0;
        background-color: #fff;
        border-radius: 10px;
    }
    .modal-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .modal01 .modal-img {
        width: 100%;
    }
    .modal02 .modal-img {
        width: 100%;
    }
    .modal03 .modal-img {
        width: 100%;
    }
    .modal04 .modal-img {
        width: 100%;
    }
    .modal05 .modal-img {
        width: 100%;
    }
    .modal06 .modal-img {
        width: 100%;
    }

    .modal-ttl {
        padding: 0 20px;
        height: 80px;
        margin: 0 auto;
        font-size: 13px;
        letter-spacing: 0;
        line-height: 20px;
        gap: 6px;
    }

    .modal-ttl::before {
        font-size: 20px;
        width: 28px;
        height: 28px;
    }

    .modal01 .modal-ttl {
        width: 100%;
    }
    .modal02 .modal-ttl {
        width: 100%;
    }
    .modal03 .modal-ttl {
        width: 100%;
    }
    .modal04 .modal-ttl {
        width: 100%;
    }
    .modal05 .modal-ttl {
        width: 100%;
    }
    .modal06 .modal-ttl {
        width: 100%;
    }
    /* モーダル */

    .item01 .price-box-ttl {
    }

    .plan-works {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 35px 20px 46px;
    }

    .plan-works-inner {

    }

    .plan-works-cont {
    }
    .plan-works-cont-subttl {
    }
    .plan-works-cont-ttl {
        font-size: 18px;
        text-align: center;
    }

    .data {
        width: 261px;
        height: 103px;
        padding: 0;
        margin-bottom: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .data-ttl {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .data-ttl span {
        display: inline-block;
        padding-top: 1px;
        letter-spacing: 0.05em;
    }
    .data-ttl span:nth-child(1) {
        padding-top: 0;
    }

    .data-ttl:after{
        display: none;
    }

    .data-box {
        flex-wrap: nowrap;
        height: auto;
        column-gap: 0;
        row-gap: 0;
    }

    .data-box-item {
    }

    .data-box-item span {
        display: inline-block;
        width: 53px;
    }

    .plan-works-cont-text {
        width: calc(100% - 20px);
        margin-bottom: 20px;
        text-align: justify;
    }

    .plan-works-gallery {
        width: 100%;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        gap: 58px;
    }

    .plan-works-gallery-item {
    }

    .plan-works-gallery-item.before {
        width: 100%;
    }

    .plan-works-gallery-item.before::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }

    .plan-works-gallery-item.after {
        width: 100%;
    }

    .plan-works-gallery-ttl {
    }

    .before .plan-works-gallery-ttl {
    }

    .after .plan-works-gallery-ttl {
    }

    .plan-works-gallery-img {
        margin-top: 10px;
        justify-content: start;
        flex-direction: column;
        gap: 10px;
        overflow: hidden;
    }

    .before .plan-works-gallery-img {
        height: 220px;
        border-radius: 10px;
    }

    .after .plan-works-gallery-img {
        height: auto;
        border-radius: 10px;
    }

    .plan-works-gallery-img img {
        object-fit: cover;
    }

    .after .plan-works-gallery-img img {
        height: 220px;
        width: 100%;
    }

    .plan-add {
        width: calc(100% - 20px);
        height: auto;
        justify-content: center;
        flex-direction: column;
        margin: 30px auto;
        padding: 40px 30px 35px;
    }

    .plan-add-ttlbox {
        width: 100%;
    }

    .plan-add-ttl {
        font-size: 18px;
        text-align: center;
    }

    .plan-add-text {
        margin-top: 19px;
        margin-bottom: 19px;
    }

    .plan-add-img {
        width: 100%;
        height: auto;
    }

    .plan-add-img img {
    }
}
/* 01 */


/* 02 */
.item02 .plan-item-num,
.item02 .plan-item-ttl,
.item02 .price-box-unit,
.item02 .plan-mainbox-item-ttl {
    color: #8CB808;
}


.plan-mainbox {
    width: 1150px;
    margin: 64px auto 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.plan-mainbox + .plan-mainbox {
    margin-top: 126px;
    position: relative;
}

.plan-mainbox + .plan-mainbox::before {
    content: "";
    position: absolute;
    top: -100PX;
    left: 50%;
    transform: translateX(-50%);
    width: 67px;
    height: 67px;
    background-image: url(../img/lp/ico_plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plan-mainbox-item {
    width: 565px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-mainbox-item-img {
    width: 315px;
    height: 100%;
}

.plan-mainbox-item-img img {
}

.plan-mainbox-item-cont {
    width: calc(100% - 315px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.plan-mainbox-item-ttl {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 33px;
    font-weight: 600;
}

.plan-mainbox-item-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
}

.item02 .price-box-ttl {
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
}

.item02 .price-box-price {
    font-size: 28px;
    line-height: 42px;
}

.item02 .price-box-price::before {
    font-size: 13px;
    right: 38px;
}

.item02 .price-box-unit {
    font-size: 60px;
}

@media all and (max-width: 768px) {
.plan-mainbox {
    width: calc(100% - 60px);
    margin: 34px auto 0;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 15px;
}

.plan-mainbox + .plan-mainbox {
    margin-top: 97px;
}

.plan-mainbox + .plan-mainbox::before {
    top: -80px;
}

.plan-mainbox-item {
    width: 100%;
    height: auto;
    justify-content: center;
    flex-direction: column;
}

.plan-mainbox-item-img {
    width: 100%;
    height: 168px;
}

.plan-mainbox-item-img img {
}

.plan-mainbox-item-cont {
    width: 100%;
    padding: 10px 0 19px;
}

.plan-mainbox-item-ttl {
    font-size: 18px;
    letter-spacing: 0;
}

.plan-mainbox-item-text {
    font-size: 14px;
    line-height: 21px;
}

.item02 .price-box-ttl {
}

.item02 .price-box-price {
}

.item02 .price-box-price::before {
}

.item02 .price-box-unit {
}
}

/* 02 */

/* 03 */
.item03 .plan-item-num,
.item03 .plan-item-ttl,
.item03 .price-box-unit {
    color: #E8B91F;
}

.plan-mainbox03 {
    width: 1150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 60px auto 0;
}

.plan-mainbox03-item {
    width: 565px;
    height: 340px;
    padding: 0 30.5px 0 34.3px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-mainbox03-item:nth-child(3), .plan-mainbox03-item:nth-child(4) {
    height: 397px;
}

.plan-mainbox03-item-cont {
    width: 243px;
}

.plan-mainbox03-item-cont .subttl {
    width: 100%;
    height: 60px;
    padding: 5.7px 0 8px;
    text-align: center;
    background-image: url(../img/lp/plan03_bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.plan-mainbox03-item-cont .strong {
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.plan-mainbox03-item-cont .line {
    display: inline-block;
    padding-right: 18px;
    position: relative;
}

.plan-mainbox03-item-cont .line::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    width: 1px;
    height: 14px;
    background-color: #fff;
}

.plan-mainbox03-item-ttl {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.plan-mainbox03-item:nth-child(3) .plan-mainbox03-item-ttl {
    width: 260px;
}

.plan-mainbox03-item-text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 21px;
    text-align: center;
    margin: 12px 0;
    padding: 6px 0;
    border-top: 1px solid #E8B91F;
    border-bottom: 1px solid #E8B91F;
}

.item03 {
    gap: 6px;
}

.item03 .price-box-ttl {
    font-size: 15px;
    line-height: 19px;
}

.item03 .price-box-price {
    font-size: 24px;
}

.item03 .price-box-price::before {
    font-size: 13px;
    right: 28px;
    top: 10px;
}

.item03 .price-box-unit {
    font-size: 60px;
}   

.item03 .plan-mainbox03-item-img {
    width: 233px;
    height: 285px;
}

.plan-mainbox03-item:nth-child(3) .plan-mainbox03-item-img {
    height: 330px;
}
.plan-mainbox03-item:nth-child(4) .plan-mainbox03-item-img {
    height: 339px;
}

.item03 .plan-mainbox03-item-img img {
    border-radius: 10px;
}

@media all and (max-width: 768px) {
    .plan-mainbox03 {
        width: calc(100% - 60px);
        justify-content: start;
        flex-wrap: nowrap;
        flex-direction: column;
        row-gap: 42px;
        margin: 52px auto 0;
    }

    .plan-mainbox03-item {
        width: 100%;
        height: auto;
        padding: 59px 0 34px;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .plan-mainbox03-item:nth-child(3), .plan-mainbox03-item:nth-child(4) {
        height: auto;
    }

    .plan-mainbox03-item-cont {
        width: 100%;
    }

    .plan-mainbox03-item-cont .subttl {
        width: auto;
        height: 60px;
        padding:0 14px 0;
        position: absolute;
        top: -21px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .plan-mainbox03-item:nth-child(1) .plan-mainbox03-item-cont .subttl {
        width: 185px;
        background-image: url(../img/lp/plan03_bg01.svg);
    }
    .plan-mainbox03-item:nth-child(2) .plan-mainbox03-item-cont .subttl {
        width: 247px;
        background-image: url(../img/lp/plan03_bg02.svg);
    }
    .plan-mainbox03-item:nth-child(3) .plan-mainbox03-item-cont .subttl {
        width: 248px;
        background-image: url(../img/lp/plan03_bg03.svg);
    }
    .plan-mainbox03-item:nth-child(4) .plan-mainbox03-item-cont .subttl {
        width: 207px;
        background-image: url(../img/lp/plan03_bg04.svg);
    }

    .plan-mainbox03-item-cont .strong {
    }

    .plan-mainbox03-item-cont .line {
    }

    .plan-mainbox03-item-cont .line::after {
    }

    .plan-mainbox03-item-ttl {
        font-size: 18px;
        line-height: 27px;
        margin-top: 0px;
    }

    .plan-mainbox03-item:nth-child(3) .plan-mainbox03-item-ttl {
        width: auto;
    }

    .plan-mainbox03-item-text {
        margin: 12px 47px;
        padding: 6px 0;
    }

    .item03 {
        gap: 6px;
    }

    .item03 .price-box-ttl {
    }

    .item03 .price-box-price {
    }

    .item03 .price-box-price::before {
    }

    .item03 .price-box-unit {
    }   

    .item03 .plan-mainbox03-item-img {
        width: calc(100% - 56px);
    }

    .plan-mainbox03-item:nth-child(1) .plan-mainbox03-item-img {
        height: 300px;
    }
    .plan-mainbox03-item:nth-child(2) .plan-mainbox03-item-img {
        height: 172px;
    }

    .plan-mainbox03-item:nth-child(3) .plan-mainbox03-item-img {
        height: auto;
    }
    .plan-mainbox03-item:nth-child(4) .plan-mainbox03-item-img {
        height: 274px;
    }

    .item03 .plan-mainbox03-item-img img {
    }
}
/* 03 */

/* 04 */
.item04 .plan-item-num,
.item04 .plan-item-ttl,
.item04 .price-box-unit,
.item04 .plan-mainbox04-item-ttl {
    color: #F27E00;
}

.plan-mainbox04 {
    width: 1150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 60px auto 0;

}

.plan-mainbox04-item {
    width: 370px;
    height: 169px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #F27E00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.plan-mainbox04-item-img {
    width: 133px;
    height: 100%;
}

.plan-mainbox04-item-cont {
    width: calc(100% - 133px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.plan-mainbox04-item-ttl {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.item04 .price-box {
    gap: 6px;
}

.item04 .price-box-ttl {
    font-size: 14px;
    line-height: 19px;
}

.item04 .price-box-price {
    font-size: 24px;
}

.item04 .price-box-price::before {
    font-size: 15px;
    right: 28px;
    top: 10px;
}

.item04 .price-box-unit {
    font-size: 55px;
    line-height: 1.05;
    vertical-align: text-bottom;
}   

@media all and (max-width: 768px) {
    .plan-mainbox04 {
        width: calc(100% - 60px);
        justify-content: start;
        flex-wrap: nowrap;
        flex-direction: column;
        row-gap: 10px;
        margin: 30px auto 0;

    }

    .plan-mainbox04-item {
        width: 100%;
        height: 140px;
    }

    .plan-mainbox04-item-img {
        width: 115px;
    }

    .plan-mainbox04-item-cont {
        width: calc(100% - 115px);
    }

    .plan-mainbox04-item-ttl {
        font-size: 18px;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .item04 .price-box {
        gap: 0;
    }

    .item04 .price-box-ttl {
        font-size: 13px;
    }

    .item04 .price-box-price {
        font-size: 20px;
    }

    .item04 .price-box-price::before {
        font-size: 13px;
        right: 20px;
        top: 13px;
    }

    .item04 .price-box-unit {
        font-size: 50px;
        margin-right: 3px;
    }  

}

/* PLAN */


/* サポート */
.support {
    padding: 168px 0 115px;
    background-color: #FFF;
}

.support-inner {
    width: 1150px;
    height: 589px;
    background-color: #FCF3D6;
    border-radius: 20px;
    margin: 0 auto;
    padding: 100px 0 75px;
    position: relative;
}

.support-ttlbox {
    width: 566px;
    height: auto;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}


.support-ttlbox img {
    object-fit: contain;
}

.support-lion {
    width: 99px;
    height: auto;
    position: absolute;
    top: -45px;
    right: 238px;
}

.support-lion img {
    object-fit: contain;
}

.support-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.support-item {
    width: auto;
    height: 211px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.support-item:nth-child(1) {
    padding: 0 85px 0 37px;
}
.support-item:nth-child(2) {
    padding: 0 55.6px;
}
.support-item:nth-child(3) {
    padding: 0 30px 0 77.6px;
}
.support-item:nth-child(4) {
    padding: 0 92px 0 44px;
}
.support-item:nth-child(5) {
    padding: 0 88.6px;
}
.support-item:nth-child(6) {
    padding: 0 37px 0 85px;
}

.support-item:nth-child(1), .support-item:nth-child(2), .support-item:nth-child(3) {
    justify-content: start;
    height: 203px;
}
.support-item:nth-child(4), .support-item:nth-child(5), .support-item:nth-child(6) {
    justify-content: end;
}

.support-item:nth-child(1):before, .support-item:nth-child(2):before, .support-item:nth-child(4):before, .support-item:nth-child(5):before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 200px;
    background-color: #D6D6D6;
}
.support-item:nth-child(1):before, .support-item:nth-child(2):before {
    bottom: 0;
}
.support-item:nth-child(4):before, .support-item:nth-child(5):before {
    top: 0;
}
.support-item:nth-child(1):after, .support-item:nth-child(2):after,.support-item:nth-child(3):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D6D6D6;
}

.support-img {
}

.support-item:nth-child(1) .support-img {
    width: 70px;
}
.support-item:nth-child(2) .support-img {
    width: 51px;
}
.support-item:nth-child(3) .support-img {
    width: 74px;
}
.support-item:nth-child(4) .support-img {
    width: 115px;
}
.support-item:nth-child(5) .support-img {
    width: 46px;
}
.support-item:nth-child(6) .support-img {
    width: 73px;
}

.support-img img {
    object-fit: contain;
}

.support-item-ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 30px;
    font-weight: 600;
    margin: 8px 0 2px;
    color: #F27E00;
    text-align: center;
}

.support-item-text {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 25.5px;
    text-align: center;
}

.bnr-support {
    margin-bottom: 120px;
}

@media all and (max-width: 768px) {
    .support {
        padding: 92px 0 45px;
    }
    
    .support-inner {
        width: 355px;
        height: auto;
        padding: 63px 19px 22px;
    }
    
    .support-ttlbox {
        width: 314px;
        top: -41px;
    }

    .support-ttlbox img {
    }
    
    .support-lion {
        width: 75px;
        top: 0;
        right: 15px;
    }
    
    .support-lion img {
    }
    
    .support-wrap {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    
    .support-item {
        width: 100%;
        height: auto;
        padding: 20px 0;
        flex-direction: row;
    }

    .support-item:nth-child(1) {
        padding: 20px 0;
    }
    .support-item:nth-child(2) {
        padding: 20px 0;
    }
    .support-item:nth-child(3) {
        padding: 20px 0;
    }
    .support-item:nth-child(4) {
        padding: 20px 0;

    }
    .support-item:nth-child(5) {
        padding: 20px 0;
    }
    .support-item:nth-child(6) {
        padding: 20px 0;
    }
    
    .support-item:nth-child(1), .support-item:nth-child(2), .support-item:nth-child(3) {
        justify-content: end;
    }
    .support-item:nth-child(4), .support-item:nth-child(5), .support-item:nth-child(6) {
        justify-content: end;
    }
    
    .support-item:nth-child(1):before, .support-item:nth-child(2):before, .support-item:nth-child(4):before, .support-item:nth-child(5):before {
        display: none;
    }
    .support-item:nth-child(1):before, .support-item:nth-child(2):before {
    }
    .support-item:nth-child(4):before, .support-item:nth-child(5):before {
    }
    .support-item:nth-child(1):after, .support-item:nth-child(2):after,.support-item:nth-child(3):after {
        display: none;
    }

    .support-item:not(:last-child) {
        border-bottom: 1px solid #D6D6D6;
    }
    
    .support-img {
    }

    .support-item:nth-child(1) .support-img {
        margin-right: 0px;
    }
    .support-item:nth-child(2) .support-img {
        margin-right: 12px;
    }
    .support-item:nth-child(3) .support-img {
        margin-right: 0px;
    }
    .support-item:nth-child(4) .support-img {
        margin-right: -10px;
        width: 90px;
    }
    .support-item:nth-child(5) .support-img {
        margin-right: 15.5px;
    }
    .support-item:nth-child(6) .support-img {
        margin-right: -1px;
    }
    
    .support-img img {
        object-fit: contain;
    }

    .support-item-cont {
        width: 226px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .support-item-ttl {
    }
    
    .support-item-text {
    }
    
    .bnr-support {
        margin-bottom: 65px;
    }

    .bnr-support .bnr-item:nth-child(1) {
        margin-left: -10px;
    }
}
/* サポート */


/* みんなのリノベ体験談 */
.voice {
    padding: 94px 0 100px;
    background-image: url(../img/lp/voice_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.voice-inner {
    width: 1000px;
    margin: 0 auto;
}

.sml-text {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 32px;
    text-align: center;
    margin-top: 55px;
}

.voice-wrap {
    margin-top: 48px;
}

.voice-item {
    width: 100%;
    height: 388px;
    border-radius: 20px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.voice-item + .voice-item {
    margin-top: 30px;
}

.voice-cont {
    width: 470px;
}

.voice-item:nth-child(1) .voice-ttlbox {
    color: #64B4CF;
}
.voice-item:nth-child(2) .voice-ttlbox {
    color: #8CB808;
}
.voice-item:nth-child(3) .voice-ttlbox {
    color: #E8B91F;
}

.voice-subttl {
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.voice-tag {
    display: inline-block;
    font-size: 15px;
    padding: 0 15px;
    margin-left: 13px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12.5px;
    border: 1px solid;
}
.voice-item:nth-child(1) .voice-tag {
    border-color: #64B4CF;
}
.voice-item:nth-child(2) .voice-tag {
    border-color: #8CB808;
}
.voice-item:nth-child(3) .voice-tag {
    border-color: #E8B91F;
}

.voice-ttl {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 27px;
    font-weight: 600;
    margin: 8px 0 20px;
}

.voice-text {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 25.5px;
    text-align: justify;
}

.voice-img {
    width: 380px;
    height: 288px;
}

.voice-img img {
    border-radius: 10px;
    object-fit: contain;
}

@media all and (max-width: 768px) {
    .voice {
        padding: 60px 0 46px;
    }
    
    .voice-inner {
        width: calc(100% - 32px);
    }
    
    .sml-text {
        letter-spacing: 0;
        line-height: 27px;
        text-align: start;
        margin-top: 45px;
        padding: 0 15px;
    }
    
    .voice-wrap {
        margin-top: 29px;
    }
    
    .voice-item {
        height: auto;
        padding: 40px 25px 32px;
        justify-content: center;
        flex-direction: column;
    }
    
    .voice-item + .voice-item {
        margin-top: 20px;
    }
    
    .voice-cont {
        width: 100%;
    }
    
    .voice-subttl {
        text-align: center;
    }
    
    .voice-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 15px auto 10px;
        width: max-content;
    }
    
    .voice-ttl {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin: 0 0 20px;
    }
    
    .voice-text {
        font-size: 15px;
        letter-spacing: 0.05em;
        line-height: 25.5px;
    }
    
    .voice-img {
        width: 100%;
        height: 177px;
        margin-top: 20px;
    }
    .voice-item:nth-child(3) .voice-img {
        height: 280px;
    }
    
    .voice-img img {
        object-fit: cover;
    }
}
/* みんなのリノベ体験談 */


/* 対象の団地 */
.map {
    padding: 120px 0 91px;
}

.map-inner {
    width: 1150px;
    margin: 0 auto;
}

.map .sml-ttlbox {
    color: #F27E00;
}

.map .sml-ttl::before {
    background-color: #F27E00;
}

.map-wrap {
    margin-top: 72px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.map-item {
    width: 750px;
    height: 420px;
}

.map-slide {
    width: 355px;
}

.map-slide .map-slide-item {
    width: 355px;
    height: 384px;
    padding: 0 23px;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #FFFDEA;
    border: 2px solid #F27E00;
    border-radius: 10px;
    position: relative;
}

.map-slide-num {
    position: absolute;
    top: 23px;
    left: 27px;
    color: #F27E00;
    font-size: 43px;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1;
}

.map-slide-ttl {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 3px;
    margin-left: 58.5px;
    color: #F27E00;
    letter-spacing: 0;
}

.map-slide-text {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 25.5px;
    margin-bottom: 10px;
    margin-left: 58.5px;
}

.map-slide-item-text {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 19.5px;
}

.map-slide-item-img {
    width: 100%;
    height: auto;
    margin-bottom: 13px;
}
.map-slide-item-img img {
    object-fit: contain;
    border-radius: 10px;
}

.map-slide-info {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    display: inline-flex;
}

.map-slide-info + .map-slide-info {
    margin-top: 5px;
}

.map-slide-info-ttl {
    display: inline-block;
    margin-right: 4px;
    width: 53px;
    height: 21px;
    font-size: 12px;
    letter-spacing: 0;
    color: #fff;
    background-color: #F27E00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:before, .slick-next:before {
    width: 39px;
    height: 39px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    transform: rotate(0deg);
}

.slick-prev:before {
    background-image: url(../img/lp/ico_arw_left.svg);
    left: -11px;
    transform: rotate(180deg);
}
.slick-next:before {
    background-image: url(../img/lp/ico_arw_right.svg);
    right: -11px;
}

.map .slick-dots {
    bottom: -35px;
}

.map .slick-dots li button:before {
    font-size: 14px;
}

.map .slick-dots li.slick-active button:before {
    color: #F27E00;
}

.map .slick-dots li.slick-active button:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #F27E00;
    border-radius: 50%;
}

@media all and (max-width: 768px) {
    .map {
        padding: 51px 0 50px;
    }
    
    .map-inner {
        width: 100%;
    }
    
    .map .sml-ttlbox {
    }
    
    .map .sml-ttl::before {
    }
    
    .map-wrap {
        margin-top: 53px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 34px;
    }
    
    .map-item {
        width: 100%;
        height: 262px;
    }
    
    .map-slide {
    }
    
    .map-slide .map-slide-item {
        width: 100%;
    }
    
    .map-slide-ttl {
    }
    
    .map-slide-text {
    }
    
    .map-slide-item-text {
    }
    
    .map-slide-item-img {
    }
    .map-slide-item-img img {
    }
    
    .map-slide-info {
    }
    
    .map-slide-info + .map-slide-info {
    }
    
    .map-slide-info-ttl {
    }
    
    .slick-prev:before, .slick-next:before {
    }
    
    .slick-prev:before {
    }
    .slick-next:before {
    }
    
    .map .slick-dots {
    }
    
    .map .slick-dots li button:before {
    }
    
    .map .slick-dots li.slick-active button:before {
    }
    
    .map .slick-dots li.slick-active button:after {
    }
}

/* 対象の団地 

/* 購入を検討されている方へ */
.inquiry {
    padding: 91px 0 62px;
    background-color: #FCF3D6;
}

.inquiry-inner {
    width: 655px;
    margin: 0 auto;
}

.inquiry-cont {
    text-align: center;
}

.inquiry-ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding: 0 11px;
    margin: 0 auto;
    width: max-content;
    position: relative;
    margin-bottom: 25px;
}

.inquiry-ttl::before, .inquiry-ttl::after {
    content: "";
    position: absolute;
    bottom: 4px;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background-color: #000;
}

.inquiry-ttl::before {
    left: -10px;
    rotate: -25deg;
}
.inquiry-ttl::after {
    right: -10px;
    rotate: 25deg;
}

.inquiry-text {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 25.5px;
    font-weight: 500;
}

.inquiry-text + .inquiry-text {
    margin-top: 15px;
}

.inquiry-text .ore {
    color: #F27E00;
}

.inquiry-strong {
    font-size: 34px;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-top: 16px;
    color: #F27E00;
    position: relative;
    z-index: 2;
}

.inquiry-strong::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 433px;
    height: 25px;
    border-radius: 8px;
    background-color: #fff;
}

.inquiry-btn {
    width: 100%;
    height: 472px;
    background-image: url(../img/lp/bnr_inquiry.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 31px;
    position: relative;
}

.inquiry-btn-wrap {
    position: absolute;
    bottom: 54px;
    width: 200px;
    height: 37px;
}

.inquiry-btn-wrap.type1 {
    left: 117px;
}

.inquiry-btn-wrap.type2 {
    right: 117px;
}

.inquiry-btn-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18.5px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    padding-right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inquiry-btn-item:hover {
    opacity: 1;
}

.type1 .inquiry-btn-item {
    color: #F27E00;
}

.type1 .inquiry-btn-item::before, .type2 .inquiry-btn-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12.5px;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.type1 .inquiry-btn-item::before {
    background-image: url(../img/lp/ico_arrow_ore.svg);
}

.type2 .inquiry-btn-item::before {
    background-image: url(../img/lp/ico_arrow_black.svg);
}

.type1 .inquiry-btn-item:hover::before, .type2 .inquiry-btn-item:hover::before {
    right: 8px;
}

@media all and (max-width: 768px) {
    .inquiry {
        padding: 50px 0 40px;
    }
    
    .inquiry-inner {
        width: 100%;
    }
    
    .inquiry-cont {
    }
    
    .inquiry-ttl {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .inquiry-ttl::before, .inquiry-ttl::after {
        bottom: 2px;
        transform: translateX(-50%);
        height: 35px;
    }
    
    .inquiry-ttl::before {
    }
    .inquiry-ttl::after {
    }
    
    .inquiry-text {
        font-size: 15px;
    }
    
    .inquiry-text + .inquiry-text {
    }
    
    .inquiry-text .ore {
    }
    
    .inquiry-strong {
        font-size: 22px;
        margin-top: 15px;
    }
    
    .inquiry-strong::before {
        width: 279px;
        height: 17px;
        border-radius: 6px;
    }
    
    .inquiry-btn {
        width: 293px;
        height: 616px;
        margin: 0 auto;
        background-image: url(../img/lp/bnr_inquiry_sp.svg);
        margin-top: 40px;
    }
    
    .inquiry-btn-wrap {
        bottom: 54px;
        width: 171px;
        height: 41px;
    }
    
    .inquiry-btn-wrap.type1 {
        left: 50%;
        transform: translateX(-50%);
        bottom: 89px;
    }
    
    .inquiry-btn-wrap.type2 {
        right: 50%;
        transform: translateX(50%);
        bottom: 39px;
    }
    
    .inquiry-btn-item {
        border-radius: 20.5px;
        font-size: 14px;
    }
    
    .type1 .inquiry-btn-item {
        padding-right: 5px;
    }
    
    .type1 .inquiry-btn-item::before, .type2 .inquiry-btn-item::before {
        right: 11.1px;
    }
    
    .type1 .inquiry-btn-item::before {
    }
    
    .type2 .inquiry-btn-item::before {
    }
}
/* 購入を検討されている方へ */

/* 資料請求 */
.w_subTitle1Wrap {
    padding: 189px 0 72px;
}

.w_subTitle1_h1 {
    color: #F27E00;
    position: relative;
}

.w_subTitle1_h1::before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background-color: #F27E00;
}

.formTitle {
    color: #F27E00;
    width: 246px;
}

.formTitle.address_wrap {
    flex-direction: column;
    justify-content: start;
}

.formTitle.address_wrap .formttl_sml {
    display: block;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: end;
    margin-top: 2px;
}

.formButtonList {
    padding-bottom: 110px;
}

.formContents {
    justify-content: space-between;
}

.formContents.ctm1 {
    justify-content: start;
}

.titleLabel {
    width: 36px;
    height: 20px;
    font-size: 13px;
    line-height: 1;
    padding-bottom: 5px;
}

.contentsLabel {
    width: 223px;
    font-size: 15px;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    padding-right: 0;
    white-space: nowrap;
}

.formContents .contentsLabel .titleLabel {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.address {
    width: 217px;
}

.pref, .attr {
    width: 331px;
}

textarea {
    margin-left: 25px;
    height: 84px;
    margin-top: -15px;
}

.addressButton {
    margin-left: -14px;
}

.mwform-radio-field.horizontal-item {
    width: 142px;
    margin-right: 0!important;
    letter-spacing: 0;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text:before, .mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text:before {
    margin-right: 5px;
}

@media all and (max-width: 768px) {
    .w_subTitle1Wrap {
        padding: 57px 0 59px;
    }
    
    .w_subTitle1_h1 {
        font-size: 24px;
    }
    
    .w_subTitle1_h1::before {
        width: 28px;
    }
    
    .formTitle {
        width: 100%;
        padding-left: 0;
    }
    
    .formButtonList {
        padding-bottom: 0;
    }

    .titleLabel {
        position: relative;
        display: inline-block;
        margin-left: 10px;
    }

    .contentsLabel {
        width: auto;
    }

    textarea {
        width: calc(100% - 25px);
        margin-top: -25px;
    }

    .formTitle.address_wrap .formttl_sml {
        text-align: start;
        margin-top: 0;
    }

    .formContents .contentsLabel .titleLabel {
        margin-left: 10px;
        margin-top: 3px;
    }

    .address {
        width: calc(100% - 31vw);
    }

    .pref, .attr {
        width: 100%;
    }

    .privacyText {
        text-align: center;
    }
}

/* 資料請求 */

/* フッター */
.foot {
    border-top: 1px solid #D6D6D6;
}

.pc_floatNav1 {
    width: 121px;
}
.pc_floatNav1 .li1:nth-of-type(1n + 2) {
    margin-top: 15px;
}

.pc_floatNav1 .link1:hover {
    opacity: 0.5;
}

.pc_floatNav1 .link1:hover img {
    opacity: 1;
}

.pc_floatNav1 {
    display: block!important;
    opacity: 1!important;
}

.f_sns_box {
    display: flex;
    align-items: center;
    gap: 27px;
}

.f_sns .li1.type2 img {
    width: 34px;
    height: 36px;
    object-fit: contain;
}

@media all and (max-width: 768px) {
    .foot {
        border-top: none;
        padding-top: 67px;
    }

    .f_sns {
        justify-content: center;
        gap: 11.4px;
        padding-top: 14px;
    }

    .f_sns .li1.type2 img {
        width: 34px;
        height: 36px;
        object-fit: contain;
    }

    .cRight {
        padding-top: 20px;
    }
    
    .pc_floatNav1 {
        display: none!important;
    }
    .pc_floatNav1 .li1:nth-of-type(1n + 2) {
    }

    .sp_floatNav1 .s1::before {
        background: url(../img/lp/ico_mail.svg) no-repeat center / contain;
        width: 21px;
        height: 15px;
    }

    .sp_floatNav1 {
        display: flex!important;
    }
    
    .pageScroll3 .pc_floatNav1 {
        display: none!important;
    }


    .gNav_sp {
        left: auto;
        top: 0;
        right: 0;
        width: 74%;
        height: 100%;
        border-radius: 0;
        padding: 108px 30px 0 30px;
        overflow: auto;
    }

    .gNav_sp_inner {
        height: max-content;
        overflow: visible;
        padding-bottom: 81px;
    }

    .gNav_sp_list1 {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .gNav_sp_list1 .li1 {
        width: 100%;
    }

    .gNav_sp_list1 .li1 .link1 {
        width: 100%;
        height: auto;
        padding: 0 5px 13px 5px;
        border-bottom: 1px solid #fff;
        font-size: 18px;
        letter-spacing: 0;
        font-weight: 500;
        color: #fff;
        text-align: start;
    }
    .gNav_sp_list1 .li1 .link1:before {
        display: none;
    }

    .gNav_sp_list1 .li1 .link1:after {
        width: 31px;
        height: 31px;
        left: auto;
        right: -2px;
        bottom: 6px;
    }


    .gNav_bottom {
        padding-bottom: 38px;
        color: #fff;
        text-align: center;
    }

    .gNav_bottom_logo {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .gNav_bottom_text1 {
        font-size: 15px;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .gNav_bottom_text2 {
        font-size: 13px;
        letter-spacing: 0;
        line-height: 19px;
        margin-bottom: 8px;
    }

    .gNav_sp_snslist1 {
        margin: 15px auto;
    }
    
}
/* フッター */