@charset "utf-8";

/*-------------------------------------

共通／全体　用

------------------------------------*/



/*------------------------------------
リセットCSS html5reset-1.6.1.cssへの追記分　参考 http://www.html5-memo.com/first-html5/html5-002/
------------------------------------*/
/* リスト */
ol, ul {
	list-style: none;
}

/* 画像を縦に並べたときに余白を出さない */
img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}

/* アキとボーダー
html, body, div, span, h1, h2, h3, p, a, img,
dl, dt, dd, ul, li, form, table, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
} */



/*------------------------------------
iOS対応
------------------------------------*/
body {
	-webkit-text-size-adjust: 100%;/* iOSで文字のサイズ（というか比率）を固定化する用 */
}



/*------------------------------------
文字のベース
------------------------------------*/
body {
	font-size: 100%;/* ブラウザの基本フォントサイズ16pxを明示 */
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	color: #333;
}
#wrapper {
	/* font-size: 88%;基本文字サイズ【14px】をここで指定 全ての文字サイズはここが基準となる */
	font-size: 94%;/* 基本文字サイズ【15px】をここで指定 全ての文字サイズはここが基準となる */
	line-height: 1.8;
}



/*------------------------------------
ベースのレイアウトと装飾
------------------------------------*/
html,body {
	height: 100%;/* #wrapperのmin-heightに対して必要 */
}

body {
	background: url(../img/common/bg-paper.jpg);
}

#wrapper {
	width: 100%;
	min-height: 100%;/* 中身が少なくても高さ100%にする（html,bodyにheight: 100%;の指定が必要） */
	background: url(../img/common/bg-dot-light.png);/* ドット背景-薄 */
}



/*------------------------------------
コンテンツ内：見出しの基本設定
------------------------------------*/
div.contents h3 {
	font-weight: bold;
	font-size: 107%;/* 16px */
	margin-bottom: 15px;
}



/*------------------------------------
コンテンツ内：段落の基本設定
------------------------------------*/
div.contents p,
div.contents address {
	margin-bottom: 25px;
	margin-left: 20px;
}

/* h2見出直後のp */
div.contents h2:first-child + p {
	margin-bottom: 30px;
	margin-left: 0;
}

/* h2見出直後のpの直後にsectionがある場合 */
div.contents h2:first-child + p + section {
	margin-top: 30px;
}

/* 小文字 */
.smalltxt {
	font-size: 87%;/* 13px */
	display: inline-block;
	line-height: 1.6;/* これ無いとspanに設定したときに行間が親要素に依存する */
}

/* 小文字 */
.smalltxt-more {
	/* font-size: 80%;12px */
	font-size: 74%;/* 11px */
	display: inline-block;
	line-height: 1.4;/* これ無いとspanに設定したときに行間が親要素に依存する */
}

/* colorbox内のtitle用 */
#cboxTitle {
	line-height: 1.6;
}

/* colorbox内のtitle用 説明 */
#cboxTitle .notetxt {
	display: block;
	font-size: 80%;/* 12px */
	margin-top: 1px;
}



/*------------------------------------
コンテンツ内：リンクの基本設定
------------------------------------*/
a {
	text-decoration: none;
	border-bottom: 1px #F60 dotted;/* #333 */
	color: #F60;/* #333 */
	padding: 1px;
	transition: 0.50s;
}
a:hover {
	color: #FC6;/* #F90 */
	border-bottom: 1px #FC6 dotted;/* #F90 */
	transition: 0.50s;
}

/* colorbox内のtitle用 */
#cboxTitle a {
	text-decoration: none;
	border-bottom: 1px #F90 dotted;
	color: #F90;
	padding: 1px;
	transition: 0.50s;
}
#cboxTitle a:hover {
	color: #F60;
	border-bottom: 1px #F60 dotted;
	transition: 0.50s;
}

/* 別窓リンクアイコン */
.blanklink {
	background: url(../img/common/blanklinkicon.png) no-repeat right 40%;
	padding-right: 16px;
}

/* 別窓リンクアイコン-白 */
.blanklink-w {
	background: url(../img/common/blanklinkicon-w.png) no-repeat right 40%;
	padding-right: 16px;
}



/*------------------------------------
ヘッダー大：スライド以外（スライドの詳細は下記）
------------------------------------*/
/* 全体
--------------------------*/
#header-wrapper {
	position: relative;/* #header-filterのレイアウト用 */
	background: #FFF;
}


