/**logo**/
.site-title {
  background: url("../img/common/logo-flower.svg");
  text-indent: -9999px;
  width: clamp(160px, 180px, 200px);
  height: 60px;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
h1 span{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.hero{
    padding: 10vw 10vw 5vw;
    background-color: #e2dbcf;
    display: flex;
    justify-content: center;
    align-items: center;
  background: url("../img/common/common_hero_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.hero:before{
content:"";
    background: linear-gradient(rgba(240,236,232,0),rgba(240,236,232,1));
    height: 50px;
    position: absolute;
    bottom:0;
    z-index: 1;
    width: 100%;
}

.hero .wrap_ttl{
    max-width: 250px;
    height: 90px;
    background-image: url();
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width: 1024px) {
.hero{
    padding: 150px 2vw 10vw;
} 
.hero .wrap_ttl{
    display: block;
}
}
/***********/
.page_link{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10vw;
}
.page_link a{
    border: solid 1px #221c17;
    min-width: 250px;
    display: block;
    padding: 15px 0;
    color: #221c17;
    background-image: url(../img/common/icon-circle-arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center left 15px;
    position: relative;
    z-index: 0;
    transition:all ease .4s;
    overflow: hidden;
}
.page_link a:hover{
	background-color: #E7E1D8
}