
/* 全体の基本スタイル */
body {
  font-family: Arial, Helvetica, "メイリオ", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background: url(img/back.png) no-repeat fixed;
  background-size: cover; /* 画像が画面全体を覆うように調整 */
}

#container {
  max-width: 960px;
  margin: 0 auto;
  padding: 5px;
}

p {
margin: 15px 30px;
}

h1 {
  border-bottom: solid 3px #cce4ff;
  position: relative;
  margin-top: -50px;
}

h1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #0056b3;
  bottom: -3px;
  width: 75%;
}


h3 {
  margin: 30px 0 -10px 0;
}


img {
  max-width: 100%;
  height: auto;
  border: none;
  margin-bottom: 0px;
}

/* フッターのスタイル */
address {
  font-size: 1.0em;
  color: #666;
  text-align: center;
  margin-top: 40px;
 font-style:normal;
  margin-bottom: 30px;
}


/* ボタン */
.rounded-button {
  display: inline-block; /* インライン要素でもボタンとして扱う */
  margin: 10px 0 30px 0;
  padding: 10px 120px; /* 内側の余白を調整 */
  font-size: 18px; /* フォントサイズ */
  font-weight: bold; /* フォントを太字に */
  text-align: center; /* テキストを中央揃え */
  color: #fff; /* テキストカラー */
  background-color: #0056b3; /* 背景色（青） */
  border: none; /* ボーダーを消去 */
  border-radius: 25px; /* 角丸の半径を指定 */
  text-decoration: none; /* テキストの下線を消去 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
}

.rounded-button:hover {
  background-color: #5472cd; /* ホバー時の背景色を変更 */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* ホバー時の影を強調 */
}

.rounded-button:active {
  background-color: #004085; /* 押下時の背景色を変更 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 押下時の影を小さく */
}

/* メディアクエリでレスポンシブ対応 */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5em;
    padding-top: 30px;
  }

  #container {
    padding: 10px;
  }

.rounded-button {
  padding: 10px 60px; /* 内側の余白を調整 */
  font-size: 14px; /* フォントサイズ */
  }

  .logo-img {
    max-width: 20%;
  }

  .point-img {
    max-width: 100%;
  }
}