/* 背景フィルター
--------------------------*/
#header-wrapper #header-filter {
	position: absolute;/* #header-wrapper内でのレイアウト用 */
	top: 0;
	right: 0;
	background-image: url(../img/common/header-filter-dot.png);/* 白ドット背景 */
	height: 100%;
	width: 100%;
}


/* シャドー
--------------------------*/
#header-wrapper #header-filter #header {
	position: relative;/* headerのレイアウト用 */
	height: 100%;
	width: 100%;
	background: url(../img/common/shadow-upper.png) repeat-x bottom center;
}


/* 内容
--------------------------*/
#header-wrapper #header-filter #header header {
	position: absolute;/* #header内でのレイアウト用 */
	text-align: center;/* インライン要素をセンター揃えにする為に必要 */
	width: 1000px;/* スライドの拡大縮小で内容の崩れ防止用 */
	/* このボックス自体をセンターにする設定 */
		top: 50%;
		left: 50%;
		margin-top: -220px;/* 内容のheight約440px */
		margin-left: -500px;/* 内容のwidthは1000px */
	/*background: #F00;*/
}

/* ロゴ CSSスプライト改善版 */
#header-wrapper #header-filter #header header h1 span.logo {
	display: block;
	margin: 0 auto;
	/* CSSスプライト改善版 Begin// */
	text-indent: 100%;/* ボックスからはみ出させる指定 */
	white-space: nowrap;/* はみ出ても改行しない指定 white-space:nowrap;はdisplay: block;でもいけるらしい */
	overflow: hidden;/* はみ出した部分は表示させない指定 */
	width: 420px;
	height: 200px;
	background: url(../img/common/logo.png) no-repeat 50% 50%;
	/* //CSSスプライト改善版 End */
}

/* ロゴ 印刷時用（背景が印刷されなくても出るように） */
#header-wrapper #header-filter #header header h1 span.logo-print {
	display: none;
}

/* タグライン */
#header-wrapper #header-filter #header header h1 span.tagline {
	display: inline-block;
	font-weight: normal;
	/* font-size: 107%;16px */
	/* font-size: 114%;17px */
	font-size: 120%;/* 18px */
	margin-top: 36px;
	margin-bottom: 39px;
	padding: 8px 12px;
	/*background: rgba(255,255,255,0.75);*/
	/*border-radius: 10px;*/
	text-shadow:
		0 -3px 0px rgba(255,255,255,0.9),/* 横 縦 ぼかし 色 ※「,」区切りで複数指定可能 */
		3px 0 0px rgba(255,255,255,0.9),
		0 3px 0px rgba(255,255,255,0.9),
		-3px 0 0px rgba(255,255,255,0.9);
	/*font-weight: bold;*/
}


/* グローバルナビ
--------------------------*/
#header-wrapper #header-filter #header header nav.g-nav ul li {
	display: inline-block;
	margin-left: 20px;
}
#header-wrapper #header-filter #header header nav.g-nav ul li:first-child {
	margin-left: 0;
}
#header-wrapper #header-filter #header header nav.g-nav ul li a {
	display: block;
	border-bottom: none;/* 上部で設定のaのリセット用 */
	padding: 15px 18px;/* リンクの反応範囲の拡張 */
	background: none;/* 上部で設定のaのリセット用 */
	color: #333;/* 上部で設定のaのリセット用 */
	background: rgba(255,255,255,0.75);
	border-radius: 12px;
	transition: 0.50s;
	line-height: 1;/* これないと下が空いちゃう */
}
#header-wrapper #header-filter #header header nav.g-nav ul li a img {
	transition: 0.50s;
	opacity: 0.7;
}

#header-wrapper #header-filter #header header nav.g-nav ul li a.profile:hover {
	background: rgba(243,151,151,0.5);
}
#header-wrapper #header-filter #header header nav.g-nav ul li a.service:hover {
	background: rgba(156,195,109,0.5);
}
#header-wrapper #header-filter #header header nav.g-nav ul li a.portfolio:hover {
	background: rgba(244,160,92,0.5);
}
#header-wrapper #header-filter #header header nav.g-nav ul li a.contact:hover {
	background: rgba(121,202,212,0.5);
}
#header-wrapper #header-filter #header header nav.g-nav ul li a.information:hover {
	background: rgba(233,223,106,0.5);
}
#header-wrapper #header-filter #header header nav.g-nav ul li a:hover img {
	opacity: 1.0;
}


