@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    overflow-x: hidden;
}
/* header */
header{
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 
    0 0 5px rgba(0,0,0,0.6),
    0 0 10px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.5);
    /* background-color: burlywood; */
    background:url(../img/works01.jpg)no-repeat center/cover ;
    line-height: 1.8;
    
}

h1{
    position: absolute;
    top: 30px;
    left: 30px;
    line-height: 1.8rem;
}
.lead-section{
    padding-left: 30px;
}
.lead-heading{
 font-size:4.6rem;
 font-weight: 600;
 }
.lead-body{
    margin-top: 40px;
    line-height: 1.4;
}

/* main */

h2{
    font-size: 3.6rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}
section p{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
.message-section{
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: aliceblue;
       background-color: rgb(74, 160, 131);
    
}
.about-section{
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 
    0 0 5px rgba(0,0,0,0.6),
    0 0 10px rgba(0,0,0,0.6),
    0 0 20px rgba(0,0,0,0.5);
    background-color: rgb(74, 160, 131);
    background: url(../img/20201102_garden_toku2.jpg)no-repeat center/cover;
}
.horizontal-section{
    overflow: hidden;
}
 .horizontal-container{
   height: 100vh; 
   width: 300vw;
   display: flex;
 }   
.panel{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    padding-left: 30px;
}
.lead-body{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
.works-block01{
    background-color: deeppink;
    background: url(../img/works02.jpg)no-repeat center/cover;
    }
.works-block02{
    background-color: darkorange;
    background: url(../img/works03.jpg)no-repeat center/cover;
    
}
.works-block03{
    background-color: darkred;
    background: url(../img/works04.jpg)no-repeat center/cover;
}
.works-cace{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;

}
.works-title{
  font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;   
}

/* footer */
footer{
    height: 10vh;
    text-align: center;
    background-color: rgb(74, 160, 131);
}

/* sp */
@media(max-width:740px){
    html{
        font-size: 14px;
    }
}