@charset "utf-8";
/* ================= 目次 ======================

　1.  Body
　2.  reset.cssの追加分・レスポンシブ用imgの追加分
　3.  リンク・display:block or none;
　4.  フォント（font-size、color、font-weight、text-align、vertical-align）
　5.  レイアウト（container、block、float、column、hr）
　6.  パディング・マージン・横幅
　7.  背景（background、border）
　8.  リストスタイル
　9.  テーブル
　10. ロールオーバー
　11. clearfix

============================================= */

/* ----------------------------------------------
　1.  Body
---------------------------------------------- */

@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
		font-size: 14px;
	}
}


/* ----------------------------------------------
　3.  リンク・display:block or none;
---------------------------------------------- */

/*--- リンク ----------*/
a:hover {
	color: #bcb29e;
}

/*--- display ----------*/

.dNoPc {	/* PCのみnone */
	display: none;
}
@media screen and (max-width: 767px) {
.dNoPc {	/* PCのみnone */
	display: block;
}
.dNoMb {	/* MBのみnone */
	display: none !important;
}
}


/* ----------------------------------------------
　4.  フォント（font-size、color、font-weight、text-align）
---------------------------------------------- */

/*--- color ----------*/

.clrPink   { color: #EC727D !important; }
.clrBrown  { color: #956134 !important; }

/*--- font-family ----------*/

@font-face {
    font-family: 'marufont';
    src: url("../fonts/rounded-x-mplus-1c-medium.eot");
}
@font-face{
	font-family:'marufont'; /* 自由な名前 */
	src: url('../fonts/rounded-x-mplus-1c-medium.ttf') format('truetype'); /* iOS, Android用 */
}

.ftMaru {
	font-family: 'marufont',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.ftMincho {
	font-family: "Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

/*--- line-height ----------*/

.lh13 {
	line-height: 1.3;
}
.lh14 {
	line-height: 1.4;
}
.lh15 {
	line-height: 1.5;
}



/* ----------------------------------------------
　5.  レイアウト（contents、block、float、column、hr）
---------------------------------------------- */

/*--- float（画像のfloat） ----------*/

@media screen and (max-width: 767px) {
.flImgLPc,
.flImgRPc { width: auto;}
}




/* ----------------------------------------------
　6.  パディング・マージン・横幅
---------------------------------------------- */

.pdT0  { padding-top: 0px !important; }
.pdR0  { padding-right: 0px !important; }
.pdL0  { padding-left: 0px !important; }
.pdB0  { padding-bottom: 0px !important; }
.pdTB0  { padding-top: 0px !important; padding-bottom: 0px !important; }
.pdLR0  { padding-left: 0px !important; padding-right: 0px !important; }
.pdA0  { padding: 0px !important; }
.pdA2  { padding: 2px !important; }

/* ----------------------------------------------
　7.  背景（background、border）
---------------------------------------------- */

.bgBrown  { background-color: #956134 !important }
.bgGray {
    background: #eee none repeat scroll 0 0 !important;
    border-radius: 3px;
    color: #333;
    padding: 10px;
}


/* ----------------------------------------------
　9.  テーブル
---------------------------------------------- */

table th,
table td {
}


/* ----------------------------------------------
　10. ロールオーバー
---------------------------------------------- */

a:hover > img.ro {
}


/* ----------------------------------------------
　11. clearfix
---------------------------------------------- */

.clear {
	clear: both;
	_zoom: 1;
	overflow: hidden;
	font-size: inherit;
	line-height: inherit;
}

.hidden {
	overflow: hidden;
}


/* ----------------------------------------------
　12. event
---------------------------------------------- */
img{
	-webkit-backface-visibility: hidden;
}
ul.cv_area{
	padding-top: 20px;
}
ul.cv_area li{
	text-align: center;
	margin-bottom: 20px;
}
ul.cv_area li:last-child{
	margin-bottom: 0px;
}
ul.cv_area li a:hover img{
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
}

ul.cv_area li a img {
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
-ms-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}

@media screen and (min-width: 767px) {
ul.cv_area li {	/* PCのみnone */
	float:left;
	width: 48%;
}
ul.cv_area li:first-child {	/* PCのみnone */
	margin-right: 2%;
}
