@charset "UTF-8";

@import "wrapper.css";
@import "form.css";
@import "contents.css";

/* CSS Document */

/* ===============
ページプロパティ
===============*/
body,div,pre,p,blockquote, 
form,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6, 
embed,object { 
	margin: 0;
	padding: 0;
	vertical-align: baseline; 
	font-size: 100.01%;
}

body {
background: url('../images/overlay.png'), linear-gradient(45deg, #d1c0a5, #c7b69b, #c1b196);
	font-family: 小塚ゴシック L, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 115%;
	line-height: 150%;
	color: #333;
	letter-spacing: 0.5px;
}

img {
	vertical-align:bottom
}

p {
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
}


/* ------------------
リンク関連
 ------------------ */ 
a:link {
	color: #cf6116;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
}

a:visited {
	text-decoration: none;
	color: #a8834e;
}

a:hover {
	text-decoration: underline;
	color: #ffad39;
}

a:active {
	text-decoration: none;
	color: #ffad39;
}

a img {
	border-style:none;
}

a img.linkimg {
    background:none!important;
}
 
a:hover img.linkimg{
    opacity:0.7;
    filter:alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    background:none!important;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
}

#letterpress a{
  position: relative;
  left: 1px;
  top: 2px;
  color: #cf6116;
  font-weight: bold;
  text-shadow: 1px 2px 1px #e4e4e4;
  text-decoration: none;
  -moz-transition: all 0.2s linear 0;
  -webkit-transition: all 0.2s linear 0;
}

#letterpress a:hover{
  left: 0px;
  top: 0px;
  color: #dd960f;
  text-shadow: 1px 2px 1px #ccc;
}

.letterpress a{
  position: relative;
  left: 1px;
  top: 2px;
  color: #cf6116;
  font-weight: bold;
  text-shadow: 1px 2px 1px #e4e4e4;
  text-decoration: none;
  -moz-transition: all 0.2s linear 0;
  -webkit-transition: all 0.2s linear 0;
}

.letterpress a:hover{
  left: 0px;
  top: 0px;
  color: #dd960f;
  text-shadow: 1px 2px 1px #ccc;
}



/* -------------------
フロート関連
------------------- */
.left {
	float: left;
}

.end {
	clear: both;
}

.clearfix:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;   
  visibility: hidden;  
}  
  
.clearfix { display: inline-table; }  
  
/* Hides from IE-mac \*/  
* html .clearfix { height: 1%; }  
.clearfix { display: block; }  
/* End hide from IE-mac */


/* ------------------
ハイライトのカラー
 ------------------ */ 
::selection {
	color: #fff;
	background-color: #FF9D00;
}

::-moz-selection {
	color: #fff;
	background: #FF9D00;
}


/* ------------------
角丸
 ------------------ */ 
.round{
    -moz-border-radius: 10px; /* Firefox用 */
    -webkit-border-radius: 10px; /* Safari,Google Chrome用 */
    border-radius: 10px; /* CSS3 */
}