/* ↓未使用 */
/* フィーチャー下のコピーライト
--------------------------*/
#header-copyright small {
	position: absolute;/* #header内でのレイアウト用 */
	bottom: 16px;
	left: 0;
	display: block;
	width: 100%;
	/*margin: 0 auto;*/
	/* font-size: 74%;11px */
	font-size: 67%;/* 10px */
	text-align: center;
	line-height: 1;
	color: rgba(0,0,0,0.8);
}
/* ↑未使用 */


/*ヘッダー大用　SNSリンクナビ
--------------------------*/
#header .nav-sns {
	line-height: 1;
	padding-top: 20px;
	margin: auto 0;
}
#header .nav-sns ul li:first-of-type {
	margin-right: 20px;
}
#header .nav-sns ul li a {
	border-bottom: none;
	color: #333;
}
#header .nav-sns ul li a:hover {
	color: #F90;
}

#header .nav-sns ul li .fb-icon,
#header .nav-sns ul li .tw-icon {
	display: inline-block;
	color: #FFF;
	background: rgba(0,0,0,0.3);
	height: 15px;
	width: 15px;
	border-radius: 2px;
	line-height: 15px;
	text-align: center;
	margin-right: 4px;
}
#header .nav-sns ul li .fb-icon {
	line-height: 16px;
}



/*------------------------------------
ヘッダー大：スライド
------------------------------------*/
/* 画像の制御
--------------------------*/
#header-wrapper #feature .slider div img {
	margin: 0 auto;
	width: 100%;
	height: auto;/* heightをautoにすることでwidthの大きさに準じて比率を保ったまま拡大縮小可能 */
	min-height: 500px;
	min-width: 1000px;
}


/* ☆bxsliderの上書き制御
--------------------------*/
/* 上記で指定しているaタグの初期か */
.bx-wrapper a {
	border: none;
	padding: 0;
}


/* bxsliderの囲みとシャドーを外す */
.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border:none;
	left: 0;
	background-color:transparent;
}

/* bxsliderの大枠の制御 */
.bx-wrapper {
	margin-bottom: 30px;
}

/* bxsliderのデフォルトのページャーの位置の制御 */
.bx-wrapper .bx-default-pager .bx-pager-item/*.,bx-pager .bx-pager-item*/{
	margin-top: -20px;
}

/* bxsliderのデフォルトのページャーの装飾の制御 */
.bx-wrapper .bx-pager.bx-default-pager a {
	background: #BBB;/*通常時の色*/
	/*text-indent: -9999px;*/
	/*display: block;*/
	width: 6px;
	height: 6px;
	/*margin: 0 5px;*/
	/*outline: 0;*/
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	opacity: 0.8; 
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #555;/*アクティブとオンマウスの色*/
}

/* bxsliderのPrevとNextボタンの変更 */
.bx-controls-direction a.bx-prev {
	left: 10px;
	background: url(../img/bxslider/prev-arrow.png) no-repeat;/* Prev用画像 */
	width: 33px;/*使用画像に応じて指定*/
	height: 58px;/*使用画像に応じて指定*/
	opacity: 0.5;
	transition: 0.25s;
}
.bx-controls-direction a.bx-next {
	right: 10px;
	background: url(../img/bxslider/next-arrow.png) no-repeat;/* Next用画像 */
	width: 33px;/*使用画像に応じて指定*/
	height: 58px;/*使用画像に応じて指定*/
	opacity: 0.5;
	transition: 0.25s;
}
.bx-controls-direction a:hover.bx-prev {
	background: url(../img/bxslider/prev-arrow.png) no-repeat;/* Prev用画像 この画像は指定しなくても併記だが… */
	opacity: 1.0;
}
.bx-controls-direction a:hover.bx-next {
	background: url(../img/bxslider/next-arrow.png) no-repeat;/* Next用画像 この画像を指定する必要がある */
	opacity: 1.0;
}



/*
ヘッダー小：非表示
------------------------------------*/
/* 非表示
--------------------------*/
#change-header #header-s-wrapper,
#change-header #header-s-wrapper #header-s-filter {
	display: none;
}



