@charset "UTF-8"; /*------------------------------------------------------------
  Header
------------------------------------------------------------*/
.l-gnavi-area02 {
    display: none;
}

.h_wrap {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 35px;
}

.l-header {
    color: #fff;
    font-size: 12px;
    margin-top: 30px;
}

.h_logo {
    width: 176px;
    height: 134px;
    background: url("img/logo.png") 0 0 no-repeat;
    background-size: 100% auto;
    margin-top: 35px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .h_wrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 50px;
        background: #fff;
        box-sizing: border-box;
        padding: 0 7rem 0 1rem;
        position: fixed;
        top: 0;
        z-index: 99;
    }

    .l-header {
        color: #111;
        font-size: 1rem;
        line-height: 1.3;
        margin-top: 0;
        padding-left: 1rem;
    }

    .h_logo {
        width: 55px;
        height: 50px;
        background: url("img/logo02.png") 0 center no-repeat;
        background-size: 100% auto;
        margin-top: 0;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
    }
}

/*------------------------------------------------------------
  MV
------------------------------------------------------------*/
.mv {
    width: 100%;
    min-width: 1000px;
    height: 780px;
    background: url("img/top_mvbg.jpg") center center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    position: relative;
}

.mv:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.6), rgba(0,0,0,0));
    opacity: 0.8;
    z-index: 0;
}

.mv .inner {
    max-width: 1000px;
    margin: auto;
}

.mv .mv_ttl {
    position: absolute;
    right: 0;
    width: 1097px;
    height: 192px;
    background: url("img/mv_ttl.png") right 0 no-repeat;
    background-size: contain;
    margin-top: 60px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.mv .mv_txt {
    position: absolute;
    bottom: 150px;
    color: #fff;
    z-index: 1;
}

.mv .mv_txt h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .mv {
        width: 100%;
        min-width: 100%;
        height: 500px;
        background: url("img/top_mvbg.jpg") center 0 no-repeat;
        background-size: cover;
        box-sizing: border-box;
        position: relative;
        margin-top: 50px;
    }

    .mv:after {
        display: none;
    }

    .mv .inner {
        max-width: 100%;
        margin: auto;
    }

    .mv .mv_ttl {
        top: 0;
        width: 95%;
        height: 0;
        padding-top: 16.62%;
        background: url("img/mv_ttl.png") right 0 no-repeat;
        background-size: 100% auto;
        margin-top: 10%;
    }

    .mv .mv_txt {
        color: #111;
        background: rgba(255,255,255,0.7);
        position: absolute;
        bottom: 10%;
        padding: 2rem 2rem;
        box-sizing: border-box;
        margin: 0 1rem;
    }

    .mv .mv_txt h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/*------------------------------------------------------------
  Contents Top
------------------------------------------------------------*/
.contents_top {
    width: 100%;
    min-width: 1000px;
    margin: auto;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .contents_top {
        min-width: 100%;
    }
}

/*------------------------------------------------------------
  btn
------------------------------------------------------------*/
.btn a {
    display: block;
    width: 100%;
    background: none;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    margin: 40px auto 0;
    padding: 15px 40px;
    position: relative;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

.btn a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* btn01 */
.btn01 a {
    background: #111;
    color: #fff;
    border: 2px solid #111;
}

.btn01 a:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

/* btn02 */
.btn02 a {
    background: #fff;
    border: 2px solid #111;
}

.btn02 a:after {
    border-top: solid 1px #111;
    border-right: solid 1px #111;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .btn a {
        font-size: 1.4rem;
        margin: 2rem auto 0;
        padding: 1.5rem 2.5rem;
    }
}

/*------------------------------------------------------------
  ttl_box
------------------------------------------------------------*/
.ttl_box01 {
    text-align: right;
    position: relative;
}

.ttl_box01:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 8.5px;
    width: 50%;
    border-bottom: 1px solid #bfbfbf;
}

.ttl_box01 h2 {
    max-width: 1000px;
    margin: auto;
    color: #b7a36f;
    font-size: 57px;
    font-weight: 400;
}

.ttl_box01 div.h2eng {
    max-width: 1000px;
    margin: auto;
    color: #b7a36f;
    font-size: 57px;
    font-weight: 400;
}

.ttl_box01 span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    margin-top: 25px;
    position: relative;
}

.ttl_box01 span:before {
    display: block;
    content: "";
    margin-right: 20px;
    border-top: 1px solid #bfbfbf;
    flex-grow: 1;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .ttl_box01 {
        text-align: left;
    }

    .ttl_box01 div {
        max-width: 1000px;
        margin: auto;
        color: #b7a36f;
        font-size: 2rem !important;
        font-weight: 400;
        padding-left: 1rem;
    }

    .ttl_box01 div.h2eng {
        font-size: 4rem;
    }

    .ttl_box01:before {
        display: none;
    }

    .ttl_box01 h2 {
        max-width: 100%;
        font-size: 6.5vw;
        line-height: 1.3;
        padding: 0 1rem 2rem;
    }

    .ttl_box01 span {
        display: block;
        line-height: 1.4;
        font-size: 3vw;
        margin-top: 1.5rem;
    }

    .ttl_box01 span:before {
        position: absolute;
        left: -1rem;
        right: 0;
        top: -1rem;
        margin-right: 0;
    }
}

