@charset "utf-8";
/* ************************    Initialize   ************************ */
:root{
    /*  カラー　*/
    --main-color:#B21010;/* メインカラー */
    --text-color:#333333;/* テキストカラー */
    --border-color:#BBBBBB;/* ボーダーカラー */
    --base-color: #EEEEEE;/* ベースカラー */
    /*  フォント　*/
    --jp-font:'Noto Sans JP', sans-serif;/* 日本語フォント */
    --en-font:'Anton', sans-serif;/* 英語フォント */
    --font-size-SS: 14px;
    --font-size-S: 16px;
    --font-size-M: 18px;
    --font-size-L: 22px;
    --font-size-LL: 28px;
    --font-size-3L: 40px;
    --font-size-4L: 84px;
}
*,
*:before,
*:after{
    box-sizing: inherit;
}
html{
    font-size: var(--font-size-S);
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top:0px;
}
body{
    -webkit-appearance: none;/* ブラウザのデフォルトデザイン解除 */
            appearance: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: var(--font-size-S);
    font-family: var(--jp-font);
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.5;
    color: var(--text-color);
}
p,h1,h2,h3,h4,h5,h6{
    margin:0;
}
img{
    vertical-align:bottom;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    :root{
        --font-size-SS: 14px;
        --font-size-S: 16px;
        --font-size-M: 18px;
        --font-size-L: 20px;
        --font-size-LL: 24px;
        --font-size-3L: 32px;
        --font-size-4L: 46px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    :root{
        --font-size-SS: 12px;
        --font-size-S: 14px;
        --font-size-M: 16px;
        --font-size-L: 20px;
        --font-size-LL: 24px;
        --font-size-3L: 40px;
        --font-size-4L: 48px;
    }
}
/* ************************      Common     ************************ */
.bold{
    font-weight: 700;
}
.en{
    font-family: var(--en-font);
    letter-spacing: 0;
}
.jp{
    font-family: var(--jp-font);
}
.fontsize-ss{
    font-size: var(--font-size-SS);
}
.fontsize-s{
    font-size: var(--font-size-S);
}
.fontsize-m{
    font-size: var(--font-size-M);
}
.fontsize-l{
    font-size: var(--font-size-L);
}
.fontsize-ll{
    font-size: var(--font-size-LL);
}
.fontsize-3l{
    font-size: var(--font-size-3L);
}
.fontsize-4l{
    font-size: var(--font-size-4L);
}
.column2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.fillter{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(48,48,48,0.3);
}
.page-content{
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
}
.container{
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
.text-justify{
    text-align: justify;
}
.text-center{
    text-align: center;
}
.text-end{
    text-align: end;
}
.column2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.pc-nodisplay{
    display: none;
}
.mobile-only{
    display: none;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .pc-nodisplay{
        display: block;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .mobile-nodisplay{
        display: none;
    }
    .mobile-only{
        display: block;
    }
    .page-content{
        padding-top: 90px;
        padding-bottom: 90px;
    }
}
/* ************************      width      ************************ */
.width-l{
    width: 100%;
    max-width: none;
}
.width-m{
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
.width-s{
    width: 75%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .width-s{
        width: 90%;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .width-m,
    .width-s{
        width: 85%;
    }
}
/* ************************   Flexlayout    ************************ */
.flex_space-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_start{
    display: flex;
    justify-content: start;
    align-items: center;
}
.flex_end{
    display: flex;
    justify-content: end;
    align-items: center;
}

/* ************************      Animation      ************************ */
/*全共通*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
    from {
        opacity:0;
    }

    to {
        opacity:1;  
    }
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}
/* ************************      Space      ************************ */
.mr-s{
    margin-right: 15px;
}
.ml-s{
    margin-left: 15px;
}
.mt-s{
    margin-top: 15px;
}
.mb-s{
    margin-bottom: 15px;
}
/*---------------------*/
.mr-m{
    margin-right: 30px;
}
.ml-m{
    margin-left: 30px;
}
.mt-m{
    margin-top: 30px;
}
.mb-m{
    margin-bottom: 30px;
}
/*---------------------*/
.mr-l{
    margin-right: 60px;
}
.ml-l{
    margin-left: 60px;
}
.mt-l{
    margin-top: 60px;
}
.mb-l{
    margin-bottom: 60px;
}
/*---------------------*/
.pr-s{
    padding-right: 15px;
}
.pl-s{
    padding-left: 15px;
}
.pt-s{
    padding-top: 15px;
}
.pb-s{
    padding-bottom: 15px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .mr-l{
        margin-right: 45px;
    }
    .ml-l{
        margin-left: 45px;
    }
    .mt-l{
        margin-top: 45px;
    }
    .mb-l{
        margin-bottom: 45px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Sub-ttl     ************************ */
.sub-ttl{
    font-size: var(--font-size-S);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sub-ttl::before{
    content: attr(data-en);
    font-family: var(--en-font);
    font-size: var(--font-size-3L);
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    color: var(--text-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Header     ************************ */
header{
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px 0 30px;
    z-index: 1000;
    position: fixed;
    font-size: var(--font-size-M);
}
.logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.logo img{
    width: 100px;
    height: auto;
}
.logo span{
    display: block;
}
.logo span:first-of-type{
    padding-bottom: 5px;
}
.header-contents{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-item a{
    transition: .3s;
}
.header-item a:hover{
    color: var(--main-color);
}
.header-item:first-of-type{
    margin-left: 0px;
}
.header-item{
    margin-left: 45px;
}
.header-item i{
    margin-right: 5px;
}
.header-tel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    line-height: 1.25;
}
.header-tel::after{
    content: '8:00 - 18:00 (土日祝除く)';
    font-family: var(--jp-font);
    font-size: var(--font-size-SS);
}
.header-line{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    line-height: 1.25;
    letter-spacing: 0;
}
#menu-global{
    position: fixed;
    bottom: 30px;
    right: 15px;
    writing-mode: vertical-lr;
}
#menu-global ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu-global li{
    margin: 15px 0;
}
.header-menu__parts{
    color: var(--text-color);
}
.header-menu__parts.active{
    color: var(--main-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    header{
        padding: 5px 15px 0 15px;
    }
    #menu-global{
        right: 6px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    header{
        padding: 5px 10px 0 10px;
    }
    .logo img{
        width: 80px;
    }
    .logo-ttl .fontsize-ll{
        font-size: var(--font-size-L);
    }
    .header-tel.mobile-nodisplay{
        display: none;
    }
    .header-line.mobile-nodisplay{
        display: none;
    }
    .header-item{
        margin-left: 15px;
    }
    .header-item i{
        margin-right: 0;
        font-size: 28px;
    }
    #menu-global{
        right: 3px;
        bottom: 5px;
    }
    #menu-global li{
        margin: 10px 0;
    }
    
}
/* ************************      Top     ************************ */
.top-img{
    width: calc(100% - 120px);
    height: 80vh;
    height: 80svh;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.top-img01{
    position: absolute;
    top:0;
    left:0;
    width: 105%;
    height: 100%;
    max-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(img/top.webp);
    -webkit-animation: slide-animation01 10s linear;
            animation: slide-animation01 10s linear;
}
@keyframes slide-animation01 {
    0% {opacity: 0; transform: scale(1.1);}
    10% {opacity: 1;}
    100% {opacity: 1; transform: scale(1.0);}
}
.home-catch{
    width: calc(100% - 120px);
    height: 40vh;
    height: 40lvh;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    font-size: 5.2vw;
}
.scrolldown{
    position: fixed;
    bottom: 30px;
    left: 15px;
    padding-bottom: 60px;
    z-index: 10;
}
.scroll-anime{
    writing-mode: vertical-rl;
    position: relative;
}
.scroll-anime::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: var(--text-color);
    margin-top: 10px;
    animation: down 2s linear infinite;
}
@keyframes down {
    0% {
        height: 0px;
    }
    100% {
        height: 50px;
    }
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .home-catch{
        width: calc(100% - 80px);
        height: 30vh;
        height: 30lvh;
        font-size: 7vw;
    }
    .top-img{
        width: calc(100% - 80px);
    }
    .scrolldown{
        left: 6px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .home-catch{
        height: 40vh;
        height: 40lvh;
    }
    .top-img{
        width: 100%;
    }
    .home-catch{
        width: 100%;
        padding: 0 15px;
        font-size: 8vw;
    }
    .scrolldown{
        left: 3px;
        bottom: 5px;
    }
}
/* ************************      about     ************************ */
#about .col2-1{
    width: 50%;
}
#about .col2-1 img{
    width: 100%;
    height: 100%;
}
#about .col2-2{
    width: 50%;
    padding-left: 5%;
}
#about .col2-2 .content-catch{
    margin-bottom: 45px;
}
.fa-quote-left{
    width: fit-content;
    display: block;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 15px;
}
.fa-quote-right{
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: 15px;
}
.about-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 90px;
    flex-wrap: wrap;
}
.about-list li{
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.about-list i{
    font-size: 3vw;
    color: var(--main-color);
}

@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #about .col2-1{
        width: 100%;
    }
    #about .col2-2{
        width: 100%;
        padding: 15px;
    }
    #about .col2-2 .content-catch{
        width: 85%;
        margin: 45px auto;
    }
    .about-list{
        margin-top: 45px;
    }
    .about-list li{
        width: 49%;
        margin-top: 45px;
    }
    .about-list i{
        font-size: var(--font-size-3L);
    }
}
/* ************************      service     ************************ */
#service{
    background-color: var(--base-color);
}
.service-list{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.service-list li{
    width: calc(50% - 5px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    aspect-ratio: 1.414 / 1;
    position: relative;
    background-size: cover;
    background-position: center;
    margin: 2.5px;
}
.service-list li *{
    color: #FFF;
}
.service-list li:nth-of-type(1){
    background-image: url(img/wallpaint.webp);
}
.service-list li:nth-of-type(2){
    background-image: url(img/roofpaint.webp);
}
.service-list li:nth-of-type(3){
    background-image: url(img/sttelpaint.webp);
}
.service-list li:nth-of-type(4){
    background-image: url(img/reform.webp);
}
.service-num{
    position: relative;
}
.service-list h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.service-list p{
    position: relative;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .service-list li{
        aspect-ratio: 1 / 1.414;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .service-list li{
        width: 100%;
    }
}
/* ************************      works     ************************ */
#works.page-content{
    padding-bottom: 0;
}
.works-list li{
    max-width: 1350px;
    margin:  90px auto;
    padding-bottom: 90px;
}
.works-list li:last-of-type{
    padding-bottom: 0;
}
.works-img{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.works-img .col2-1{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.works-img .col2-1 .works-item{
    width: calc(50% - 6px);
    height: calc(50% - 6px);
    margin: 3px;
}
.works-img .col2-2{
    width: 50%;
}
.works-img .col2-2 .works-item{
    width: calc(100% - 6px);
    /*height: calc(100% - 6px);*/
    margin: 3px;
}
.works-item{
    display: block;
    aspect-ratio: 1.414 / 1;
    overflow: hidden;
}
.works-item:hover img{
    transform: scale(1.1);
}
.works-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.works-before{
    border: solid 3px var(--text-color);
    position: relative;
}
.works-before::before{
    content: 'BEFORE';
    font-family: var(--en-font);
    color: #FFF;
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: var(--text-color);
    bottom: -1px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1em;
    z-index: 1;
}
.works-ttl.flex_space-between{
    flex-wrap: wrap;
}
.content-ttl{
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    white-space: nowrap;
}
.content-ttl::before{
    content: '';
    display: block;
    width: 5px;
    height: 35px;
    margin-right: 10px;
    background-color: var(--main-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .works-list li{
        padding-bottom: 45px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .works-img{
        flex-direction: column-reverse;
    }
    .works-img .col2-1,
    .works-img .col2-2{
        width: 100%;
    }
    .content-ttl{
        margin-bottom: 15px;
    }
}
/* ************************      Flow     ************************ */
#flow .container{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}
.flow-list{
    width: 45%;
}
.flow-list li{
    border-bottom: solid 1px var(--border-color);
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 8px 0;
    margin-top: 15px;
}
.flow-list .step-num{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding-right: 15px;
}
.flow-list li a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .flow-list{
        width: 65%;
        margin: 45px auto 0 auto;
    }
    .flow-list:last-of-type.mt-l{
        margin-top: 0;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .flow-list{
        width: 80%;
    }
}
/* ************************      Profile     ************************ */
#profile{
    background-color: var(--base-color);
}
#profile .container{
    background-image: url(img/white-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5%;
}
.prof-list{
    width: fit-content;
    margin: 90px auto 60px auto;
}
.prof-list li{
    display: flex;
    justify-content: start;
    align-items: start;
}
.prof-list .col2-1{
    width: 15%;
}
.prof-list .col2-1 p{
    padding: 15px 0;
    white-space: nowrap;
}
.prof-list .col2-2{
    width: 85%;
    padding-left: 45px;
    border-left: solid 1px var(--border-color);
}
.prof-list .col2-2 p{
    padding: 15px 0;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .prof-list .col2-1{
        padding-right: 30px;
    }
    .prof-list .col2-2{
        padding-left: 30px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .prof-list .col2-1{
        width: 25%;
        padding-right: 15px;
    }
    .prof-list .col2-2{
        width: 75%;
        padding-left: 15px;
    }
    #profile .container{
        padding: 45px 30px;
    }
}
/* ************************      Other     ************************ */
#other{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
#other *{
    color: #FFF;
}
#other .sub-ttl::before{
    color: #FFF;
}
#recruit{
    width: 50%;
    padding: 5%;
    background-image: url(img/recruit.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#recruit .fillter{
    background-color: rgba(48,48,48,0.8);
}
#recruit .container{
    position: relative;
}
#recruit .content-catch{
    margin: 90px 0;
}
#recruit .content-text{
    width: fit-content;
    max-width: 90%;
    margin: 0 auto;
}
#contact{
    width: 50%;
    padding: 5%;
    background-image: url(img/red-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#contact .content-text{
    width: 85%;
    margin: 60px auto;
}
#contact .btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 90px;
    margin: 30px auto 0 auto;
    border: solid 5px #FFF;
    background-color: rgba(255,255,255,0.2);
    text-align: center;
    position: relative;
    line-height: 1;
    letter-spacing: 0;
}
#contact .btn::before{
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    right: 8px;
    bottom: 8px;
    border-left: 20px solid transparent;
    border-bottom: 20px solid #FFFFFF;
    display: inline-block;
    z-index: 1;
}
.tel-btn::after{
    content: '営業時間8:00-18:00 (土日祝除く)';
    letter-spacing: 0;
    margin-top: 8px;
    white-space: nowrap;
    font-size: var(--font-size-SS);
}
.line-btn::after{
    content: '1-2営業日以内に返信いたします';
    letter-spacing: 0;
    margin-top: 8px;
    white-space: nowrap;
    font-weight: 400;
    font-size: var(--font-size-SS);
}
#contact .btn .fa-mobile-screen{
    padding: 0 5px;
}
#contact .btn i{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #recruit{
        width: 100%;
        padding: 10% 5%;
    }
    #contact{
        width: 100%;
        padding: 10% 5%;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #recruit{
        padding: 45px 0;
    }
    #contact{
        padding: 45px 0;
    }
    #contact .btn{
        width: 95%;
    }
    #contact .btn i{
        left: 10px;
        font-size: 32px;
    }
    #contact .btn::before{
        border-left: 15px solid transparent;
    border-bottom: 15px solid #FFFFFF;
    }
}
/* ************************      Footer     ************************ */
footer{
    background-color: var(--text-color);
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer a{
    color: var(--border-color);
}
footer p{
    color: #FFF;
}
/*  ---------  Zoom image  ---------  */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 90vh;
    object-fit: contain;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}