/*------------------------------------
ヘッダー小：表示（jQueryのwaypointで.changeを付加して表示させている）
------------------------------------*/
/* 全体
--------------------------*/
#change-header {/* ヘッダー小の出現位置の制御用 */
	margin-top: -100px;
	padding-top: 100px;
}

#change-header #header-s-wrapper.change {
	display: block;
	position: fixed;
	z-index: 1;/* ポートフォリオの画像より上にしている */
	top: 0;
	left: 0;
	height: 106px;/* heightの合計 */
	width: 100%;
	background: url(../img/common/shadow-lower.png) repeat-x center bottom;/* シャドー */
	opacity: 0.95;
}


/* 背景フィルター
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter {
	display: block;
	background: url(../img/common/bg-paper.jpg);/* ペーパー背景 */
	height: 100px;/* ペーパー背景の表示範囲 *//* heightの合計は100px＋シャドー6px＝合計106px */
}


/* グラデーション
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter #header-s {
	background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.0));/* グラデーション */
	height: 100px;/* 背景フィルター のheightと合わせる *//* heightの合計は100px＋シャドー6px＝合計106px */
	width: 100%;
}


/* ヘッダーの内容
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter #header-s header {
	position: relative;/* headerのレイアウト用 */
	width: 1000px;/* スライドの拡大縮小で内容の崩れ防止用 */
	text-align: center;/* インライン要素をセンター揃えにする為に必要 */
	padding-top: 10px;
	margin: 0 auto;
}


/* ロゴ */
#change-header #header-s-wrapper.change #header-s-filter #header-s header p span.logo a {
	display: block;
	margin: 0 auto;
	/* CSSスプライト改善版 Begin// */
	text-indent: 100%;/* ボックスからはみ出させる指定 */
	white-space: nowrap;/* はみ出ても改行しない指定 white-space:nowrap;はdisplay: block;でもいけるらしい */
	overflow: hidden;/* はみ出した部分は表示させない指定 */
	width: 130px;
	height: 42px;
	background: url(../img/common/logo-s.png) no-repeat;
	/* //CSSスプライト改善版 End */
	border-bottom: none;/* 上部で設定のaのリセット用 */
	padding: 0;/* 上部で設定のaのリセット用 */
}


/* ↓未使用 */
/* タグライン */
#change-header #header-s-wrapper.change #header-s-filter #header-s header p span.tagline {
	display: block;
	font-weight: normal;
	/* font-size: 87%;13px */
	font-size: 80%;/* 12px */
	line-height: 1;
	padding-top: 8px;
	opacity: 0.8;
}
/* ↑未使用 */


/*グローバルナビ：通常時
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul {
	margin-top: -6px;/* ナビの選択範囲を上に広げる為に必要 */
	overflow: auto;
	display: inline-block;/* text-align: center;の影響を受けたいため挿入 */
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li {
	display: block;
	float: left;
	margin-left: 5px;
}
 #change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li:first-child {
	margin-left: 0;
} 
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a {
	display: block;
	border-bottom: none;/* 上部で設定のaのリセット用 */
	padding: 21px 20px 30px 20px;/* リンクの反応範囲の拡張 */
	background: none;/* 上部で設定のaのリセット用 */
	color: #333;/* 上部で設定のaのリセット用 */
	line-height: 1;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a img {
	padding-bottom: 8px;/* hoverの際の下線までの間隔確保 */
	opacity: 0.6;
	border-bottom: 5px rgba(51,51,51,0) solid;/* #333 */
	transition: 0.25s;
}


/*グローバルナビ：オンマウス時
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.index:hover img {
	opacity: 1;
	border-bottom: 5px rgba(51,51,51,0.10) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.profile:hover img {
	opacity: 1;
	border-bottom: 5px rgba(243,151,151,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.service:hover img {
	opacity: 1;
	border-bottom: 5px rgba(156,195,109,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.portfolio:hover img {
	opacity: 1;
	border-bottom: 5px rgba(244,160,92,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.contact:hover img {
	opacity: 1;
	border-bottom: 5px rgba(121,202,212,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li a.information:hover img {
	opacity: 1;
	border-bottom: 5px rgba(233,223,106,0.60) solid;
}


/*グローバルナビ：現在地表示 function-current.jsで.currentを付加
--------------------------*/
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li.current a.profile img {
	opacity: 1;
	border-bottom: 5px rgba(243,151,151,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li.current a.service img {
	opacity: 1;
	border-bottom: 5px rgba(156,195,109,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li.current a.portfolio img {
	opacity: 1;
	border-bottom: 5px rgba(244,160,92,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li.current a.contact img {
	opacity: 1;
	border-bottom: 5px rgba(121,202,212,0.40) solid;
}
#change-header #header-s-wrapper.change #header-s-filter #header-s header nav.g-nav ul li.current a.information img {
	opacity: 1;
	border-bottom: 5px rgba(233,223,106,0.60) solid;
}


/*ヘッダー小用　SNSリンクナビ
--------------------------*/
#header-s .nav-sns {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -450px;
	width: 900px;
	text-align: right;
	line-height: 1;
	padding: 5px 0;
	opacity: 0.95;
}
#header-s .nav-sns ul li {
	margin-left: 8px;
}
#header-s .nav-sns ul li a {
	border-bottom: none;
	color: #333;
}
#header-s .nav-sns ul li a:hover {
	color: #F90;
}
#header-s .nav-sns ul li .fb-icon,
#header-s .nav-sns ul li .tw-icon {
	display: inline-block;
	color: #FFF;
	background: rgba(0,0,0,0.3);
	height: 14px;
	width: 14px;
	border-radius: 2px;
	line-height: 14px;
	text-align: center;
	margin-right: 4px;
}
#header-s .nav-sns ul li .fb-icon {
	line-height: 15px;
}



