/* Uta-Porta プラン・料金ページ用CSS */
.utaporta-pricing-wrapper {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333333;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* プラン名（h2タグ: 30px） */
.utaporta-pricing-wrapper h2 {
    font-size: 30px;
    font-weight: bold;
    color: #2c3547; /* 添付画像のネイビーに近い色 */
    margin-top: 60px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #16539a; /* 添付画像のブルーに近い色 */
    letter-spacing: 0.05em;
}

/* 説明の各項目タイトル（h3タグ: 25px） */
.utaporta-pricing-wrapper h3 {
    font-size: 25px;
    font-weight: bold;
    color: #16539a;
    background-color: #f4f7fb;
    padding: 15px 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 6px solid #16539a;
    border-radius: 2px;
}

/* 本文（18px） */
.utaporta-pricing-wrapper p, 
.utaporta-pricing-wrapper li {
    font-size: 18px;
    color: #444444;
}

/* プランカードの装飾 */
.plan-card {
    background: #ffffff;
    border: 1px solid #e0e4e8;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.plan-intro {
    margin-bottom: 35px;
}

/* お悩みリストの装飾 */
.worry-list {
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 25px 25px 25px 45px;
    margin-bottom: 30px;
}

.worry-list li {
    margin-bottom: 12px;
}

/* 価値リストの装飾 */
.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list > li {
    margin-bottom: 30px;
}

.value-title {
    display: block;
    font-weight: bold;
    color: #2c3547;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #cccccc;
}

/* 注意事項ブロックの装飾 */
.warning-box {
    background-color: #fffafaf5;
    border: 1px solid #f5c6cb;
    border-left: 5px solid #d9534f;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 4px;
}

.warning-box h3 {
    background-color: transparent;
    border-left: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 15px;
    color: #d9534f;
    font-size: 22px; /* 注意事項の見出しは少し調整 */
}

/* ご利用の流れリスト */
.flow-list {
    padding-left: 25px;
}

.flow-list li {
    margin-bottom: 15px;
}

/* --- プラン別テーマカラーの追加設定 --- */

/* =========================================
   プラン別カラー変更用 追加CSS（高級感調整版）
   （既存のCSSの末尾に追記してください）
   ========================================= */

/* ライトプラン（深緑） */
.plan-card.plan-light h2 {
    color: #2E755B;
    border-bottom-color: #2E755B;
}
.plan-card.plan-light > h3 {
    color: #2E755B;
    border-left-color: #2E755B;
    background-color: #F2F7F5;
}
.plan-card.plan-light .value-title {
    color: #2E755B;
}

/* スタンダードプラン（ベースブルー） */
.plan-card.plan-standard h2 {
    color: #16539A;
    border-bottom-color: #16539A;
}
.plan-card.plan-standard > h3 {
    color: #16539A;
    border-left-color: #16539A;
    background-color: #F2F6FA;
}
.plan-card.plan-standard .value-title {
    color: #16539A;
}

/* プレミアムプラン（シャンパンゴールド） */
.plan-card.plan-premium h2 {
    color: #C19A5B;
    border-bottom-color: #C19A5B;
}
.plan-card.plan-premium > h3 {
    color: #C19A5B;
    border-left-color: #C19A5B;
    background-color: #FDFBF5;
}
.plan-card.plan-premium .value-title {
    color: #C19A5B;
}

/* スポットメール相談（シックパープル） */
.plan-card.plan-spot-mail h2 {
    color: #76598C;
    border-bottom-color: #76598C;
}
.plan-card.plan-spot-mail > h3 {
    color: #76598C;
    border-left-color: #76598C;
    background-color: #F6F4F8;
}
.plan-card.plan-spot-mail .value-title {
    color: #76598C;
}


/* =========================================
   修正・追加用CSS（リストのフォント・背景 ＋ 注意事項セット）
   （既存のCSSの最下部に追記してください）
   ========================================= */

/* =========================================
   リスト（li）のフォント指定・背景リセット
   ========================================= */
body .entry-content .utaporta-pricing-wrapper li,
body .utaporta-pricing-wrapper li {
    font-family: "BIZ UDPMincho", "BIZ UDP明朝", serif !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* =========================================
   独立させた注意事項（utaporta-warning-box）のデザイン
   ========================================= */
.utaporta-warning-box {
    background-color: #fffafaf5 !important;
    border: 1px solid #f5c6cb !important;
    border-left: 5px solid #d9534f !important;
    padding: 20px 25px !important;
    margin-top: 30px !important;
    border-radius: 4px !important;
}

.utaporta-warning-title {
    color: #d9534f !important;
    font-size: 22px !important;
    font-weight: bold !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.utaporta-warning-list {
    padding-left: 25px !important;
    margin: 0 !important;
}

.utaporta-warning-list li {
    color: #444444 !important;
    margin-bottom: 8px !important;
    list-style-type: disc !important;
}

/* フォーム全体の設定 */
.contactform-luxury-wrap {
  max-width: 700px;
  margin: 0 auto;
  color: #333333;
}

/* 各項目ブロックの余白 */
.contactform-luxury-wrap .contactform-group {
  margin-bottom: 24px;
}

/* ラベルテキスト */
.contactform-luxury-wrap .contactform-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: #333333;
}

/* 必須・任意バッジ */
.contactform-luxury-wrap .contactform-required {
  background-color: #d9534f;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}
.contactform-luxury-wrap .contactform-optional {
  background-color: #8c969d;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}

/* 入力フィールド共通（テキスト、メール、電話、セレクト、テキストエリア） */
.contactform-luxury-wrap input[type="text"],
.contactform-luxury-wrap input[type="email"],
.contactform-luxury-wrap input[type="tel"],
.contactform-luxury-wrap select,
.contactform-luxury-wrap textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* 入力フィールド（フォーカス時） */
.contactform-luxury-wrap input[type="text"]:focus,
.contactform-luxury-wrap input[type="email"]:focus,
.contactform-luxury-wrap input[type="tel"]:focus,
.contactform-luxury-wrap select:focus,
.contactform-luxury-wrap textarea:focus {
  border-color: #2154a5;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 5px rgba(33, 84, 165, 0.2);
}

/* ドロップダウンメニュー（セレクトボックス）の調整 */
.contactform-luxury-wrap select {
  height: auto;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}

/* テキストエリアの高さ */
.contactform-luxury-wrap textarea {
  height: 160px;
  resize: vertical;
}

/* 同意チェックボックスの配置 */
.contactform-luxury-wrap .contactform-acceptance-wrap {
  text-align: center;
  margin: 35px 0;
  font-size: 15px;
}
.contactform-luxury-wrap .contactform-acceptance-wrap label {
  display: inline-block;
  cursor: pointer;
}

/* 送信ボタンの配置 */
.contactform-luxury-wrap .contactform-submit-wrap {
  text-align: center;
}

/* 送信ボタン（ディープブルー・丸みのあるデザイン） */
.contactform-luxury-wrap input[type="submit"] {
  background-color: #2154a5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 15px 60px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
}

/* 送信ボタンホバー時 */
.contactform-luxury-wrap input[type="submit"]:hover {
  background-color: #173b75;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* 送信ボタンクリック時 */
.contactform-luxury-wrap input[type="submit"]:active {
  transform: translateY(1px);
}

/* -------------------------------------
 * 有料会員限定フォーム全体設定
 * ------------------------------------- */
.contactform-premium-wrap {
  max-width: 700px;
  margin: 0 auto;
  color: #333333;
}

/* 冒頭の注意事項同意エリア */
.contactform-premium-wrap .contactform-acceptance-top {
  background-color: #f8faff;
  border: 1px solid #e2e8f0;
  border-left: 6px solid #2154a5;
  padding: 18px 20px;
  margin-bottom: 35px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(33, 84, 165, 0.03);
}
.contactform-premium-wrap .contactform-acceptance-top label {
  display: inline-block;
  cursor: pointer;
}

/* 各項目ブロックの余白 */
.contactform-premium-wrap .contactform-group {
  margin-bottom: 28px;
}

/* ラベルテキスト */
.contactform-premium-wrap .contactform-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  color: #333333;
}

/* ラベル内の補足文言 */
.contactform-premium-wrap .contactform-sublabel {
  font-size: 13px;
  color: #666666;
  font-weight: normal;
  margin-left: 2px;
}

/* 必須・任意バッジ */
.contactform-premium-wrap .contactform-required {
  background-color: #d9534f;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}
.contactform-premium-wrap .contactform-optional {
  background-color: #8c969d;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}

/* 入力フィールド共通 */
.contactform-premium-wrap input[type="text"],
.contactform-premium-wrap input[type="email"],
.contactform-premium-wrap textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* 入力フィールド（フォーカス時） */
.contactform-premium-wrap input[type="text"]:focus,
.contactform-premium-wrap input[type="email"]:focus,
.contactform-premium-wrap textarea:focus {
  border-color: #2154a5;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 6px rgba(33, 84, 165, 0.18);
}

/* テキストエリアの高さ */
.contactform-premium-wrap textarea {
  height: 160px;
  resize: vertical;
}

/* -------------------------------------
 * 追加：ご相談種別（ラジオボタン）の装飾
 * ------------------------------------- */
.contactform-premium-wrap .contactform-radio-container {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px 15px;
}

/* 各選択肢を縦並びにする */
.contactform-premium-wrap .contactform-radio-container .wpcf7-list-item {
  display: block;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.contactform-premium-wrap .contactform-radio-container .wpcf7-list-item:last-child {
  border-bottom: none;
}

/* ラジオボタンとテキストの重なり・余白調整 */
.contactform-premium-wrap .contactform-radio-container label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
}

.contactform-premium-wrap .contactform-radio-container input[type="radio"] {
  margin: 4px 10px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}

/* -------------------------------------
 * ファイル添付エリアの装飾
 * ------------------------------------- */
.contactform-premium-wrap .contactform-file-hint {
  font-size: 12px;
  color: #666666;
  margin-bottom: 8px;
  line-height: 1.4;
}
.contactform-premium-wrap input[type="file"] {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 1px dashed #bbbbbb;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s, background-color 0.3s;
}
.contactform-premium-wrap input[type="file"]:hover {
  background-color: #f9fbfd;
  border-color: #2154a5;
}

/* -------------------------------------
 * 送信ボタン
 * ------------------------------------- */
.contactform-premium-wrap .contactform-submit-wrap {
  text-align: center;
  margin-top: 35px;
}

.contactform-premium-wrap input[type="submit"] {
  background-color: #2154a5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 16px 70px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(33, 84, 165, 0.15);
  -webkit-appearance: none;
}

.contactform-premium-wrap input[type="submit"]:hover {
  background-color: #173b75;
  box-shadow: 0 6px 14px rgba(23, 59, 117, 0.25);
  transform: translateY(-1px);
}
.contactform-premium-wrap input[type="submit"]:active {
  transform: translateY(1px);
}