/*------------------------------------------------------------
  Section
------------------------------------------------------------*/
.sec {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}

.sec .inner {
    max-width: 1000px;
    margin: auto;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    .sec .inner {
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
    }
}

/*------------------------------------------------------------
  .area_selection（都内施工エリアに含む会社）
------------------------------------------------------------*/
#index .area_selection {
    max-width: 1000px;
    margin: -55px auto 0;
    position: relative;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #index .area_selection {
        max-width: 100%;
        margin: 0 auto 0;
        position: relative;
    }
}

/*------------------------------------------------------------
  #note（輸入住宅を建てる際の注意点）
------------------------------------------------------------*/
#note {
    padding: 75px 0 0;
    position: relative;
}

#note:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 549px;
    background: url("img/bg01.jpg") center 0 no-repeat;
    background-size: cover;
    z-index: -1;
}

#note .ttl_box01:before {
    border-bottom: 1px solid #fff;
}

#note .ttl_box01 h2 {
    color: #fff;
    font-size: 48px;
}

#note .ttl_box01 div {
    color: #fff;
    font-size: 48px;
}

.ttl_box01 div {
    max-width: 1000px;
    margin: auto;
    color: #b7a36f;
    font-size: 57px;
    font-weight: 400;
}

#note .ttl_box01 span {
    color: #fff;
}

#note .ttl_box01 span:before {
    border-top: 1px solid #fff;
}

#note .lead {
    color: #fff;
    margin-top: 35px;
}

#note .box_wrap {
    display: flex;
    margin-top: 40px;
}

#note .box {
    width: 50%;
}

#note .box:nth-of-type(2) {
    margin-top: 60px;
}

#note .point {
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

#note .box_inner {
    background: #f1eee7;
    box-sizing: border-box;
    padding: 45px 50px;
}

#note .box_inner h3 {
    font-size: 20px;
    line-height: 1.4;
    border-left: 1px solid #111;
    padding: 20px 25px;
    position: relative;
}

#note .box_inner h3:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 14px;
    margin-top: -7px;
    background: #111;
}

#note .box_inner .txt {
    margin-top: 25px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #note {
        padding: 4rem 0 5rem;
    }

    #note:before {
        height: 100%;
    }

    #note .ttl_box01 h2 {
        font-size: 3rem;
    }

    #note .lead {
        margin-top: 0;
    }

    #note .box_wrap {
        display: block;
        margin-top: 3rem;
    }

    #note .box {
        width: 100%;
    }

    #note .box:nth-of-type(2) {
        margin-top: 3rem;
    }

    #note .point {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    #note .box_inner {
        padding: 2rem 2rem;
    }

    #note .box_inner h3 {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }

    #note .box_inner h3:before {
        width: 2px;
        height: 8px;
        margin-top: -4px;
    }

    #note .box_inner .txt {
        margin-top: 1.5rem;
    }
}

/*------------------------------------------------------------
  #recommended（東京で「ホンモノの」輸入住宅が建てられるおすすめ3社）
------------------------------------------------------------*/
#recommended {
    margin: 100px 0 0;
}

#recommended .ttl_box01:before {
    width: 40%;
}

.company {
    margin-top: 60px;
    margin-bottom: 170px;
    position: relative;
}

.company:after {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    width: 1000px;
    height: 100%;
    margin: auto;
    border: 1px solid #111;
    padding-bottom: 35px;
    z-index: -1;
}

.company h3 {
    font-size: 44px;
}

.company div.eng {
    color: #fff;
    font-size: 44px;
}

.company h3 span {
    display: block;
    font-size: 18px;
    margin-top: 20px;
}

.company div.h4eng {
    font-size: 32px;
    text-align: center;
}

.company h4 {
    font-size: 32px;
    text-align: center;
}

.company h4 span {
    font-size: 18px;
}

.company .btn a {
    max-width: 480px;
}

/*---------- profile ----------*/
.profile .parts {
    padding: 80px 0 60px;
    position: relative;
}

.profile .parts .inner {
    position: relative;
    z-index: 3;
}

.profile .parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 83%;
    height: 100%;
    background: #111;
    z-index: 1;
}

.profile .img_box {
    position: absolute;
    top: 60px;
    right: 0;
    width: 680px;
    height: 100%;
    z-index: 2;
}

#amakusa .profile .img_box {
    background: url("img/example/amakusa_profile.jpg") center center no-repeat;
    background-size: 680px;
}

#sweden .profile .img_box {
    background: url("img/example/swedenhouse_profile.jpg") center center no-repeat;
    background-size: 680px;
}

