@charset "UTF-8";
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    color: #2d2d2d;
    font-size: 17px;
    font-weight: normal;
    font-family: serif;
    line-height: 1.6;
    letter-spacing: 1px;
}

h1{
    padding: 0;
    margin: 0;
}

a{
    color: #2d2d2d;
    text-decoration: none;
}

body{
    background-image: url(../img/background.jpg);
    background-size: contain;
    background-position: center center;
    background-color: rgba(255,255,255,0.7);
    background-blend-mode: lighten;
}


/* .gnav-link{
    padding: 12px 20px;
    position: relative;
}

.gnav-link::before{
    background: #203b72;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    transform: scale(0,1);
    transition: transform .3s;
}

.gnav-link:hover::before{
    transform-origin: center top;
    transform: scale(1,1);
} */






.c-header{
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    width: 100%;
    box-shadow: 0px 2px 4px #606060;
}
  
.c-header__logo{
    color: #000;
    min-width: 80px;
    text-decoration: none;
    display: block;
}

.c-header__logo img{
    width: 250px;
    vertical-align: top;
}
  
.c-header__list{
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
}
  
.c-header__list-item{
    list-style: none;
    text-decoration: none;
    border-right: 1px solid #2d2d2d;
}

.c-header__list-item:last-child{
    border: 0;
}
  
.c-header__list-link{
    color: #000;
    display: block;
    text-decoration: none;
    padding: 0px 30px;
    position: relative;
    font-size: 1.05rem;
}

.c-header__list-link:hover{
    color: #203b72;
    transition: 0.3s;
}

/* .c-header__list-link::before{
    background: #203b72;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    transform: scale(0,1);
    transition: transform .3s;
} */

/* .c-header__list-link:hover::before{
    transform-origin: center top;
    transform: scale(1,1);
} */




  
.c-hamburger-menu{
    position: relative;
    position: fixed;
    z-index: 10;
}
  
@media screen and (max-width: 1200px){
    .c-header{
        padding: 0.7rem 1rem;
    }

    .c-header__logo img{
        width: 200px;
    }

    .c-header__list-item{
        border: none;
        font-size: 1.5rem;
    }

    .c-header__list-link{
        color: #ffffff;
        padding: 0;
        display: block;
        font-size: 1.2rem;
    }
  
    #hamburger:checked ~ .c-hamburger-menu__list{
        transform: translateX(0%);
        transition: 0.3s;
    }
}
  
.c-hamburger-menu__input{
    display: none;
}

.c-hamburger-menu__bg{
    background-color: #ffffff;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
  
/* #hamburger:checked ~ .c-hamburger-menu__bg{
    display: block;
} */
  
.c-hamburger-menu__button{
    display: none;
}
  
@media screen and (max-width: 1200px){
    .c-hamburger-menu__list{
        background-color: #2d2d2d;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 1.5rem;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
    }

    .c-hamburger-menu__button{
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 50px;
        height: 50px;
    }
}

.c-hamburger-menu__button-mark{
    background-color: #000;
    display: block;
    width: 31px;
    height: 2px;
    transition: 0.3s;
}
  
@media screen and (max-width: 1200px){
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(1){
      transform: translate(2px, 1px) rotate(45deg);
      transform-origin: 0%;
    }

    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(2){
      opacity: 0;
    }

    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(3){
      transform: translate(2px, 3px) rotate(-45deg);
      transform-origin: 0%;
    }
}






.contact-link{
    color: #ffffff;
    background-color: #203b72;
    margin-left: 10px;
}

.gnav-contact{
    border: 0;
}

#upper{
    padding-top: 120px;
}

.page-title{
    background: linear-gradient(135deg, #2d2d2d 0%, #2d2d2d 66%, #ffffff00 66%, #ffffff00 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    color: #ffffff;
}

.page-title-wrapper{
    width: 70%;
    margin: auto;
}

.page-title-wrapper h1{
    font-size: 2rem;
}

.page-title-wrapper h2{
    font-size: 1.3rem;
    color: #727272;
}

.breadcrumb{
    padding: 20px 40px;
}

.breadcrumb nav ol{
    display: flex;
    justify-content: left;
    align-items: center;
    list-style: none;
}

.breadcrumb nav ol li{
    margin-right: 12px;
    font-size: 0.9rem;
    line-height: 1.1;
}

.icon-home{
    width: 16px;
    margin-top: 2px;
}

.icon-arrow1{
    width: 8px;
    margin-top: 3px;
}

#campaign-area, #example-area, #news-area, #subsidy-area, #faq-area, #flow-area, #guarantee-area, #policy-area, #news-detail-area, #exterior-area, #outline-area, #image-area, #staff-area, #monitor-area, #payment-area, #contact-area, #confirm-area, #complete-area, #service-area{
    width: 70%;
    margin: 40px auto 200px;
}

@media screen and (max-width: 750px){
    #upper{
        padding-top: 75px;
    }

    .page-title{
        background-color: #2D2D2D;
        width: 100%;
        padding: 30px 0;
        color: #ffffff;
    }

    .page-title-wrapper{
        width: 100%;
        text-align: center;
    }

    .page-title-wrapper h1{
        font-size: 1.6rem;
    }

    .page-title-wrapper h2{
        font-size: 1.1rem;
    }

    .breadcrumb{
        padding: 15px 20px;
    }

    .breadcrumb nav ol{
        flex-wrap: wrap;
        row-gap: 5px;
    }

    #campaign-area, #example-area, #news-area, #subsidy-area, #faq-area, #flow-area, #guarantee-area, #policy-area, #news-detail-area, #exterior-area, #outline-area, #image-area, #staff-area, #monitor-area, #payment-area, #contact-area, #confirm-area, #complete-area, #service-area{
        width: 90%;
        margin: 20px auto 100px;
    }
}



/* トップページ */

#fv{
    background-color: #2d2d2d;
    padding-top: 120px;
}

.mv{
    padding: 0 25px;
}

.mv-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    column-gap: 25px;
}

.mv-left{
    flex: 1;
    text-align: center;
}

.mv-left img{
    width: 100%;
    vertical-align: top;
}

.mv-center{
    flex: 2;
    text-align: center;
}

