/* -------------------------------------------------------------- 
   Sitemap page Css
-----------------------------------------------------------------
PC/Tablet
@media screen and (min-width: 768px){}
SmartPhone
@media screen and (max-width: 767px){}


【CSS MENU】 
1.0 - common
2.0 - SitemapFrame
	2.1 - pageTitle
	2.2 - linkList
*/

/* =========================================================
	1.0 - common
========================================================= */
.sitemap #contents{
		width:860px;
		font-size:14px;
}
	
/* ------------ ■ sphone ■------------ */
@media screen and (max-width: 767px){
	.sitemap #contents{
		width:100%;
	}
}
/* =========================================================
	2.0 - SitemapFrame
========================================================= */
/* ---------------------------------------------------------
	2.1 - pageTitle
--------------------------------------------------------- */
.sitemap h2{
	height:27px;
	text-indent:-99999px;
	background:url(../images/title-sitemap.png) center top no-repeat;
}

/* ---------------------------------------------------------
	2.2 - linkList
--------------------------------------------------------- */
.sitemap .sitemapFrame ul li {
	background:url(../../common/images/icon-triangle_pink.png) left center no-repeat;
	padding-left:14px;
	line-height:3.5;
}
.sitemap .sitemapFrame ul li a{
	color:#333;
}
.sitemap .sitemapFrame ul li span{
	font-size:12px;
}
/* ------------ ■ pc ■------------ */
@media screen and (min-width: 768px){
	.sitemap .sitemapFrame{
		width:681px;
		margin:30px auto 0 ;
	}
	.sitemap .sitemapFrame ul li a:hover{
		color:#888;
	}
	.sitemap .sitemapFrame ul{
		float:left;	
	}
	.sitemap .sitemapFrame ul.link01{
		border-right:1px dotted #ccc;	
		width:340px;
		padding-left:0;
	}
	.sitemap .sitemapFrame ul.link02{
		width:340px;
		padding-left:60px;
	}
}
/* ------------ ■ sphone ■------------ */
@media screen and (max-width: 767px){
	.sitemap .sitemapFrame{
		margin-top:10px;
	}
	.sitemap .sitemapFrame ul li {
		border-bottom:1px dotted #ccc;
		line-height:3;
	}
}