#maple .profile .img_box {
    background: url("img/example/maplehomes_profile.jpg") center center no-repeat;
    background-size: 680px;
}

.profile .pro_box {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin-top: 65px;
}

.profile .pro_box dl {
    width: 210px;
    font-size: 14px;
    text-align: center;
}

.profile .pro_box dl:nth-of-type(2n-1) {
    margin-right: 15px;
}

.profile .pro_box dt {
    background: #f1eee7;
    padding: 8px 0;
}

.profile .pro_box dd {
    color: #fff;
    line-height: 1.2;
    padding: 10px 0 20px;
}

.profile .caption {
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding: 60px 15px 0 0;
}

.profile .caption br {
    display: none;
}

/*---------- slide_area ----------*/
.slide_area .exterior, .slide_area .interior {
    margin-top: 60px;
    position: relative;
}

.slide_area .exterior:after, .slide_area .interior:after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 75%;
    height: 68%;
    background: #f1eee7;
    z-index: -1;
}

.slide_area .slider01 {
    max-width: 1600px;
    margin: 30px auto 0;
    position: relative;
}

.slide_area .photo {
    width: 770px;
    margin: 30px auto 0;
    position: relative;
    height: 570px;
}

.slick-slide img {
    width: 770px;
    height: auto;
    object-fit: cover;
    margin: auto;
}

.slide_area .slick-slider img {
    transition: .3s ease;
    transform: scale(.65);
    margin-top: 10%;
    object-fit: contain;
    width: 600px;
    height: 400px;
}

.slide_area .slick-current img {
    transform: scale(1);
    margin-top: 0;
    height: 400px;
    width: 600px;
    object-fit: contain;
}

.slide_area .caption {
    text-align: center;
    margin-top: 15px;
    opacity: 0;
    transition: .2s ease;
}

.slide_area .txt {
    text-align: center;
    margin-top: 15px;
    box-sizing: border-box;
    padding: 0 0;
    opacity: 0;
    transition: .2s ease;
}

.slick-current .caption, .slick-current .txt {
    opacity: 1;
    transition-delay: .5s;
}

.slide_area .slide-arrow {
    position: absolute;
    top: 18%;
    width: 84px;
    height: 20px;
    cursor: pointer;
    z-index: 999;
}

.slide_area .prev-arrow {
    left: 0;
    background: url("img/arrow01.png") 0 center no-repeat;
    background-size: contain;
}

.slide_area .next-arrow {
    right: 0;
    background: url("img/arrow02.png") 0 center no-repeat;
    background-size: contain;
}

.slide_area button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.slick-slide:focus {
    outline: none;
}

.slide_area .btn a {
    margin: 0 auto 40px;
}

/*---------- quality ----------*/
.quality {
    width: 100%;
    background: url("img/bg02.jpg") center center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 60px 0;
}

.quality h4 {
    color: #a08b55;
    text-align: left;
}

.quality div.h4eng {
    color: #a08b55;
    text-align: left;
}

.quality .list_area {
    margin: 25px auto 0;
}

.quality .list_area li {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
    margin-bottom: 15px;
}

.quality .list_area li:last-child {
    margin-botom: 0;
}

.quality .list_area li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #111;
    box-sizing: border-box;
    border-radius: 50%;
}

/*---------- voice ----------*/
.voice {
    width: 100%;
    margin-top: 65px;
}

.voice .inner {
    box-sizing: border-box;
    padding: 0 50px;
}

.voice .box_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
}

