@charset "UTF-8";
/* CSS Document */

/* ===================================
   共通CSS - common.css
   基本リセット＋レイアウトの原則
=================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
  background-color: #fff;
}

/* リンクの共通スタイル */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* 見出しスタイル（共通） */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;

}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem;}
h3 { font-size: 1.25rem; margin-bottom: 50px;  }

/* 余白の原則 */
section {
  margin-bottom: 2rem;
}

/* レスポンシブ画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
	margin: auto;
}

/* ボタン共通スタイル */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.button:hover {
  background-color: #0056b3;
}

/* フォーム要素（ベース） */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

/* コンテナ（共通幅） */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem;  margin-bottom: 5%}
}
