@charset "utf-8";

/* --------------------------------
 * common
 * -------------------------------- */
.common__linkText {
    display: inline-block;
}

.common__linkArrow {
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 29px;
    width: 29px;
    height: 29px;
    margin-left: 10px;
}

.common__linkArrow svg {
    stroke: #fff;
    fill: #fff;
    transition: .3s;
}

.common__shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, .16);
}

/* common__feature */
.common__feature {
    max-width: 1200px;
    margin: 40px auto 0;
}

.common__feature--baloon {
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: #333;
    width: 220px;
}

.common__feature--baloon::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid #333;
    border-right: 0;
}

.common__feature--content {
    padding: 40px 30px;
    background-color: #fff;
    margin-left: 20px;
    width: calc(100% - 240px);
}

.common__feature--contentHeading {
    padding-bottom: 15px;
    border-bottom: 2px solid #C6B8AF;
}

.common__feature--contentHeading h2 {
    font-size: 18px;
    font-weight: 600;
}

.common__feature--pointArea {
    margin-top: 20px;
}

.common__feature--pointItem {
    margin-left: 8px;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    padding: 4px;
    border-radius: 5px;
    background-color: #F8F5F3;
    text-align: center;
}

.common__feature--pointItem:nth-of-type(1) {
    margin-left: 0;
}

.common__feature--pointItem span {
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.4px;
}

.common__feature--pointArea p {
    width: calc(100% - 390px);
    margin-left: 14px;
    font-size: 13px;
    line-height: 2;
}

.cost__area .common__feature--baloon {
    max-width: 18%;
}

.cost__area .common__feature--content {
    max-width: calc(82% - 20px);
}

.cost__area .common__feature--pointContent {
    width: 68%;
}

.cost__area .common__feature--pointArea p {
    width: calc(32% - 20px);
    margin-top: 20px;
    margin-left: 14px;
    font-size: 13px;
    line-height: 2;
}

.cost__area .common__feature--pointArea p span {
    display: block;
    margin-top: 30px;
    font-size: 10px;
    line-height: 2;
}

.cost__area .common__feature--pointItem {
    padding: 20px 24px;
    width: calc((100% - 16px) / 3);
    height: auto;
}

