@charset "utf-8";

/*============================================================================================
      初期設定　Initialize
=============================================================================================*/
/*    html, body
=====================================================*/
html{
	font-size: 10px;	/* %表記の場合62.5% */
}
body {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, sans-serif;
	line-height: 1.33;
	-webkit-text-size-adjust: 100%;
}


/*    a
=====================================================*/
a{
  color: inherit;
	text-decoration: inherit;
	font-size: inherit;
	text-align: inherit;
}


/*    img
=====================================================*/
img{
  line-height: 0;
  max-width: 100%;
  height: auto;
}


/*    em
=====================================================*/
em{
  display: inline-block;
}


/*    button
=====================================================*/
button{
	font-size: inherit;
	font-family: inherit;
	border: none;
	padding: 0;
	cursor: pointer;
	background-color: transparent;
}
button:focus{
	outline: none;
}


/*    micro clearfix
=====================================================*/
.clearfix:before,
.clearfix:after{
	content: " ";
	display: table;
}
.clearfix:after{
	clear: both;
}
/* for IE */
.clearfix{
	*zoom: 1;/* hasLayout on */
}


/*    box sizing
=====================================================*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}


/*    word wrap
=====================================================*/
* {
	word-wrap: break-word;
}


/*    web font
=====================================================*/




/*============================================================================================
*		z-index note
*		- Describe and manage z-index
*
*		Navigation：100
*
=============================================================================================*/


/*============================================================================================
      Utility
=============================================================================================*/
/*    Display
=====================================================*/
/*-- PC --*/
@media (min-width:768px){
  .u_pc{
    display: block;
  }
  .u_pc.u_inlineB{
    display: inline-block;
  }
  .u_pc.u_inline{
    display: inline;
  }
  .u_sp{
    display: none;
  }
}
/*-- SP --*/
@media (max-width:767px){
  .u_sp{
    display: block;
  }
  .u_sp.u_inlineB{
    display: inline-block;
  }
  .u_sp.u_inline{
    display: inline;
  }
  .u_pc{
    display: none;
  }
}


/*    Layout
=====================================================*/
/*-- InlineBlock --*/
.u_col{
	font-size: 0;
	letter-spacing: 0;
	text-align: left;
}
.u_col_chd{
	display: inline-block;
	vertical-align: top;
}
.u_col_chd:first-child,
.u_col_chd:first-of-type{
	margin-left: 0;
}

/*-- TableCell --*/
.u_tblCell{
	display: table-cell;
	width: inherit;
	height: inherit;
	vertical-align: middle;
	text-align: inherit;
}



/*    Contents
=====================================================*/
/*-- Images --*/
.u_img{
	overflow: hidden;
}
.u_img img{
	display: block;
	margin: 0 auto;
}

/*-- Pseudo element --*/
.u_sd{
  position: relative;
}
.u_sd::before,
.u_sd::after{
  content: "";
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  position: absolute;
}

/*-- Border --*/
.u_nobdT{
	border-top: none;
}
.u_nobdR{
	border-right: none;
}
.u_nobdB{
	border-bottom: none;
}
.u_nobdL{
	border-left: none;
}

/*-- Br --*/
.u_br{
	display: none;
}

/*-- Clear text --*/
.u_clearTxt{
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

/*-- Text Indent --*/
.u_indent{
	text-indent: -1em;
	padding-left: 1em;
}

/*-- Line Height --*/
.u_lh0{
	line-height: 0;
}
