@charset "UTF-8";
/* ***********************************************************************
    Nishiguchi Onakano Kudo Naika - <Common>
*********************************************************************** */
/*
    1 : Initialize (html5)
    2 : Format (header, wrapper, footer, etc.)
    3 : Text  (h1~, p, etc.)
    4 : Space (margin, padding, etc.)
	5 : Frequent Parts (breadcrumb, pageTop, imgOnMouse, etc.)
	6 : Show/Hide, Behavior
	7 : Clear
	8 : Other (interviewSheet, etc)
	9 : Under Maintenance
*/

/* ***********************************************************************
    1 : Initialize (html5)
*********************************************************************** */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section, main,
time, mark, audio, video {
	margin        : 0;
	padding       : 0;
	border        : 0;
	outline       : 0;
	font-size     : 100%;
	vertical-align: baseline;
	background    : transparent;
}
body {
	line-height: 1;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section, main {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin        : 0;
	padding       : 0;
	border        : 0;
	font-size     : 100%;
	vertical-align: baseline;
	background    : transparent;
}
ins {
	background-color: #ff9;
	color           : #000;
	text-decoration : none;
}
mark {
	background-color: #ff9;
	color           : #000;
	font-style      : italic;
	font-weight     : bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted #000;
	cursor       : help;
}
table {
	border-collapse: collapse;
	border-spacing : 0;
}
hr {
    display   : block;
    height    : 1px;
    border    : 0;
    border-top: 1px solid #cccccc;
    margin    : 1em 0;
    padding   : 0;
}
input, select {
	vertical-align: middle;
}
/**追加**/
img {
	vertical-align: bottom;
}
a {
	outline-style: none;
	cursor       : pointer;
}
a img {
	border: none;
}
ul {
	list-style         : none;
	list-style-image   : none;
	list-style-position: outside;
}
ol {
	list-style-type    : decimal;
	list-style-image   : none;
	list-style-position: outside;
}




/* ***********************************************************************
    2 : Format (header, wrapper, footer, etc.)
*********************************************************************** */
* {
	font-size               : 16px; /* 基準のフォントサイズを16pxとする */
    -webkit-text-size-adjust: 100%; /* ブラウザ側での自動調整をなしにする */
}
body {
	text-align              : center;
	-webkit-text-size-adjust: none;
	color                   : #333;
	font-family             : "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}



/* ******************************************
	OUTER FRAME
******************************************* */
/**************************
	SP ｜ OUTER FRAME
**************************/
header {
	position     : relative;
	width        : 100%;
	height       : 64px;
	border-bottom: solid 4px #906631;
}
main {
	position: relative;
}
#contents {
	width     : 100%;
	height    : auto;
	text-align: center;
}
.innerBox {
	position    : relative;
	width       : 92%;
	height      : auto;
	margin-left : auto;
	margin-right: auto;
}
footer {
	width         : 100%;
	height        : auto;
	padding-top   : 20px;
	padding-bottom: 50px;
	border-top : solid 4px #906631;
	color      : #906631;
	text-align : center;
}
#home footer { margin-top: 0; }

@media (min-width:896px) {
	/**************************
		PC ｜ OUTER FRAME
	**************************/
	header {
		min-width          : 1200px;
		width              : 100%;
		height             : 148px;
		border-bottom-width: 8px;
	}
	/**[ CONTENTS ]**/
	#greeting #contents,
	#subjects #contents,
	#inspection #contents,
	#facility #contents,
	#access #contents,
	#news  #contents {
		background       : url(../images/bg_main.gif) left bottom;
		background-size  : 2px 136px;
		background-repeat: repeat-x;
		padding-bottom   : 64px;
	}
	/**[ FOOTER ]**/
	footer {
		padding-top     : 40px;
		padding-bottom  : 80px;
		border-top-width: 6px;
	}
	#greeting footer,
	#subjects footer,
	#inspection footer,
	#facility footer,
	#access footer,
	#news footer { margin-top: 0 }
	
}



