/* #region 【汎用スタイル】 */

body {
  color: #666;
  line-height: 2.8rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.ls {
  letter-spacing: 0.2rem;
}

.bw-2 {
  border-width: 2px !important;
}

@media (max-width: 400px) {
  main {
    margin-left: 3px;
    margin-right: 3px;
  }

  body {
    line-height: 1.8rem;
  }
}

/* #endregion */ 

/* #region 【パンくずリスト】 */

li.breadcrumb-item.wf-breadcrumb-separator::before {
  margin-left: 6px;
  font-family: 'Font Awesome 5 Free';
  content: '\f105';
  font-weight: bold;
}

/* #endregion */ 

/* #region 【共通部品】 */

/** トップへ戻るボタン **/
.wf-gotta-top {
  width: 100px;
  height: 74px;
  right: 0;
  bottom: 0;
  background: #4f4f4f;
  opacity: 0.6;
}

/* #endregion */

/* #region 【問合せ用(ステップフロー)】 */

.step-bar {
  display: flex;
  position: relative;
  margin: 20px auto;
  text-align: center;
  padding: 0;
}
.step-bar li {
  font-size: 12px;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.step-bar li:after {
  background: #D0E1F9;
  content: "";
  width: calc(100% - 50px);
  height: 5px;
  position: absolute;
  left: calc(-50% + 32px);
  top: 50px;
}
.step-bar li:first-child:after {
  display: none;
}
.step-bar li span {
  background: #D0E1F9;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 5px;
  padding: 20px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 999;
}
.step-bar .visited:after {
  background: #4D648D;
}
.step-bar .visited span {
  background: #4D648D;
}

/* #endregion */ 

/* #region 【サイドバー用】 */

.btnSpace {
    padding:12px;
    background: #ffffff;
    z-index: 9999999;
}

#nav-drawer {
  position: relative;
  vertical-align: middle;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 26px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 10000;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;/*最前面に*/
  width: 90%;/*右側に隙間を作る*/
  max-width: 450px;/*最大幅*/
  height: 100%;
  background: #f5f6f7;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding-top: 3px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.sidebar ul {
padding: 0;
}

.sidebar ul li {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin-bottom: 5px;
  line-height: 1.5;
  background: #dbebf8;
  vertical-align: middle;
  color: #505050;
  border-radius: 15px 0px 0px 15px;/*左側の角丸く*/
}

.sidebar ul li:before{ 
  display:inline-block; 
  vertical-align: middle;
  /*以下白丸つくる*/
  content:'';
  width:1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}

/* #endregion */

/* #region 【フッター用】 */

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #4169e1;
  margin: 1px;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

/* #endregion */ 

/* #region 【中央寄せ】 */

.imgCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alCenter {
  text-align: center;
}

/* #endregion */ 

/* #region 【hタグ】 */

h1 {
  letter-spacing: 0.2rem;
  color: #fff!important;
}

h2 {
  font-size: 1.75rem !important;
  padding: 0.75rem!important;
  color: #fff!important;
  font-weight: 700!important;
  text-align: center!important;
  margin-bottom: 1rem!important;
  background-color: #007bff!important;
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.2rem !important;
  }

  h2 {
    font-size: 1.2rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  h4 {
    font-size: 1.2rem !important;
  }
}

/* #endregion */ 

/* #region 【見出し】 */

.midashiUnderLine {
  background: linear-gradient(transparent 70%, #ffb6c1 70%);
  font-size: 20pt !important;
  font-weight: normal !important;
  color: #666 !important;
}

.midashiLeftLine {
  padding: 0.5rem 2rem;
  font-size: 1.5rem !important;
  border-left: 5px solid #516ab6;
  background: #eaf3ff;
}

.midashiAddNo {
  font-size: 1.5rem !important;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 2rem 0.9rem 100px;
  word-break: break-all;
  border-top: 3px solid #516ab6;
  border-radius: 12px 0 0 0;
  background: #eaf3ff;
  margin-bottom: 0.5rem !important;
}
.midashiAddNo span {
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 3px 20px;
  color: #fff;
  border-radius: 10px 0 20px 10px;
  background: #516ab6;
}
@media (max-width: 568px) {
  .midashiLeftLine {
    font-size: 1.2rem !important;
  }
  .midashiAddNo {
    font-size: 1.2rem !important;
  }
  
  .midashiAddNo span {
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 3px 20px;
    color: #fff;
    border-radius: 10px 0 20px 10px;
    background: #516ab6;
  }
}

.midashiAddNoRed {
  font-size: 1.5rem !important;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 2rem 0.9rem 100px;
  word-break: break-all;
  /*border-top: 3px solid #dc143c;*/
  border-top: 3px solid #FA5858;
  border-radius: 12px 0 0 0;
  /*background: #eaf3ff;*/
  background: #fff0ea;
  margin-bottom: 0.5rem !important;
}
.midashiAddNoRed span {
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 3px 20px;
  color: #fff;
  border-radius: 10px 0 20px 10px;
  background: #FA5858;
}
@media (max-width: 568px) {
  .midashiAddNoRed {
    font-size: 1.2rem !important;
  }
  
  .midashiAddNoRed span {
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 3px 20px;
    color: #fff;
    border-radius: 10px 0 20px 10px;
    background: #FA5858;
  }
}

.shomidashi {
  font-size: 1.25rem !important;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  background: #7AA3DA;
}

.shomidashi:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 568px) {
  .shomidashi {
    font-size: 1.2rem !important;
  }
}

/* #endregion */ 

/* #region 【画像用】 */

.resizeimage img { max-width: 100%; }

/* #endregion */

/* #region 【色】 */

.bg-7AA3DA {
  background: #7AA3DA;
}
.bg-7AA3DA td:hover {
  background: #7AA3DA;
}

.bg-lavender {
  background: #e6e6fa;
}

/* #endregion */

div.sourceArea {
  background: #333;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  color: #ffffff;
}

div.sourceArea2 {
  background: #333;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  color: #ffffff;
  line-height: 1.5em !important;
}

/* #region 【記事作成日・更新日】 */

a.createDate {
  color: #000000 !important;
	position: relative;
	padding: 0 .4em .1em;
}
a.createDate::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 10px;
	background-color: #ffc0cb;
}
.createDate:hover {
    color: #000000;
    text-decoration: none;
}

