/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #e9f3ea; 
  color: #3b4a37; 
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

/* ヘッダー */
.header {
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #61C892; 
  user-select: none;
}

/* メニュー */
.menu {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-item {
  color: #61C892; 
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background-color 0.25s ease, color 0.25s ease;
  user-select: none;
}

.menu-item:hover,
.menu-item:focus {
  background-color: #61C892; 
  color: #ffffff;
  outline: none;
}

/* コンテンツ全体 */
.contents {
  max-width: 640px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 6px 20px rgba(86, 111, 74, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
  max-width: 640px;  /* 画面幅に合わせて最大幅設定 */
  margin: 0 auto 3rem auto;
}

.buttons-container .btn {
  flex: 0 0 calc(50% - 15px); /* 幅は約半分、gapの分を引く */
  box-sizing: border-box;
}

/* ボタン共通 */
.buttons-container .btn {
  flex: 0 0 calc(50% - 15px); /* 幅は約半分、gapの分を引く */
  padding: 2.5rem 0;           /* 縦のパディング増加で高さアップ */
  font-size: 1.5rem;           /* 文字サイズ大きめ */
  border-radius: 27px;         /* 少し丸み強め */
  border: 2.5px solid #61C892; /* 枠色をヘッダーの色と統一 */
  background-color: #FFFFFF;   /* 背景は白 */
  color: #61C892;              /* 文字色を緑に */
  box-shadow: 0 3px 8px rgba(97, 200, 146, 0.3); /* 緑の影 */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.buttons-container .btn:hover,
.buttons-container .btn:focus {
  background-color: #A9D8B8;   /* パステル緑でホバー時の背景 */
  color: #61C892;              /* 文字色をヘッダーの色に統一 */
  transform: translateY(-4px);
  box-shadow: 0 7px 18px rgba(97, 200, 146, 0.7); /* 明るい緑の影 */
  outline: none;
}

/* btn-summary */
.btn-summary {
  display: block;
  width: 85%;                /* 幅を広げる */
  max-width: 500px;          /* 最大幅を少し広げる */
  padding: 2.5rem 0;         /* 縦のパディング増やして高さアップ */
  border-radius: 27px;       /* 丸みを強調 */
  border: 2.5px solid #61C892; /* 枠色をヘッダーと統一 */
  background-color: #FFFFFF; /* 背景は白 */
  color: #61C892;            /* 文字色は緑 */
  font-size: 1.5rem;         /* 文字サイズも大きく */
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  user-select: none;
  box-shadow: 0 8px 20px rgba(97, 200, 146, 0.7);
  position: relative;        /* 中に画像入れても対応しやすく */
  overflow: hidden;          /* 角丸を保つため */
  text-align: center;
}

/* ホバー＆フォーカス */
.btn-summary:hover,
.btn-summary:focus {
  background-color: #A9D8B8; /* パステル緑でホバー時の背景 */
  color: #61C892;            /* 文字色はヘッダーの色に統一 */
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(97, 200, 146, 0.9); /* 明るい緑の影 */
  outline: none;
}

/* リセット1 */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff; 
  color: #61C892; 
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}







