@charset "utf-8";
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    line-height: 1;
}
img{
    vertical-align: bottom;
    max-width: 100%;
    }
 a{text-decoration: none;}
 
 .container{
    max-width: 960px;
    margin: 0 auto;
    /* border: 1px solid #f00; */
   
 }
header{
   background-color: #6c832a;
  color: #fff;
  margin-bottom: 50px;
 }
 header h1{
    padding: 20px 0;
 }
.main-visual{
    background-image: url(../img/pixta_81891158_M.webp);
    background-repeat: no-repeat;
    background-position:  center center;
    background-size: cover;
    height: 80vh;
/*隠し文字設定  */
text-indent: 100%;
white-space: nowrap;/* 自動改行を無くす */
overflow: hidden;
}

main.container{
 margin-bottom: 80px;

}
.content {
    margin-bottom: 80px;
    display: flex;
    gap: 20px;
    align-items: flex-start; 
}
.content .image{
    flex-shrink: 0;
    width: 40px;
}
.content p{
        flex: 1;
        line-height: 1.68;
}

.link{
    text-align: center;
    margin-bottom: 40px;
}

footer{
    padding: 20px 0 60px;
    background-color: #cba68b;
    text-align: center;
    color: #fff;

}