/*------------------------------------
コンテンツ：共通
------------------------------------*/
/* コンテンツ間の間隔 */
div.contents-box {
	padding-top: 150px;
}

/* ドット背景 */
div.contents-bg01 {
	margin: 0 auto;/* 幅指定とmargin:autoで全体が中央になる */
	background: url(../img/common/bg-dot.png);/* ドット背景 */
	padding: 1px;
	padding-bottom: 2px;
	width: 898px;/* 左右幅の合計は900px */
	height: 100%;
}

/* 格子背景 */
div.contents-bg02 {
	background: url(../img/common/bg-grid.jpg) 50% -1px;/* 格子背景 */
	width: 898px;
	height: 100%;
}

/* セロテープ背景の位置制御のために必要 */
div.contents section:first-child {
	min-height: 180px;/* 内容が少なくてもテープを表示させるため */
	margin: -101px -101px 0 -101px;/* この指定でセロテープ背景を左右幅898pxの中から左右それぞれ101pxづつはみ出させて左右幅1000pxとしている */
	padding: 101px 101px 0 101px;/* この指定で上記ではみ出させた分を余白のみ元に戻している */
}

/* 内容の表示範囲=798px */
div.contents {
	padding-top: 50px;/* ←これもセロテープ背景の位置制御のために必要 */
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
}

/* h2見出し */
div.contents h2:first-child {
	text-align: center;
	height: 110px;/* このheightで、h2画像の高さがまちまちでも下の内容の位置を統一している */
}
div.contents h2:first-child a {
	border: none;
}



/*------------------------------------
コンテンツ：プロフィール
------------------------------------*/
/* 背景 */
#profile div.contents {
	background: url(../img/common/contents-illust-profile.png) 670px 55px no-repeat;/*イラスト背景*/
}
#profile div.contents section:first-child {
	background: url(../img/common/contents-bg-tape01.png) 50% top no-repeat;/*セロテープ背景*/
}

/* 定義リスト */
#profile div.contents dl {
	margin-bottom: 20px;
}
#profile div.contents dl dt {
	font-weight: bold;
	font-size: 107%;/* 16px */
	margin-bottom: 10px;
}
#profile div.contents dl dd {
	margin-left: 20px;
}
#profile div.contents dl dd dl {
	margin-bottom: 10px;
}
#profile div.contents dl dd dl dt {
	font-weight: normal;
	font-size: 100%;/* 15px */
	margin-bottom: 0;
}
#profile div.contents dl dd dl dd {
	font-size: 87%;/* 13px */
	width: 600px;
	margin-left: 0;
}

/* 最後の要素 */
#profile div.contents dl:last-child {
	margin-bottom: 0;
}



/*------------------------------------
コンテンツ：サービス
------------------------------------*/
/* 背景 */
#service div.contents {
	background: url(../img/common/contents-illust-service.png) 740px 160px no-repeat;/*イラスト背景*/
}
#service div.contents section:first-child {
	background: url(../img/common/contents-bg-tape02.png) 50% top no-repeat;/*セロテープ背景*/
}
/* Pの幅 */
#service div.contents section p {
	width: 670px;
}
/* 最後の要素 */
#service div.contents section section:last-of-type p:last-of-type{
	margin-bottom: 0;
}



