/* 自己紹介 */

.ul-center ul{list-style-type:none}


.ul-center ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
}

/* カード全体 */
.writer-profile-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;

}
/* カードの右・左共通 */
.wp-right {
  padding: 20px 0px 20px 10px;
}
.wp-left {
  padding: 20px 10px 20px 0;
}
/* カードの左側 */
.wp-left {
  width: 35%;
  text-align: center;
}
/* カードの右側 */
.wp-right {
  width: 65%;
}

/* 左側 */

/* 吹き出し */
.wp-label {
  position: relative;
  margin: 0 0 15px;
  padding: 10px 15px;
  border: 1px solid #222;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
  border-radius: 20px;
}
/* 三角 */
.wp-label::before,
.wp-label::after {
  content: '';
  border: 14px solid transparent;
  position: absolute;
  left: 50%;
  margin-left: -14px;
}
/* 線 */
.wp-label::before {
  border-top-color: #222;
  bottom: -28px;
}
/* 地 */
.wp-label::after {
  border-top-color: #fff;
  bottom: -27px;
}
/* 吹き出し内のテキスト */
.wp-label p {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* 画像 */
.wp-img {
  width: 100px;
  height: 100px;
  margin: 10px auto;
}
/* 画像を丸く、枠線をつける */
.wp-img img {
  border-radius: 50%;
  border: 2px solid #eee;
}
/* 名前 */
p.wp-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;

}
/* 読み */
p.wp-name-yomi {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 5px;
}
/* 担当 */
.wp-job {
  color: #666;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
margin-bottom:1em;
}

/* 右側 */

/* リストを左揃え・中央寄せに */
.ul-center {
  display: flex;
  align-items: center;
  flex-direction: column;
text-align: left;
}
/* 最後の要素にだけ下に余白をつけない */
.ul-center ul li:not(:last-child) {
  padding-bottom: 3px;
}

/* リストの文字色 */
.ul-center ul .li-point {
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}
/* リストのマーク */
.li-point:before {
  content: "●";
  padding-right: 0.5em;
}

/* 文章を左揃え・中央寄せに */
.instructor {
  text-align: center;
  display: block;
}
/* 文章 */
.instructor{
  text-align: left;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
/* SNSボタン全体 */
.wp-sns {
  text-align: center;
  padding: 20px 0 0;
}
/* SNSボタン */
.wp-sns li {
  display: inline-block;
  border: 1px solid #222;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0 3px;
}
/* SNSボタンにマウスをあてた時の挙動 */
.wp-sns li:hover{
  position: relative;
  top: 1px;
}
/* SNSアイコン */
.wp-sns li a i {
  font-size: 19px;
  color: #222;
}
/* SNSアイコンの位置 */
.wp-sns li a i::before {
  position: relative;
  top: 9px;
}

/* 767px（iPad）以下 */

@media (max-width: 767px) {
  /* カードを縦並びに */
  .writer-profile-card {
    display: block;
  }
  /* 左右の幅を100%に */
  .wp-left, .wp-right {
    width: 100%;
    padding:0;
    padding-bottom: 25px!important;
}
.wp-left img{width:80%}

  }
  /* 点線を左から下に */
  .wp-left {
    border-right: none;
  }

}