a.updateDate {
  color: #000000 !important;
	position: relative;
	padding: 0 .4em .1em;
}
a.updateDate::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 10px;
	background-color: #95ccff;
}
.updateDate:hover {
    color: #000000;
    text-decoration: none;
}

/* #endregion */ 

/* #region 【アプリーチ】 */

.appreach {
  text-align: left;
  padding: 10px;
  border: 1px solid #7C7C7C;
  overflow: hidden;
}
.appreach:after {
  content: "";
  display: block;
  clear: both;
}
.appreach p {
  margin: 0;
}
.appreach a:after {
  display: none;
}
.appreach__icon {
  float: left;
  border-radius: 10%;
  overflow: hidden;
  margin: 0 3% 0 0 !important;
  width: 25% !important;
  height: auto !important;
  max-width: 120px !important;
}
.appreach__detail {
  display: inline-block;
  font-size: 20px;
  line-height: 1.5;
  width: 72%;
  max-width: 72%;
}
.appreach__detail:after {
  content: "";
  display: block;
  clear: both;
}
.appreach__name {
  font-size: 16px;
  line-height: 1.5em !important;
  max-height: 3em;
  overflow: hidden;
}
.appreach__info {
  font-size: 12px !important;
}
.appreach__developper, .appreach__price {
  margin-right: 0.5em;
}
.appreach__posted a {
  margin-left: 0.5em;
}
.appreach__links {
  float: left;
  height: 40px;
  margin-top: 8px;
  white-space: nowrap;
}
.appreach__aslink img {
  margin-right: 10px;
  height: 40px;
  width: 135px;
}
.appreach__gplink img {
  height: 40px;
  width: 134.5px;
}
.appreach__star {
  position: relative;
  font-size: 14px !important;
  height: 1.5em;
  width: 5em;
}
.appreach__star__base {
  position: absolute;
  color: #737373;
}
.appreach__star__evaluate {
  position: absolute;
  color: #ffc107;
  overflow: hidden;
  white-space: nowrap;
}

/* #endregion */ 

/* #region 【カエレバ】 */

.kaerebalink-box {
  line-height: 1.5rem;
  border: 1px solid #dcdcdc;
  padding: 10px;
}

/* #endregion */ 

/* #region 【カッテネ】 */

.kattene {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 10px;
  padding-bottom: 5px;
  margin-bottom: 1em;
  box-sizing: border-box; }

.kattene div{
  margin: 0;
}

.kattene__imgpart {
  text-align: center; }

  .kattene__imgpart img {
    -webkit-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8);
    -o-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8);
    -ms-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.8);
    margin: 0;
    max-height: 160px;
    width: auto;
  }

.kattene__description {
  font-size: 0.8em; }

.kattene .kattene__btns {
  width: 100%;
  margin-top: 0.5em; }

  .kattene__btns:after {
    display: block;
    clear: both;
    height: 0px;
    visibility: hidden;
    content: "."; }

  .kattene__btns > div {
    float: left;
    margin-bottom: 5px; }

  .kattene__btns .kattene__btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
   }

  .kattene__btns.__three > div {
    width: 32.66667%; }

    .kattene__btns.__three > div:not(:last-child) {
      margin-right: 1%; }

  .kattene__btns.__two > div {
    width: 49.5%; }

    .kattene__btns.__two > div:nth-child(odd) {
      margin-right: 1%; }