.voice .box {
    width: 440px;
    background: #f1eee7;
    box-sizing: border-box;
    padding: 50px 50px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.voice .box:nth-of-type(2n) {
    margin-right: 0;
}

.voice .cc {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.voice .caption {
    margin-top: 20px;
}

/*---------- company_info ----------*/
.company_info {
    width: 100%;
    margin-top: 65px;
}

.company_info .inner {
    box-sizing: border-box;
    padding: 0 50px;
}

.company_info .ttl01 {
    font-size: 20px;
    text-align: center;
}

.company_info .box_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
}

.company_info .box {
    width: 440px;
    box-sizing: border-box;
    border: 2px solid #f1eee7;
    margin-right: 20px;
    margin-bottom: 10px;
}

.company_info .box:nth-of-type(2n) {
    margin-right: 0;
}

.company_info dl {
    display: table;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 14px;
}

.company_info dt {
    display: table-cell;
    vertical-align: middle;
    width: 120px;
    background: #f1eee7;
    box-sizing: border-box;
    text-align: center;
}

.company_info dd {
    display: table-cell;
    vertical-align: middle;
    width: 320px;
    line-height: 1.5;
    box-sizing: border-box;
    padding: 15px 15px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #recommended {
        margin: 4rem 0 2rem;
    }

    .company {
        margin-top: 8rem;
        margin-bottom: 0;
    }

    .company#amakusa {
        margin-top: 1rem;
    }

    .company:after {
        display: none;
    }

    .company h3 {
        font-size: 6vw;
    }

    .company h3 span {
        font-size: 3vw;
        margin-top: 1.5rem;
    }

    .company h4 {
        font-size: 5vw;
    }

    .company h4 span {
        font-size: 3vw;
    }

    .company .btn a {
        max-width: 100%;
    }

    /*---------- profile ----------*/
    .profile .parts {
        background: #111;
        padding: 3rem 0 2rem;
    }

    .profile .parts::before {
        width: 100%;
        height: 100%;
    }

    .profile .img_box {
        position: static;
        top: 0;
        right: 0;
        width: 100%;
        height: 0;
        padding-top: 65%;
        margin-top: 2rem;
    }

    ACACAC #maple .profile .img_box {
        background-size: 100%;
    }

    #sweden .profile .img_box {
        background-size: 100%;
    }

    #amakusa .profile .img_box {
        background-size: 100%;
    }

    .company div.eng {
        font-size: 2rem;
    }

    .profile .pro_box {
        width: 100%;
        margin-top: 3rem;
    }

    .profile .pro_box dl {
        width: 48%;
        font-size: 1.4rem;
    }

    .profile .pro_box dl:nth-of-type(2n-1) {
        margin-right: 4%;
    }

    .profile .pro_box dt {
        padding: 1rem 1rem;
    }

    .profile .pro_box dd {
        padding: 1rem 0 2rem;
    }

    .profile .caption {
        width: 100%;
        text-align: left;
        padding: 2rem 0 0 0
    }

    /*---------- slide_area ----------*/
    .slide_area .exterior, .slide_area .interior {
        margin-top: 4rem;
    }

    .company div.h4eng {
        font-size: 2rem;
    }

    .slide_area .exterior:after, .slide_area .interior:after {
        content: "";
        position: absolute;
        top: inherit;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 70%;
    }

    .slide_area .slider01 {
        max-width: 100%;
        margin: 0 auto 0;
    }

    .slide_area .photo {
        width: 100%;
        margin: 0 auto 0;
        padding: 0 1rem 3rem;
        position: relative;
        height: 100%;
    }

    .slick-slide img {
        width: 100%;
        margin: auto;
    }

    .slide_area .slick-slider img {
        transform: scale(1);
        margin-top: 2rem;
        height: 100%;
    }

    .slide_area .caption {
        text-align: justify;
        margin-top: 1rem;
    }

    .slide_area .txt {
        text-align: justify;
        margin-top: 1rem;
    }

    .slide_area .slide-arrow {
        top: -4%;
        width: 10%;
        height: 0;
        padding-top: 2.38%;
    }

    .slide_area .prev-arrow {
        left: 1rem;
    }

    .slide_area .next-arrow {
        right: 1rem;
    }

    .slide_area .btn a {
        max-width: 85%;
        margin: 2rem auto 3rem;
    }

    /*---------- quality ----------*/
    .quality {
        background: url("img/bg02.jpg") center 0 no-repeat;
        background-size: cover;
        padding: 3rem 0;
    }

    .quality .list_area {
        margin: 2rem auto 0;
    }

    .quality .list_area li {
        font-size: 1.5rem;
        line-height: 1.6;
        padding-left: 1.8rem;
        margin: 1rem 0;
    }

    /*---------- voice ----------*/
    .voice {
        margin-top: 4rem;
    }

    .voice .inner {
        box-sizing: border-box;
        padding: 0 1rem;
    }

    .voice .box_wrap {
        display: block;
        margin-top: 2rem;
    }

    .voice .box {
        width: 100%;
        padding: 3rem 2rem;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .voice .box:last-child {
        margin-bottom: 0;
    }

    .voice .cc {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .voice .caption {
        margin-top: 1rem;
    }

    /*---------- company_info ----------*/
    .company_info {
        margin-top: 4rem;
    }

    .company_info .inner {
        padding: 0 1rem;
    }

    .company_info .ttl01 {
        font-size: 1.8rem;
    }

    .company_info .box_wrap {
        display: block;
        margin-top: 2rem;
    }

    .company_info .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .company_info .box:last-child {
        margin-bottom: 0;
    }

    .company_info dl {
        font-size: 2.8vw;
    }

    .company_info dt {
        width: 23%;
        line-height: 1.3;
    }

    .company_info dd {
        width: 77%;
        padding: 1.5rem 1.5rem;
    }
}

/*------------------------------------------------------------
  #real（本物はなぜ「ホンモノの素材」であるべきなのか。）
------------------------------------------------------------*/
#real {
    padding: 50px 0 0;
}

#real .ttl_box01:before {
    display: none;
}

#real .ttl_box01 h2 {
    color: #111;
    font-size: 28px;
}

#real .parts {
    display: flex;
    margin-top: 45px;
    position: relative;
}

#real .parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #111;
    box-sizing: border-box;
    z-index: 1;
}

#real .img_box {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 27%;
    height: 800px;
    background: url("img/example/real_img.jpg") center center no-repeat;
    background-size: 100% auto;
    z-index: 5;
}

