@charset "UTF-8";
@import url(default.css);
@import url(home.css);
@import url(underlayer.css);
@import url(renovation.css);
@import url(drone.css);
@import url(suggestion.css);
@import url(customhouse.css);
@import url(news.css);
@import url(newlybuilthouse.css);
@import url(company.css);
@import url(archive.css);
@import url(contact.css);
@import url(animation.css);



/*======================
    ヘッダー
======================*/
header{
    position: fixed;
    top: 0;
    display: flex;
    height: 100px;
    background-color: transparent;
    align-items: center;
    transition: all .3s;
    z-index: 10;
}
.header_pc{
    display: flex;
    width: 100vw;
    height: 78px;
    align-items: center;
    justify-content: space-between;
}
/*-- スクロールしたとき --*/
.header_pc_fixed{
    height: 100px;
    background-color: #fff;
}
.header_pc_fixed .header_pc_menu_li07{
    height: 100px;
}
.header_pc_fixed .header_pc,
.header_pc_fixed .header_pc_menu,
.header_pc_fixed .header_pc_menu_inn{
    height: 100px;
}

/*-- ロゴ --*/
.header_pc_logo{
    margin-left: 1%;
    max-width: 273px;
    width: 94%;
    transition: all .3s;   
}
.header_pc_logo:hover{
    opacity: .7;
}
.header_pc_logo img{
    width: 100%;
    object-fit: cover;
}

