@charset "UTF-8";

/*--------------------------------------------

	共通パーツ

--------------------------------------------*/
#contents {
font-size: 115%;
}
#contents a {
  color: #C80000; }
/*--------------------------------------------
	タイトル
--------------------------------------------*/
/* h1レベル見出し */
#contents h1 {
  font-size: 172%;
  margin-bottom: 30px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents h1 {
    font-size: 129%;
    margin-bottom: 15px;
  }
}

#contents h1:before {
  display: inline-block;
  content: "";
  width: 7px;
  height: 22px;
  border-radius: 4px;
  background-color: #c30202;
  margin-right: 10px;
  /* SP */
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents h1:before {
    width: 5px;
    height: 15px;
  }
}

/* 黒背景 */
#contents h2 {
  background-color: #333333;
  color: #ffffff;
  font-size: 129%;
  padding: 5px 10px;
  margin-bottom: 20px;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents h2 {
    font-size: 100%;
    font-weight: normal;
    padding: 10px;
    margin-bottom: 15px;
  }
  .inner-frame h2 {
    margin-left: -10px;
    margin-right: -10px;
  }
}

/* グレー下線 */
.ttl-bb-gray {
  /* padding-bottom: 30px; */
  padding-bottom: 2.5%;
  border-bottom: 1px solid #e5e5e5;
  font-size: 129%;
}

/* 左　グレー仕切り線 */
#contents h3 {
  font-size: 115%;
  font-weight: bold;
  margin-bottom: 20px;
}

#contents h3 span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2em;
}

#contents h3:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background-color: #515457;
  margin-right: 10px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents h3 {
    position: relative;
    font-size: 108%;
    font-weight: normal;
    margin-bottom: 15px;
    padding-left: 10px;
  }
  #contents h3:before {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 16px;
    height: 100%;
  }
}
/* 16px #646d7c */
#contents h4 {
  font-size: 115%;
  color: #646d7c;
  margin-bottom: 20px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents h4 {
    font-size: 108%;
    font-weight: normal;
    margin-bottom: 15px;
  }
}

/* 黒文字　16px相当 */
.ttl-blk {
  font-size: 129%;
  font-weight: bold;
  margin-bottom: 20px;
  background: none;
  padding: 0;
  color: #000000;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .ttl-blk {
    font-size: 108%;
    font-weight: normal;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------
  p
--------------------------------------------*/
#contents p{
    line-height: 1.5em;
  }
/*--------------------------------------------
  UL
--------------------------------------------*/
#contents ul {
    line-height: 1.5em;
  padding-left: 10px;
}
#contents ul> li {
  position: relative;
  margin-top: 10px;
  padding-left: 15px;
}
#contents ul> li:before {
  position: absolute;
  left: 0;
  top: 8px;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: url("/cmn/img/icon_listpointer.png") no-repeat center center;
  background-size: cover;
}
/*#contents ul li:first-child {
  margin-top: 0;
}*/
#contents ul.style-none> li{
  padding-left: 0;
}
#contents ul.style-none> li:before {
  content: none;
}
/*--------------------------------------------
  OL
--------------------------------------------*/
#contents ol {
    line-height: 1.5em;
  counter-reset: sqexcounter;
  padding-left: 10px;
}
#contents ol> li {
  /* list-style-type: decimal; */
  margin-top: 10px;
}
/*#contents ol li:first-child {
  margin-top: 0;
}*/
#contents ol> li:before {
  margin-right: 5px;
  counter-increment: sqexcounter; 
  content: counter(sqexcounter)".";
}
#contents ol.style-none> li{
  padding-left: 0;
}
#contents ol.style-none> li:before {
  content: none;
}
#contents ol li ul {
  counter-reset: sqexcounter;
}