/* ******************************************
	INNER FRAME
******************************************* */
/**[ HEADER ]**/
header h1#logo {
	float : left;
	width : auto;
	height: 48px;
	margin: 8px 0 8px 3.5%;
}
header h1#logo a {
	display: block;
	width  : auto;
	height : 48%; 
}
header h1#logo a img {
	width : auto;
	height: 48px;
}
/**[ CONTENTS ]**/
#greeting #contents .innerBox,
#subjects #contents .innerBox,
#inspection #contents .innerBox,
#facility #contents .innerBox,
#access #contents .innerBox {
	width       : 92%;
	padding     : 48px 0 48px;
	margin-left : auto;
	margin-right: auto;
}
#news #leftColumn .innerBox {
	width       : 92%;
	padding     : 48px 0 0;
	margin-left : auto;
	margin-right: auto;
	text-align  : center;
}
/**[ FOOTER ]**/
footer .innerBox {
	width : 92%;
	height: auto;
}
footer .innerBox .leftColumn,
footer .innerBox .rightColumn {
	width : 100%;
	height: auto;
}
footer .innerBox .rightColumn {
	margin-top: 14px;
}

@media (min-width:896px) {
	/**************************
		PC ｜ INNER FRAME
	**************************/
	/**[ HEADER ]**/
	header h1#logo {
		width : 312px;
		height: 98px;
		margin: 24px 0 26px 48px;
	}
	header h1#logo a {
		width  : 312px;
		height : 98px; 
	}
	header h1#logo a img {
		height: 98px;
	}
	/**[ CONTENTS ]**/
	#home #contents .innerBox,
	#home #latestNews .innerBox {
		width        : 1088px;
		padding-left : 56px;
		padding-right: 56px;
	}
	#greeting #contents .innerBox,
	#subjects #contents .innerBox,
	#inspection #contents .innerBox,
	#facility #contents .innerBox,
	#access #contents .innerBox {
		background  : rgba(255,255,255,0.95);
		width       : 992px;
		padding     : 48px 48px 56px;
		margin-left : auto;
		margin-right: auto;
	}
	#news #contents .innerBox {
		width        : 1200px;
		padding-left : 0;
		padding-right: 0;
		text-align   : center;
	}
	/**[ FOOTER ]**/
	footer .innerBox {
		width        : 1088px;
		padding-left : 56px;
		padding-right: 56px;
	}
	
	footer .innerBox .leftColumn,
	footer .innerBox .rightColumn {
		width : 524px;
	}
	footer .innerBox .rightColumn {
		margin-left: 40px;
	}
}
@media (max-width:1200px) {
	/**************************
		PC ｜ INNER FRAME
	**************************/
	/**[ HEADER ]**/
	header h1#logo {
		margin-left: 0;
	}
}
@media (max-width:896px) {
	/**************************
		SP ｜ INNER FRAME
	**************************/
	/**[ HEADER ]**/
	header h1#logo {
		margin-left: 3.5%;
	}
}




/* ******************************************
	FOOTER PARTS
******************************************* */
/**************************
	SP ｜ FOOTER PARTS
**************************/
/**[ left ]**/
footer .innerBox .leftColumn h5,
footer .innerBox .leftColumn h5 img {
	width : 100%;
	height: auto;
}
footer .innerBox .leftColumn a,
footer .innerBox .leftColumn #ftrCloseday {
	display: block;
	width  : 100%;
	height : auto;
}
footer .innerBox .leftColumn a img,
footer .innerBox .leftColumn #ftrCloseday img {
	width : 100%;
	height: auto;
}
footer .innerBox .leftColumn a {
	margin-top: 16px;
}
footer .innerBox .leftColumn #ftrCloseday {
	margin-top: 16px;
}
footer .innerBox .leftColumn p {
	margin-top    : 10px;
	font-family   : "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size     : 12px;
	line-height   : 18px;
	letter-spacing: -1px;
	text-align    : left;
}
footer .innerBox .leftColumn #add {
	margin-top    : 32px;
	font-family   : "UD Shin Go Conde90 L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	font-size     : 16px;
	line-height   : 16px;
	letter-spacing: 0.03em;
}
footer .innerBox .leftColumn #add span {
	display         : inline-block;
	transform       : scale(1.1, 1);
	transform-origin: top left;
}

/**[ right ]**/
footer .innerBox .rightColumn .rightLink {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size  : 12px;
	line-height: 56px;
	text-align : right;
}