.common__feature--pointItem .common__feature--pointItemTitle {
    align-items: center;
    justify-content: center;
    height: 38px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.cost__area .common__feature--pointItem p {
    display: inline-block;
    width: auto;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 2;
    text-align: left;
}

.common__feature--pointItem .common__feature--pointItemTotal {
    display: block;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid #C6B8AF;
    font-weight: 400;
}

.common__feature--pointItem .common__feature--pointItemSub {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.cost__area .common__feature--pointItem p.mtchange_1st {
    margin-top: 14px;
}

.cost__area .common__feature--pointItem p.mtchange {
    margin-top: 32px;
}

@media screen and (max-width: 1024px) {
	.common__feature--pointArea {
        display: block;
    }
    
    .common__feature--baloon {
        width: 200px;
    }

    .common__feature--content {
        width: calc(100% - 220px);
    }

    .common__feature--pointArea p {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }

    .cost__area .common__feature--pointArea {
        display: block;
    }

    .cost__area .common__feature--pointArea p {
        margin-left: 0;
        width: 100%;
    }

    .cost__area .common__feature--pointContent {
        width: 100%;
    }

    .cost__area .common__feature--pointItem p {
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .common__feature {
        display: block;
    }

    .common__feature:nth-of-type(1) {
        margin-top: 0;
    }

    .common__feature--baloon {
        padding: 30px 0;
        width: 100%;
    }
    
    .common__feature--baloon::after {
        top: auto;
        bottom: -19px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-top: 11px solid #333;
    }
    
    .common__feature--content {
        margin-top: 21px;
        margin-left: 0;
        padding: 0;
        width: 100%;
    }
    
    .common__feature--contentHeading {
        padding: 25px 15px 25px;
        border: none;
    }
    
    .common__feature--contentHeading h2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 0.4px;
    }

    .common__feature--contentHeading h2::after {
        content: "";
        background-image: url(../img/common/accordion_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 20px;
        min-width: 20px;
        height: 20px;
        margin-left: 15px;
        transition: .3s;
    }

    .common__feature--contentHeading.is_open h2::after {
        transform: rotate(180deg);
    }
    
    .common__feature--pointArea {
        display: none;
        margin-top: 0;
        padding: 0 20px 40px;
    }

    .common__feature--pointArea::before {
        content: "";
        display: block;
        margin-bottom: 20px;
        margin-left: -20px;
        width: calc(100% + 40px);
        height: 2px;
        background-color: #C6B8AF;
    }

    .common__feature--pointContent {
        justify-content: center;
    }
    
    .common__feature--pointItem:nth-of-type(2n+1) {
        margin-left: 0;
    }

    .common__feature--pointItem:nth-of-type(n+3) {
        margin-top: 8px;
    }
    
    .common__feature--pointArea p {
        width: 100%;
        margin: 20px auto 0;
    }
    
    .cost__area .common__feature--baloon {
        max-width: 100%;
    }
    
    .cost__area .common__feature--content {
        max-width: 100%;
    }
    
    .cost__area .common__feature--pointContent {
        display: block;
        width: 100%;
    }

    .cost__area .common__feature--contentHeading h2 {
        line-height: 1.6;
    }

    .cost__area .common__feature--pointArea {
        display: none;
    }
    
    .cost__area .common__feature--pointArea p {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
    }

    .cost__area .common__feature--pointItem {
        margin: 10px auto 0;
        padding: 20px 24px;
        width: calc(100% - 15px);
    }
    
    .common__feature--pointItem .common__feature--pointItemTitle {
        align-items: center;
        justify-content: center;
        height: 38px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .cost__area .common__feature--pointItem p {
        display: inline-block;
        width: auto;
        margin: 20px auto 0;
        font-size: 13px;
        line-height: 2;
        text-align: left;
    }
    
    .common__feature--pointItem .common__feature--pointItemTotal {
        display: block;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid #C6B8AF;
        font-weight: 400;
    }
    
    .common__feature--pointItem .common__feature--pointItemSub {
        display: block;
        margin-top: 5px;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.5;
    }
    
    .cost__area .common__feature--pointItem p.mtchange_1st {
        margin-top: 14px;
    }
    
    .cost__area .common__feature--pointItem p.mtchange {
        margin-top: 32px;
    }
}

/* --------------------------------
 * mv
 * -------------------------------- */
.mv__area {
    margin-top: 7em;
    padding: 0 50px;
}

.mv__area_bg {
    position: relative;
    padding: 510px 20px 20px;
    background-image: url(../img/top/mv_bg.png);
    background-size: cover;
    background-position: center;
}

.mv__area--textImg {
    position: absolute;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
}

.mv__area--textImg img {
    width: 100%;
    max-width: 550px;
}

.mv__area--cta {
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 70px;
}

.mv__area--cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #333;
    mix-blend-mode: multiply;
}

.mv__area--ctaText {
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.mv__area--freeTag {
    margin-right: 10px;
    width: 63px;
    height: 25px;
    border-radius: 5px;
    background-color: #B7735A;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 25px;
}

a.mv__area--ctaLink {
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 29px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

a.mv__area--ctaLink .common__linkText {
    margin-top: 0px;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .mv__area {
        margin-top: 4em;
        padding: 0 10px;
    }

	.mv__area_bg {
        padding-top: 480px;
        background-image: url(../img/top/mv_bg@sp.png);
    }

    .mv__area--textImg {
        position: absolute;
        top: 75px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mv__area--textImg img {
        width: 335px;
    }

    .mv__area--cta {
        position: absolute;
        width: calc(100vw - 60px);
        height: auto;
        padding: 30px 0;
        bottom: -95px;
        mix-blend-mode:  normal;
    }

    .mv__area--cta::before {
        height: 184px;
        mix-blend-mode: normal;
    }

    .mv__area--ctaText {
        display: block;
        font-size: 14px;
    }

    .mv__area--ctaText p {
        margin-top: 5px;
        text-align: center;
        letter-spacing: 0.6px;
    }

    .mv__area--freeTag {
        display: block;
        margin: 0 auto;
    }

    .mv__area--ctaLink {
        margin: 15px;
    }
}

/* --------------------------------
 * concept
 * -------------------------------- */
.concept__area {
    position: relative;
    margin-top: 80px;
    margin-bottom: 160px;
}

.concept__area::before {
    content: "";
    background-image: url(../img/top/decoration_01.svg);
    background-size: cover;
    position: absolute;
    width: 684px;
    height: 369px;
    bottom: -158px;
    left: 0;
}

.concept__area--bg {
    position: relative;
    padding-top: 815px;
    background-image: url(../img/top/concept_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.concept_area--mainMessage {
    position: absolute;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    top: 129px;
    left: 50%;
    transform: translateX(-50%);
    width: 345px;
    height: 300px;
    background-color: #fff;
}

.concept_area--mainMessage img {
    margin: 0 auto;
    object-fit: contain;
}

.concept_area--mainMessage::after {
    content: "";
    background-image: url(../img/top/decoration_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 368px;
    height: 93px;
    top: -26px;
    right: -256px;
}

.concept_area--textArea {
    position: absolute;
    width: 45%;
    left: 0;
    top: 480px;
}

.concept_area--textArea img {
    display: block;
    object-fit: contain;
}

.concept_area--textArea p {
    margin-top: 40px;
    line-height: 2.5;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .concept__area {
        margin-top: 120px;
        margin-bottom: 60px;
    }

    .concept__area::before {
        background-image: url(../img/top/decoration_01@sp.svg);
        background-size: cover;
        position: absolute;
        width: 307px;
        height: 214px;
        bottom: -90px;
        left: 0;
    }

	.concept__area--bg {
        padding-top: 762px;
        background-image: url(../img/top/concept_bg_01@sp.png);
    }

    .concept_area--mainMessage {
        width: 300px;
        height: 260px;
        top: 157px;
    }

    .concept_area--mainMessage::after {
        width: 285px;
        height: 66px;
        top: -38px;
        left: 6px;
        right: 0;
    }
    .concept_area--textArea {
        position: relative;
        margin: 60px 20px 0;
        width: calc(100vw - 40px);
        top: 0;
    }

    .concept_area--textArea img {
        display: inline-block;
    }

    .concept_area--textArea p {
        margin-top: 30px;
        line-height: 2.3;
        font-size: 14px;
        font-weight: 400;
    }

    .concept_area--addImg.sp {
        position: relative;
        margin-left: calc(100vw - 220px);
        margin-top: 70px;
        width: 220px;
        height: 359px;
        background-image: url(../img/top/concept_bg_02@sp.png);
        background-size: contain;
    }
}

/* --------------------------------
 * cta
 * -------------------------------- */
.cta__area {
    position: relative;
}

.cta__area--bg{
    background-image: url(../img/top/cta_bg.png);
    background-size: cover;
    padding: 20px 0;
    width: 100vw;
}

.cta__area--main {
    margin: 0 auto;
    padding-top: 42px;
    width: 800px;
    height: 260px;
    text-align: center;
    background-color: #fff;
}

.cta__area--heading {
    margin: 0 auto;
    display: block;
}

.cta__area--appeal {
    margin: 25px auto 0;
}

a.cta__area--linkArea {
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    width: 400px;
    height: 60px;
    border-radius: 100px;
    background-color: #333;
    color: #fff;
    transition: .3s;
}

.cta__area--linkArea:hover {
    background-color: #B7735A;
}

@media screen and (max-width: 768px) {
	.cta__area--bg{
        padding: 108px 0 138px;
        background-image: url(../img/top/cta_bg@sp.png);
    }
    .cta__area--main {
        padding-top: 48px;
        width: calc(100% - 40px);
        height: 300px;
    }
    a.cta__area--linkArea {
        width: calc(100% - 32px);
        font-size: 14px;
        padding-left: 15px;
    }
    .cta__area--linkArea .common__linkArrow {
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }
}

/* --------------------------------
 * living
 * -------------------------------- */
.summary__area--bg {
    justify-content: center;
    padding: 120px 50px 185px;
    background-image: url(../img/top/living_bg.png);
    background-size: cover;
    background-position: center;
}

.summary__area--messageImg {
    justify-content: center;
    align-items: center;
    width: 28%;
    max-width: 280px;
    height: 280px;
    border: 1px solid #fff;
}

.summary__area--bg p {
    margin-left: 60px;
    width: 60%;
    max-width: 600px;
    font-size: 15px;
    font-weight: 500;
    line-height: 2.5;
    color: #fff;
}

@media screen and (max-width: 768px) {
	.summary__area--bg {
        background-image: url(../img/top/living_bg@sp.png);
        padding: 40px 36px 60px;
    }

    .summary__area--messageImg {
        width: 220px;
        height: 220px;
    }

    .summary__area--messageImg img {
        max-width: 180px;
    }

    .summary__area--bg p {
        margin-top: 30px;
        margin-left: 0;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 2;
    }
}

/* --------------------------------
 * gallery
 * -------------------------------- */
.gallery__area--bg {
    padding: 80px 50px;
    background-image: url(../img/top/gallery_bg.png);
    background-size: cover;
    background-position: center;
}

.gallery__area--img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
	.gallery__area--bg {
        padding: 80px 20px;
        background-image: url(../img/top/gallery_bg@sp.png);
        background-size: cover;
        background-position: top center;
    }
    
    .gallery__area--img_01 {
        margin: 0 auto;
        width: 333px;
        height: auto;
        background-size: cover;
    }

    .gallery__area--img_02 {
        margin: 30px 0 0 25px;
        width: 321px;
        height: auto;
        background-size: cover;
    }

    .gallery__area--img_03 {
        margin-top: 10px;
        width: 241px;
        height: auto;
        background-size: cover;
    }

    .gallery__area--img_04 {
        margin: 30px auto 0;
        width: 306px;
        height: auto;
        background-size: cover;
    }

    .gallery__area--img_05 {
        margin: 30px 0 0 3px;
        width: 352px;
        height: auto;
        background-size: cover;
    }
}

/* --------------------------------
 * house
 * -------------------------------- */
.house__area {
    margin-top: 118px;
    padding: 0 50px;
}

.house__area--heading {
    position: relative;
    text-align: center;
}

.house__area--headingImg {
    display: inline-block;
    position: relative;
}

.house__area--headingImg::before {
    content: "";
    background-image: url(../img/top/decoration_03.svg);
    background-size: cover;
    position: absolute;
    width: 308px;
    height: 186px;
    transform: rotate(4deg);
    top: -37px;
    right: -192px;
}

.house__area--heading img {
    position: relative;
    margin: 0 auto;
}

.house__area--heading p {
    position: relative;
    margin: 40px auto 0;
    width: 460px;
    font-size: 14px;
}

.house__area--item {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.house__area--item:nth-of-type(1) {
    margin-top: 34px;
}

.house__area--itemMainImg {
    width: 100%;
}

.house__area--itemMainImg img {
    width: 50%;
}

.house__area--itemSubImg {
    flex-wrap: nowrap;
    margin-top: 10px;
    overflow-x: scroll;
}

.house__area--itemSubImg li {
    margin-left: 10px;
    width: 320px;
    flex-shrink: 0;
}

.house__area--itemSubImg li img {
    width: 100%;
}

.house__area--itemSubImg li:nth-of-type(1) {
    margin-left: 0px;
}

.house__area--text {
    width: calc(50% - 40px);
    margin: 20px 0 30px 40px;
}

.reverse .house__area--text {
    margin-left: 0;
    margin-right: 40px;
}

.house__area--decoHeading {
    padding: 8px 6px;
    background-color: #F8F5F3;
    font-size: 14px;
    font-weight: 500;
}

.house__area--textHeading h2 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
}

.house__area--text p {
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 1.8;
}

.house__area--careText {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #A59890;
    line-height: 1;
}

.house__area--link {
    display: inline-block;
}

.house__area--itemLink {
    align-items: center;
    margin-top: 20px;
}

.house__area--itemLinkText {
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #333;
    color: #333;
    transition: .3s;
}

.house__area--itemLink:hover .common__linkText {
    border-bottom: 1px solid #B7735A;
    color: #B7735A;
}

.house__area--itemLink .common__linkArrow {
    border: 1px solid #333;
}

.house__area--itemLink .common__linkArrow svg {
    stroke: #333;
    fill: #333;
}

.house__area--itemLink:hover .common__linkArrow {
    border: 1px solid #B7735A;
    background-color: #B7735A;
}

.house__area--itemLink:hover .common__linkArrow svg {
    stroke: #fff;
    fill: #fff;
}

@media screen and (max-width: 768px) {
	.house__area {
        padding: 0;
    }

    .house__area--heading {
        padding-bottom: 20px;
    }

    .house__area--headingImg::before {
        background-size: contain;
        width: 178px;
        height: 131px;
        top: -10px;
        right: -52px;
    }

    .house__area--heading img {
        width: 252px;
    }

    .house__area--heading p {
        width: 270px;
        font-size: 13px;
        line-height: 2;
    }

    .house__area--item {
        margin-top: 40px;
    }

    .house__area--item::after {
        content: "";
        display: block;
        width: calc(100vw - 40px);
        height: 1px;
        background-color: #C6B8AF;
        margin: 40px auto 0;
    }

    .house__area--item:nth-last-of-type(1)::after {
        display: none;
    }

    .house__area--itemMainImg {
        margin-top: 20px;
    }

    .house__area--itemMainImg img {
        width: 100vw;
    }

    .house__area--itemSubImg {
        overflow: hidden;
    }

    .house__area--itemSubImg li {
        width: 252px;
        flex-shrink: 0;
    }

    .house__area--textHeading {
        text-align: center;
    }

    .house__area--decoHeading {
        padding: 8px 10px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    .house__area--textHeading h2 {
        font-size: 18px;
        letter-spacing: 0.4px;
        line-height: 1.4;
    }

    .house__area--text {
        margin: 30px 20px 0;
        width: calc(100vw - 40px);
    }

    .house__area--text p {
        font-size: 14px;
        line-height: 2;
    }

    .house__area--linkArea {
        text-align: center;
    }

    .house__area--itemLink:hover .common__linkText {
        border-bottom: 1px solid #333;
        color: #333;
    }

    .house__area--itemLink:hover .common__linkArrow {
        border: 1px solid #333;
        background: none;
    }
    
    .house__area--itemLink:hover .common__linkArrow svg {
        stroke: #333;
        fill: #333;
    }
}

/* --------------------------------
 * other
 * -------------------------------- */
.other__area {
    margin-top: 60px;
    margin-bottom: 50px;
}

.other__area--bg {
    padding: 60px 50px;
    width: 100vw;
    background-color: #F8F5F3;
}

.other__area--heading {
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.other__area--houseImg {
    margin: 20px auto 0;
    max-width: 1000px;
}

.other__area--houseImg img {
    width: calc((100% - 40px) / 3);
    margin-top: 20px;
    margin-left: 20px;
}

.other__area--houseImg img:nth-of-type(3n+1) {
    margin-left: 0;
}

.other__area--bg .house__area--careText {
    margin: 20px auto 0;
    max-width: 1000px;
}

@media screen and (max-width: 768px) {
    .other__area--bg {
        padding: 60px 20px;
    }

	.other__area--heading {
        width: 108px;
    }

    .other__area--houseImg {
        margin: 25px auto 0;
    }

    .other__area--houseImg img {
        width: calc((100% - 5px) / 2);
        margin-top: 5px;
        margin-left: 5px;
    }

    .other__area--houseImg img:nth-of-type(3n+1) {
        margin-left: 5px;
    }

    .other__area--houseImg img:nth-of-type(2n+1) {
        margin-left: 0;
    }
}

/* --------------------------------
 * merit
 * -------------------------------- */
.summary__area--bg.merit__headingArea {
    background-image: url(../img/top/merit_bg.png);
    margin-top: 50px;
    padding: 120px 50px 200px;
}

.merit__area--bg {
    padding: 20px 50px 60px;
    background-color: #C6B8AF;
}

@media screen and (max-width: 768px) {
    .summary__area--bg.merit__headingArea {
        background-image: url(../img/top/merit_bg@sp.png);
        padding: 60px 36px;
    }
    .merit__area--bg {
        padding: 40px 20px;
    }
}

/* --------------------------------
 * cost
 * -------------------------------- */
.summary__area--bg.cost__headingArea {
    background-image: url(../img/top/cost_bg.png);
    padding: 120px 50px 180px;
}

.cost__area .merit__area--bg {
    padding: 60px 50px;
}

.cost__area--intro {
    text-align: center;
}

.cost__area--introText {
    margin: 0 auto;
    max-width: 520px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.cost__area--coution {
    margin: 28px auto 0;
    max-width: 480px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    color: #4D4C4C;
}

.cost__area--totalArea {
    margin-top: 30px;
}

.cost__area--totalAreaBaloon {
    position: relative;
    justify-content: center;
    align-items: baseline;
    margin: 0 auto;
    padding: 25px 0 20px;
    max-width: 940px;
    background-color: #333;
}

.cost__area--totalAreaBaloon::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 11px solid #333;
    border-bottom: 0;
}

.cost__area--totalAreaBaloonTitle {
    font-size: 24px;
    font-weight: 600;
    color: #F8F5F3;
}

.cost__area--totalAreaBaloonEx {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #F8F5F3;
}

.cost__area--totalData {
    margin: 15px auto 0;
    padding: 15px 0;
    background-color: #F8F5F3;
    max-width: 940px;
}

.cost__area--totalDataItem {
    width: 33%;
    text-align: center;
}

.cost__area--totalDataItem img {
    display: block;
    margin: 0 auto;
    padding-top: 18px;
}

.cost__area--totalDataItem.middlePos {
    width: 34%;
    border-left: 1px solid #C6B8AF;
    border-right: 1px solid #C6B8AF;
}

.cost__area--totalCost {
    align-items: baseline;
}

.cost__area--totalDataItem .cost__area--totalCost {
    margin-top: 28px;
    padding-top: 0;
    padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.summary__area--bg.cost__headingArea {
        background-image: url(../img/top/cost_bg@sp.png);
        padding: 60px 36px;
    }
    .cost__area .merit__area--bg {
        padding: 60px 20px 66px;
    }
    
    .cost__area--introText {
        margin: 0 auto;
        max-width: 270px;
    }
    
    .cost__area--coution {
        margin: 30px auto 0;
        line-height: 2.1;
    }
    
    .cost__area--totalAreaBaloon {
        padding: 30px 0;
    }
    
    .cost__area--totalAreaBaloonTitle {
        font-size: 18px;
    }
    
    .cost__area--totalAreaBaloonEx {
        margin-left: 10px;
        font-size: 14px;
    }
    
    .cost__area--totalData {
        display: block;
        margin: 21px auto 0;
        padding: 0 15px;
    }
    
    .cost__area--totalDataItem {
        width: 100%;
        text-align: center;
        padding-top: 32px;
        padding-bottom: 26px;
    }
    
    .cost__area--totalDataItem img {
        padding-top: 0;
    }
    
    .cost__area--totalDataItem.middlePos {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid #C6B8AF;
        border-bottom: 1px solid #C6B8AF;
    }
    
    .cost__area--totalCost {
        align-items: baseline;
    }
    
    .cost__area--totalDataItem .cost__area--totalCost {
        margin-top: 28px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* --------------------------------
 * last_cta
 * -------------------------------- */
.last__cta {
    position: relative;
    margin-top: 87px;
    padding: 0 50px;
}

.last__cta .house__area--headingImg::before {
    background-image: url(../img/top/decoration_05.svg);
    width: 531px;
    height: 186px;
    transform: rotate(0);
    top: 34px;
    left: -445px;
    right: 0;
}

.last__cta .house__area--headingImg::after {
    content: "";
    background-image: url(../img/top/last_cta_img_01.png);
    position: absolute;
    top: -117px;
    right: -349px;
    background-size: cover;
    background-position: center;
    width: 224px;
    height: 258px;
}

.last__cta .house__area--heading p {
    width: 542px;
}

.last__cta--mainBg {
    position: relative;
    margin-top: 67px;
    padding: 80px 0 155px;
    background-image: url(../img/top/last_cta_bg.png);
    background-size: cover;
    background-position: center;
}

.last__cta--mainBg::after {
    content: "";
    position: absolute;
    bottom: 22px;
    right: -42px;
    background-image: url(../img/top/decoration_06.png);
    background-size: cover;
    background-position: center;
    width: 521px;
    height: 66px;
}

.last__cta .concept_area--mainMessage {
    position: static;
    width: 560px;
    height: auto;
    padding: 70px 70px 60px;
    text-align: center;
    transform: translateX(0);
}

.last__cta .concept_area--mainMessage p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
}

.last__cta .concept_area--mainMessage::after {
    display: none;
}

.last__cta .cta__area--linkArea {
    margin-top: 15px;
}

.last__cta .concept_area--main_appeal {
    margin: 45px auto 0;
}

.last__cta--catalog {
    margin: 20px auto 0;
    max-width: 800px;
    padding: 30px 20px 30px 30px;
    background-color: #F8F5F3;
}

.last__cta--catalogImg img {
    width: 140px;
    margin-left: 10px;
}

.last__cta--catalogImg img:nth-of-type(1) {
    margin-left: 0;
}

.last__cta--catalogTextArea {
    align-items: center;
    margin-left: 25px;
    width: calc(100% - 465px);
}

.last__cta--catalogText {
    margin-top: 20px;
    width: calc(100% - 65px);
}

.last__cta--catalogText p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.last__cta--catalogTextArea .common__linkArrow {
    border: 1px solid #333;
    margin-left: 35px;
    background-color: #fff;
    transition: .3s;
}

.last__cta--catalog:hover .last__cta--catalogTextArea .common__linkArrow {
    border: 1px solid #B7735A;
    background-color: #B7735A;
}

.last__cta--catalogTextArea .common__linkArrow svg {
    stroke: #333;
    fill: #333;
    transition: .3s;
}

.last__cta--catalog:hover .last__cta--catalogTextArea .common__linkArrow svg {
    stroke: #fff;
    fill: #fff;
}

@media screen and (max-width: 768px) {
	.last__cta {
        margin-top: 182px;
        padding: 0;
    }
    
    .last__cta .house__area--headingImg::before {
        background-image: url(../img/top/decoration_05@sp.svg);
        background-size: contain;
        width: 361px;
        height: 140px;
        top: auto;
        bottom: -215px;
        left: auto;
        right: -62px;
    }
    
    .last__cta .house__area--headingImg::after {
        background-repeat: no-repeat;
        top: -202px;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 143px;
        height: 166px;
    }
    
    .last__cta .house__area--heading p {
        margin-top: 25px;
        width: 270px;
    }
    
    .last__cta--mainBg {
        margin-top: 5px;
        padding: 89px 20px 81px;
        background-image: url(../img/top/last_cta_bg@sp.png);
    }
    
    .last__cta--mainBg::after {
        display: none;
    }
    
    .last__cta .concept_area--mainMessage {
        width: 100%;
        padding: 50px 16px 30px;
    }
    
    .last__cta .concept_area--mainMessage p {
        font-size: 13px;
        margin: 30px auto 0;
        width: 270px;
    }
    
    .last__cta .cta__area--linkArea {
        margin-top: 15px;
        width: 100%;
    }
    
    .last__cta .concept_area--main_appeal {
        margin: 30px auto 0;
    }
    
    .last__cta--catalog {
        display: block;
        padding: 30px 23px;
    }
    
    .last__cta--catalogImg img {
        width: calc((100% - 10px) / 2);
        margin-left: 10px;
    }
    
    .last__cta--catalogTextArea {
        justify-content: space-between;
        margin-left: 0;
        width: 100%;
    }
    
    .last__cta--catalogText {
        width: 220px;
    }
    
    .last__cta--catalogText p {
        font-size: 13px;
    }
    
    .last__cta--catalogTextArea .common__linkArrow {
        margin-left: 40px;
    }
    
    .last__cta--catalogTextArea .common__linkArrow:hover{
        border: 1px solid #333;
        background-color: #fff;
    }
    
    .last__cta--catalogTextArea .common__linkArrow:hover svg {
        stroke: #333;
        fill: #333;
    }
}

/* pc sp
------------------------------------------ */
.pc {
	display: block;
}
.pcInline {
	display: inline-block;
}
.spInline,
.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pcInline,
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.spInline {
		display: inline-block;
	}
}
.wrapper{
    min-width: 1100px;
}
@media screen and (max-width: 768px) {
    .wrapper{
        min-width: 0;
    }
}