@charset "utf-8";

/*============================================================================================
			Initialize
=============================================================================================*/
/*		html, body
=====================================================*/
html{
	font-size: 10px;
}
body{
  /* ベースが明朝体の場合以下を有効化
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", Georgia, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  /* ベースがゴシック体の場合以下を有効化 */
  font-family: YakuHanJPs, 'Noto Sans','Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  color: #333;
	line-height: 1.9;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px){}
@media (max-width: 576px){
  /*
  html{
    font-size: 2.6vw;
  }*/
}


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


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


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


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


/*    Form parts
=====================================================*/
select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: 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;
}


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


/*    Contents
=====================================================*/
/*-- Images --*/
.u_img{
  line-height: 1;
}
.u_img img{
	display: block;
	margin: 0 auto;
}

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

/*-- Border --*/
.u_nobdT{
	border-top: none!important;
}
.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;
}

/*-- Scroll prevent --*/
.u_scrollPrevent {
  /*
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;*/
  overflow: hidden;
}