@charset "EUC-JP";
/*@import url();*/
 
html {
    overflow: auto;
}
body {
    width: 100%;
    overflow: hidden;
    font-size: 62.5%;
    font-family: "Ubuntu", "Noto Sans Japanese", sans-serif;
    /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, sans-serif;*/
    background: #ffffff;
    color: #303030;
    padding: 0;
    margin: 0;
}
 
a {
    text-decoration: none;
}
/*
a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    transition: all .3s;
}
*/
.clearfix {width:100%;}
.clearfix:after {
    content: ""; 
    display: block; 
    clear: both;
}


/*==================================================
wrapper
==================================================*/
#wrapper {
    width: 300px;
    background: #f1f1f1;
    padding: 25px 0;
    margin: 0 auto 20px;
}

.title {
    width: 250px;
    font-size: 20px;
    color: #0685AE;
    font-weight: normal;
    /*background: #0685AE;*/
    /*border-top: 3px dotted #0685AE;*/
    display: block;
    padding: 10px 0;
    margin: 0 auto;
    text-align: center;
}


/*=============================
SEARCH
=============================*/
.search{
	width: 100%;
	height: 200px;
    background: #f1f1f1;
	padding: 0;
    margin: 0 auto;
    text-align: center;
	zoom: 1;
}
.search form input[type="text"]{
	display: inline-block;
	width: 20%;
    height: 20px;
    font-size: 11px;
    border-radius: 5px;
    border-style: none;
	margin: 15px auto -1px;
    vertical-align: bottom;
	zoom: 1;
}
.search form input[type="search"]{
	display: inline-block;
	width: 70%;
    height: 25px;
    font-size: 11px;
    text-indent: 5px;
    border-radius: 5px;
    border-style: none;
	margin: 20px auto 0 2px;
	zoom: 1;
}
.search form input[type="submit"]{
	display: inline-block;
	width: 70%;
	height: 25px;
    font-size: 11px;
    color: #ffffff;
	background: #999999;
    border-radius: 5px;
	border-style: none;
	margin: 20px auto 0;
    cursor: pointer;
	zoom: 1;
}
.search form input{
	margin: 20px auto 0;
}


/*=============================
CATEGORY
=============================*/
.category {
    width: 100%;
	/*height: 2600px;*/
    background: #f1f1f1;
	padding: 0;
    margin: 30px auto 0;
    text-align: center;
}
.list {
    display: block;
    width: 250px;
    margin: 0 auto 20px;
}
.list a h3 {
    font-size: 15px;
    color: #303030;
    font-weight: bold;
    text-indent: 0px;
    border-bottom: 2px solid #303030;
    padding: 15px 0 10px;
    margin: 0 auto;
    text-align: left;
}
.list a h3:hover {
    color: #6eb5cc;
    transition: all .3s;
}

.sublist {
    margin-bottom: 20px;
}
.sublist a p {
    font-size: 13px;
    color: #303030;
    font-weight: normal;
    text-indent: 0px;
    border-bottom: 1px dotted #303030;
    padding: 15px 0;
    margin: 0 auto;
    text-align: left;
}
.sublist a p span {
    float: right;
    margin-right: 5px;
}
.sublist a p:hover {
    color: #6eb5cc;
    transition: all .3s;
}


/*=============================
CALENDAR
=============================*/
.calendar {
    width: 250px;
	height: 440px;
    background: #ffffff;
	padding: 10px 0;
    margin: 20px auto 0;
    text-align: center;
}
.holiday {
    text-indent: 30px;
}


/*==================================================
banner area
==================================================*/
#bn_wrapper {
    width: 300px;
    background: #ffffff;
    padding: 0;
    margin: 0 auto 20px;
}
/*
.bn_area {
    display: block;
    width: 100%;
    height: auto;
    background: #f1f1f1;
    border-radius: 0px;
    padding-bottom: 10px;
    margin: 0 auto 20px;
}
.bn_area img {
    width: 280px;
    border-radius: 8px;
    margin: 10px;
}
.bn_area p {
    font-size: 13px;
    color: #303030;
    font-weight: normal;
    padding: 0 10px;
    margin: 0 auto 10px;
    text-align: center;
}
.bn_area:hover {
    background: #b3d4de;
    transition: all .3s;
}
*/


figure {
	position: relative;
	overflow: hidden;
	width: 300px;
    margin: 0 auto 20px;
}
figure a img {
    width: 300px;
}
figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
figcaption h4,
figcaption p {
	position: absolute;
	left: -100%;
	width: 260px;
    color: #ffffff;
    font-weight: normal;
    line-height: 1.5;
	-webkit-transition: .3s;
	transition: .3s;
}
figcaption h4 {
    font-size: 14px;
	top: 30px;
}
figcaption p {
    font-size: 12px;
	top: 85px;
}
figure:hover figcaption {
	opacity: 1;
}
figure:hover figcaption h4,
figure:hover figcaption p {
	left: 20px;
}
figure:hover figcaption h4 {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
figure:hover figcaption p {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}