/*-- メニュー --*/
.header_pc_menu{
    max-width: 1100px;
    width: 94%;
    height: 78px;
    background-color: rgba(255,255,255,.9);
}
.header_pc_menu_inn{
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: space-between;
}
.header_pc_menu_li{
    height: 100%;
}
.header_pc_menu_a{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    border-bottom: 5px solid transparent;
}
.header_pc_menu_a:hover{
    color: var(--deep-red);
    border-bottom: 5px solid var(--deep-red);
}
.header_pc_menu_a:hover .header_pc_menu_span{
    color: #D8CACB;
}
.header_pc_menu_span{
    display: block;
    font-size: 14px;
    color: #9F9F9F;
    transition: all .3s;
}
/*-- hover後_メニュー --*/
.header_pc_menu_inn_sub{
    /* opacity: 0; */
    display: none;
    transition: all .3s;
}
.header_pc_menu_li:hover .header_pc_menu_inn_sub{
    display: block;
    /* opacity: 1; */
}
.header_pc_menu_li:hover .header_pc_menu_a{
    border-bottom: 5px solid var(--deep-red);
}
.header_pc_menu_inn_sub_a{
    padding: 10px 10px;
    display: block;
    width: 100%;
    font-size: 13px;
    background-color: #FFFFFF;
    background-image: linear-gradient(to right, #CECECE, #CECECE 2px, transparent 2px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
.header_pc_menu_inn_sub_li:last-of-type .header_pc_menu_inn_sub_a{
    background-image: none;
}

.header_pc_menu_inn_sub_a:hover{
    color: var(--deep-red);
}

/*-- お問い合わせ --*/
.header_pc_menu_li07{
    background-color: var(--link-black);
    transition: all .3s;
}
.header_pc_menu_li07:hover{
    background-color: var(--deep-red);
}
.header_pc_menu_a07{
    padding: 0 70px;
    color: #fff;
}
.header_pc_menu_a07:hover,
.header_pc_menu_a07:hover .header_pc_menu_span07{
    color: #fff;
}
.header_sp{
    display: none;
}

/*-- 閲覧ページ_色 --*/
.current_color{
    color: var(--deep-red);
    border-bottom: 5px solid var(--deep-red);
}
.current_color .header_pc_menu_span{
    color: #D8CACB;
}
.current_color02{
    color: var(--deep-red);
}
.current_color_contact{
    color: #fff;
    border-bottom: 5px solid var(--deep-red);
}
.current_color_contact .header_pc_menu_span07{
    color: #fff;
}
/* ------------------------------------------*/
/*----- メディアクエリ: 1400px -----*/
@media screen and ( max-width: 1400px ){
    header{
        height: calc(100 / 1400 * 100vw);
    }
    .header_pc{
        height: calc(78 / 1400 * 100vw);
    }
    /*-- スクロールしたとき --*/
    .header_pc_fixed{
        height: calc(100 / 1400 * 100vw);
    }
    .header_pc_fixed .header_pc_menu_li07{
        height: calc(100 / 1400 * 100vw);
    }
    
    /*-- ロゴ --*/
    .header_pc_logo{
        width: calc(273 / 1400 * 100vw);
    }
    
    /*-- メニュー --*/
    .header_pc_menu{
        width: calc(1100 / 1400 * 100vw);
        height: calc(78 / 1400 * 100vw);
    }
    .header_pc_menu_inn{
        height: calc(78 / 1400 * 100vw);
    }
    .header_pc_menu_a{
        padding: 0 calc(25 / 1400 * 100vw);
        font-size: calc(16 / 1400 * 100vw);
    }
    .header_pc_menu_span{
        font-size: calc(14 / 1400 * 100vw);
    }
    /*-- お問い合わせ --*/
    .header_pc_menu_a07{
        padding: 0 calc(70 / 1400 * 100vw);
    }
}
/*======================
    SP_メニュー
======================*/
/* ------------------------------------------*/
/*----- メディアクエリ: 900px -----*/
@media screen and ( max-width: 900px ){
    header{
        height: auto;
    }
    /*-- スクロールしたとき --*/
    .header_pc_fixed{
        height: 60px;
        background-color: #fff;
    }
    .header_pc_fixed .header_pc_menu_li07{
        display: none;
    }
    .header_pc{
        display: none;
    }
    .header_sp{
        position: fixed;
        top: 10px;
        display: flex;
        width: 100%;
    }

    /*-- ロゴ --*/
    .ham_logo{
        margin-left: 1%;
        position: relative;
        width: 217px;
        z-index: 12;
    }
    .ham_logo_link{
        display: block;
    }
    .ham_logo img{
        width: 100%;
        object-fit: cover;
    }
    body.active .ham_logo01{
        display: none;
    }
    .ham_menu_box_logo{
        margin-left: 10px; 
        width: 217px;
    }
    .ham_menu_box_logo_link{
        display: block;
        width: 100%;
    }
    .ham_menu_box_logo img{
        width: 100%;
        object-fit: cover;
    }

    /*-- ハンバーガーメニュー --*/
    #ham_menu_a{
        position: absolute;
        top: 0;
        right: 15px;
        padding: 0 0;
        display: inline-block;
        width: 60px;
        height: 60px;
        background-color: var(--link-black);
        box-sizing: border-box;
        z-index: 15;
        outline: none;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        text-align: center;
        cursor: pointer;
    }
    #ham_menu_a span{
        position: absolute;
        margin: 4px auto;
        left: 16px;
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: all .5s ease 0s;
    }
        #ham_menu_a span:first-of-type{
        top: 15px;
        animation: ham_menu_a_span01 .75s forwards;
    }
    @keyframes ham_menu_a_span01{
        0% {
            transform: translateY(12px) rotate(45deg);
        }
        50% {
            transform: translateY(12px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #ham_menu_a span:nth-of-type(2){
        top: 27px;
        transition: all .25s .25s;
        opacity: 1;
    }
    #ham_menu_a span:last-of-type{
        top: 39px;
        animation: ham_menu_a_span03 .75s forwards;
    }
    @keyframes ham_menu_a_span03{
        0% {
            transform: translateY(-12px) rotate(-45deg);
        }
        50% {
            transform: translateY(-12px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #ham_menu_a.active span:first-of-type{
        animation: ham_menu_a_span01_active .75s forwards;
    }
    @keyframes ham_menu_a_span01_active{
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(12px) rotate(0);
        }
        100% {
            transform: translateY(12px) rotate(45deg);
        }
    }
    #ham_menu_a.active span:nth-of-type(2){
        opacity: 0;
    }
    #ham_menu_a.active span:last-of-type{
        animation: ham_menu_a_span03_active .75s forwards;
    }
    @keyframes ham_menu_a_span03_active{
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-12px) rotate(0);
        }
        100% {
            transform: translateY(-12px) rotate(-45deg);
        }
    }

    /*-- メニュー --*/
    .ham_menu_box{
        position: fixed;
        margin-bottom: 50px;
        top: 0;
        right: -100%;
        /*left: 0;*/
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--link-black);
        transition: .5s ease 0s;
        overflow: auto;
        z-index: 14;
    }
    #ham_menu_a.active+.ham_menu_box{
        right: 0;
        padding: 15px 0 0;
    }
    body.active{/*メニューが開いてるときスクロール禁止*/
        height: 100%;
        overflow: hidden;
    }
    .ham_menu_ul{
        margin: 50px auto 0;
        max-width: 570px;
        width: 94%;
    }
    .ham_menu_li{
        margin: 5px 0;
    }
    .ham_menu_a,
    .ham_menu_a_inn_a{
        display: block;
        color: #fff;
    }
    .ham_menu_a{
        position: relative;
        padding: 15px 0 15px 25px;
        background-image: linear-gradient(to right, #707070, #707070 2px, transparent 2px);
        background-size: 4px 1px;
        background-position: left bottom;
        background-repeat: repeat-x;
        transition: all .3s;
    }
    .open{/*メニューが開いているとき*/
        background-image: none;
    }
    .ham_menu_a::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 5px;
        height: 35px;
        background-color: var(--deep-red);
        transform: translateY(-50%) translateX(0%);
        -webkit-transform: translateY(-50%) translateX(0%);
    }
    .ham_menu_a_contact{
        background-image: none;
    }
    .ham_menu_a_sub::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        background-image: url(../img/ham_arrow_white.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 22px;
        height: 22px;
        transform: translateY(-50%) translateX(0%);
        -webkit-transform: translateY(-50%) translateX(0%);
        transition: all .3s;
    }
    .open::after{
        top: 30.4%;
        transform: rotate(180deg);
    }
    .ham_menu_a_inn{
        margin: 0 auto;
        display: none;
        width: 100%;
        height: auto;
        background-color: #313131;
    }
    .ham_menu_a_inn_a{
        padding: 20px 0 20px 25px;
        background-image: linear-gradient(to right, #707070, #707070 2px, transparent 2px);
        background-size: 4px 1px;
        background-position: left bottom;
        background-repeat: repeat-x;
    }
    .ham_menu_a_inn_a:last-of-type{
        background-image: none;
    }

    /*-- お問い合わせ --*/
    .ham_menu_contact_wrap{
        margin: 25px auto 0;
        max-width: 570px;
        width: 94%;
        text-align: center;
    }
    .ham_menu_contact_title{
        height: 40px;
        line-height: 40px;
        color: #fff;
        background-color: var(--deep-red);
    }
    .ham_menu_contact_tel{
        color: #fff;
        font-size: 36px;
    }
    .ham_menu_contact_form{
        position: relative;
        margin: 30px 0 15px;
        display: block;
        height: 97px;
        line-height: 97px;
        background-color: #fff;
        transition: all .3s;
    }
    .ham_menu_contact_form:hover{
        color: #fff;
        background-color: var(--deep-red);
    }
    .ham_menu_contact_form::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 15px;
        background-image: url(../img/ham_arrow_black.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 22px;
        height: 22px;
        transform: translateY(-50%) translateX(0%);
        -webkit-transform: translateY(-50%) translateX(0%);
    }
    .ham_menu_contact_form:hover::after{
        background-image: url(../img/ham_arrow_black_after.svg);
    }
    .ham_menu_contact_ban01{
        width: 100%;
    }
    .ham_menu_contact_ban01 img{
        width: 100%;
        object-fit: cover;
    }
    .ham_menu_contact_ban02{
        margin: 15px 0 50px;
        display: block;
        height: 60px;
        line-height: 60px;
        color: #fff;
        background-color: var(--deep-red);
        transition: all .3s;
    }
    .ham_menu_contact_ban02:hover{
        color: var(--deep-red);
        background-color: #fff;
    }
    /*- SP -*/
    .current_color_sp,
    .current_color_sp02{
        color: #F17183;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 365px -----*/
@media screen and ( max-width: 365px ){
    .ham_menu_contact_tel{
        font-size: 30px;
    }
}








/*======================
    フッター_お問い合わせ
======================*/
.contact_link{
    background-image: url(../img/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 433px;
}
.contact_link_inn{
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    max-width: 1100px;
    width: 94%;
    justify-content: space-between;
}
.contact_link_inn01{
    margin-right: 40px;
    max-width: 440px;
    width: 94%;
}
.contact_link_title{
    margin: 0 0 42px;
    padding: 38px 0 0 27px;
    border-left: 4px solid var(--deep-red);
}
.contact_link_title_ja{
    margin: 0 0 15px;
    font-size: 40px;
    color: var(--deep-red);
}
.contact_link_title_en{
    font-size: 20px;
    color: #fff;
}
.contact_link_text{
    line-height: 1.5;
    font-size: 20px;
    color: #fff;
    text-shadow: #000 0 0 10px;
}
.contact_link_inn02{
    max-width: 550px;
    width: 94%;
}
.contact_means_tel{
    margin: 0 0 28px;
}
.contact_means_title{
    margin: 0 0 8px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background-color: var(--deep-red);
}
.contact_means_text_tel{
    font-size: 41px;
    color: #fff;
    text-align: center;
    text-shadow: #000 0 0 9px;
}
.contact_means_text_form{
    position: relative;
    display: block;
    width: 100%;
    height: 97px;
    line-height: 97px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: var(--link-black);
    transition: all .3s;
}
.contact_means_text_form:hover{
    background-color: var(--deep-red);
}
.contact_means_text_form::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 115px;
    background-image: url(../img/arrow_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}
/* ------------------------------------------*/
/*----- メディアクエリ: 1400px -----*/
@media screen and ( max-width: 1400px ){
    .contact_link_title_ja{
        margin: 0 0 15px;
        font-size: 35px;
    }
    .contact_link_title_en{
        font-size: 18px;
    }
    .contact_link_text{
        font-size: 18px;
    }
    .contact_means_text_tel{
        font-size: 36px;
    }
    .contact_means_text_form{
        height: 85px;
        line-height: 85px;
        font-size: 18px;
    }
    .contact_means_text_form::after{
        right: 65px;
        width: 18px;
        height: 18px;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 900px -----*/
@media screen and ( max-width: 900px ){
    .contact_link{
        background-image: url(../img/contact_bg900.jpg);
        height: 492px;
    }
    .contact_link_inn{
        padding: 55px 0;
        flex-direction: column;
    }
    .contact_link_inn01{
        max-width: initial;
        width: 100%;
    }
    .contact_link_title{
        margin: 0 0 30px;
    }
    .contact_link_inn02{
        margin: 35px 0 0;
        display: flex;
        max-width: initial;
        width: 100%;
        justify-content: space-between;
    }
    .none_900{
        display: none;
    }
    .contact_means{
        /*max-width: 385px;*/
        width: 94%;
    }
    .contact_means_title{
        font-size: 16px;
    }
    .contact_means_tel{
        margin: 0 15px 0 0;
    }
    .contact_means_form{
        margin: 0 0 0 15px;
    }
    .contact_means_text_tel{
        font-size: 34px;
    }
    .contact_means_text_form{
        font-size: 18px;
    }
    .contact_means_text_form::after{
        right: 30px;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 900px -----*/
@media screen and ( max-width: 900px ){
    .contact_link{
        display: none;
    }
/*    .contact_link{
        height: 609px;
    }
    .contact_link_inn02{
        flex-wrap: wrap;
    }
    .contact_means{
        width: 100%;
    }
    .contact_means_tel{
        margin: 0 0 20px;
    }
    .contact_means_form{
        margin: 0 0 0;
    }*/
}








/*======================
    フッター_メニュー
======================*/
.footer_menu{
    padding: 67px 0 27px;
    width: 100%;
    background-color: var(--link-black);
}
.footer_menu_inn{
    margin: 0 auto;
    display: flex;
    max-width: 1100px;
    width: 94%;
    justify-content: space-between;
}

.footer_menu_content01{
    max-width: 300px;
    width: 94%;
}
.footer_logo,
.footer_site_banner,
.footer_site_link{
    width: 100%;
}
.footer_logo{
    margin: 0 0 32px;
    transition: all .3s;
}
.footer_site_banner{
    margin: 0 0 15px;
    transition: all .3s;
}
.footer_logo img,
.footer_site_banner img{
    width: 100%;
}
.footer_logo:hover,
.footer_site_banner:hover{
    opacity: .6;
}
.footer_logo_link,
.footer_site_banner_link,
.footer_site_link{
    display: block;
}
.footer_site_link{
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    background-color: var(--deep-red);
    transition: all .3s;
}
.footer_site_link:hover{
    color: var(--deep-red);
    background-color: #fff;
}



.footer_menu_wrap{
    display: flex;
    width: 515px;
    justify-content: space-between;
}
.footer_column{
    width: 150px;
}
.footer_column_inn{
    margin: 10px 0 30px;
}
.footer_column_inn02{
    margin: -15px 0 30px;
}
.footer_column_inn_head{
    margin-top: 0;
}

.footer_menu_main{
    position: relative;
    padding: 5px 0 10px 15px;
    display: block;
    width: 100%;
    /* border-left: 5px solid var(--deep-red); */
    background-image: linear-gradient(to right, #707070, #707070 2px, transparent 2px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    transition: all .3s;
}
.footer_menu_main::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 24px;
    background-color: var(--deep-red);
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}
.footer_menu_main,
.footer_menu_sub{
    font-size: 14px;
    color: #fff;
}
.footer_menu_main:hover,
.footer_menu_sub:hover{
    color: var(--deep-red);
}
.footer_menu_sub_box{
    display: flex;
    flex-direction: column;
}
.footer_menu_sub{
    padding: 10px 0 10px 15px;
    transition: all .3s;
}
.copyright{
    margin: 45px 0 0;
    display: block;
    width: 100%;
    font-size: 12px;
    color: #fff;
    text-align: center;
}
/* ------------------------------------------*/
/*----- メディアクエリ: 900px -----*/
@media screen and ( max-width: 900px ){
    .footer_menu_inn{
        flex-direction: column;
    }
    .footer_menu_content01{
        max-width: initial;
        width: 100%;
    }
    .footer_logo{
        margin: 0 0 20px;
        max-width: 300px;
        width: 94%;
    }
    .footer_site_banner_box{
        display: flex;
        max-width: 650px;
        width: 94%;
        align-items: center;
        justify-content: space-between;
    }
    .footer_site_banner,
    .footer_site_link{
        max-width: 300px;
        width: 94%;
    }
    .footer_site_banner{
        margin: 0 10px 0 0;
    }
    .footer_site_link{
        margin: 0 0 0 10px;
    }

    .footer_menu_wrap{
        margin: 40px 0 0;
        max-width: 845px;
        width: 100%;
    }
    .footer_column{
        max-width: 250px;
        width: 94%;
    }
    .footer_column01,
    .footer_column02{
        margin-right: 30px;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 500px -----*/
@media screen and ( max-width: 500px ){
    .footer_menu_wrap{
        display: none;
    }
    .footer_menu_inn{
        max-width: 300px;
        width: 94%;
    }
    .footer_logo{
        max-width: initial;
        width: 100%;
    }
    .footer_site_banner_box{
        display: block;
        max-width: initial;
        width: 100%;
    }
    .footer_site_banner,
    .footer_site_link{
        max-width: initial;
        width: 100%;
    }
    .footer_site_banner{
        margin: 0 0 15px 0;
    }
    .footer_site_link{
        margin: 0 0 0 0;
    }
}




/*======================
    トップリンク
======================*/
#pagetop{
    position: fixed;
    bottom: 25px;
    right: 35px;
    width: 80px;
    height: 59px;
    z-index: 10;
}
#pagetop img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.active #pagetop{
    display: none;
}
/* ------------------------------------------*/
/*----- メディアクエリ: 500px -----*/
@media screen and ( max-width: 500px ){
    #pagetop{
        right: 0;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 350px -----*/
@media screen and ( max-width: 350px ){
    #pagetop{
        width: 65px;
        height: 48px;
    }
}