/*------------------------------------
コンテンツ：ポートフォリオ
------------------------------------*/
/* 背景 */
#portfolio div.contents {
	background: url(../img/common/contents-illust-portfolio.png) 720px 30px no-repeat;/*イラスト背景*/
}
#portfolio div.contents section:first-child {
	background: url(../img/common/contents-bg-tape03.png) 50% top no-repeat;/*セロテープ背景*/
}

/* 最後の要素
#portfolio div.contents section p:last-of-type {
	margin-bottom: 0;
	margin-left: 0; インデントのリセット
} */

/* ローカルナビ */
#portfolio div.contents div.lnav {
	text-align: center;
	margin-top: -10px;
	margin-bottom: 10px;
}
#portfolio div.contents div.lnav ul {
	overflow: hidden;
	display: inline-block;
}
#portfolio div.contents div.lnav ul li {
	float: left;
	border-right: 3px solid #DDD;
	line-height: 1.2;
	width: 144px;
}
#portfolio div.contents div.lnav ul li:first-child {
	border-left: 3px solid #DDD;
}
#portfolio div.contents div.lnav ul li a {
	font-weight: bold;
	/* font-size: 107%;16px */
	font-size: 114%;/* 17px */
	border: none;/* リセット */
	/* color: #666;リセット */
}
/*#portfolio div.contents div.lnav ul li a:hover {
	color: #F90;
}*/

/* ローカルナビ下部用設定 */
#portfolio div.contents div.under {
	margin-top: 30px;
	margin-bottom: -5px;
}

/* h3の上のアキの制御
paddingで空けて、marginで詰めることでページ内リンク時の表示位置を制御出来る */
#portfolio div.contents h3 {
	margin-top: -90px;
	padding-top: 110px;
}

/* h2直下のh3は上記指定のアキ無し
#portfolio div.contents h2 + section > h3 {
	margin-top: 0;
} */

/* 作品の表示：作品ボックス */
#portfolio div.contents div.img-box {
	overflow: auto;
	/*margin-bottom: 40px;*/
	padding-top: 20px;/* NEW表示のエリア確保のため */
	margin-top: -15px;/* NEW表示のエリア確保のため */
	margin-left: 20px;/* インデント */
}

/* 作品の表示：リンク範囲 */
#portfolio div.contents div.img-box a {/* リンク範囲のサイズは、画像138px四方＋ボーダー1px＝140px */
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	padding: 0;/*aのリセット*/
	border: none;/*aのリセット*/
	width: 140px;
	height: 140px;
}

/* 作品の表示：非表示 */
#portfolio div.contents div.img-box a.display-none {
	display: none;
}

/* 作品の表示：5番目毎の作品の右の空きを無くす
#portfolio div.contents div.img-box a:nth-of-type(5n+5) {
	margin-right: 0;
} */

/* 作品の表示：画像の入れ物 */
#portfolio div.contents div.img-box a span.img {
	display: inline-block;
	width: 138px;/* 画像のサイズ */
	height: 138px;/* 画像のサイズ */
	border: 1px solid rgba(0,0,0,0.2);
	opacity: 1.0;
	transition: 0.20s;
}

/* 作品の表示：aのリセット */
#portfolio div.contents div.img-box a:hover {
	background: none;
	background-color: rgba(255,102,0,1);
}

/* 作品の表示：リンクの反応 */
#portfolio div.contents div.img-box a:hover span.img {
	border: 1px solid rgba(255,102,0,1);
	opacity: 0.90;
}

/* NEW表示 */
#portfolio div.contents div.img-box a span.new {
	position: absolute;
	top: -11px;
	left: 0;
	display: block;
	color: rgba(255,102,0,1);
	/* font-size: 67%;10px */
	font-size: 60%;/* 9px */
	line-height: 1;
	/*font-weight: bold;*/
}



/*------------------------------------
コンテンツ：コンタクト
------------------------------------*/
/* 背景 */
#contact div.contents {
	background: url(../img/common/contents-illust-contact.png) 665px 15px no-repeat;/*イラスト背景*/
}
#contact div.contents section:first-child {
	background: url(../img/common/contents-bg-tape04.png) 50% top no-repeat;/*セロテープ背景*/
}