@media screen and (max-width: 900px) {
  .kattene__imgpart {
    padding-bottom: 1em; }
  .kattene .kattene__btns {
    margin-top: 0.5em; }
  .kattene__btns.__five > div {
  width: 49.5%; }
  .kattene__btns.__five > div:nth-child(odd) {
    margin-right: 1%; }
  .kattene__btns.__five > div:last-child {
    margin-right: 0;
    float: right; }

  .kattene__btns.__four > div {
    width: 49.5%; }

    .kattene__btns.__four > div:nth-child(odd) {
      margin-right: 1%; }

  .kattene__btns.__one > div {
    width: 50%;
    margin-left: 25%; } }
@media screen and (min-width: 901px) {

  .kattene {
    display: table;
    width: 100%; }

  .kattene__imgpart {
    display: table-cell;
    width: 20%;
    padding-bottom: 5px;
  }

  .kattene__infopart {
    display: table-cell;
    vertical-align: top;
    position: relative;
    padding-left: 10px;
    width: 80%; }

  .kattene .kattene__description {
    margin-bottom: 4em;
  }

  .kattene__btns {
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding-right: 10px; }

  .kattene__btns.__five > div {
    width: 19.2%; }

    .kattene__btns.__five > div:not(:last-child) {
      margin-right: 1%; }

    .kattene__btns.__four > div {
      width: 24.25%; }

      .kattene__btns.__four > div:not(:last-child) {
        margin-right: 1%; }

    .kattene__btns.__two > div {
      width: 49.5%; }

      .kattene__btns.__two > div:not(:last-child) {
        margin-right: 1%; }

    .kattene__btns.__one > div {
      width: 49.5%;
      float: right; } }

