/* セミナーページ共通スタイル */
.post-seminar-lp {
    /* max-width: 700px; */
    margin: 0 auto;
    padding: 40px 20px;
}

/* ヘッダー部分 */
.post-header {
    margin-bottom: 40px;
    text-align: center;
}

/* ステータス表示 */
.seminar-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.seminar-status.active {
    background-color: #4CAF50;
    color: white;
}

.seminar-status.closed {
    background-color: #f44336;
    color: white;
}

.seminar-status.upcoming {
    background-color: #2196F3;
    color: white;
}

/* タイトル */
.post-title {
    font-size: 2.5em;
    margin: 20px 0;
    line-height: 1.4;
}

/* メタ情報 */
.seminar-meta {
    margin: 20px 0;
}

.meta-item {
    display: inline-block;
    margin: 0 15px;
    color: #666;
}

.meta-item i {
    margin-right: 5px;
}

/* コンテンツ */
.post-content {
    margin: 40px 0;
    line-height: 1.8;
}

/* 申し込みフォーム */
.seminar-registration {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.seminar-registration h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
}

/* 受付終了メッセージ */
.registration-closed {
    text-align: center;
    padding: 30px;
}

.registration-closed h2 {
    color: #f44336;
    margin-bottom: 20px;
}

.registration-closed p {
    font-size: 1.1em;
    line-height: 1.6;
}

.registration-closed a {
    color: #2196F3;
    text-decoration: none;
}

.registration-closed a:hover {
    text-decoration: underline;
}

/* 関連セミナー */
.related-seminars {
    margin-top: 60px;
}

.related-seminars h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.related-seminars-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-seminar {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-seminar:hover {
    transform: translateY(-5px);
}

.related-seminar a {
    text-decoration: none;
    color: inherit;
}

.related-seminar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-seminar h4 {
    padding: 15px;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .post-title {
        font-size: 2em;
    }

    .seminar-registration {
        padding: 20px;
    }

    .related-seminars-list {
        grid-template-columns: 1fr;
    }

    .meta-item {
        display: block;
        margin: 10px 0;
    }
}

/* LPテンプレート用のスタイル */
.lp-template {
    background-color: #fff;
}

/* ヘッダー */
.lp-header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lp-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-header .logo {
    text-align: center;
}

.lp-header .logo img {
    max-height: 50px;
    width: auto;
}

/* フッター */
.lp-footer {
    background-color: #294F73;
    color: #fff;
    padding: 60px 0 30px;
}

.lp-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .lp-header .logo img {
        max-height: 40px;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* レイアウト幅の設定 */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.container-1080 {
    max-width: 1080px;
}

.container-960 {
    max-width: 960px;
}

.container-800 {
    max-width: 800px;
}

.wpcf7-submit:disabled,
.form-submit input[type="submit"]:disabled {
    background: #bbb;
    color: #fff;
    cursor: not-allowed;
    opacity: 1;
    box-shadow: none;
    border: none;
    transition: background 0.3s, opacity 0.3s;
}

.wpcf7-submit:enabled,
.form-submit input[type="submit"]:enabled {
    background: #007bff;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border: none;
    transition: background 0.3s, opacity 0.3s;
}

.wpcf7-submit:enabled:hover,
.form-submit input[type="submit"]:enabled:hover {
    background: #0056b3;
}

/* セミナー一覧カードレイアウト */
.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .article-list {
        grid-template-columns: 1fr;
    }
}

.seminar-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.seminar-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.seminar-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.seminar-card-body {
    padding: 24px 20px 20px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.seminar-card-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--e-a-bg-invert);
}
.seminar-card-date {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 10px;
}
.seminar-card-desc {
    font-size: 0.98em;
    color: #222;
    margin-bottom: 16px;
    flex: 1 1 auto;
}
.seminar-card-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.seminar-badge {
    background-color: var(--fo-tag-background-color);
    font-family: var(--fo-text-font-family);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: normal;
    color: var(--fo-tag-text-color);
    border: 1px solid var(--fo-tag-border-color);
    border-radius: var(--fo-tag-border-radius);
    margin: 0;
    padding: 5px 15px;
}
.seminar-badge.status.active {
    border-color: #4CAF50;
    color: #4CAF50;
    background: #fff;
}
/* .seminar-badge.status.closed {
    border-color: #aaa;
    color: #aaa;
    background: #fff;
} */
/* .seminar-badge.online {
    border-color: #2196F3;
    color: #2196F3;
    background: #fff;
}  */