#real .parts .inner {
    box-sizing: border-box;
    padding: 50px 0 90px 0;
    position: relative;
    z-index: 3;
}

#real .txt_wrap {
    max-width: 1000px;
    padding: 0 0 0 200px;
    margin: 0 0 0 auto;
}

#real .txt_box {
    color: #fff;
}

#real .txt_box dl {
    margin-bottom: 40px;
}

#real .txt_box dl:last-child {
    margin-bottom: 0;
}

#real .txt_box dt {
    font-size: 18px;
    margin-bottom: 20px;
}

#real .conclusion {
    max-width: 1000px;
    margin: -45px auto 0;
    background: #f1eee7;
    box-sizing: border-box;
    padding: 20px 40px 20px 20%;
    position: relative;
    z-index: 3;
}

#real .conclusion .ttl01 {
    font-size: 30px;
}

#real .conclusion .txt {
    margin-top: 15px;
}

@media screen and (max-width: 1400px) {
    #real .txt_wrap {
        padding: 0 0 0 280px;
    }
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #real {
        padding: 4rem 0 0;
    }

    #real .ttl_box01 h2 {
        font-size: 4.5vw;
    }

    #real .parts {
        display: block;
        margin-top: 0;
        position: relative;
        padding: 0 1rem 6rem;
    }

    #real .parts::after {
        top: inherit;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 90%;
        z-index: -1;
    }

    #real .img_box {
        position: static;
        bottom: inherit;
        left: inherit;
        width: 100%;
        height: 0;
        padding-top: 150%;
        margin-bottom: 1rem;
    }

    #real .parts .inner {
        padding: 3rem 0 3rem 0;
    }

    #real .txt_wrap {
        max-width: 100%;
        padding: 0 0 0 0;
        margin: 0 auto 0 auto;
    }

    #real .txt_box dl {
        margin-bottom: 3rem;
    }

    #real .txt_box dt {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    #real .conclusion {
        max-width: 95%;
        margin: -9rem auto 0;
        padding: 3rem 2rem;
    }

    #real .conclusion .ttl01 {
        font-size: 1.6rem;
    }

    #real .conclusion .txt {
        margin-top: 1.5rem;
    }
}

/*------------------------------------------------------------
  #photograph（輸入住宅の写真紹介）
------------------------------------------------------------*/
#photograph {
    padding: 100px 0 0;
}

#photograph .block {
    margin-top: 60px;
}

#photograph .box {
    margin-bottom: 30px;
    position: relative;
}

#photograph .box img {
    object-fit: contain;
    background: #f1eee7;
}

#photograph .box .caption {
    margin-top: 0;
}

#photograph .box .caption {
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
}

#photograph .box .caption::-webkit-scrollbar {
    height: 0;
}

#photograph .box .ph {
    margin-bottom: 0;
}

#photograph h3 {
    margin: 280px 0 0 0;
    font-size: 38px;
    margin-bottom: 20px;
    padding: 50px 80px 50px 0;
    text-align: right;
    box-sizing: border-box;
    z-index: 0;
    position: relative;
    width: 105%;
}

#photograph div.h3eng {
    margin: 235px 0 0 0;
    font-size: 38px;
    margin-bottom: 20px;
    padding: 50px 80px 50px 0;
    text-align: right;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    width: 105%;
    color: #111;
}

#photograph .style h3 {
    color: #fff;
    background: url("img/ttl_bg01.jpg") 0 0 repeat;
    background-size: 420px 220px;
    z-index: 1;
}

#photograph .style h3:before {
    display: block;
    content: "By style";
    position: absolute;
    left: 0;
    top: 8.5px;
    width: 85%;
}

#photograph .style h3 a {
    color: #fff;
}

#photograph .location h3 {
    color: #111;
    background: url("img/ttl_bg02.jpg") 0 0 repeat;
    background-size: 420px 220px;
    z-index: 1;
}
#photograph .location h3:before {
    display: block;
    content: "By location";
    position: absolute;
    left: 0;
    top: 8.5px;
    width: 85%;
}
#photograph .style h3 a:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    display: block;
    position: absolute;
    top: 53%;
    right: 45px;
    width: 10px;
    height: 10px;
    margin-top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#photograph .location h3 a:after {
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    content: "";
    display: block;
    position: absolute;
    top: 53%;
    right: 45px;
    width: 10px;
    height: 10px;
    margin-top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#photograph h3 span {
    display: block;
    font-size: 18px;
    margin-top: 15px;
}

/*----- box01 -----*/
#photograph .box01 .box_top {
    display: flex;
    justify-content: space-between;
    height: 700px;
}

#photograph .box01 .box_top .left {
    width: 40%;
}

#photograph .box01 .box_top .right {
    width: 59%;
    position: relative;
    z-index: 1;
    margin-left: 2rem;
}

#photograph .box01 .box_top .right .ph {
    max-height: 700px;
    margin-left: 2vw;
}

