/*共通部分*/
.btn-radius,
.btn-outline,
.btn-hover{
    display: inline-block;
    width: 200px;
    margin: 15px 0;
    padding-top: 30px ;
    padding-bottom: 10px;
    height: 40px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}
/*丸角*/
.btn-radius{
    background-color: cornflowerblue;
    border-radius: 50%;
    color: rgb(255, 255, 255);
}
/*枠線*/
.btn-outline{
    background-color: rgb(255, 255, 255);
    color: cornflowerblue;
    border: 2px solid cornflowerblue;
}
/*変わるボタン*/
.btn-hover{
    background-color:rgb(255, 255, 255);
    color: cornflowerblue;
}
.btn-hover:hover {
  background-color: cornflowerblue; /* マウスを乗せた時の色 */
  color: rgb(255, 255, 255);
}
/*プロフ箱*/
.profile-card {
  width: 350px;
  margin: 20px;
  background-color: rgb(255, 255, 255);
  border: 1px solid cornflowerblue;
  box-sizing: border-box;
}
/* テキストコンテンツ部分 */
.profile-content {
  padding: 20px;
}

.profile-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: cornflowerblue;
  border-bottom: 2px solid cornflowerblue;
}

.profile-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
/* 画像部分 */
.profile-image {
  width: 100%;
  height: 180px;
  background-color: #eee;
  color: #999;
  font-weight: bold;
  text-align: center;
  padding-top: 80px;
  box-sizing: border-box;
}