/* ========================================
   LP Copy1（ランディングページ）用スタイル
   スマホファースト
   ======================================== */

/* CTAボタンアニメーション */
@keyframes poyon {
    0% {
        transform: scale(1, 1) translate(0%, 0%);
    }

    15% {
        transform: scale(0.85, 0.85) translate(0%, 0%);
    }

    30% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    50% {
        transform: scale(0.85, 0.85) translate(0%, 0%);
    }

    70% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    100% {
        transform: scale(1, 1) translate(0%, 0%);
    }
}

/* モバイル用基本スタイル */
.ly_innner {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.ly_innner .bl_imgWrap {
    width: 100%;
    height: auto;
    text-align: center;
}

.ly_innner .bl_imgWrap img {
    width: 100%;
    height: auto;
}

/* ========================================
   セミナーセクション（モバイル用基本スタイル）
   ======================================== */

.seminar-section {
    position: relative;
    padding-inline: 2%;
}

/* セミナー案内テキスト */
.seminar-intro {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.seminar-intro-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    font-family: 'Sawarabi Mincho', serif;
}

.seminar-banner-text {
    background: #e74c3c;
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    padding: 4px;
    display: inline-block;
    margin: 5px 0;
}

/* セミナー日程 */
.seminar-schedule {
    background: #34495e;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
}

.seminar-schedule-title {
    background-color: #fff;
    color: #2C6991;
    width: fit-content;
    padding: 4px 16px;
    margin-inline: auto;
    font-size: 24px;
    font-weight: 700;
}

.seminar-schedule .seminar-schedule>p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-align: center;
}

/* セミナーテーブル */
.seminar-table {
    background-color: #fff;
    margin-top: 20px;
    overflow-x: auto;
}

/* リッチエディターで作成した表のスタイル */
.seminar-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.seminar-table table th,
.seminar-table table td {
    padding: 6px 3px;
    padding-block: 8px 4px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 20px;
}

.seminar-table table th {
    background-color: #8CB8C1;
    color: #FEFFFF;
    font-weight: bold;
}

.seminar-table table td {
    color: #2B688F;
    font-weight: 500;
}

.seminar-table table tr.full td {
    position: relative;
    opacity: 0.7;
}

.seminar-table table tr.full td::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    background-color: #1C4058;
    transform: translate(-50%, -40%);
    width: 80%;
}

.seminar-table table tr.full td:last-child {
    opacity: 1;
}

.seminar-table table tr.full td:last-child::before {
    display: none;
}

.seminar-table table .red {
    color: #e74c3c;
    font-weight: bold;
}

.seminar-table table .full-text {
    color: #e74c3c;
    font-weight: bold;
}

/* 注意書き */
.seminar-note {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    opacity: 0.9;
    font-size: 20px;
    font-weight: 600;
}

/* CTA画像 */
.seminar-cta-image {
    text-align: center;
    margin-top: 20px;
}

.seminar-cta-image .cta-button {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    animation: poyon 2s ease-in-out infinite;
    overflow: hidden;
    width: 100%;
}

.seminar-cta-image .cta-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
    animation-play-state: paused;
}

.seminar-cta-image .cta-button:active {
    transform: scale(0.98);
}

.seminar-cta-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 固定CTAボタン */
.fixed-cta {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.fixed-cta.hidden {
    opacity: 0;
    visibility: hidden;
}

.fixed-cta .cta-button {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 80px;
    overflow: hidden;
}

.fixed-cta img {
    height: auto;
    display: block;
}


/* ========================================
   レスポンシブ対応（スマホファースト）
   ======================================== */
/* fvセクション */
.bl_fv {
    position: relative;
}

.bl_fv .seminar-cta-image {
    /* position: absolute;
    bottom: 1%;
    left: 0;
    right: 0; */
    text-align: center;
}

/* セミナーセクションラッパー */
.seminar-wrap .seminar-section {
    padding-block: 20px;
}

/* 8番目セミナー日程 - other-case背景 */
.seminar-wrap--other-case {
    background-image: url(../assets/img/lp/other-case-ctabg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* フッターラッパー */
.footer-wrap {
    margin-top: 40px;
}

.el_terms {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

.el_terms a {
    text-decoration: none;
    color: #021E34;
}

.lp11 p {
    text-align: center;
}

/* タブレット用（768px以上） */
@media (min-width: 768px) {

    .seminar-intro-text {
        font-size: 16px;
    }

    .seminar-schedule {
        padding: 30px 20px;
    }

    .seminar-schedule-title {
        font-size: 32px;
    }

    .seminar-schedule .seminar-schedule>p {
        font-size: 20px;
    }

    .seminar-table table th,
    .seminar-table table td {
        font-size: 32px;
        padding: 8px 5px;
    }

    .fixed-cta {
        bottom: 30px;
        padding: 0 30px;
    }


    .seminar-table table tr.full td::before {
        height: 4px;
        transform: translate(-50%, -100%);
    }

}

/* デスクトップ用（1024px以上） */
@media (min-width: 1024px) {}