* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  color: #222;
}

/* ヘッダー */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
}

.logo img {
  width: 32px;
  height: 32px;
}

.global-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.global-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.global-nav a:hover {
  opacity: 0.7;
}


/* トップ画像 */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85);
}

/* 文字共通 */
.hero-text {
  position: absolute;
  left: 22%; /* ナビと同じライン感 */
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

/* 左上 */
.hero-top {
  top: 18%;
  font-size: 20px;
}

/* 左下 */
.hero-bottom {
  bottom: 25%;
  font-size: 22px;
}


/* セクション共通 */
.section {
  padding: 32px 16px;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.gray {
  background: #f5f5f5;
}

/* 営業時間表 */
.schedule {
  width: 100%;
  border-collapse: collapse;
}

.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

.footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 0.9rem;
  color: #666;
  background: #fafafa;
}

.footer-name {
  font-weight: bold;
  margin-bottom: 8px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.schedule th,
.schedule td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.schedule th {
  width: 80px;
  text-align: left;
}

/* 料金 */
.price li {
  margin-bottom: 8px;
}

/* 地図 */
.map {
  margin-top: 16px;
}

/* フッター */
.footer {
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  color: #666;
}

/* 料金ページ表のスマホ補正 */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

th {
  background: #f7f7f7;
  font-weight: 600;
}


/* ブロックごとの色 */
.block {
  padding: 40px 20px;
}

.block-course {
  background-color: #f5f5f5;
}

.block-price {
  background-color: #ffffff;
}

.block-note {
  background-color: #f0f0f0;
  font-size: 0.9rem;
  color: #555;
}


/* F&Q */

.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 16px;
}

.faq h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-question {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.faq-answer {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

/* ジムの特徴 */

.features {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-item {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #444;
}