.kattene .kattene__btn {
  appearance: none;
  background-color: #54c0d1;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 0;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }

  .kattene__btn:hover, .kattene__btn:focus {
    background-color: #439aa7;
    color: #fff !important; }

  .kattene__btn:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

    .kattene__btn:disabled:hover {
      background-color: #54c0d1; }

.kattene__btn.__small {
  padding: 0.55em;
  font-size: 0.9em; }

.kattene__btn.__orange {
  background-color: #FF9901;
  -webkit-box-shadow: 0 5px 0 #cc7a01;
  -moz-box-shadow: 0 5px 0 #cc7a01;
  box-shadow: 0 5px 0 #cc7a01;
  -o-box-shadow: 0 5px 0 #cc7a01;
  -ms-box-shadow: 0 5px 0 #cc7a01;
  margin-bottom: 5px;
  border-radius: 3px;
  text-align: center; }

  .kattene__btn.__orange:hover {
    background-color: #cc7a01; }

  .kattene__btn.__orange i {
    font-weight: bold; }

    .kattene__btn.__orange i:before {
      vertical-align: middle;
      font-size: 1.2em;
      margin-right: 0.2em; }

.kattene__btn.__blue {
  background-color: #007dcd;
  -webkit-box-shadow: 0 5px 0 #0064a4;
  -moz-box-shadow: 0 5px 0 #0064a4;
  box-shadow: 0 5px 0 #0064a4;
  -o-box-shadow: 0 5px 0 #0064a4;
  -ms-box-shadow: 0 5px 0 #0064a4;
  margin-bottom: 5px;
  border-radius: 3px;
  text-align: center; }

  .kattene__btn.__blue:hover {
    background-color: #0064a4; }

  .kattene__btn.__blue i {
    font-weight: bold; }

    .kattene__btn.__blue i:before {
      vertical-align: middle;
      font-size: 1.2em;
      margin-right: 0.2em; }

.kattene__btn.__red {
  background-color: #c20004;
  -webkit-box-shadow: 0 5px 0 #9b0003;
  -moz-box-shadow: 0 5px 0 #9b0003;
  box-shadow: 0 5px 0 #9b0003;
  -o-box-shadow: 0 5px 0 #9b0003;
  -ms-box-shadow: 0 5px 0 #9b0003;
  margin-bottom: 5px;
  border-radius: 3px;
  text-align: center; }

  .kattene__btn.__red:hover {
    background-color: #9b0003; }

  .kattene__btn.__red i {
    font-weight: bold; }

    .kattene__btn.__red i:before {
      vertical-align: middle;
      font-size: 1.2em;
      margin-right: 0.2em; }

.kattene__btn.__green {
  background-color: #0BBD80;
  -webkit-box-shadow: 0 5px 0 #099766;
  -moz-box-shadow: 0 5px 0 #099766;
  box-shadow: 0 5px 0 #099766;
  -o-box-shadow: 0 5px 0 #099766;
  -ms-box-shadow: 0 5px 0 #099766;
  margin-bottom: 5px;
  border-radius: 3px;
  text-align: center; }

  .kattene__btn.__green:hover {
    background-color: #099766; }

  .kattene__btn.__green i {
    font-weight: bold; }

    .kattene__btn.__green i:before {
      vertical-align: middle;
      font-size: 1.2em;
      margin-right: 0.2em; }

.kattene__btn.__pink {
  background-color: #e1325b;
  -webkit-box-shadow: 0 5px 0 #b42849;
  -moz-box-shadow: 0 5px 0 #b42849;
  box-shadow: 0 5px 0 #b42849;
  -o-box-shadow: 0 5px 0 #b42849;
  -ms-box-shadow: 0 5px 0 #b42849;
  margin-bottom: 5px;
  border-radius: 3px;
  text-align: center; }

  .kattene__btn.__pink:hover {
    background-color: #b42849; }

  .kattene__btn.__pink i {
    font-weight: bold; }

    .kattene__btn.__pink i:before {
      vertical-align: middle;
      font-size: 1.2em;
      margin-right: 0.2em; }

/* #endregion */

/* #region 【目次】 */

.mokuji {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  border: solid 3px #516ab6;
  border-radius: 10px;
  line-height: 1.8rem;
}
.mokuji .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 23px;
  background: #FFF;
  color: #696969;
  font-weight: bold;
}
.mokuji p {
  margin: 0; 
  padding: 0;
}

.daiMidashi {
  font-weight: bold;
  text-decoration: underline;
  font-size: 120%;
}

/* #endregion */ 

/* #region 【文字強調】 */

.bigFont {
  font-weight: bold;
  font-size: 120%;
  color: #000000 !important;
}

.bigFontRed {
  font-weight: bold;
  font-size: 120%;
  color: #ff0000 !important;
}

a.strongLineBlue {
  color: #000000 !important;
  font-weight: bold;
	position: relative;
	padding: 0 .4em .1em;
}
a.strongLineBlue::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 100%;
	height: 10px;
	background-color: #eaf3ff;
}

.lineMarker {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #fec1fe 0%);
}

strong {
  color: #000000 !important;
}

.kijiTitle {
  font-weight: bold;
  color: #007bff !important;
}

.bg-lavender strong {
  font-weight: bold;
  color: #007bff !important;
}

/* #endregion */ 

/* #region 【ブルーボックス】 */

.blueBox ul, .blueBox ol {
  background: #f1f8ff;
  box-shadow: 0px 0px 0px 10px #f1f8ff;
  border: dashed 2px #668ad8;
  border-radius: 9px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0.5em 0.5em 0.5em 2em;
}

.blueBox ul li, .blueBox ol li {
  line-height: 1.5;
  padding: 0.5em 0;
}

/* #endregion */ 

/* #region 吹き出し用 */

.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 180px;
}

@media (max-width: 400px) {
  .balloon5 .faceicon {
    float: left;
    margin-right: -90px;
    width: 80px;
  }
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  margin: 0;
  padding: 0;
}

/* #endregion */ 

/* #region 【Boxリスト】 */

/* 青 */
.boxListBlue {
  position: relative;
  margin: 2em 0;
  padding: 25px 10px 7px;
  border: solid 2px #668ad8;
}
.boxListBlue .box-title {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: -2px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #668ad8;
  color: #ffffff;
  font-weight: bold;
}
.boxListBlue p {
  font-weight: bold;
  line-height: 2.2rem;
  margin: 0; 
  padding: 0;
}

/* 赤 */
.boxListRed {
  position: relative;
  margin: 2em 0;
  padding: 25px 10px 7px;
  border: solid 2px #b22222;
}
.boxListRed .box-title {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: -2px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #b22222;
  color: #ffffff;
  font-weight: bold;
}
.boxListRed p {
  font-weight: bold;
  line-height: 2.2rem;
  margin: 0; 
  padding: 0;
}

/* #endregion */

/* #region 【印刷関連】 */

@media print
{
    .no_print
    {
        display: none;
    }
}

/* #endregion */

/* #region 【スペース】 */

.bottomMargin1 {
  margin-bottom: 1em;
}

.topMargin1 {
  margin-top: 1em;
}

.topMargin2 {
  margin-top: 2em;
}

/* #endregion */

blockquote {
  position: relative;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  font-style: italic;
  border: solid 2px #464646;
  color: #464646;
  background: #f5f5f5;
}

blockquote:before{
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #77c0c9;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.nolinebreakTable td {
  white-space: nowrap;
}

.bbline dd {
  border-bottom: 1px solid #999999;
}

.inputHeight {
  line-height: 1.8rem;
}