/* メルアド */
#contact div.contents section address {
	font-style: normal;
	/*font-size: 107%; 16px */
	font-size: 120%;/* 18px */
	margin-bottom: 15px;/* リセット */
}
#contact div.contents section h3 + p {
	margin-bottom: 2px;
}

/* QRコード */
#contact div.contents section img.qr {
	border: 1px #EEE solid;
	margin-top: 5px;
	margin-bottom: 3px;
}

/* 最後の要素 */
#contact div.contents section p:last-of-type{
	margin-bottom: 0;
}



/*------------------------------------
コンテンツ：インフォ
------------------------------------*/
/* 背景 */
#information div.contents {
	background: url(../img/common/contents-illust-info.png) 720px 30px no-repeat;/*イラスト背景*/
}
#information div.contents section:first-child {
	background: url(../img/common/contents-bg-tape05.png) 50% top no-repeat;/*セロテープ背景*/
}

/* 定義リスト *//* コンテンツ幅は798px */
#information div.contents section dl {
	margin-bottom: 15px;
	margin-left: 20px;
	overflow: hidden;
}
#information div.contents section dl dt {
	float: left;
	display: inline-block;
	width: 150px;
}
#information div.contents section dl dd {
	display: inline-block;
	width: 628px;
}

/* SNS表示エリア（表示有効幅は798px） */
#information div.contents section div.sns-box {
	overflow: hidden;
	padding: 20px;
	padding-top: 6px;
	padding-bottom: 40px;
}
#information div.contents section div.sns-box div.fb-area,
#information div.contents section div.sns-box div.tw-area {
	width: 364px;
	height: 364px;
	border: 1px solid #EEE;
}
#information div.contents section div.sns-box div.fb-area {
	float: left;
}
#information div.contents section div.sns-box div.tw-area {
	float: right;
}

/* 最後の要素 */
#information div.contents section dl:last-of-type {
/*#information div.contents section div.sns-box {*/ 
	margin-bottom: 0;
}



/*------------------------------------
フッター
------------------------------------*/
/* フッター全体 */
footer {
	padding-top: 94px;/* 163px(コンテンツの間隔)-67px(pagetopボタン)=94px */
}

/* ページトップボタン */
footer .pagetop {
	position: relative;
	height: 67px;
}
footer .pagetop a {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -34px;
	border: none;/*リセット*/
	display: block;
	overflow: hidden;
	height: 34px;
	width: 68px;
	transition: 0.25s;
}
footer .pagetop a:hover {
	height: 67px;
	margin-top: 0px;
}

/* 背景 */
footer #footer-bg {
	border-top:1px solid rgba(0,0,0,0.05);
	background: url(../img/common/bg-dot.png)/* ドット背景 */;
}
footer #footer-bg #footer-bg2 {
	background: url(../img/common/shadow-lower.png) repeat-x center -3px/* シャドー */ ,linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.25))/* グラデーション */;
	height: 150px;
}

/* コピーライト */
footer #footer-bg small {
	display: block;
	padding-top: 10px;
	font-size: 80%;/* 12px */
	color: #666;
	text-align: center;
}

@media screen and (max-height: 999px){/* 縦高が999px以下のとき */
	footer {
		margin-top: 0;/* heightの合計は左記の値プラス168px */
	}
}
@media screen and (min-height: 1000px){/* 縦高が1000px以上のとき */
	footer  {
		margin-top: 0;/* 150px */
	}
}
@media screen and (min-height: 1100px){/* 縦高が1100px以上のとき */
	footer {
		margin-top: 0;/* 250px */
	}
}
@media screen and (min-height: 1200px){/* 縦高が1200px以上のとき */
	footer {
		margin-top: 50px;/* 350px */
	}
}
@media screen and (min-height: 1300px){/* 縦高が1300px以上のとき */
	footer {
		margin-top: 150px;/* 450px */
	}
}
@media screen and (min-height: 1400px){/* 縦高が1400px以上のとき */
	footer {
		margin-top: 250px;/* 550px */
	}
}
@media screen and (min-height: 1500px){/* 縦高が1500以上のとき */
	footer {
		margin-top: 350px;/* 650px */
	}
}
@media screen and (min-height: 1600px){/* 縦高が1600px以上のとき */
	footer {
		margin-top: 450px;/* 750px */
	}
}