@charset "UTF-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}
*{
	margin: 0;
	padding: 0;
}

/*リンク*/

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #D70C19;
	text-decoration: none;
}

/* すべてのブラウザーで、フォーカスの設定時およびホバー時の読みやすさを改善 : h5bp.com/h */
a:hover, a:active { outline: 0; }

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
/*ベースアイテム指定*/
#mainWrap {
	width: 95%;
	margin: 0 auto;
}
div.container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	clear: both;
}
.item {
	margin: 0 10;
	padding: 10px;
	background-color: #fff;
	border-radius: 3px;
	width: 220px;
	height: auto;
}
.item img {
	margin-bottom: 10px;
}

/* 見出し等指定 */

.largeTitle {
	font-size: 28px;
	font-weight: lighter;
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}
.midTitle {
	font-weight: lighter;
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	color: #333;
}
.textRight {
	font-size: 12px;
	margin-right: 2.5%;
	text-align: right;
}

.comment {
	margin-top: 3px;
	height: 15px;
	font-size: 10px;
	line-height: 15px;
	font-weight: lighter;
	color: #333;
}

.brank {
	width: 100%;
	margin-bottom: 30px;
	height: 30px;
	color: #fff;
	text-align: right;
}
.text {
	font-size: 12px;
	line-height: 1.5em;
	font-weight: lighter;
	color: #333;
}

/*コンテンツ指定*/
div.knowledgeTitle {
	width: 95%;
	max-width:270px;
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
}

h5.titleSub {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 35px;
	text-align: center;
	font-size: 14px;
	font-weight: lighter;
	line-height: 1.6em;
}

.boxWrap {
	width: 100%;
	max-width: 900px;
	min-height: 780px;
	margin: 0 auto;
}
.boxA { 
	margin: 0 10px;
	margin-bottom: 30px;
}

.last {
	margin-bottom: 20px;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
	/*481以上　見出し大きく*/
.bg1 {
	background-image: url(../images/knowledgeImg/bg_01.png);
	background-position: top right;
	background-repeat: no-repeat;
}

.bg2 {
	background-image: url(../images/knowledgeImg/bg_02.png);
	background-position: top left;
	background-repeat: no-repeat;
}

.bg3 {
	background-image: url(../images/knowledgeImg/bg_03.png);
	background-position: top right;
	background-repeat: no-repeat;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
/*ナレッジボックス内769以上変更点*/
div.knowledgeTitle {
	width: 90%;
	height: auto;
	max-width: 350px;
	margin: 0 auto;
	margin-bottom: 10px;
	text-align: center;
}
div.knowledgeTitle img {
	width: 350px;
	height: auto;
}
}
