html {
    background-color: #f1f1f1;
}

body {
    color: #383e45;
    font-size: 0.9rem;
}

h1{
    display: flex;
}

h2 {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

.site-title {
    width: 300px;
    height: 50px;
    padding: 10px 5px;
    margin: 10px 5px;
}

.site-logo{
    width: 50px;
    height: 50px;
    margin:5px;
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
}

.wrapper {
    max-width: 960px;
    margin: 0 auto 60px auto;
    padding: 0 4%;
    text-align: center;
}

.nav-flex-list {
    display: flex;
}

.horizontal-list {
    padding:10px;
    margin: 30px 15px;
    list-style: none;
}

li a:hover {
    background-color: #333;
}

.contact {
    margin: 20px 0;
    width: 150px;
    height: 60px;
    line-height: 60px;
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    display: inline-block;
    text-align: center;
}

.main-visual {
    margin-bottom: 80px;
    background-color:#bac4ff
}

.main-visual-img {
    width: 100%;
    max-width: 1920px;
    height: 500px;
    object-fit: cover;
}

/*-------------------------------------------
About
-------------------------------------------*/
#about .content {
    display: flex;
    justify-content: center;
    align-items: center;
}


#about img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 20px;
    margin-right: 30px;
}

#about .text {
    text-align: left;
}

/*-------------------------------------------
store
-------------------------------------------*/
#store {
    margin: 0 auto 100px auto;
    text-align: center;
}
#store .store-area {
    width: 100%;
    padding: 20px 0 60px;
    background-color: #bac4ff;
}

#store .btn {
    border-radius: 5px;
    background-color:#00B84F;
    margin-top:10px;
    padding: 10px 20px;
    position: relative;
    top: 30px;
    text-decoration: none;
    color: #ffffff;
}

#store .btn:hover {
    color: #ffffff;
    background: #06d05e;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {

    .horizontal-list {
        padding:10px;
        margin: 30px 5px;
        list-style: none;
    }

    /*-------------------------------------------
    Mainvisual
    -------------------------------------------*/
    #mainvisual img {
      height: calc(100vh - 60px);
    }
  
    /*-------------------------------------------
    About
    -------------------------------------------*/
    #about .content {
      flex-direction: column;
    }
    #about img {
      margin-right: 0;
    }
  
    /*-------------------------------------------
    Stamp
    -------------------------------------------*/
    #stamp ul {
      flex-direction: column;
    }
    #stamp li {
      width: 100%;
      margin-bottom: 30px;
    }
  }