/*
Theme Name: Cocoon Child
Template: cocoon-master
*/


/* ===== フッタープロフィールブロック ===== */
.footer-profile-block {
  background: #111;
  color: #ccc;
  width: 100%;
}

.fpb-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

/* ヘッダー画像：横幅フル・高さ固定 */
.fpb-header-img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  height: 180px;
}
.fpb-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* アイコン・名前・職業 */
.fpb-content {
  text-align: center;
  padding: 28px 0 20px;
}
.fpb-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #444;
}
.fpb-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fpb-name {
  font-size: 22px;
  font-weight: bold;
  color: #eee;
  margin: 0 0 8px;
}
.fpb-job {
  font-size: 14px;
  color: #888;
  margin: 0 0 20px;
  line-height: 1.7;
}
.fpb-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.9;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.fpb-desc p {
  margin: 0 0 10px;
}

/* ボタン群 */
.fpb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px 10% 0;
  box-sizing: border-box;
}
.fpb-links a {
  display: block;
  flex: 1 1 calc(50% - 5px);
  max-width: 100%;
  text-align: center;
  padding: 14px 5px;
  font-size: 14px;
  color: #ccc;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  transition: background 0.3s, color 0.3s;
}
.fpb-links a:hover {
  background: #2a2a2a;
  color: #fff;
}
/* PR依頼・プライバシーポリシーは1列幅 */
.fpb-links a:nth-child(3),
.fpb-links a:nth-child(6) {
  flex: 1 1 100%;
}

@media (max-width: 480px) {
  .fpb-links {
    padding: 24px 0 0;
  }
  .fpb-links a {
    flex: 1 1 100%;
  }
}

/* コピーライトの設定 */
.fpb-copyright {
  text-align: right;
  font-size: 11px;
  color: #555;
  padding: 30px 0 16px;
  letter-spacing: 0.05em;
}

/* フッター余白除去 */
body #footer.footer,
#footer .footer-in,
#footer .footer-bottom,
#footer .footer-bottom-content,
#footer .footer-widgets-mobile,
#footer .source-org,
#footer .navi-footer,
#footer .navi-footer-in,
#footer .footer-bottom-logo {
  padding: 0 !important;
  margin: 0 !important;
}