@charset "utf-8";

html{
    font-size: 100%;
}
body{
    color: #2b2a27;
    font-family: "Arial", "Helvetica Neue", "Hiragino Sans" , "Meiryo" , sans-serif;
}

img{
    max-width: 100%;
}
ul{
    list-style: none;
}
a{
    color: #2b2a27; 
}

/* Mainvisual */

#mainvisual img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 80px;
}

/* text */
.text{
    text-align: center;
    padding: 0 20px;
    margin-bottom: 80px;
    /* background-color: #ff9966; */
}
.text .site-title{
    margin-bottom: 20px;
}

/*  display:inline-block*/
.text .btn{
    display:inline-block;
    border: solid 1px #2b2a27;
    font-size: 0.875rem;
    padding: 18px 60px;
    text-decoration: none;
}

/* image */
.flex{
    display: flex;
    margin-bottom: 60px;
    /* background-color: #55eeff; */
}

.flex li{
    width: calc(100%/3);
}

.flex li img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    vertical-align: bottom;
}

#footer{
    font-size: 0.75rem;
    padding: 20px;
    text-align: center;
    /* background-color: #55eeff; */
}

#footer .sns{
    display:flex;
}

#footer .sns li{
    margin: 0 10px;
}

@media screen and (max-width:834px){
 /*
  「flex-direction: column;」で縦並びにする
  */
.flex{
    flex-direction: column
}

.flex li{
    width: 100%;
}

}