@charset "UTF-8";

/* 作成例 */

/* --- ボタン共通設定 --- */
.btn-radius,
.btn-outline,
.btn-hover {
  display: inline-block;
  width: 200px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  margin: 10px;
}

/* A. 角丸ボタン */
.btn-radius {
  background-color: #165e83;
  color: #fff;
  border-radius: 30px;
}

/* B. 枠線のみボタン */
.btn-outline {
  background-color: transparent;
  color: #165e83;
  border: 2px solid #ffd900;
}

/* C. 色が変わるボタン */
.btn-hover {
  background-color: #333;
  color: #fff;
  transition: background-color 0.3s;  /* 色の変化を滑らかにする */
}

.btn-hover:hover {
  background-color: #ffd933;
  color: #165e83;
}

/* プロフィールカード全体の箱 */
.profile-card {
  width: 350px;
  margin: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

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

/* テキストコンテンツ部分 */
.profile-content {
  padding: 20px;
}

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

.profile-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}