@charset "utf-8";

.mglrat {
  margin-left: auto !important; margin-right: auto !important;
}
.w20p {
  width: 20% !important; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/* ===== 冒頭インデント */
P.txt_idt {
  text-indent: 1em;
}
/* ===== 頭文字ぶら下げ */
DL.inline DT {
  float: left;
}
DL.inline DD {
  overflow: hidden;
}

/* ===== 吹き出し */
.cmt {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cmt_l DD {
  padding-left:10px;
}
.cmt_r DD {
  padding-right:10px;
}
.cmt_r DL.inline DT {
  float: right;
}
.cmt DD P {
  font-weight: bold;
  border: 2px solid #ff6112;
  border-radius: 4px;
  padding: 16px;
  position: relative;
}
.cmt DD P:before {
  border: 12px solid transparent;
  content: "";
  display: block;
  top: 16px;
  position: absolute;
  width: 0;
  z-index: 1;
}
.cmt_l DD P:before {
  border-right-color: #fff;
  border-left-width: 0;
  left: -10px;
}
.cmt_r DD P:before {
  border-left-color: #fff;
  border-right-width: 0;
  right: -10px;
}
.cmt DD P:after {
  border: 12px solid transparent;
  content: "";
  display: block;
  top: 16px;
  position: absolute;
  width: 0;
}
.cmt_l DD P:after {
  border-right-color: #ff6112;
  border-left-width: 0;
  left: -12px;
}
.cmt_r DD P:after {
  border-left-color: #ff6112;
  border-right-width: 0;
  right: -12px;
}
@media (max-width:640px) {
  .cmt.cmt_l DD,
  .cmt.cmt_r DD {
    padding:10px 0 0;
  }
  .cmt.cmt_l DD P:before,
  .cmt.cmt_r DD P:before {
    border: 12px solid transparent;
    border-bottom-color: #fff;
    border-top-width: 0;
    top: -10px;
    left: 48%;
  }
  .cmt.cmt_l DD P:after,
  .cmt.cmt_r DD P:after {
    border: 12px solid transparent;
    border-bottom-color: #ff6112;
    border-top-width: 0;
    top: -12px;
    left: 48%;
  }
}

/* ===== 吹き出し見出し */
.hdr_cmt {
  overflow: visible;
  position: relative;
  color: #fff;
  background: #303233;
  line-height: 1.2;
  margin-bottom: 8px;
  padding: 0.5em;
}
.hdr_cmt:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 8%;
  height: 0;
  width: 0;
  border: 12px solid transparent;
  border-top: 12px solid #303233;
}
@media (max-width:640px) {
	.hdr_cmt:after { left: 46%; }
}

/* ===== 横線付き見出し */
.hdr_bdr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.hdr_bdr:before,
.hdr_bdr:after {
	content: '';
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 1px;
	background: #303233;
	min-width: 0.5em;
	display: inline-block;
	vertical-align: middle;
}
.hdr_bdr:before {
	margin-right: 0.5em;
}
.hdr_bdr:after {
	margin-left: 0.5em;
}
