@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
---------------------------------------------- */
/*body header{
	background: url("../img/bg_img.jpg");
}
*/
html { font-size: 62.5%; }
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
		font-size: 14px;
		-webkit-background-size: 200%;
		     -o-background-size: 200%;
		        background-size: 200%;
	}
}


/* ----------------------------------------------
　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;
}

.ico_bluegreen {
	font-size: 1.0rem;
	display: inline-block;
	margin-right: 5px;
	background: #007B83;
	color: #fff;
	border-radius: 3px;
	padding: 3px;
	margin-bottom: 5px;
}
.ico_orange {
	font-size: 1.0rem;
	display: inline-block;
	margin-right: 5px;
	background: #FF6F00;
	color: #fff;
	border-radius: 3px;
	padding: 3px;
	margin-bottom: 5px;
}


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

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

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

.blNotice_box {
}
.blNotice {
	background-color: #fff;
 }

 @media screen and (min-width: 768px) {
	.blNotice_box {
		background: rgba(20,114,124,0.5);
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.blNotice {
		text-align: center;
		overflow: hidden;
		margin-bottom: 0;
	 }
 }
 @media screen and (max-width: 767px) {
	.blNotice {
		    margin: 20px 10px 0;
	 }
 }

 /*--- 横幅ブチヌキレイアウトのとき ----------*/
 @media screen and (min-width:768px) {
	 .course_full .course_full_contents {
		 width: 100%;
	 }
	 .course_full .container {
		 width: 1000px;
		 margin: 0 auto;
	 }
	 .course_full .container .contents {
		 padding: 20px;
		 margin-bottom: 50px;
	 }
	 .course_full #sNav {
		 display: none;
	 }
 }
 @media screen and (max-width:767px) {
	 .course_full .course_full_contents {
		width: 100%;
	}
	.course_full_contents__top {
		margin-top: 55px;
	}
	.course_full .container .contents {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.course_full #sNav {
		margin-top: 20px;
		margin-bottom: 50px;
	}
 }




/* ----------------------------------------------
　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; }
/* スマホのみのやつ */
@media screen and (max-width: 767px) {
	.sp_mgT0 {
		margin-top: 0!important;
	}
}


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

.bgBrown  { background-color: #956134 !important }


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

table th,
table td {
	border: 1px solid #dbceb3;
}


/* ----------------------------------------------
　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
---------------------------------------------- */
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 */
	display: inline-block;
	width: 48.7%;
}
ul.cv_area li:first-child {	/* PCのみnone */
	margin-right: 2%;
}
	}