.center-img{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.center-img img{
    width: 50%;
}

.mv-right{
    flex: 1;
    text-align: center;
}

.mv-right img{
    width: 100%;
    vertical-align: top;
}

.copy{
    display: block;
    padding-bottom: 40px;
}

.copy img{
    vertical-align: top;
    width: 90%;
}

@media screen and (max-width: 750px){
    #fv{
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .mv{
        padding: 0;
    }

    .mv-wrapper{
        display: flex;
        flex-direction: column-reverse;
    }

    .mv-left img{
        display: none;
    }

    .mv-center{
        display: flex;
        flex-direction: column-reverse;
    }

    .center-img{
        column-gap: 0px;
    }

    .mv-right img{
        display: none;
    }

    .copy{
        padding: 20px;
        margin-bottom: 10px;
    }

    .copy img{
        width: 100%;
    }
}

.header-banner{
    width: 90%;
    margin: auto;
    padding: 50px 0;
}

.header-banner-area{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header-banner-area img{
    width: 100%;
    vertical-align: top;
}

@media screen and (max-width: 750px){
    .header-banner{
        margin: auto;
        padding: 0;
    }

    .header-banner-area{
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .header-banner-area img{
        margin-bottom: 10px;
    }
}


/* 施工事例（TOP） */

#example{
    width: 75%;
    margin: auto;
    padding: 100px 0 180px;
    position: relative;
}

.example-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title{
    display: flex;
    align-items: baseline;
}

.section-title-main{
    font-size: 3rem;
}

.section-title-sub{
    color: #727272;
    margin-left: 10px;
}

.example-more{
    text-align: center;
}

.example-more a{
    text-align: center;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #2d2d2d;
    padding: 12px 30px;
    font-size: 1.2rem;
}

.example-more a:hover{
    background-color: #203b72;
    color: #ffffff;
    transition: 0.3s;
}

.example-icon1{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    z-index: -100;
}

.example-icon2{
    position: absolute;
    bottom: 0px;
    right: 250px;
    width: 200px;
    z-index: -100;
}

@media screen and (max-width: 750px){
    #example{
        width: 85%;
        padding: 30px 0 200px;
        position: relative;
    }

    .example-heading{
        display: block;
        justify-content: space-between;
    }

    .section-title-sub{
        font-size: 1.2rem;
    }

    .example-more{
        position: absolute;
        right: 0;
        left: 0;
        bottom: 120px;
        margin: 0 auto;
    }

    .example-icon1{
        right: 0;
        width: 40%;
        z-index: -100;
    }
    
    .example-icon2{
        left: 0;
        width: 40%;
        z-index: -100;
    }
}


/* NON工業の強み（TOP） */

.strength-top{
    padding-top: 100px;
    background: linear-gradient(180deg, #f3efe8 0%, #F3EFE8 80%, #ffffff00 80%, #ffffff00 100%);
}

.strength-top-wrapper{
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.strength-top-wrapper-left-heading{
    margin-bottom: 80px;
}

.strength-top-wrapper-left-title{
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.strength-title-main{
    font-size: 2.5rem;
}

.strength-title-sub{
    color: #727272;
    margin-left: 10px;
}

.strength-top-wrapper-left-content{
    text-align: center;
}

.strength-top-wrapper-left-content img{
    width: 80%;
    vertical-align: top;
}

.strength-top-wrapper-right{
    text-align: center;
}

.strength-top-wrapper-right img{
    width: 80%;
    vertical-align: top;
}

.strength-bottom{
    width: 80%;
    margin: auto;
    padding: 50px 0 100px;
}

.strength-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px;
    border-bottom: 2px solid #2d2d2d;
}

.strength-item-left{
    width: 70%;
}

.strength-item-left-top{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 30px;
}

.strength-item-left-top-left p{
    font-size: 10rem;
    color: #5B5B5B;
    line-height: normal;
    font-weight: bold;
}

.strength-item-left-top-right{
    font-size: 1.5rem;
}

.strength-green-text{
    color: #203b72;
    font-size: 2.5rem;
    font-weight: bold;
}

.strength-item-left-bottom{
    font-size: 1.1rem;
    font-weight: bold;
}

.strength-item-right{
    width: 30%;
    text-align: center;
}

.strength-item-right img{
    width: 80%;
    vertical-align: top;
}

.strength-more{
    text-align: center;
    margin-top: 30px;
}

.strength-more a{
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 30px;
    font-size: 1.2rem;
    width: 50%;
}

.strength-more a:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

@media screen and (max-width: 750px){
    #strength{
        padding-bottom: 100px;
    }
    .strength-top{
        padding-top: 80px;
    }

    .strength-top-wrapper{
        width: 85%;
        display: block;
    }

    .strength-top-wrapper-left-heading{
        margin-bottom: 0px;
    }

    .strength-top-wrapper-left-title{
        display: block;
    }

    .strength-title-main{
        font-size: 2rem;
    }
    
    .strength-title-sub{
        font-size: 1.2rem;
        margin: 0;
    }

    .strength-top-wrapper-left-content img{
        display: none;
    }

    .strength-top-wrapper-right img{
        width: 50%;
        padding-left: 30px;
    }

    .strength-item-left-top{
        display: block;
    }

    .strength-bottom{
        position: relative;
        width: 85%;
        padding: 25px 0 0;
    }

    .strength-item{
        display: block;
        padding: 10px 0 50px;
        margin-bottom: 40px;
        border-bottom: 1px solid #2d2d2d;
    }

    .strength-item:last-child{
        border: none;
    }

    .strength-item-left{
        width: 100%;
        margin-bottom: 30px;
    }

    .strength-item-left-top-left p{
        display: none;
    }

    .strength-item-left-top-right{
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .strength-green-text{
        font-size: 2rem;
    }

    .strength-item-right{
        width: 80%;
        margin: auto;
    }

    .strength-more{
        position: absolute;
        right: 0;
        left: 0;
        bottom: -50px;
        margin: 0 auto;
    }

    .strength-more a{
        width: 100%;
    }
}



/* サービス一覧（TOP） */

#service{
    width: 100%;
    padding-bottom: 100px;
}

.service-wrapper{
    width: 60%;
    margin: auto;
}

.service-heading{
    margin-bottom: 50px;
    text-align: center;
}

.service-title{
    font-size: 1.6rem;
    display: inline-block;
    border-top: 2px solid #2d2d2d;
    border-bottom: 2px solid #2d2d2d;
    padding: 10px 40px;
}

.service-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    row-gap: 1rem;
}

.service-list::after{
    content: "";
    display: block;
    width: 32%;
}

.service-list::before{
    content: ""; 
    display: block; 
    width: 32%;
    order: 1;
}

.service-item{
    width: 32%;
    object-fit: cover;
    text-align: center;
}

.service-item img{
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.service-more{
    text-align: center;
    margin-top: 30px;
}

.service-more a{
    width: 220px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #2d2d2d;
    padding: 12px 0;
    margin: auto;
    font-size: 1.2rem;
}

.service-more a:hover{
    background-color: #203b72;
    color: #ffffff;
    transition: 0.3s;
}


@media screen and (max-width: 750px){
    .service-wrapper{
        width: 85%;
        margin: auto;
    }

    .service-heading{
        margin-bottom: 25px;
    }

    .service-title{
        font-size: 1.4rem;
        display: inline-block;
        border-top: 2px solid #2d2d2d;
        border-bottom: 2px solid #2d2d2d;
        padding: 10px 40px;
    }

    .service-list{
        display: block;
        row-gap: 0.5rem;
    }

    .service-item{
        width: 80%;
        object-fit: cover;
        text-align: center;
        margin: 0 auto 6px
    }
}


/* 新着情報（TOP） */

#news{
    padding: 100px 0;
    background-color: #f3efe8;
}

.news-wrapper{
    width: 70%;
    margin: auto;
}

.news-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-more{
    text-align: center;
}

.news-more a{
    text-align: center;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #2d2d2d;
    padding: 12px 30px;
    font-size: 1.2rem;
}

.news-more a:hover{
    background-color: #203b72;
    color: #ffffff;
    transition: 0.3s;
}

.news-content{
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.news-list{
    list-style: none;
}

.news-item{
    margin-bottom: 20px;
}

.news-item a{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.news-item img{
    width: 200px;
}

.news-date{
    color: #727272;
}

.news-title{
    font-size: 1.2rem;
}

.news-category{
    color: #97876F;
}

.news-icon{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
}

@media screen and (max-width: 750px){
    .section-title-main{
        font-size: 2rem;
    }

    #news{
        padding: 50px 0 150px;
    }

    .news-wrapper{
        position: relative;
        width: 85%;
    }

    .news-heading{
        display: block;
    }

    .news-more{
        position: absolute;
        right: 0;
        left: 0;
        bottom: -90px;
        margin: 0 auto;
    }

    .news-item img{
        width: 40%;
    }

    .news-title{
        font-size: 1rem;
    }

    .news-icon{
        display: none;
    }
}



/* スポンサー */
#sponsor{
    background-image: url(../img/index/sponsorship/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sponsor-wrapper{
    padding-bottom: 80px;
    background-color: rgba(0,0,0,0.5);
}

.sponsor-heading{
    padding-top: 80px;
    margin-bottom: 50px;
    text-align: center;
}

.sponsor-title{
    color: #ffffff;
    font-size: 1.6rem;
    display: inline-block;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 10px 40px;
}

.sponsor-content{
    width: 70%;
    margin: auto;
}

.sponsor-list{
    list-style: none;
    background-color: #ffffffcc;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 25px;
}

.sponsor-img1, .sponsor-img2, .sponsor-img3, .sponsor-img4, .sponsor-img7, .sponsor-img8, .sponsor-img9, .sponsor-img10, .sponsor-img11{
    height: 50px;
}

.sponsor-img5, .sponsor-img6{
    height: 25px;
}

@media screen and (max-width: 750px){
    .sponsor-content{
        width: 85%;
        margin: auto;
    }

    .sponsor-list{
        padding: 30px;
    }

    .sponsor-img1, .sponsor-img2, .sponsor-img3, .sponsor-img4, .sponsor-img7, .sponsor-img8, .sponsor-img9, .sponsor-img10, .sponsor-img11{
        height: 40px;
    }
    
    .sponsor-img5, .sponsor-img6{
        height: 20px;
    }
}


/* フッター */

footer{
    background-color: #2D2D2D;
    color: #ffffff;
}

.footer-banner{
    padding: 40px 0;
}

.footer-banner-list{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
    gap: 20px;
}

.footer-banner-item{
    width: 100%;
    background-color: #ffffff;
}

.footer-banner-title{
    padding: 35px 0;
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-staff{
    background-image: url(../img/index/footer-staff.jpg);
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-service{
    background-image: url(../img/index/footer-service.jpg);
    background-position: center 85%;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-outline{
    background-image: url(../img/index/footer-outline.jpg);
    background-position: center 0%;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-faq{
    background-image: url(../img/index/footer-faq.jpg);
    background-position: center 65%;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-menu{
    background-color: #ffffff;
    padding: 40px;
}

.footer-menu-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.footer-menu-inner1 img{
    width: 300px;
    margin-bottom: 10px;
}

.footer-menu-contact{
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    background-color: #203b72;
    padding: 15px 0;
    font-size: 1.2rem;
}

.footer-menu-inner2{
    display: flex;
    justify-content: space-between;
}

.footer-menu-list{
    list-style: none;
    margin-right: 50px;
}

.footer-menu-item{
    border-left: 2px solid #2d2d2d;
    margin: 15px 0;
    line-height: 1.2;
}

.footer-menu-item a{
    display: block;
    color: #2d2d2d;
    padding-left: 10px;
}

.footer-menu-item a:hover{
    color: #203b72;
    transition: 0.3s;
}

.footer-info{
    padding: 40px;
    font-size: 0.9rem;
}

.footer-info-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 90%;
    margin: auto;
}

.footer-info-inner1{
    display: flex;
    gap: 40px;
}

.footer-info-logo{
    display: block;
}

.footer-info-logo img{
    width: 300px;
    vertical-align: top;
}

.footer-info-address1{
    margin-bottom: 10px;
}

.footer-info-place{
    font-size: 1rem;
}

.footer-info-inner2{
    vertical-align: bottom;
}

.footer-info-sns{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.x-logo{
    width: 30px;
}

.instagram-logo{
    width: 33px;
}

.footer-info-list{
    list-style: none;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: 10px;
}

.footer-info-item{
    color: #ffffff;
    margin-left: 20px;
}

.copyright{
    text-align: right;
}

@media screen and (max-width: 750px){
    .footer-banner{
        padding: 30px 0 20px;
    }

    .footer-banner-list{
        width: 85%;
        margin: auto;
        display: block;
        text-align: center;
        list-style: none;
        gap: 20px;
    }

    .footer-banner-item{
        margin-bottom: 10px;
    }

    .footer-banner-title{
        padding: 25px 0;
        font-size: 1.1rem;
    }

    .footer-menu{
        padding: 40px 0;
    }

    .footer-menu-list{
        margin-right: 0px;
    }

    .footer-menu-item a{
        font-size: 1.1rem;
    }

    .footer-menu-wrapper{
        display: block;
        width: 85%;
        margin: auto;
    }

    .footer-menu-inner1{
        margin-bottom: 30px;
    }

    .footer-menu-inner2{
        display: block;
    }

    .footer-info-logo{
        margin-bottom: 20px;
    }

    .footer-info-logo img{
        width: 100%;
    }

    .footer-info-address{
        margin-bottom: 20px;
    }

    .footer-info{
        padding: 40px 0 20px;
    }

    .footer-info-wrapper{
        display: block;
        width: 85%;
    }

    .footer-info-inner1{
        display: block;
    }

    .footer-info-list{
        margin-bottom: 40px;
    }

    .footer-info-item{
        margin-left: 0px;
    }

    .copyright{
        text-align: center;
    }
}

@media screen and (max-width: 1400px){
    .footer-info-list{
        display: block;
    }
}



/* キャンペーン情報 */

.campaign-area-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    width: 100%;
    row-gap: 60px;
}

.campaign-area-wrapper::after{
    content: "";
    display: block;
    width: 32%;
}

.campaign-area-wrapper::before{
    content: ""; 
    display: block; 
    width: 32%;
    order: 1;
}

.campaign-area-item{
    width: 32%;
    object-fit: cover;
}

.campaign-area-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-copy, .more-btn{
    text-align: center;
}

.sub-copy{
    padding: 15px 0;
    font-size: 1.3rem;
}

.more-btn{
    padding: 10px 0;
    border: 2px solid #2d2d2d;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.more-btn::before{
    background-color: #2d2d2d;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    z-index: -1;
}

.more-btn:hover{
    color: #fff;
}

.more-btn:hover::before{
    transform-origin: left top;
    transform: scale(1, 1);
}

@media screen and (max-width: 750px){
    .campaign-area-wrapper{
        display: block;
    }

    .campaign-area-item{
        width: 100%;
        margin-bottom: 30px;
    }

    .more-btn{
        padding: 8px 0
    }
}



/* 施工事例 */
.example-area-accordion{
    margin: auto;
}

.toggle{
    display: none;
}

.option{
    position: relative;
}

.title,
.content{
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.5s;
}

.title{
    display: block;
    color: #2d2d2d;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 0;
    border-top: 2px solid #2d2d2d;
    border-bottom: 2px solid #2d2d2d;
}

.title::after,
.title::before{
    content: "";
    position: absolute;
    right: 1.7rem;
    top: 1.8rem;
    width: 2.5px;
    height: 1rem;
    background-color: #2d2d2d;
    transition: all 0.3s;
}

.title::after{
    transform: rotate(90deg);
}

.content{
    max-height: 0;
    overflow: hidden;
}

.example-area-tag-detail-outer{
    margin-bottom: 100px;
}

.toggle:checked + .title + .content{
    max-height: 100000px;
    transition: all 3s;
}

.toggle:checked + .title::before{
    transform: rotate(90deg) !important;
}

.search-box-empty{
    width: 100px;
    height: 2px;
    background-color: #2d2d2d;
    margin-left: 10px;
}

.example-area-new-title{
    font-size: 1.3rem;
    padding: 10px 0 8px;
}

.example-area-new-tag-name{
    font-size: 1rem;
    color: #606060;
    margin-bottom: 20px;
}







.search-box-heading{
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.search-box-list{
    padding: 0;
}

.search-box-list li{
    list-style: none;
    text-align: center;
    font-size: 1.1rem;
    background-color: #ffffff;
    width: 24%;
    border: 2px solid #2d2d2d;
}

form{
    padding-bottom: 40px;
}

form ul{
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: space-between;
    width: 100%;
}

form ul::after{
    content: "";
    display: block;
    width: 24%;
}

form ul::before{
    content: ""; 
    display: block; 
    width: 24%;
    order: 1;
}

input[type="radio"]{
    display: none;
}

.brand input[type="radio"]:checked + label{
    background: #2d2d2d;
    color: #ffffff;
}

.size input[type="radio"]:checked + label{
    background: #2d2d2d;
    color: #ffffff;
}
  
.label{
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 15px 0;
}

.is-hide{
    display: none;
}
  
/* .list_toggle{
    display: none;
} */

.example-area-thumbnail{
    aspect-ratio: 11 / 8;
}
  
.under_line{
    width: 500px;
}

.search-box h2{
    margin: 0;
}

.reset{
    text-align: right;
}
  
.reset-button{
    width: 24%;
    border: 2px solid #2d2d2d;
    margin: 20px auto 0;
    background-color: #ffffff;
    cursor: pointer;
    padding: 15px 0;
    font-size: 1.1rem;
}

.reset-button:hover{
    background: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

.nothing{
    display: none;
}
  
.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    width: 100%;
}

.list::after{
    content: "";
    display: block;
    width: 32%;
}

.list::before{
    content: ""; 
    display: block; 
    width: 32%;
    order: 1;
}

.list li{
    width: 32%;
    object-fit: cover;
    padding-top: 40px;
}
  
.list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}





.example-area-new-heading{
    display: flex;
    align-items: center;
    margin: 50px 0 0;
}

.example-area-new-empty{
    width: 40%;
    height: 2px;
    background-color: #2d2d2d;
    margin-left: 20px;
}

@media screen and (max-width: 750px){
    .title{
        font-size: 1.25rem;
        padding: 10px 0;
    }

    .title::after,
    .title::before{
        right: 1.5rem;
        top: 1.1rem;
    }

    .example-area-tag-detail-outer{
        margin-bottom: 20px;
    }

    .example-area-new-tag-name{
        margin-bottom: 15px;
    }

    .search-box-heading{
        margin: 15px 0;
        font-size: 0.8rem;
    }

    .search-box-list li{
        width: 49%;
        font-size: 0.9rem;
    }

    .label{
        padding: 10px 0;
    }

    form ul{
        row-gap: 10px;
    }

    .reset-button{
        width: 49%;
        font-size: 0.9rem;
        padding: 12px 0;
    }

    .list{
        display: block;
        width: 100%;
    }

    .list li{
        width: 100%;
        object-fit: cover;
        padding-top: 20px;
    }

    .example-area-new-heading{
        font-size: 0.8rem;
        margin: 25px 0 0;
    }

    .example-area-new-empty{
        margin-left: 10px;
    }
}


/* 新着情報 */

.news-area-tab-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.news-area-tab-list::after{
    content: "";
    display: block;
    width: 48%;
}

.news-area-tab-list::before{
    content: ""; 
    display: block; 
    width: 48%;
    order: 1;
}


.news-area-tab-item{
    border-bottom: 1px solid #2d2d2d;
    padding: 15px 0 30px;
    width: 48%;
    margin-bottom: 30px;
}

.news-area-tab-item a{
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-area-tab-item img{
    width: 180px;
    height: auto;
}

.news-area-date{
    margin-bottom: 12px;
}

.news-area-title{
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.news-area-category{
    color: #606060;
    vertical-align: bottom;
}

@media screen and (max-width: 750px){
    .news-area-tab-list{
        display: block;
    }

    .news-area-tab-item{
        width: 100%;
        padding-top: 0;
        padding-bottom: 15px;
    }

    .news-area-tab-item a{
        display: block;
        width: 100%;
    }

    .news-area-tab-item img{
        width: 100%
    }

    .news-area-date{
        margin: 8px 0 0;
    }

    .news-area-title{
        margin-bottom: 0px;
    }
}



/* リフォーム補助金 */

.subsidy-area-image{
    margin-bottom: 50px;
}

.subsidy-area-image img{
    width: 70%;
}

.subsidy-area-title{
    display: inline-block;
    background-color: #CC2929;
    color: #ffffff;
    padding: 6px 24px;
    font-size: 1.3rem;
}

.subsidy-area-period{
    margin-bottom: 20px;
}

.subsidy-area-period-inner{
    padding: 20px 0;
}

.subsidy-area-period-item{
    margin-bottom: 20px;
}

.subsidy-area-period-item h3{
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #CC2929;
}

.subsidy-area-period-item p{
    padding-left: 15px;
}

.subsidy-area-limit{
    margin-bottom: 40px;
}

.subsidy-area-limit-inner{
    padding: 20px 0;
}

.subsidy-area-person{
    margin-bottom: 20px;
}

.subsidy-area-person-inner{
    padding: 20px 0;
}

.subsidy-area-person-text{
    margin-bottom: 20px;
}

.subsidy-area-person-item{
    margin-bottom: 20px;
}

.subsidy-area-person-item-title{
    margin-bottom: 10px;
}

.subsidy-area-person-item-title-accent{
    background-color: #CC2929;
    color: #ffffff;
    padding: 6px 12px;
    margin-right: 8px;
}

.subsidy-area-person-item-inner{
    padding-left: 40px;
}

.subsidy-area-person-item-inner p{
    margin-bottom: 10px;
}

.subsidy-area-person-item-inner-accent{
    color: #CC2929;
    font-size: 1.2rem;
}

.subsidy-area-person-item-inner ul{
    padding-left: 15px;
}

.subsidy-area-type{
    margin-bottom: 40px;
}

.subsidy-area-type-inner{
    padding: 20px 0;
}

.subsidy-area-type-inner-first-text{
    margin-bottom: 20px;
}

.subsidy-area-type-inner-accent{
    border-bottom: 4px solid #ffe625;
    font-size: 1.1rem;
}

.subsidy-area-type-inner-accent-second{
    color: #CC2929;
    font-size: 1.2rem;
}

.subsidy-area-sum{
    margin-bottom: 40px;
}

.subsidy-area-sum-inner{
    padding: 20px 0;
}

.subsidy-area-sum-text{
    margin-bottom: 20px;
}

.subsidy-area-sum-item{
    margin-bottom: 20px;
}

.subsidy-area-sum-item-title{
    margin-bottom: 10px;
}

.subsidy-area-sum-item-title-accent{
    background-color: #CC2929;
    color: #ffffff;
    padding: 6px 12px;
    margin-right: 8px;
}

.subsidy-area-sum-item-inner{
    padding-left: 40px;
}

.subsidy-area-sum-item-inner p{
    margin-bottom: 10px;
}

.subsidy-area-sum-item-inner-accent{
    color: #CC2929;
    font-size: 1.2rem;
}

.subsidy-area-sum-item-inner-detail{
    margin: 40px 0;
}

.subsidy-area-sum-item-inner-detail img{
    background-color: #ffffff;
    width: 100%;
    margin-top: 10px;
}

.subsidy-area-more{
    text-align: center;
}

.subsidy-area-more a{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 0;
    font-size: 1.2rem;
}

.subsidy-area-more a:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

.arrow{
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    margin-top: 12px;
    border-radius: 9999px;
    background-color: #ffffff;
}

.arrow::before{
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 15px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 2px) 50%;
}

@media screen and (max-width: 750px){
    .subsidy-area-image{
        margin-bottom: 25px;
    }

    .subsidy-area-image img{
        width: 100%;
    }

    .subsidy-area-person-item-inner{
        padding-left: 0px;
    }

    .subsidy-area-sum-item-inner{
        padding-left: 0px;
    }

    .subsidy-area-sum{
        margin-bottom: 0px;
    }
}



/* よくあるご質問 */

.faq-area-accordion{
    margin: 0 auto 20px;
    border-bottom: 1px solid #2d2d2d;
}

.option{
    position: relative;
}

.toggle{
    display: none;
}

.toggle:checked + .faq-area-label-title + .faq-area-accordion-content{
    max-height: 1000px;
    transition: all 3s;
}

.toggle:checked + .faq-area-label-title::before{
    transform: rotate(90deg) !important;
}

.faq-area-label-title,
.faq-area-accordion-content{
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.1s;
}

.faq-area-label-title{
    display: block;
    color: #2d2d2d;
    font-size: 1.2rem;
    padding: 10px 0;
}

.faq-area-label-title::after,
.faq-area-label-title::before{
    content: "";
    position: absolute;
    right: 1.8rem;
    top: 1rem;
    width: 2.5px;
    height: 1rem;
    background-color: #2d2d2d;
    transition: all 0.3s;
}

.faq-area-label-title::after{
    transform: rotate(90deg);
}

.faq-area-accordion-content{
    max-height: 0;
    overflow: hidden;
}

.faq-area-tag-detail-outer{
    padding: 20px 0;
}

@media screen and (max-width: 750px){
    .faq-area-accordion{
        margin: 0 auto;
    }

    .faq-area-label-title{
        font-size: 1rem;
        font-weight: bold;
        padding: 15px 50px 15px 10px;
    }

    .faq-area-label-title::after,
    .faq-area-label-title::before{
        right: 1.5rem;
        top: 1.15rem;
    }

    .faq-area-tag-detail-outer{
        padding: 0px 10px 20px 10px;
    }
}



/* 施工の流れ */

.flow-area-content{
    display: flex;
    margin-bottom: 10px;
}

.flow-area-step p{
    background-color: #2d2d2d;
    color: #ffffff;
    height: 100%;
    padding: 18px 12px;
    text-align: center;
    line-height: 1.4;
}

.flow-area-step-accent{
    font-size: 1.5rem;
}

.flow-area-inner{
    padding: 18px;
}

.flow-area-inner p{
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.flow-area-img{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flow-area-img img{
    width: 49%;
}

@media screen and (max-width: 750px){
    .flow-area-step p{
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .flow-area-inner{
        padding: 9px 0 0 18px;
    }

    .flow-area-inner p{
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .flow-area-img{
        display: block;
    }
    
    .flow-area-img img{
        width: 100%;
        vertical-align: top;
        margin-bottom: 10px;
    }
}


/* 商品に関する保証 */

.guarantee-area-heading{
    border-bottom: 2px solid #2d2d2d;
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 10px;
}

.guarantee-area-first{
    margin: 30px 0;
}

.guarantee-area-item{
    margin-bottom: 30px;
}

@media screen and (max-width: 750px){
    .guarantee-area-heading{
        font-size: 0.7rem;
    }

    .guarantee-area-item h2{
        font-size: 1.3rem;
    }
}


/* プライバシーポリシー */

.policy-area-heading{
    border-bottom: 2px solid #2d2d2d;
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 10px;
}

.policy-area-first{
    margin: 30px 0;
}

.policy-area-item{
    margin-bottom: 30px;
}

.policy-area-item h2{
    font-size: 1.4rem;
}

@media screen and (max-width: 750px){
    .policy-area-heading{
        font-size: 0.8rem;
    }

    .policy-area-item h2{
        font-size: 1.2rem;
    }
}


/* 新着情報詳細 */
.news-detail-area-content img{
    width: 100%;
}

.news-detail-area-subtitle{
    color: #606060;
}

.news-detail-area-title{
    margin-bottom: 20px;
}

.news-detail-area-back{
    padding: 30px 0;
    display: flex;
    justify-content: flex-end;
    text-align: center;
}

.news-detail-area-back-btn{
    padding: 10px 0;
    border: 2px solid #2d2d2d;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    width: 220px;
}

.news-detail-area-back-btn::before{
    background-color: #2d2d2d;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    z-index: -1;
}

.news-detail-area-back-btn:hover{
    color: #fff;
}

.news-detail-area-back-btn:hover::before{
    transform-origin: left top;
    transform: scale(1, 1);
}

@media screen and (max-width: 750px){
    .news-detail-area-title{
        font-size: 1.5rem;
    }
    

    .news-detail-area-back{
        justify-content: center;
    }
}


/* エクステリアセール */
.exterior-area-heading{
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
}

.exterior-area-text{
    margin: 20px 0;
}

.exterior-area-flyer{
    margin-bottom: 40px;
}

.exterior-area-flyer img{
    width: 100%;
}

.exterior-area-more{
    text-align: center;
}

.exterior-area-more a{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 0;
    font-size: 1.2rem;
}

.exterior-area-more a:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

@media screen and (max-width: 750px){
    .exterior-area-heading{
        font-size: 0.7rem;
    }

    .exterior-area-flyer{
        margin-bottom: 20px;
    }
}


/* 会社概要 */

.outline-area-content{
    margin-bottom: 60px;
}

.outline-area-heading{
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
    text-align: center;
}

.outline-area-inner{
    padding: 40px 0;
}

.outline-area-inner table{
    width: 90%;
    margin: 0 auto;
}

.outline-area-inner table tr{
    vertical-align: top;
}

.outline-area-table-heading{
    width: 20%;
    padding-bottom: 20px;
}

.outline-area-table-detail{
    width: 80%;
    padding-bottom: 20px;
}

.outline-area-item{
    padding-bottom: 20px;
}

.outline-area-map{
    width: 100%;
    height: 400px;
    border: none;
    margin: 15px 0 5px;
}

.outline-area-map-more{
    display: flex;
    align-items: center;
    justify-content: right;
}

.outline-area-map-more img{
    width: 28px;
    height: auto;
}

.outline-area-inner-line{
    margin-bottom: 40px;
}

@media screen and (max-width: 750px){
    .outline-area-content{
        margin-bottom: 30px;
    }

    .outline-area-heading{
        font-size: 0.8rem;
    }

    .outline-area-inner{
        padding: 25px 0;
    }

    .outline-area-inner table{
        width: 95%;
    }

    .outline-area-table-heading, .outline-area-table-detail{
        display: inline-block;
        width: 100%;
        padding-bottom: 5px;
    }

    .outline-area-table-heading{
        font-weight: bold;
        font-size: 1.1rem;
    }

    .outline-area-table-detail{
        padding-bottom: 20px;
    }

    .outline-area-table-access-heading, .outline-area-table-access-detail{
        display: inline-block;
        width: 100%;
    }

    .outline-area-table-access-heading{
        font-weight: bold;
        font-size: 1.1rem;
    }
}



/* 完成イメージ図無料作成 */

.image-area-lead{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}

.image-area-lead-text h2{
    margin-bottom: 40px;
}

.image-area-lead-accent{
    font-size: 2rem;
    margin-right: 3px;
    padding: 5px;
    background-color: #C30D23;
    color: #ffffff;
}

.image-area-lead-image img{
    width: 500px;
}

.image-area-change{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom:  80px;
}

.image-area-change-detail{
    text-align: center;
}

.image-area-change-detail p{
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 12px 0;
    font-size: 1.3rem;
}

.image-area-more{
    text-align: center;
}

.image-area-more a{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 0;
    font-size: 1.2rem;
}

.image-area-more a:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

.before-after{
    position: relative;
    display: inline-block;
    width: 80px;
    height: 3px;
    margin-top: 12px;
    border-radius: 9999px;
    background-color: #2d2d2d;
}

.before-after::before{
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 30px;
    height: 3px;
    border-radius: 9999px;
    background-color: #2d2d2d;
    transform: rotate(45deg);
    transform-origin: calc(100% - 2px) 50%;
}

@media screen and (max-width: 750px){
    .image-area-lead{
        display: block;
        margin-bottom: 20px;
    }

    .image-area-lead-text h2{
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .image-area-lead-accent{
        font-size: 1.2rem
    }

    .image-area-lead-image img{
        width: 100%;
    }

    .image-area-change{
        display: block;
        margin-bottom: 40px;
    }

    .image-area-change-detail{
        margin-bottom: 20px;
    }

    .image-area-change-detail img{
        width: 100%;
    }

    .image-area-change-detail p{
        font-size: 1.1rem;
    }

    .before-after{
        display: none;
    }
}



/* スタッフ紹介 */

.staff-area-lead{
    margin-bottom: 80px;
}

.staff-area-lead-heading{
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1.2rem;
}

.staff-area-lead-empty{
    width: 20%;
    height: 1.5px;
    background-color: #2d2d2d;
    margin-left: 10px;
}

.staff-area-heading{
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
    text-align: center;
}

.staff-area-inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    margin-bottom: 80px;
    row-gap: 40px;
}

.staff-area-inner::after{
    content: "";
    display: block;
    width: 23%;
}

.staff-area-inner::before{
    content: ""; 
    display: block; 
    width: 23%;
    order: 1;
}

.staff-area-item{
    width: 23%;
    background-color: rgba(244, 225, 208, 0.5);
    flex-shrink: 0;
}

.staff-area-image{
    text-align: center;
}

.staff-area-image img{
    width: 100%;
}

.staff-area-intro{
    padding: 10px 20px 20px;
}

.staff-area-name{
    margin-bottom: 15px;
}

.staff-area-name p{
    margin-left: 2px;
    color: #AE9A87;
}

@media screen and (max-width: 750px){
    .staff-area-lead{
        margin-bottom: 60px;
    }

    .staff-area-inner{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 0;
        margin-bottom: 60px;
        row-gap: 20px;
    }

    .staff-area-item{
        width: 48%;
    }

    .staff-area-intro{
        padding: 5px 15px 10px;
    }

    .staff-area-name h2{
        font-size: 1.2rem;
    }
}



/* 新製品モニター募集 */

.monitor-area-heading{
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
    text-align: center;
}

.monitor-area-text{
    margin: 20px 0;
}

.monitor-area-info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    row-gap: 50px;
}

.monitor-area-info::after{
    content: "";
    display: block;
    width: 48%;
}

.monitor-area-info::before{
    content: ""; 
    display: block;
    width: 48%;
    order: 1;
}

.monitor-area-item{
    width: 48%;
    flex-shrink: 0;
}

.monitor-area-region{
    margin-bottom: 20px;
}

.monitor-area-region-title{
    display: inline-block;
    font-size: 1.4rem;
    color: #ffffff;
    background-color: #3470B0;
    padding: 4px 20px;
}

.monitor-area-region p{
    padding-top: 10px;
    padding-bottom: 10px;
}

.monitor-area-period-title{
    font-size: 1.4rem;
    border-left: 5px solid #409847;
    padding-left: 10px;
    line-height: 1.3;
}

.monitor-area-period-text{
    padding-top: 10px;
    padding-bottom: 10px;
}

.monitor-area-image-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    width: 100%;
    row-gap: 20px;
}

.monitor-area-image-list::after{
    content: "";
    display: block;
    width: 49%;
}

.monitor-area-image-list::before{
    content: ""; 
    display: block; 
    width: 49%;
    order: 1;
}

.monitor-area-image-item{
    width: 49%;
    object-fit: cover;
}

.monitor-area-image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 750px){
    .monitor-area-heading{
        font-size: 0.8rem;
    }

    .monitor-area-info{
        display: block;
        padding: 25px 0 0;
        margin-bottom: 0px;
    }
    
    .monitor-area-info::after{
        width: 100%;
    }
    
    .monitor-area-info::before{
        width: 100%;
    }

    .monitor-area-item{
        width: 100%;
        margin-bottom: 30px;
    }

    .monitor-area-region-title{
        font-size: 1.1rem;
    }

    .monitor-area-period-title{
        font-size: 1.2rem;
        border-left: 4px solid #409847;
    }

    .monitor-area-image-list{
        row-gap: 5px;
    }
    
    .monitor-area-image-list::after{
        width: 100%;
    }
    
    .monitor-area-image-list::before{
        width: 100%;
    }
    
    .monitor-area-image-item{
        width: 100%;
    }
}


/* お支払い方法について */

.payment-area-heading{
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
    text-align: center;
}

.payment-area-method-content{
    padding: 40px 0;
    margin-bottom: 80px;
}

.payment-area-method-item img{
    width: 100%;
}

.payment-area-method-list{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.payment-area-method-item{
    width: 31%;
}

.payment-area-loan-content{
    padding: 40px 0;
}

.payment-area-loan-list{
    margin-bottom: 40px;
}

.payment-area-loan-list h2{
    font-size: 1.4rem;
    border-left: 5px solid #409847;
    padding-left: 10px;
    line-height: 1.3;
}

.payment-area-loan-inner{
    padding: 15px;
}

.payment-area-loan-inner-flow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.payment-area-loan-inner-flow img{
    width: 23%;
}

.payment-area-loan-text{
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.payment-area-loan-table{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.payment-area-loan-table table{
    border-collapse: collapse;
    background-color: #ffffff;
    width: 49%;
}

.payment-area-loan-table th, .payment-area-loan-table td{
    border: 1px solid #2d2d2d;
    padding: 6px 12px;
}

.payment-area-loan-table th{
    background-color: #f0f0f0;
}

.payment-area-loan-table-accent{
    font-size: 1.3rem;
}

@media screen and (max-width: 750px){
    .payment-area-heading{
        font-size: 0.8rem;
    }

    .payment-area-method-content{
        padding: 25px 0;
        margin-bottom: 20px;
    }

    .payment-area-method-list{
        display: block;
        padding-top: 15px;
    }

    .payment-area-method-item{
        width: 100%;
        margin: 0 auto 30px;
    }

    .payment-area-method-item img{
        width: 100%;
        margin-bottom: 10px;
        padding: 0 40px;
    }

    .payment-area-loan-list h2{
        font-size: 1.2rem;
        border-left: 4px solid #409847;
    }

    .payment-area-loan-inner{
        padding: 15px 0;
    }

    .payment-area-loan-inner-flow{
        display: block;
        padding: 20px 40px;
    }

    .payment-area-loan-inner-flow img{
        width: 100%;
        margin-bottom: 10px;
    }

    .payment-area-loan-text{
        font-size: 1rem;
    }    

    .payment-area-loan-table{
        display: block;
    }
    
    .payment-area-loan-table table{
        width: 100%;
        margin-bottom: 40px;
    }
    
    .payment-area-loan-table th, .payment-area-loan-table td{
        display: inline-block;
        padding: 6px 12px;
        width: 100%;
    }
}



/* お問い合わせ */

.contact-area-mail{
    margin-bottom: 100px;
}

.heading-border{
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.heading-border:before,
.heading-border:after{
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #2d2d2d;
}

.heading-border:before{
    margin-right: 1rem;
}

.heading-border:after{
    margin-left: 1rem;
}

.contact-area-mail-form{
    width: 95%;
    margin: 0 auto;
    padding: 30px 0;
}

.contact-area-table{
    width: 100%;
}

.contact-area-table th, .contact-area-table td{
    display: block;
    text-align: left;
}

.contact-area-table th{
    padding-right: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-area-table td{
    margin-bottom: 25px;
}

.contact-area-heading-title{
    font-size: 1.1rem;
    line-height: 1.1;
}

.contact-area-accent-req{
    background-color: #D53030;
    color: #ffffff;
    line-height: 1;
    padding: 5px 8px;
    margin-left: 5px;
    border-radius: 2px;
}

.contact-area-accent-opt{
    background-color: #808080;
    color: #ffffff;
    line-height: 1;
    padding: 5px 8px;
    margin-left: 5px;
    border-radius: 2px;
}

select, input, textarea{
    padding: 8px;
}

.contact-area-data-item{
    width: 100%;
}

.contact-area-data-name, .contact-area-data-mail{
    width: 50%;
}

.contact-area-data-address{
    width: 100%;
}

.contact-area-data-message{
    width: 100%;
    height: 200px;
    resize: vertical;
}

.contact-area-btn{
    text-align: center;
}

.contact-area-next{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
}

.contact-area-next:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

.contact-area-tel-content{
    padding: 30px 0;
}

.tel-number{
    text-align: center;
    margin-bottom: 30px;
}

.tel-number img{
    width: 33%;
}

.line-banner{
    text-align: center;
}

.line-banner img{
    width: 66%;
}

@media (max-width: 750px){
    .contact-area-mail{
        margin-bottom: 20px;
    }

	.heading-border{
        font-size: 1.2rem;
    }

    select, input, textarea{
        width: 100%;
    }

    .contact-area-data-name, .contact-area-data-mail{
        width: 100%;
    }

    .contact-area-table th{
        padding-right: 0px;
    }

    .tel-number img{
        width: 100%;
    }

    .line-banner img{
        width: 100%;
    }
}



/* 内容確認 */

.confirm-area-heading{
    border-bottom: 2px solid #bfbfbf;
    font-size: 0.8rem;
    text-align: center;
    padding-bottom: 20px;
}

.confirm-area-form{
    font-size: 1.1rem;
    margin: 0 auto;
    padding: 15px 0 30px;
}

.confirm-area-item{
    margin: auto;
    display: flex;
    align-items: flex-start;
    padding: 20px 40px;
    border-bottom: 1px solid #bfbfbf;
    text-align: left;
}

.confirm-area-title{
    width: 33%;
    margin-right: 30px;
}

.confirm-area-content{
    width: 67%;
}

.confirm-area-btn{
    text-align: center;
    padding: 40px 0;
}

.confirm-area-prev, .confirm-area-next{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    background-color: #acacac;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
}

.confirm-area-next{
    background-color: #203b72;
}

.confirm-area-prev:hover, .confirm-area-next:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

@media (max-width: 750px){
    .confirm-area-heading{
        font-size: 0.7rem;
        padding-bottom: 10px;
    }

    .confirm-area-item{
        display: block;
        padding: 15px 20px;
    }

    .confirm-area-title{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .confirm-area-content{
        width: 100%;
    }

    .confirm-area-btn{
        display: flex;
        flex-direction: column-reverse;
    }

    .confirm-area-prev, .confirm-area-next{
        margin-bottom: 10px;
    }
}

@media (min-width: 751px){
    .indention{
        display: none;
    }
}



/* お問い合わせ完了 */

.complete-area-heading{
    border-bottom: 2px solid #bfbfbf;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 20px;
}

.complete-area-content{
    padding: 40px 0;
    width: 70%;
    margin: auto;
    font-size: 1.1rem;
}

.complete-area-text{
    margin-bottom: 40px;
}

.complete-area-btn{
    text-align: center;

}

.complete-area-back{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 0;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
}

.complete-area-back:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

@media (max-width: 750px){
    .complete-area-heading{
        font-size: 0.7rem;
        padding-bottom: 10px;
    }

    .complete-area-content{
        width: 90%;
        padding: 20px 0;
    }

    .complete-area-back{
        font-size: 1.1rem;
    }
}



/* 施工事例詳細 */

#example-detail-area{
    width: 100%;
    margin: 0px auto 200px;
}

.example-detail-area-content01-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff00 0%, #ffffff00 50%, #315a8c 50%, #315a8c 100%);
    padding: 60px 0;
}

.example-detail-area-content01-bigtext{
    width: 170px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.example-detail-area-content01-bigtext p{
    display: inline-block;
    position: absolute;
    font-size: 8rem;
    font-weight: bold;
    line-height: 1;
    color: #b6b6b6;
    transform-origin: top left;
    transform: rotate(-90deg) translateX(-100%);
    top: 0;
    left: 0;
}

.example-detail-area-content01-heading{
    color: #ffffff;
}

.example-detail-area-content01-inner img{
    width: 600px;
    box-shadow: 10px -10px 0px #b6b6b6;
    margin-bottom: 10px;
}

.example-detail-area-content02{
    width: 70%;
    margin: 100px auto 120px;
}

.example-detail-area-content03{
    margin-bottom: 100px;
}

.example-detail-area-content03-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-detail-area-content03-item img{
    width: 400px;
    box-shadow: 10px -10px 0px #b6b6b6;
    margin-bottom: 10px;
}

.example-detail-area-content03-between{
    margin: 0 40px;
}

.example-detail-area-content03-heading{
    text-align: center;
    font-size: 1.2rem;
}

.example-detail-area-content03-heading p{
    color: #808080;
}

.example-detail-area-content04{
    width: 70%;
    margin: 0 auto 60px;
    padding: 50px 100px;
    background-color: rgba(238, 238, 238, 0.5);
}

.example-detail-area-content04-wrapper h1{
    margin-bottom: 20px;
}

.example-detail-area-content04-inner{
    border-left: 2px solid #2d2d2d;
    padding-left: 20px;
}

.example-detail-area-content04-inner table{
    width: 100%;
}

.example-detail-area-content04-inner td{
    padding: 10px 20px;
    vertical-align: top;
    border-bottom: 2px solid #bfbfbf;
}

.example-detail-area-more{
    text-align: center;
}

.example-detail-area-more a{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #203b72;
    padding: 12px 0;
    font-size: 1.2rem;
}

.example-detail-area-more a:hover{
    background-color: #2d2d2d;
    color: #ffffff;
    transition: 0.3s;
}

@media screen and (max-width: 750px){
    .example-detail-area-content01-wrapper{
        padding: 30px 0;
    }

    .example-detail-area-content01-bigtext{
        display: none;
    }

    .example-detail-area-content01-heading{
        padding: 0 20px;
        font-size: 0.7rem;
        text-align: left;
    }

    .example-detail-area-content01-inner{
        text-align: center;
    }

    .example-detail-area-content01-inner img{
        width: 90%;
        box-shadow: none;
    }

    .example-detail-area-content02{
        width: 85%;
        margin: 50px auto;
    }

    .example-detail-area-content03{
        width: 90%;
        margin: 0 auto 80px;
    }

    .example-detail-area-content03-wrapper{
        display: block;
    }

    .example-detail-area-content03-item{
        margin-bottom: 40px;
    }

    .example-detail-area-content03-item img{
        width: 100%;
        box-shadow: none;
    }

    .example-detail-area-content03-between{
        display: none;
    }

    .example-detail-area-content04{
        width: 100%;
        margin: 0 auto 30px;
        padding: 40px 20px;
    }

    .example-detail-area-content04-wrapper h1{
        margin-bottom: 10px;
    }

    .example-detail-area-content04-inner{
        border: none;
        padding-left: 0px;
    }

    .example-detail-area-content04-inner td{
        display: inline-block;
        width: 100%;
        padding: 10px 0;
    }

    .example-detail-area-content04-inner-heading{
        font-weight: bold;
        font-size: 1.1rem;
    }

    .example-detail-area-content04-inner-content{
        margin-bottom: 10px;
    }
}



/* サービスの特徴 */

.service-area-wrapper{
    text-align: center;
}

.service-area-heading{
    margin-bottom: 60px;
}

.service-area-heading h1{
    font-size: 1.6rem;
    display: inline-block;
    border-top: 2px solid #2d2d2d;
    border-bottom: 2px solid #2d2d2d;
    padding: 10px 40px;
}

.service-area-content{
    margin-bottom: 60px;
}

.service-area-content-top{
    margin-bottom: 30px;
}

.service-area-content-top p{
    text-align: left;
}

.service-area-title-img{
    text-align: left;
}

.service-area-title-img img{
    height: 70px;
    margin-bottom: 15px;
}

.service-area-content-bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-area-content-bottom img{
    width: 32%;
}

@media screen and (max-width: 750px){
    .service-area-heading{
        margin-bottom: 30px;
    }

    .service-area-heading h1{
        font-size: 1.4rem;
        padding: 10px 40px;
    }

    .service-area-content{
        margin-bottom: 40px;
    }

    .service-area-content-top{
        margin-bottom: 20px;
    }

    .service-area-title-img{
        text-align: left;
    }
    
    .service-area-title-img img{
        height: 60px;
    }

    .service-area-content-bottom{
        display: block;
    }
    
    .service-area-content-bottom img{
        width: 100%;
    }
}



/* 会社案内 */

.company-area{
    width: 100%;
    margin: 0px auto 200px;
}

.company-area-content01{
    margin-bottom: 100px;
}

.company-area-content01-heading{
    width: 70%;
    margin: auto;
    border-bottom: 2px solid #2d2d2d;
    font-size: 0.9rem;
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.company-area-content01-main{
    background: linear-gradient(90deg, #ffffff00 0%, #ffffff00 30%, #ebffb790 30%, #ebffb790 100%);
    width: 100%;
    padding: 70px 0 110px;
    margin-bottom: 50px;
}

.company-area-content01-lead{
    width: 70%;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.company-area-content01-lead-text{
    font-size: 1.1rem;
    width: 70%;
}

.company-area-content01-lead-text p{
    margin-bottom: 30px;
}

.company-area-content01-lead-image{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.company-area-content01-lead-image img{
    width: 48%;
    text-align: center;
}

.company-area-content01-lead-illust{
    width: 30%;
}

.company-area-content01-lead-illust img{
    width: 100%;
}

.company-area-content01-inner{
    width: 70%;
    margin: auto;
    font-size: 1.1rem;
}

.company-area-content01-more{
    text-align: center;
}

.company-area-content01-more a{
    text-align: center;
    width: 220px;
    color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #2d2d2d;
    padding: 12px 0;
    font-size: 1.2rem;
}

.company-area-content01-more a:hover{
    background-color: #203b72;
    color: #ffffff;
    transition: 0.3s;
}

.company-area-content02{
    margin-bottom: 100px;
}

.company-area-content02-item{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    margin: auto;
    padding: 40px 240px;
}

.company-area-content02-item:nth-child(1){
    background-color: #aaddff83;
}

.company-area-content02-item:nth-child(2){
    background-color: #c7e9ff8b;
    flex-direction: row-reverse;
}

.company-area-content02-item:nth-child(3){
    background-color: #d2f3ff84;
}

.company-area-content02-image img{
    width: 250px;
    box-shadow: 0px 3px 5px #a6a6a6;
}

.company-area-content02-title{
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #2d2d2d;
}

.company-area-content03{
    width: 70%;
    margin: auto;
}

.company-area-content03-heading{
    display: flex;
    align-items: center;
    margin: 120px 0 20px;
}

.company-area-content03-empty{
    width: 40%;
    height: 2px;
    background-color: #2d2d2d;
    border: none;
    margin-left: 20px;
}

.company-area-content03-inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    margin-bottom: 40px;
    row-gap: 60px;
}

.company-area-content03-inner::after{
    content: "";
    display: block;
    width: 31%;
}

.company-area-content03-inner::before{
    content: ""; 
    display: block; 
    width: 31%;
    order: 1;
}

.company-area-content03-item{
    width: 31%;
}

.company-area-content03-image img{
    width: 100%;
    margin-bottom: 10px;
}

.company-area-content03-textarea ul{
    list-style: none;
}

.company-area-content04{
    display: block;
    position: relative;
}

.company-area-content04 img{
    width: 100%;
    vertical-align: top;
}

.company-area-content04-copy{
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 3rem;
    z-index: 1;
}

.company-area-content04-copy p{
    background-color: #ffffff;
    margin-bottom: 20px;
    padding-left: 20px;
}

.company-area-content04-text{
    position: absolute;
    bottom: 40px;
    left: 30px;
    font-size: 1.1rem;
    background-color: #ffffff8a;
    padding: 50px;
}

.company-area-content04-logo{
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.company-area-content04-logo img{
    width: 300px;
}

@media (max-width: 750px){
    .company-area-content01-heading h1{
        font-size: 1.4rem;
    }

    .company-area-content01-main{
        background: linear-gradient(90deg, #ffffff00 0%, #ffffff00 30%, #ebffb790 30%, #ebffb790 100%);
        padding: 35px 0 55px;
        margin-bottom: 25px;
    }

    .company-area-content01-lead{
        width: 85%;
        display: block;
    }

    .company-area-content01-lead-text{
        font-size: 1rem;
        width: 100%;
    }

    .company-area-content01-lead-image{
        gap: 10px;
        margin-bottom: 40px;
    }

    .company-area-content01-lead-illust{
        width: 60%;
        margin: auto;
    }

    .company-area-content01-inner{
        width: 85%;
        font-size: 1rem;
    }

    .company-area-content02{
        margin-bottom: 50px;
    }

    .company-area-content02-item{
        display: block;
        padding: 25px;
    }

    .company-area-content02-image img{
        width: 100%;
    }

    .company-area-content02-title{
        font-size: 0.8rem;
    }

    .company-area-content03{
        width: 85%;
    }

    .company-area-content03-heading{
        font-size: 0.8rem;
        margin: 60px 0 0;
    }

    .company-area-content03-empty{
        margin-left: 10px;
    }

    .company-area-content03-inner{
        display: block;
        padding: 20px 0;
    }
    
    .company-area-content03-item{
        width: 100%;
        margin-bottom: 25px;
    }

    .company-area-content04{
        display: none;
    }
}