#photograph .box01 .box_top .right .caption {
}

#photograph .box01 .box_top .right:after {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 700px;
    background: #fff;
    z-index: 1;
}

#photograph .box01 .box_top .right img {
    height: 700px;
    width: 900px;
}

#photograph .box01 .box_under {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 700px;
}

#photograph .box01 .box_under .wrap {
    position: relative;
}

#photograph .box01 .box_under .ph {
    height: 234px;
    width: 345px;
}

#photograph .box01 .box_under .ph img {
    height: 232px;
}

#photograph .box01 .box_under .caption {
}

/*----- box02 -----*/
#photograph .box02 .inner {
    display: flex;
}

#photograph .box02 .left {
    width: 660px;
    height: 460px;
    margin-right: 20px;
}

#photograph .box02 .left img {
    height: 460px;
}

#photograph .box02 .right {
    width: 320px;
    height: 460px;
}

#photograph .box02 .right .ph {
    width: 320px;
    height: 240px;
}

#photograph .box02 .right img {
    height: 220px;
}

/*----- box03 -----*/
#photograph .box03 .inner {
    display: flex;
}

#photograph .box03 .left {
    width: 320px;
    height: 460px;
    margin-right: 20px;
}

#photograph .box03 .left img {
    height: 460px;
}

#photograph .box03 .center {
    width: 320px;
    height: 460px;
    margin-right: 20px;
}

#photograph .box03 .center .ph {
    width: 320px;
    height: 240px;
}

#photograph .box03 .center img {
    height: 220px;
}

#photograph .box03 .right .ph {
    width: 320px;
    height: 240px;
}

#photograph .box03 .right img {
    height: 220px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #photograph {
        padding: 4rem 0 0;
    }

    #photograph .block {
        margin-top: 0;
    }

    #photograph .block.location {
        margin-top: 4rem;
    }

    #photograph .box {
        margin-bottom: 1.5rem;
    }

    #photograph .box .caption {
        margin-top: 0.5rem;
    }

    #photograph .box .ph {
        margin-bottom: 1.5rem;
    }

    #photograph .box01 .box_top .right .ph {
        margin-left: 0;
    }

    #photograph h3 {
        margin: 0 0 0 0;
        font-size: 4vw;
        margin-bottom: 1rem;
        padding: 2rem 2rem 2rem 2rem;
        text-align: left;
    }

    #photograph .style h3 {
        background: url("img/sp_ttl_bg01.jpg") 0 0 repeat;
        background-size: auto 100%;
        width: auto;
    }

    #photograph .location h3 {
        background: url("img/sp_ttl_bg02.jpg") 0 0 repeat;
        ackground-size: auto 100%;
        width: auto;
    }

    #photograph h3 span {
        display: inline-block;
        font-size: 2rem;
        margin-top: 0;
    }

    #photograph .style h3 a:after {
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #photograph .location h3 a:after {
        border-top: solid 1px #000;
        border-right: solid 1px #000;
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /*----- box01 -----*/
    #photograph .box01 .box_top {
        display: block;
        height: auto;
        box-sizing: border-box;
        padding: 0 1rem;
    }

    #photograph .box01 .box_top .left {
        width: 100%;
    }

    #photograph div.h3eng {
        margin: 0;
        font-size: 2rem;
        margin-bottom: 7px;
        padding: 0;
        text-align: left;
        box-sizing: border-box;
        z-index: 1;
        position: relative;
        width: 105%;
        color: #111;
        max-width: 100%;
    }

    #photograph .box01 .box_top .right {
        width: 100%;
        margin-left: 0;
    }

    #photograph .box01 .box_top .right:after {
        display: none;
        position: static;
        top: inherit;
        left: inherit;
    }

    #photograph .box01 .box_top .right img {
        height: auto;
        width: auto;
    }

    #photograph .box01 .box_under {
        position: static;
        top: inherit;
        left: inherit;
        right: inherit;
        max-width: 100%;
        height: auto;
    }

    #photograph .box01 .box_under .wrap {
        width: 100%;
    }

    #photograph .box01 .box_under .ph {
        height: auto;
        width: auto;
    }

    #photograph .box01 .box_under .ph img {
        height: auto;
    }

    #photograph .box01 .box_under .caption {
        width: 100%;
    }

    /*----- box02 -----*/
    #photograph .box02 .inner {
        display: block;
    }

    #photograph .box02 .left {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    #photograph .box02 .left img {
        height: auto;
    }

    #photograph .box02 .right {
        width: 100%;
        height: auto;
    }

    #photograph .box02 .right .ph {
        width: 100%;
        height: auto;
    }

    #photograph .box02 .right img {
        height: auto;
    }

    /*----- box03 -----*/
    #photograph .box03 .inner {
        display: block;
    }

    #photograph .box03 .left {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    #photograph .box03 .left img {
        height: auto;
    }

    #photograph .box03 .center {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    #photograph .box03 .center .ph {
        width: 100%;
        height: auto;
    }

    #photograph .box03 .center img {
        height: auto;
    }

    #photograph .box03 .right .ph {
        width: 100%;
        height: auto;
    }

    #photograph .box03 .right img {
        height: auto;
    }
}

