/*
 * base.css - サイト全体に適用されるグローバルスタイル
 *
 * SWELL子テーマの基本上書き。
 * コンポーネント・ページ固有のスタイルはそれぞれのCSSファイルに記述する。
 *
 * @package swell-child
 */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   フロントページ: コンテンツ上部余白リセット
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.top #content {
	padding-top: 0;
	margin-bottom: 0;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   固定ページの見出し
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .c-pageTitle {
        font-size: 1.6em;
}
@media (min-width: 600px) {
    .c-pageTitle {
        font-size: 1.8em;
		letter-spacing: 1px;
    }
}
.page .post_content h2 {
	background: var(--color_htag);
    padding: .75em 1em;
    color: #fff;
}
.page .post_content h2:before {
    position: absolute;
    display: block;
    pointer-events: none;
    content: "";
    top: -4px;
    left: 0;
    width: 100%;
    height: calc(100% + 4px);
    box-sizing: content-box;
    border-top: solid 2px var(--color_htag);
    border-bottom: solid 2px var(--color_htag);
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   front-pageとカスタム投稿「drama」の記事ページの見出し
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home h1, 
.home h2, 
.home h3, 
.home h4, 
.home h5, 
.home h6, 
.single-drama h1, 
.single-drama h2, 
.single-drama h3, 
.single-drama h4, 
.single-drama h5, 
.single-drama h6, 
.single-drama .c-secTitle,
.single-drama .p-article__title {
  font-family: "Playfair Display", "Noto Serif JP", serif !important;
  letter-spacing: 0.08em; 
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   post_content 内テーブル共通スタイル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post_content table {
	background: #fff;
}

.post_content td,
.post_content th {
	border: 1px solid #d0bf97;
}

.post_content th {
	background-color: rgba(167, 137, 86, 0.1) !important;
	white-space: nowrap !important;
}
	.l-content {
		padding-top: 1em;
	}
@media (min-width: 600px) {
    .l-content {
        padding-top: 1.5em;
    }
}
/* =========================================
   Contact Form 7 - ワイド＆エレガント（サイトフォント継承版）
========================================= */

/* フォーム全体の幅を広げる */
.wpcf7 {
    max-width: 900px; /* 600pxから900pxに拡大 */
    margin: 60px auto 0;
}

/* 各入力項目のまとまり */
.wpcf7 p {
    margin-bottom: 32px; /* 余白を少し広げてゆったりと */
}

/* ラベルの装飾 */
.wpcf7 label {
    display: block;
    font-weight: bold; /* 視認性を高めるため太字に */
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.05em;
}

/* 必須マーク（アクセントカラー：くすみピンクブラウン） */
.wpcf7 .wpcf7-validates-as-required {
    color: #b58d84;
    margin-left: 6px;
}

/* テキスト入力欄・テキストエリア（幅広設定） */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 16px 20px; /* 内側の余白を広げて入力しやすく */
    border: 1px solid #dcd3ce;
    border-radius: 4px;
    background-color: #faf8f7;
    color: #4a4442;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* テキストエリアの高さ */
.wpcf7 textarea {
    min-height: 200px;
}

/* 入力フォーカス時 */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: var(--color_main);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 10px rgba(181, 141, 132, 0.1);
}

/* 送信ボタン（幅広かつ上品なデザイン） */
.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 400px; /* ボタンも少し幅を広げて存在感を出す */
    margin: 60px auto 0;
    padding: 20px;
    background-color: var(--color_main);
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 0.15em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 送信ボタンのホバー時 */
.wpcf7 input[type="submit"]:hover {
    background-color: #706360;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* スマホ表示での調整 */
@media screen and (max-width: 767px) {
    .wpcf7 {
        padding: 0 15px;
    }
    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}