@charset "UTF-8";

/*-----------------------------------

	headline

-----------------------------------*/
#headline {
    margin-bottom: 210px;
}
#headline h1 {
    height: 200px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
#headline h1::before {
    font-size: 60px;
    color: #088b37;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
#headline .image {
    width: 100vw;
    height: 180px;
    background: url(../img/common/headline_bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
#headline .image img {
    display: block;
    max-width: 880px;
    width: 90%;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: auto;
}
@media screen and (max-width: 840px) {
    #headline {
        margin-bottom: 16vw;
    }
    #headline h1 {
        height: 160px;
        font-size: 18px;
    }
    #headline h1::before {
        font-size: 54px;
    }
    #headline .image {
        height: 20vw;
    }
    #headline .image img {
        width: 85vw;
        top: 5vw;
    }
}
@media screen and (max-width: 640px) {
    #headline h1 {
        height: 110px;
        font-size: 16px;
    }
    #headline h1::before {
        font-size: 38px;
        margin-bottom: 10px;
    }
}