/*------------------------------------------------------------
  #exhibition（輸入住宅がある都内の展示場）
------------------------------------------------------------*/
#exhibition {
    padding: 95px 0;
}

#exhibition .box_wrap {
    margin-top: 50px;
}

#exhibition .box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

#exhibition .box:last-child {
    margin-bottom: 0;
}

#exhibition .img_box, #exhibition .txt_box {
    width: 48%;
}

#exhibition .img_box img {
    height: 230px;
    object-fit: cover;
    object-position: center center;
}

#exhibition h3 a {
    font-size: 16px;
    text-align: left;
    margin: 0 auto;
}

#exhibition .txt {
    margin-top: 25px;
}

#exhibition .caption {
    margin-top: 25px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #exhibition {
        padding: 4rem 0 5rem;
    }

    #exhibition .box_wrap {
        margin-top: 0;
    }

    #exhibition .box {
        display: block;
        margin-bottom: 2rem;
    }

    #exhibition .img_box, #exhibition .txt_box {
        width: 100%;
    }

    #exhibition .img_box img {
        height: 300px;
    }

    #exhibition .txt_box {
        display: flex;
        flex-wrap: wrap;
    }

    #exhibition h3 {
        width: 100%;
        order: 2;
        margin-top: 2rem;
    }

    #exhibition h3 a {
        font-size: 1.6rem;
    }

    #exhibition .txt {
        width: 100%;
        margin-top: 1.5rem;
        order: 3;
    }

    #exhibition .caption {
        width: 100%;
        margin-top: 1rem;
        order: 1;
    }
}

/*------------------------------------------------------------
  #introduction（会社紹介）
------------------------------------------------------------*/
#introduction {
    background: #f1eee7;
    padding: 65px 0;
}

#introduction .ttl_box01 {
    text-align: center;
}

#introduction .ttl_box01:before {
    display: none;
}

#introduction .ttl_box01 h2 {
    color: #111;
    font-size: 26px;
}

#introduction .box_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
}

#introduction .box {
    width: 310px;
    background: #fff;
    box-sizing: border-box;
    padding: 35px 30px 95px;
    margin-right: 35px;
    margin-bottom: 35px;
    position: relative;
}

#introduction .box:nth-of-type(3n) {
    margin-right: 0;
}

#introduction h3 {
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #aaa;
    padding-bottom: 15px;
}

#introduction .txt {
    margin-top: 20px;
}

#introduction dl {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

#introduction dt {
    background: #f1eee7;
    padding: 8px 0;
}

#introduction dd {
    line-height: 1.4;
    padding: 10px 0 20px;
}

#introduction .btn {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 35px;
}

#introduction .btn a {
    padding: 12px 30px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #introduction {
        padding: 4rem 0;
    }

    #introduction .ttl_box01 h2 {
        font-size: 2.4rem;
    }

    #introduction .box_wrap {
        display: block;
        margin-top: 0;
    }

    #introduction .box {
        width: 100%;
        padding: 2.5rem 2rem 2.5rem;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    #introduction .box:last-child {
        margin-bottom: 0;
    }

    #introduction h3 {
        font-size: 1.8rem;
        padding-bottom: 1.5rem;
    }

    #introduction .txt {
        margin-top: 1.5rem;
    }

    #introduction dl {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    #introduction dt {
        padding: 1rem 1rem;
    }

    #introduction dd {
        padding: 1rem 0 2rem;
    }

    #introduction .btn {
        position: static;
        left: inherit;
        right: inherit;
        bottom: inherit;
    }

    #introduction .btn a {
        margin: 0 auto 0;
        padding: 1.5rem 4rem;
    }
}

/*------------------------------------------------------------
  #basic（輸入住宅の基礎情報）
------------------------------------------------------------*/
#basic {
    padding: 100px 0;
}

#basic .box_wrap {
    display: flex;
    margin-top: 50px;
}

#basic .box {
    width: 482px;
    margin-right: 36px;
}

#basic .box:nth-of-type(2n) {
    margin-right: 0;
}

#basic h3 {
    background: #f4f4f4;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px 20px;
}

#basic .txt {
    margin-top: 15px;
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    #basic {
        padding: 4rem 0 5rem;
    }

    #basic .box_wrap {
        display: block;
        margin-top: 0;
    }

    #basic .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    #basic .box:last-child {
        margin-bottom: 0;
    }

    #basic h3 {
        font-size: 1.6rem;
        padding: 1.5rem 1.5rem;
    }

    #basic .txt {
        margin-top: 1.5rem;
    }
}

/*------------------------------------------------------------
  #important（輸入住宅建設の注意点）
------------------------------------------------------------*/
/*---------- block01 ----------*/
#important .block01 {
    width: 100%;
    background: url("img/bg03.jpg") center 0 no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 90px 0;
    color: #fff;
}