/**[ ADDRESS ]**/
#footerAdd {
	width     : 100%;
	height    : 40px;
	text-align: center;
}
#footerAdd address {
	display       : inline-block;
	width         : 92%;
	height        : 40px;
	margin-left   : auto;
	margin-right  : auto;
	color         : #906631;
	text-align    : left;
	font-family   : 'Didact Gothic', sans-serif;
	/*font-weight   : bold;*/
	font-size     : 10px;
	line-height   : 40px;
	font-style    : normal;!important
}

@media (min-width:896px) {
	/**************************
		PC ｜ FOOTER PARTS
	**************************/
	/**[ left ]**/
	footer .innerBox .leftColumn h5 {
		width : 524px;
		height: auto;
	}
	footer .innerBox .leftColumn a,
	footer .innerBox .leftColumn #ftrCloseday {
		display: block;
		width  : 524px;
		height : auto;
	}
	footer .innerBox .leftColumn a img,
	footer .innerBox .leftColumn #ftrCloseday img {
		width : 524px;
		height: auto;
	}
	footer .innerBox .leftColumn a {
		margin-top: 16px;
	}
	footer .innerBox .leftColumn #ftrCloseday {
		margin-top: 20px;
	}
	footer .innerBox .leftColumn p {
		margin-top    : 8px;
		font-family   : "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size     : 14px;
		line-height   : 22px;
		letter-spacing: normal;
	}
	footer .innerBox .leftColumn #add {
		margin-top    : 46px;
		font-size     : 18px;
		line-height   : 20px;
		letter-spacing: 1px;
	}
	
	/**[ right ]**/
	footer .innerBox .rightColumn .rightLink {
		margin     : 10px 0 18px;
		line-height: 18px;
	}
	
	/**[ ADDRESS ]**/
	#footerAdd {
		text-align: left;
	}
	#footerAdd address {
		display       : inline-block;
		margin-left   : 64px;
		font-size     : 11px;
		letter-spacing: 0.05em;
	}
}





/* ***********************************************************************
    3 : Text  (h1~, p, etc.)
*********************************************************************** */

/*( h1#logo → 2 : Format内 )*/

/**************************
	　H1 #pageTitle
**************************/
#pageTitle {
	background-color: #ffe100;
	width           : 100%;
	height          : auto;
	text-align      : center;
}
#pageTitle .innerBox,
#pageTitle .innerBox h1 {
	width     : 100%;
	height    : 110px;
	text-align: center;
}
#pageTitle .innerBox h1 {
	background     : url(../images/h1_pageTitle_s.jpg) center top no-repeat;
	background-size: auto 110px;
}
#pageTitle .innerBox h1 img {
	max-height: 110px;
	height    : auto;
	max-width : 100%;
	width     : auto;
	margin    : 0 auto;
}
@media (min-width:896px) {
	/**[ PC / H1 ]***/
	#pageTitle {
		margin-bottom: -224px;
	}
	#pageTitle .innerBox {
		width : 1200px;
		height: auto;
	}
	#pageTitle .innerBox h1 {
		background    : url(../images/h1_pageTitle_p.jpg) no-repeat;
		width         : 1200px;
		height        : 176px;
		padding-bottom: 224px;
	}
	#news #pageTitle .innerBox h1 {
		background-position: center top;
		padding-top        : 0;!important
	}
	#greeting #pageTitle .innerBox h1,
	#subjects #pageTitle .innerBox h1,
	#inspection #pageTitle .innerBox h1,
	#facility #pageTitle .innerBox h1,
	#access #pageTitle .innerBox h1 {
		background-position: center 40px;
		padding-top        : 40px;
	}
	#pageTitle .innerBox h1 img {
		max-height: 175px;
		max-width : 1200px;
		width : 1200px;
		height: 176px;
	}
}

/***
#pageTitle .innerBox h1#h1b {
	background     : url(../images/h1_pageTitle_s_b.jpg) center top no-repeat;
	background-size: auto 110px;
}
@media (min-width:896px) {
	#pageTitle .innerBox h1#h1b {
		background    : url(../images/h1_pageTitle_p_b.jpg) no-repeat;
		width         : 1200px;
		height        : 176px;
		padding-bottom: 224px;
	}
	#news #pageTitle .innerBox h1#h1b {
		background-position: center top;
		padding-top        : 0;!important
	}
	#greeting #pageTitle .innerBox h1#h1b,
	#subjects #pageTitle .innerBox h1#h1b,
	#inspection #pageTitle .innerBox h1#h1b,
	#facility #pageTitle .innerBox h1#h1b,
	#access #pageTitle .innerBox h1#h1b {
		background-position: center 40px;
		padding-top        : 40px;
	}
	#pageTitle .innerBox h1#h1b img {
		max-height: 175px;
		max-width : 1200px;
		width : 1200px;
		height: 176px;
	}
}**/


