@charset "shift_jis";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] フッターブロック内に関する指定
[5] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* 全体的なリンク */
/*
a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }
*/
a:link { color: #00f; }
a:visited { color: #90f; }
a:hover { color: #f00; }
a:active { color: #f00; }


/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */

body {
  font-size: 95%;
  font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background: url(img/007.jpg) no-repeat 0 0 fixed;
}

#wrapper {
  width: 860px;
  margin: 100px auto 0;
}

#globalnavi {
  margin-bottom: 20px;
  border-bottom: 20px solid #690;
}

#contents {
  padding: 0 30px 100px;
  background: url(img/bg-contents.jpg) no-repeat 0 100%;
}

#footer {
  height: 120px;
  padding-top: 40px;
  background: url(img/bg-footer.jpg) no-repeat 0 0;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* -- ロゴ -- */
.logo {
  font-size: 200%;
  font-weight: bold;
  text-align: right;
  margin-bottom: 0.5em;
  color: #ffa500;
}

.logo a {
	text-decoration: none;
/*  color: #123;*/
	color: #ffa500;
}

.logo a:hover {
	text-decoration: underline;
/*  color: #f00;*/
	color:#000;
}

/* -- ページの概要 -- */
.description {
  text-align: right;
  margin-bottom: 1em;
}

#globalnavi ul {
  list-style-type: none;
  margin-bottom: 5px;
  border-left: 1px solid #060;
}

#globalnavi li {
  display: inline;
  padding: 0 0.5em;
  border-right: 1px solid #060;
}

#globalnavi li a {
  text-decoration: none;
  color: #360;
}

#globalnavi li a:hover {
  text-decoration: underline;
  color: #f00;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* -- 見出し -- */
h1 {
  font-size: 180%;
  font-weight: normal;
  margin-bottom: 2em;
  color: #360;
  border-bottom: 1px solid #360;
}

h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 1em;
  padding: 5px 0 5px 15px;
  background: url(img/bg-h.gif) no-repeat 0 50%;
  border-bottom: 1px dotted #336600;
}

h3,h4,h5,h6 { margin-top: 4em; }

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 1em;
}

p.kuhaku { 
  font-size: 160%;
  font-weight:bold; 
  color: #45a004;
  margin: 25px; 
}
p.telnum {
font-family:'Lucida Grande','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  font-size: 160%;
  font-weight:bold; 
  color: #45a004;
  margin: 25px; 
}

/* -------------------------------------------------------------
   [4] フッターブロック内に関する指定 */

#footer p {
  text-align: center;
  padding-top: 20px;
  color: #111;
}

/* -------------------------------------------------------------
   [5] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: left;
  margin: 0;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #eee;
}
/*
.button {
background: #5b9507 ;
background: -moz-linear-gradient(top, #a3ea3f, #5b9507);
background: -webkit-gradient(linear, left top, left bottom, from(#a3ea3f), to(#5b9507));
border: 1px solid #487606;
border-radius: 28px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 0 1px #fff;
color: #fff;
display: inline-block;
font-family: "Jun 501", sans-serif;
font-size: 26px;
height: 70px;
line-height: 56px;
overflow: hidden;
text-align: center;
text-decoration: none;
text-shadow: 0 -1px 1px #487606;
width: 250px;
}

.button_inner {
  display: block;
  height: 56px;
  line-height: 56px;
  opacity: 0.9;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.button.hover .button_inner,
.button:hover .button_inner{
  opacity: 1;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
*/
a.btn {
display:block;
width:300px;
line-height:56px;
border: 1px solid #487606;
border-radius: 28px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 0 1px #fff;
color: #fff;
font-size: 26px;
text-shadow: 0 -1px 1px #487606;
text-decoration: none;
-moz-transition:all 0.3s ease-out;
-ms-transition:all 0.3s ease-out;
-webkit-transition:all 0.3s ease-out;
transition:all 0.3s ease-out;
background:#5b9507;
/*background: -moz-linear-gradient(top, #a3ea3f, #5b9507);
background: -webkit-gradient(linear, left top, left bottom, from(#a3ea3f), to(#5b9507));*/
}
a.btn:hover {
/*background: -moz-linear-gradient(top, #d61717, #b20a0a);
background: -webkit-gradient(linear, left top, left bottom, from(#d61717), to(#b20a0a));*/
border: 1px solid #820716;
border-radius: 28px;
background:#d61717;
color:#fff;
}

