/*
ここに独自の CSS を追加することができます。

詳しくは上のヘルプアイコンをクリックしてください。
*/
/*Google Fonts(M+ 1p)指定*/
body {
	font-family: "Mplus 1p",sans-serif;
}

a {
	color: #16A085;
}

/*注目記事*/
.chuumoku {
  position: relative;
  margin: 36px 0 16px;
  padding: 16px 10px;
  border: 2px solid #16A085;
  border-radius: 20px;
  background-color: #f8f8f8;
}
.chuumoku p:last-child {
  margin-bottom: 0;
}
.chuumoku::before {
  position: absolute;
  top: -12px;
  left: 10px;
  padding: 0 10px 0 26px;
  content: "注目記事";
  background-color: #16A085;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.chuumoku::after {
  position: absolute;
  top: -16px;
  left: 4px;
  width: 28px;
  height: 28px;
  background-color: #16A085;
  border-radius: 14px;
  line-height: 25px;
  text-align: center;
  content: "\f0a4";
  font-size: 18px;
  font-family: 'FontAwesome';
  color: #fff;
}

/*おすすめの面接対策講座*/
.mensetsutaisaku {
  position: relative;
  margin: 36px 0 16px;
  padding: 16px 10px;
  border: 2px solid #16A085;
  border-radius: 20px;
  background-color: #f8f8f8;
}
.mensetsutaisaku p:last-child {
  margin-bottom: 0;
}
.mensetsutaisaku::before {
  position: absolute;
  top: -12px;
  left: 10px;
  padding: 0 10px 0 26px;
  content: "おすすめの面接対策講座";
  background-color: #16A085;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.mensetsutaisaku::after {
  position: absolute;
  top: -16px;
  left: 4px;
  width: 28px;
  height: 28px;
  background-color: #16A085;
  border-radius: 14px;
  line-height: 25px;
  text-align: center;
  content: "\f0a4";
  font-size: 18px;
  font-family: 'FontAwesome';
  color: #fff;
}

/*枠囲み*/
.coupon {
    border: 5px solid #16A085;
    border-radius: 4px;
    margin: 2em 0;
    padding: 2em;
    position: relative;
}
.coupon::before {
    background-color: #fff;
    color: #16A085;
    content: "限定クーポン情報";
    font-weight: bold;
	font-size: 1.5em;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -1em;
}

/*リスト*/
.list ul {
  border: solid 2px #16A085;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
	background: whitesmoke;
}

.list ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

.list ul li:before {/*疑似要素*/
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #16A085; /*アイコン色*/
}