/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    max-width: 960px;
     margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .part1 {
    padding: 10px 0;
}
.header .part1 div{
    background-color: black;
    color: white;
    font-size: 30px;
    padding: 5px 10px;
}
.header .part2 {
    display: inline;
}
.header a {
    margin-left: 30px;
}


/* Main */
.main-content {
    margin: 0 auto;
}
.main-content h2{
    display: inline-block;
    font-size: 30px;
    border-bottom: solid;
    margin-bottom: 30px;
}
.main-img {
    width: 100%;
    max-width: 1920px;
    height: 600px;
    object-fit: cover;
}
.main-part {

}
#about {
    margin:70px 0;
    text-align: center;
   
}
#about .contents{
    display: flex;
    justify-content: space-between;
}
#about img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-right: 30px;
}
#about .text h3{
    text-align: left;
}

#bicycle {
    margin:70px 0;
    text-align: center;
}
#bicycle img{
    height: 100px;
    width: 100px;
}

#about .contents{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */

