@charset "UTF-8";

html {
    font-size: 100%;
}

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.site-title {
    width: 120px;
    line-height: 1px;
    padding: 10px 0;
}
.site-title a {
  display: block;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #333;
    display: inline-block;    
}

.content-title {
    font-size: 1rem;
    margin: 10px 0;
}

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

/* -----------------
header
-------------------- */

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
#header nav ul {
    display: flex;
    padding: 10px 0;
}
#header nav ul li {
    margin-left: 30px;
}
#header nav ul li a {
    color: #24292e;
}
#header nav ul li a:hover {
    opacity: 0.7;
}

/* ---------------------
mainvisual
-------------------- */

.mainvisual {
    margin-bottom: 80px;
}
.mainvisual img{
    height: 600px;
    width: 100%;
    object-fit: cover;

}

/* --------------------
about
---------------------- */

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

#about .content img {
    width: 100px;
    margin-right: 30px;
    border-radius: 50%;
}

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


/* ---------------------
bicycle
---------------------- */

#bicycle ul {
    display: flex;
    justify-content: space-between;
}
#bicycle li {
    width: 32%;
}


/* -----------------------
footer
----------------------- */

#footer {
    text-align: center;
    font-size: 0.5rem;
    padding: 10px 0;

}



@media (max-width: 600px) {
  /* スマホ用のCSS */
  #about .content {
    flex-direction: column;
  }
  #bicycle ul {
    flex-direction: column;
  }
    #bicycle li {
    width: 100%;
    margin-bottom: 30px;
    }
}