/**************************
	H2 大見出し
**************************/
#greeting h2,
#subjects h2,
#inspection h2,
#facility h2,
#access h2,
#news h2 {
	width         : 100%;
	height        : auto;
	padding-top   : 18px;
	margin-top    : 64px;
	margin-bottom : 32px;
	border-top    : solid 3px #906631;
	color         : #906631;
	font-family   : "Hiragino Maru Gothic W4 JIS2004", "じゅん 201", "Jun 201", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	font-size     : 26px;
	line-height   : 1em;
	letter-spacing: 2px;
}
#greeting h2:first-child,
#subjects h2:first-child,
#inspection h2:first-child,
#facility h2:first-child,
#access h2:first-child,
#news h2:first-child {
	margin-top: 0;
}

@media (min-width:896px) {
	/**[ PC / H2 ]***/
	#greeting h2,
	#subjects h2,
	#inspection h2,
	#facility h2,
	#access h2,
	#news h2 {
		border-top-width: 4px;
	}
}




/**************************
	H3 中見出し
**************************/
/**[ SP PC 共通 ]**/
#greeting h3,
#subjects h3,
#inspection h3,
#facility h3,
#access h3 {
	background                : url(../images/dotted.png) left top repeat-x;
	background-size           : auto 3px;
	background-color          : #f7f5f2;
	width                     : 100%;
	height                    : 38px;
	margin-top                : 56px;
	margin-bottom             : 24px;
	padding-top               : 3px;
	border-bottom-left-radius : 4px;
	border-bottom-right-radius: 4px;
	text-align                : center;
	color                     : #7e5722;
	font-family               : "Hiragino Maru Gothic W4 JIS2004","じゅん 201", "Jun 201", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	line-height               : 38px;
	letter-spacing            : 0.03em;
}
#greeting h3:first-child,
#subjects h3:first-child,
#inspection h3:first-child,
#facility h3:first-child,
#access h3:first-child {
	margin-top: 0;
}


/**************************
	H4 中見出し
**************************/
/**[ SP PC 共通 ]**/
#greeting h4,
#subjects h4,
#inspection h4,
#facility h4,
#access h4 {
	color         : #906631;
	font-family   : "Hiragino Maru Gothic W4 JIS2004", "じゅん 201", "Jun 201", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	line-height   : 1em;
	letter-spacing: 2px;
}

/*
h5, h6 → page.css
*/




p {
	font-family   : "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 1px;
}


a {
	color          : #0bb9bc;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity        : 0.6;
	filter         : alpha(opacity=60);
	-moz-opacity   : 0.6;
}
a:visited {
	color       : #0bb9bc;
	opacity     : 1.0;
	filter      : alpha(opacity=100);
	-moz-opacity: 1.0;
}

sup { 
	vertical-align: text-top; 
	line-height   : 4px;
	font-size     : 12px;
}



/****************
  SISE CHANGE
*****************/
.biggest {
	font-size: 125%;/* 16pxの場合 → 20px */
}
.bigger {
	font-size: 112%;/* 16pxの場合 → 18px */
}
.smaller {
	font-size: 88%;/* 16pxの場合 → 14px */
}
.smallest {
	font-size: 75%;/* 16pxの場合 → 12px */
}


/****************
  TEXT WIDE
*****************/
.text-wide {
    transform: scale(1.1, 1); /* 平体 */
}



/****************
  TEXT ALIGN
*****************/
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}
.align_left {
	text-align: left;
}
.align_middle {
  position: absolute;
  display : inline-block;
  top: 50%; left: 0;
  transform: translate(-50%, 0);
}


