/* =======================================
  全体設定
======================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
}

/* =======================================
  共通レイアウト
======================================= */
.wrapper {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* =======================================
  ヘッダー
======================================= */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.site-title img {
  width: 120px;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #0078ff;
}

/* =======================================
  メインビジュアル
======================================= */
#mainvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* =======================================
  About セクション
======================================= */
#about .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

#about img {
  width: 45%;
  border-radius: 10px;
}

#about .text {
  width: 50%;
}

#about .content-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0078ff;
}

/* =======================================
  Bicycle セクション
======================================= */
#bicycle ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#bicycle li {
  width: 30%;
  text-align: center;
  list-style: none;
}

#bicycle img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

#bicycle .content-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0078ff;
}

/* =======================================
  フッター
======================================= */
#footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

#footer p {
  font-size: 0.9rem;
  color: #666;
}

/* =======================================
  レスポンシブ対応
======================================= */
@media screen and (max-width: 768px) {
  #about .content {
    flex-direction: column;
  }

  #about img,
  #about .text {
    width: 100%;
  }

  #bicycle li {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: right;
  }
}