#important .ttl_box01:before {
    display: none;
}

#important .ttl_box01 {
    text-align: center;
}

#important .ttl_box01 h2 {
    color: #fff;
    font-size: 26px;
}

#important .block01 .cc {
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
    margin-top: 30px;
}

#important .block01 .txt {
    text-align: center;
    margin-top: 25px;
}

/*---------- block02 ----------*/
#important .block02 {
    color: #fff;
}

#important .block02 .box {
    display: flex;
}

#important .block02 .box:nth-of-type(even) .img_box {
    order: 2;
}

#important .block02 .img_box, #important .block02 .txt_box {
    width: 50%;
    height: 430px;
}

#important .block02 .img_box img {
    height: 430px;
    object-fit: cover;
    object-position: center center;
}

#important .block02 .txt_box {
    background: #111;
    box-sizing: border-box;
    padding: 55px 55px;
    position: relative;
}

#important .block02 h3 {
    font-size: 36px;
}

#important .block02 div.h3eng {
    font-size: 36px;
}

#important .block02 h3 span {
    display: block;
    font-size: 18px;
    margin-top: 20px;
}

#important .block02 .txt {
    margin-top: 30px;
}

#important .block02 .caption {
    margin-top: 30px;
}

#important .block02 .box:nth-of-type(even) .caption {
    text-align: right;
}

/*---------- block03 ----------*/
#important .block03 {
    background: #f1eee7;
    box-sizing: border-box;
    padding: 60px 0;
}

#important .block03 .txt {
    text-align: center;
}

@media screen and (max-width: 1400px) {
    #important .block02 h3 {
        font-size: 3vw;
    }

    #important .block02 h3 span {
        display: block;
        font-size: 1.5vw;
    }

    #important .block02 .txt {
        margin-top: 1vw;
    }

    #important .block02 .caption {
        margin-top: 1vw;
    }
}

/* SP ----------------------------------------*/
@media screen and (max-width: 768px) {
    /*---------- block01 ----------*/ #important .block01 {
        padding: 4rem 0;
    }

    #important .ttl_box01 h2 {
        font-size: 2.4rem;
    }

    #important .block01 .cc {
        font-size: 1.6rem;
        text-align: justify;
        line-height: 1.6;
        margin-top: 0;
    }

    #important .block01 .txt {
        text-align: justify;
        margin-top: 1.5rem;
    }

    /*---------- block02 ----------*/
    #important .block02 .box {
        display: block;
    }

    #important .block02 .img_box, #important .block02 .txt_box {
        width: 100%;
        height: auto;
    }

    #important .block02 .img_box img {
        height: 240px;
    }

    #important .block02 .txt_box {
        display: flex;
        flex-wrap: wrap;
        padding: 3rem 2rem;
    }

    #important .block02 div.h3eng {
        font-size: 2rem;
    }

    #important .block02 h3 {
        width: 100%;
        font-size: 2.8rem;
        margin-top: 2rem;
        order: 2;
    }

    #important .block02 h3 span {
        font-size: 1.6rem;
        margin-top: 1rem;
    }

    #important .block02 .txt {
        width: 100%;
        margin-top: 1.5rem;
        order: 3;
    }

    #important .block02 .caption {
        width: 100%;
        margin-top: 0;
        order: 1;
    }

    #important .block02 .box:nth-of-type(even) .caption {
        text-align: justify;
    }

    /*---------- block03 ----------*/
    #important .block03 {
        padding: 3rem 0;
    }

    #important .block03 .txt {
        text-align: justify;
    }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    #photograph .box01 .box_top .right .ph {
        margin-left: 2vw;
        width: 90%;
    }

    #photograph .box01 .box_under .ph img {
        height: auto;
    }

    #photograph .box02 .left img {
        height: auto;
    }

    #photograph .box02 .right img {
        height: auto;
        width: 82%;
    }

    #photograph .box03 .left img {
        height: auto;
    }

    #photograph .box03 .center img {
        height: auto;
        width: 90%;
    }

    #photograph .box01 {
        margin-bottom: 40px;
    }

    #photograph .box02 {
        margin-bottom: 15px;
    }

    #photograph .box03 {
        margin-bottom: 20px;
    }

    #photograph .box02 .left {
        height: 420px;
    }

    #exhibition .img_box img {
        height: auto;
    }

    #important .block02 .img_box img {
        height: auto;
    }

    #important .block02 .img_box, #important .block02 .txt_box {
        height: auto;
    }

    #photograph .box02 .right .ph {
        height: 220px;
    }

    .slide_area .slick-current img {
        height: auto;
        width: auto;
    }

    .slide_area .slick-slider img {
        width: auto;
        height: auto;
    }
}
time {
    top: -8rem;
    position: absolute;
    color: #fff;
    left: 2rem;
    font-size: 12px;
}

div#index {
    position: relative;
}

time:last-child {
    top: -6rem;
}