/*******************
  TEXT DECORETION
********************/
.thick  { font-weight: bold; }
.black  { color: #333; }
.right_gray { color: #999; }
.brown  { color: #906631; }
.pink { color: #ea449c;}

.underline {
	display      : inline;
	border-bottom: solid;
	border-color : #fff000;
	border-width : 4px;
}


/****************
  TEXT INDENT
*****************/
.indent-1 {
	padding-left: 1em;
	text-indent : -1em;
}



/**************
	   BR
***************/
/**[   SP   ]**/
.br {
	display: inline;
}
.brSP {
	display: block;
}
@media (min-width:896px) {
/**[   PC   ]**/
	.br {
		display: block;
	}
	.brSP {
		display: inline;
	}
}

/** NO br **/
.no_br {
	word-break: keep-all;
}

/**[ NOWRAP ]**/
/**[   SP   ]**/
.no_wrap_sp {
	white-space: nowrap;
}
@media (min-width:896px) {
/**[   PC   ]**/
	.no_wrap {
		white-space: nowrap;
	}
}





/* ***********************************************************************
    4 : Space (margin, padding, etc)
*********************************************************************** */
/****************
   MARGIN TOP
*****************/
/** Basic **/
.mgn_top_4 {
	margin-top: 4px;
}
.mgn_top_8 {
	margin-top: 8px;
}
.mgn_top_12 {
	margin-top: 12px;
}
.mgn_top_16 {
	margin-top: 16px;
}
.mgn_top_24 {
	margin-top: 24px;
}
.mgn_top_32 {
	margin-top: 32px;
}
.mgn_top_40 {
	margin-top: 40px;
}
.mgn_top_48 {
	margin-top: 48px;
}

/** Sharp **/
.mgn_top_5 {
	margin-top: 5px;
}
.mgn_top_10 {
	margin-top: 10px;
}
.mgn_top_15 {
	margin-top: 15px;
}
.mgn_top_20 {
	margin-top: 20px;
}
.mgn_top_25 {
	margin-top: 25px;
}
.mgn_top_30 {
	margin-top: 30px;
}
.mgn_top_35 {
	margin-top: 35px;
}
.mgn_top_45 {
	margin-top: 45px;
}
.mgn_top_50 {
	margin-top: 50px;
}



/****************
   MARGIN LEFT
*****************/



/****************
  MARGIN BOTTOM
*****************/





/* ***********************************************************************
	5 : Frequent Parts (breadcrumb, pageTop, imgOnMouse, etc.)
*********************************************************************** */
/**************
  POSITION
***************/
.leftColumn {
	float  : left;
}
.rightColumn {
	float  : right;
}

.center {
  position: absolute;
  display : inline-block;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}


/**************
  RIGHT LINK
**************/
.rightLink {
	float : right;
	height: 1.0;
}
.rightLink img {
	display       : inline-block;
	width         : 12px;
	height        : auto;
	padding-bottom: 2px;
	margin-left   : 4px;
	vertical-align: middle;
}


/**************
  NORMAL LIST
***************/
/**[   PC   ]**/
.normalList {
	margin-top     : 1em;
	margin-bottom  : 1em;
	list-style-type: none;
}
.normalList li {
	background     : url(../images/bullet.png) 2px 0.5em no-repeat;
	background-size: 6px 6px;
	margin-top     : 8px;
	margin-left    : 0.5em;
	padding-left   : 16px;
	line-height    : 1.35;
	text-align     : left;
}
.normalList li:first-child {
	margin-top: 0;
}
@media (max-width:896px) {
	/**[   SP   ]**/
	.normalList {
		margin: 1em 0 1em 1em;
	}
}


/**************
  KOME CHU LIST
***************/
.kome_chu {
	width      : 100%;
	height     : auto;
	margin-top : 16px;
	font-size  : 14px;
	line-height: 22px;
	text-align : left;
}
.kome_chu li {
	padding-left: 1em;
	text-indent : -1em;
}



/**************
  BOXED ARTICLE
***************/
.bg_gray {
	background-color: #f7f5f2;
	border-radius   : 16px;
}

/* ******************************************
	PAGE TOP
******************************************* */
#page-top {
	position: fixed;
	bottom  : 5px;
	right   : 8px;
	display : block;
	width : 40px;
	height: 40px;
	z-index : 10;
}
#page-top a {
	display        : block;
	background     : url(../images/pageTop.png) center center no-repeat;
	background-size: 40px auto;
	width          : 40px;
	height         : 40px;
	text-indent    : -9999px;
}

@media (min-width:896px) {
	/**************************
		PC ｜ PAGE TOP
	**************************/
	#page-top {
		bottom  : 15px;
		right   : 32px;
		width   : 50px;
		height  : 50px;
		z-index : 10;
	}
	#page-top a {
		background-size: 50px auto;
		width          : 50px;
		height         : 50px;
	}
	#page-top a:hover {
		opacity : 0.6;
		filter  : alpha(opacity=60);
	}
}




