@charset "UTF-8";

html {
  font-size: 100%;
 scroll-behavior: smooth;
}
body {
  color: #333;
  font-size: 0.9rem;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
.site-logo {
  width: 100px;
  line-height: 1px;
  padding: 15px 0;
}
.site-title a {
  display: block;
}
.section-title {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 50px;
  border-bottom: solid 2px #333;
}
.content-title {
  font-size: 1rem;
  margin: 10px 0;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto 100px;
  padding: 0 10px;
  text-align: center;
}

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

/*FV*/
#FV{
  margin-bottom: 80px;
}
#FV img {
  width: 100%;
  max-width: 1920px;
  height: 600px;
  object-fit: cover;
}

/*ABOUT*/
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 30px;
}
#about .text {
  text-align: left;
}

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

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

/*768px以上の横幅で適用*/
@media screen and (max-width: 768px) {

  /*FV*/
  #mainvisual img {
    height: calc(100vh - 70px);
  }

  /*ABOUT*/
  #about .content {
    flex-direction: column;
  }
  #about img {
    margin-right: 0;
  }

  /*#bicycle*/
  #bicycle ul {
    flex-direction: column;
  }
  #bicycle li {
    width: 100%;
    margin-bottom: 30px;
  }
}