@charset "UTF-8";
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
/* リセット
---------------------------------------------------------------------------- */
html ,body ,div ,span ,applet ,object ,iframe ,h1 ,h2 ,h3 ,h4 ,h5 ,h6 ,p ,blockquote ,pre ,a ,abbr ,acronym ,address ,big ,cite ,code ,del ,dfn ,em ,img ,ins ,kbd ,q ,s ,samp ,small ,strike ,strong ,sub ,sup ,tt ,var ,b ,u ,i ,center ,dl ,dt ,dd ,ol ,ul ,li ,fieldset ,form ,label ,legend ,table ,caption ,tbody ,tfoot ,thead ,tr ,th ,td ,article ,aside ,canvas ,details ,embed ,figure ,figcaption ,footer ,header ,hgroup ,menu ,nav ,output ,ruby ,section ,summary ,time ,mark ,audio ,video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
}
article ,aside ,details ,figcaption ,figure ,footer ,header ,hgroup ,menu ,nav ,section {
	display:block;
}
ol ,ul {
	list-style:none;
}
blockquote ,q {
	quotes:none;
}
blockquote:before ,blockquote:after ,q:before ,q:after {
	content:'';
	content:none;
}
img {
	max-width:100%;
	height:auto;
	line-height:0;
}


/* 基本スタイル
---------------------------------------------------------------------------- */
html {
	height:100%;
}
body {
	background:#fffbef;
	letter-spacing:1px;
	margin:0 !important;
	color:#666;
}

a#top { position: absolute; top: 0px; }
a { text-decoration: none; }
a.alpha { display: block; }
a.alpha:hover { filter: alpha(opacity=70); -moz-opacity:0.7; opacity:0.7; }


.txt-c{
	text-align:center;
}
.txt-r{
	text-align:right;
}
.txt-red{
	color:#ed1c24;
}
a img{
   -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out; 
}
a img:hover { filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8; }

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.waku{
	overflow: hidden;
	zoom: 1;
}

/* ハック
---------------------------------------------- */
/* letter-spacing hack */
@media screen {
  body {

  }

  br {
		letter-spacing:0;
  }
}
/* height100% hack */
body > #container {
	height:auto;
}

/* リンク
---------------------------------------------- */
a {
	color:#666;
	overflow:hidden;
	outline:none;
	text-decoration: underline;
	transition: all .3s;
	display:inline-block;
}
a:hover {
	color:#fbb03b;
	text-decoration: none;
}


/* その他
---------------------------------------------- */
.youtube iframe{
  width: 100%;
}

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
	margin-bottom:30px;
}
 
.video-container iframe,  
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.by-author{
	display:none;
}
.nocomments{
	display:none;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}

.zone-blue{
	background:url("../img/bg_04.gif");
}



/** FORM周り
===================================*/

input[type="text"],
input[type="submit"],
textarea{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


input[type="text"],
textarea {
	width:100%;
	outline: none;
	border: 1px solid #29a9e0;
	-webkit-transition: all .3s;
	transition: all .3s;
	width:100%;
	box-sizing:border-box;
	padding:10px;
	background:#fff;
	border-radius: 10px;        /* CSS3草案 */  
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 10px;   /* Firefox用 */  
	font-size:16px;
}
input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 4px #29a9e0;
	border: 1px solid #29a9e0;
	width:100%;
	box-sizing:border-box;
	padding:15px;
	background:#fff;
}


