@charset "UTF-8";

/*
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマです。
Template: cocoon-master
*/

/************************************
* 共通設定（フォント・全体）
************************************/
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #f8f9fa; /* サイト全体の背景を薄いグレーに */
}

/************************************
* ヘッダー（中央寄せ・高級感）
************************************/
.header-container-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.logo-header {
  margin-bottom: 20px;
}

/* ナビゲーションメニューの中央寄せ */
#navi .navi-in > ul {
  justify-content: center;
}

/************************************
* トップページ：メインビジュアル
************************************/
.home-main-visual {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  background-color: #222; /* 画像がない時の予備色 */
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('画像のURL');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.main-visual-content {
  text-align: center;
  color: #fff;
}

.main-visual-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.main-visual-content p {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/************************************
* タレント一覧（カードデザイン）
************************************/
.entry-card-wrap {
  border: none !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  background-color: #fff;
}

.entry-card-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.entry-card-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  padding: 15px 10px !important;
}

/************************************
* タレント詳細ページ（スペック表）
************************************/
.talent-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}

.talent-spec-table th {
  width: 30%;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  color: #d32f2f; /* アクセントカラー */
}

.talent-spec-table td {
  border-bottom: 1px solid #eee;
  padding: 15px;
}

/************************************
* 共通パーツ：出演依頼ボタン
************************************/
.offer-btn-wrap {
  text-align: center;
  margin: 40px 0;
}

.offer-button {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff !important;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transition: all 0.3s ease;
}

.offer-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/************************************
* スマホ用：固定フッターメニュー
************************************/
@media screen and (max-width: 768px) {
  .home-main-visual { height: 45vh; }
  .main-visual-content h2 { font-size: 2rem; }
  .main-visual-content p { font-size: 1rem; }

  .mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 10px 0;
  }
}