/* ***********************************************************************
	6 : Show/Hide, Behavior(transition)
*********************************************************************** */
.pcImg {
	display: none;
}
.spImg {
	display: block;
}
@media (min-width:896px) {
	/**************************
		PC ｜ Show/Hide
	**************************/
	.pcImg {
		display: block;
	}
	.spImg {
		display: none;
	}
}


/****************
   IMG ON MOUSE
*****************/
a:hover img {
	opacity: 1;
	filter : alpha(opacity=100);
}
@media (min-width:896px) {
	/**************************
		PC ｜ IMG ON MOUSE
	**************************/
	a {
		text-decoration: none;
	}
	a:hover img {
		opacity     : 0.6;
		filter      : alpha(opacity=60);
		-moz-opacity: 0.6;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		-o-transition     : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}
}

/* ***********************************************************************
	7 : Clear
*********************************************************************** */
.clear {
	clear: both;
}
.clearfix:after {
	content   : "."; 
	display   : block; 
	height    : 0; 
	clear     : both; 
	visibility: hidden;
}
.clearfix { display: inline-block; }

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix {
	display: block;
}
/* End hide from IE-mac */




/* ***********************************************************************
	8 : Table
*********************************************************************** */
/**[   SP   ]**/
.dotTableBtm {
	background     : url(../images/dotted.png) left bottom repeat-x;
	background-size: 6px 3px;
	padding-bottom : 3px;
}
table.dotTable {
	border-collapse: collapse;
	width          : 100%;
	height         : 0;
	margin-left    : auto;
	margin-right   : auto;
	padding-bottom : 10px;
	text-align     : left;
	letter-spacing : normal;
}
table.dotTable tr {
	background     : url(../images/dotted.png) left top repeat-x;
	background-size: 6px 3px;
	width          : 100%;
	height         : auto;
	padding-top    : 3px;
}
table.dotTable th {
	background      : url(../images/dotted.png) left top repeat-x;
	background-size : 6px 3px;
	background-color: #f7f5f2;
	width           : 26%;
	height          : auto;
	padding         : 16px 1%;
	font-weight     : normal;
	font-size       : 14px;
	line-height     : 1.5;
	color           : #906631;
}
table.dotTable td {
	width          : 68%;
	padding        : 16px 0 16px 4%;
	font-size      : 16px;
	line-height    : 1.5;
}

table.dotTable td .brownText {
	display      : inline-block;
	margin-top   : 6px;
	margin-bottom: 4px;
	margin-left  : -0.5em;
	color        : #906631;
	font-size    : 14px;
}
table.dotTable td ul {
	margin-top: 8px;
}
table.dotTable td ul li {
	background     : url(../images/bullet.png) 2px 0.55em no-repeat;
	background-size: 6px 6px;
	margin-top     : 0;
	padding-left   : 16px;
	line-height    : 1.5;
}
@media (min-width:896px) {
	/**[   PC   ]**/
	table.dotTable th {
		width    : 280px;
		padding  : 16px;
		font-size: 16px;
	}
	table.dotTable td {
		width  : 632px;
		padding: 16px 0 16px 32px;
	}
}



/* ***********************************************************************
	9 : UnderConst
*********************************************************************** */
#underConst {
	width     : 100%;
	height    : auto;
	padding   : 50px 0;
	color     : #999;
	text-align: center;
	border    : solid 4px #999;
}
#underConst p.bigger {
	font-family   : "Shin Go Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	text-align    : center;
	font-size     : 20px;
	padding-bottom: 15px;
}
#underConst p {
	width: 100%;
}

.yetImg {
	opacity     : 0.3;
	filter      : alpha(opacity=30);
	-moz-opacity: 0.3;
}
@media (min-width:896px) {
	/**************************
		PC ｜ underConst
	**************************/
	#underConst {
		width : 400px;
		margin: 80px auto 0;
	}
	/*#monshin {
		display: block;
	}*/
}






