@charset "utf-8";
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
}
#wrapper {
  width: 960px;
  margin-right: auto;
  margin-left: auto;
  background: #FFFFFF;
  border: 1px solid #339900;
}
#header {
  padding: 20px;
  background-image: linear-gradient(0deg, #ffffff, #a2c952);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
h1 {
  height: 50px;
  font-size: 30px;
  letter-spacing: 0.3em;
  padding-top: 20px;
  font-weight: bold;
}
h2 {
  height: 50px;
  font-size: 22px;
  letter-spacing: 0.05em;
  padding-top: 20px;
  font-weight: bold;
}
h3 {}
#main {
  width: 920px;
  margin: 20px;
}
#main p {
  line-height: 150%;
  margin-left: 25px;
}
#footer {
  height: 150px;
  width: 960px;
  background: #A3C953;
}
#footer p {
  text-align: right;
  padding-top: 10px;
  padding-right: 30px;
  line-height: 150%;
}
.logo {
  margin-bottom: 50px;
}
.qr {}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.text_attention01 {
  color: #B30B00;
}
.btn_div {
  width: 450px;
}
.btn {
  display: block; /* インライン要素をブロック化 */
  width: calc(100% - 40px); /* 親要素幅 - パディング分 */
  margin: 30px auto; /* 上下中央揃え */
  padding: 20px 20px; /* 内側の余白を設定 */
  border: solid 2px #F78D51;
  background-image: linear-gradient(0deg, #ff7209, #fbd5b8 50%);
  text-align: center;
  text-decoration: none; /* 下線を削除 */
  border-radius: 30px; /* 角を丸くする */
  cursor: pointer; /* ポインター表示 */
}
.btn:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* 影を追加 */
  transition: box-shadow 0.3s ease;
}

/*.download {
  margin-top: 50px;
  margin-bottom: 50px;
}*/
.download li {
  margin-top: 20px;
  margin-left: 40px;
  list-style: circle;
}
.table_bottom_border {
  margin-left: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.table_bottom_border tr {
  border-bottom: 1px solid #999;
  line-height: 150%;
}
.table_bottom_border th {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 180px;
  text-align: left;
  letter-spacing: 0.2em;
}
.table_bottom_border td {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
}
.table_bottom_border tr:last-child {
  border-bottom: none;
}
.f_left {
  float: left;
}
.img_qr {
  padding: 2px;
  border: 1px solid #CCC;
  margin-top: 30px;
  margin-left: 30px;
}
/* ブラウザのスクロールバー表示の違いを解決する
------------------------------------------------------------*/
html {
  overflow: scroll;
  overflow: -moz-scrollabars-vertical;
  overflow-x: scroll;
}
/* clearfix
------------------------------------------------------------*/
.clear_both {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.dummy {
  clear: both;
}