@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ----全体設定---- */

/*body {
  margin: 0;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-family:'HelveticaNeueLTStd-Lt', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",'ヒラギノ角ゴ W3','Hiragino Sans', "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}*/

/* ----ヘッドライン---- */

.container h1,
.h1 {
  margin-top: 1em;
  margin-bottom: 0.3em;
  font-size: 55px;
  font-weight: normal;
}

.container h2 {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 16px;
  font-weight: normal;
	background:#000;
	color:#fff;
	padding:0.6em 1em 0.6em;
}

.container h2 span {
  float:right;
  transform: translateY(-2px);
}

.container h3 {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 24px;
  font-weight: normal;
}
.container h3::after {
	content:"";
	display:block;
	width:1.5em;
	height:1px;
	background: #000;
	margin-top: 0.3em;
}

/*
問題あり
.container h1:first-child,
.h1:first-child,
.container h2:first-child,
.container h3:first-child {
	margin-top: 0;
}*/

/* ----リンク---- */

.container a {
  text-decoration: underline;
	color:inherit;
  /*color: #444;*/
}

.container a:hover,
.container a:focus {
  text-decoration: underline;
}

.container a:focus {
  outline: none;
  /*outline-offset: -2px;*/
}

/* ----タグ---- */

.container img {
  max-width: 100%;
}

.container hr {
  border: 0;
  border-bottom: 1px dotted #ccc;
}

.container .default_hide_ {
	display: none;
}

.container .text-right {text-align: right;}