/*--------------------------------------------
  DL
--------------------------------------------*/
/* 縦並び */
.lst-blktxt dt {
  font-size: 129%;
  font-weight: bold;
}
.lst-blktxt dd {
  margin-top: 10px;
  padding-left: 20px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .lst-blktxt dt {
    font-size: 108%;
  }
}
/* 横並び */
.lst-inltxt {
   margin-top: 10px;
}
.lst-inltxt dt {
  font-size: 110%;
  font-weight: bold;
  margin-right: 30px;
  display: inline-block;
  vertical-align: top;
}
.lst-inltxt dd {
  display: inline-block;
  vertical-align: top;
  max-width: 980px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .lst-inltxt {
    display: table;
    width: 100%;
  }
  .lst-inltxt dt {
    display: table-cell;
    font-size: 108%;
    width: 30%;
  }
  .lst-inltxt dd {
    display: table-cell;
    max-width: 70%;
    width: 70%;
    padding-left: 10px;
  }
}

/*--------------------------------------------
  table
--------------------------------------------*/
#contents table {
  width: 100%;
}
#contents table th {
  font-size: 116%;
  font-weight: bold;
  padding: 10px;
}
#contents table td {
  padding: 6px 10px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  line-height: 1.5em !important;
}
/* typeA */
.tb-type-a th {
  border-bottom: 2px solid #868686;
}
.tb-type-a td {
}
/* typeB */
.tb-type-b {
  border: 1px solid #e5e5e5;
}
.tb-type-b th {
  color: #ffffff;
  background-color: #868686;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.tb-type-b th:last-child,
.tb-type-b td:last-child {
  border-right: none;
}
.tb-type-b td {
  border-right: 1px solid #e5e5e5;
}
.tb-type-b td:first-child {
  background-color: #d9d9d9;
}
.tb-type-b tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  #contents table th {
    font-size: 93% !important;
    font-weight: normal;
  }
  #contents table th {
    padding: 5px;
  }
  #contents table td {
    font-size: 86% !important;
    padding: 5px;
  }
}

/*--------------------------------------------
  Blockquote
--------------------------------------------*/
/* typeA */
.box-blkq-a {
  border-left: 10px solid #868686;
  padding: 10px;
  padding-left: 20px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .box-blkq-a {
    border-left: 5px solid #868686;
    padding: 10px;
    padding-left: 15px;
  }
}
/* typeB */
.box-blkq-b {
  padding: 20px 30px;
  background-color: #d9d9d9;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .box-blkq-b {
    padding: 15px;
  }
}
/*--------------------------------------------
  hr
--------------------------------------------*/
#contents hr {
  height: 1px;
  background-color: #e5e5e5;
  border: none;
  margin: 35px 0 50px 0;
}



/*--------------------------------------------
	リンク
--------------------------------------------*/
/* アイコン左付け（黒） */
.lk-arw-lt {
  display: inline-block;
  vertical-align: middle;
  font-size: 115%;
  color: #000000;
}

.lk-arw-lt:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 13px;
  background-image: url("/cmn/img/arrow_right_bk.png");
  background-repeat: no-repeat;
  background-position: left top;
  margin-right: 10px;
}

/* 別窓アイコン右付け（赤） */
.lk-win-rt {
  display: inline-block;
  vertical-align: middle;
}

.lk-win-rt:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 12px;
  background-image: url("/cmn/img/icon_window.png");
  background-repeat: no-repeat;
  background-position: left top;
  margin-left: 5px;
}



/* SP */
@media screen and (min-width: 0px) and (max-width: 767px) {
  .lk-arw-lt {
    font-size: 86%;
    color: #000000;
  }
  .lk-arw-lt:before {
    width: 4px;
    height: 6.5px;
    background-size: cover;
  }
}
/* レイアウトカスタマイズ */
.wp-mx1200 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}


/* 余白セレクタ　SP用調整 */
@media screen and (min-width: 0px) and (max-width: 767px) {
  .mg-bottom-30 {
    margin-bottom: 10px !important;
  }
  .mg-bottom-40 {
    margin-bottom: 20px !important;
  }
  .mg-bottom-70 {
    margin-bottom: 30px !important;
  }
  .mg-bottom-100 {
    margin-bottom: 30px !important;
  }
}