@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-dark: #3e3a39;
    --color-blue: #4f6b8d;
    --color-gold: #c5a03b;
    --color-light-blue: #d9dfe8;
    --color-navy: #131a2c;
    --color-bg: #f8f8f7;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color: var(--color-dark);
    background: #fff;
    margin-right: 380px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── HEADER ────────────────────────────────── */
.site-header {
    background: var(--color-navy);
    padding: 16px 40px;
    display: flex;
    align-items: center;
}

.site-header .logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.08em;
}

/* ── SEMINAR PAGE: #header bg-texture ─────── */
#header,
.scrolled-down #header {
    background-color: #fff;
    background-image:
        radial-gradient(at 88% 38%, #c6ced7 0, transparent 50%),
        radial-gradient(at 92% 75%, #838c91 0, transparent 50%),
        radial-gradient(at 50% 61%, #e4e9ec 0, transparent 50%),
        radial-gradient(at 18% 83%, #c6ced7 0, transparent 50%),
        radial-gradient(at 25% 45%, #c6ced7 0, transparent 50%),
        radial-gradient(at 14% 11%, #dbe1e6 0, transparent 50%),
        radial-gradient(at 5% 42%, #89939f 0, transparent 50%);
    background-size: 200% 200%;
}

#header::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: url('../img/index/bg-texture.png') no-repeat 100% / cover;
    opacity: .3;
    pointer-events: none;
}

#header .inner {
    position: relative;
    z-index: 1;
}

/* ── HERO ──────────────────────────────────── */

.hero {
    max-width: 1080px;
    width: 100%;
    margin: 95px auto 0 !important;
    padding: 0;
    box-sizing: border-box;
    display: block;
}

.hero-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-inner {
    position: relative;
    width: 100%;
    display: block;
}

.hero-content {
    flex: 1;
    padding: 36px 48px 36px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 14px !important;
    color: var(--color-gold);
    background: #fefbf1;
    padding: 14px 80px;
    /* padding-right: calc(380px + 80px); */
}

.hero-notice-icon {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}

/* ── FORM SIDEBAR ──────────────────────────── */
.hero-form {
    position: fixed;
    right: 0;
    top: 98px;
    width: 430px;
	height: auto;
	max-height: calc(100vh - 120px);
    background: var(--color-light-blue);
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    z-index: 200;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
	border-radius: 0 0 0 8px;
}

.form-title {
    font-weight: 300;
    font-size: 22px;
    color: var(--color-dark);
}

.form-label {
    font-size: 14px;
    color: var(--color-blue);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px !important;
}
.form-label .required,
.text-field .form-label .required {
    display: inline-block;
    background: var(--color-blue);
    color: #fff;
    font-size: 11px;
    padding: 2px 4px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    line-height: 1;
    vertical-align: middle;
    margin-left: 2px; 
}

.date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.date-option {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.date-option:hover {
    box-shadow: 0 0 0 2px var(--color-blue);
}

.date-option .date-num {
    font-family: 'Inter', sans-serif;
    font-weight: 00;
    font-size: 18px;
    color: var(--color-blue);
}

.date-option .date-day {
    font-size: 13px;
    color: var(--color-blue);
}

.date-option .date-area {
    font-size: 13px;
    color: var(--color-dark);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 10px 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--color-dark);
    background: #fff;
    outline: none;
}

.form-input::placeholder {
    color: #c4c4c4;
}

.form-input:focus {
    border-color: var(--color-blue);
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
    display: inline-block !important;
    -webkit-appearance: checkbox;
    appearance: auto;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
    opacity: 1;
}

.form-submit {
    width: 100% !important;
    padding: 16px;
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.85;
}
.privacy-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
	text-align: center;
}
.privacy-text a {
    color: var(--color-blue);
	
}
@media screen and (min-width: 769px) {

    /* テキスト入力系のform-field（日程選択「以外」）だけを横並びにする */
   .text-field {
        display: flex!important;
        flex-direction: row!important;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 10px !important; 
        margin-bottom: 10px !important;
    }

    /* 横並びにした項目の、右側（入力欄）の幅を広げる */
    .text-field .form-label > p {
        margin: 0 !important;
        padding: 0 !important;
        flex: 1;
        display: flex;
		align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    /* 横並びにした項目の、左側（ラベル）の幅を120pxに固定 */
   .text-field .form-label {
        width: 90px !important;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
    }

   .text-field .form-input {
        width: 100% !important;
        max-width: 240px !important; 
        height: 36px !important;
        padding: 2px 12px !important;
        box-sizing: border-box !important;
        margin-left: auto !important; 
    }
    /* 入力ラッパーを横幅いっぱいに */
    .form-field:not(:has(.date-grid)) .wpcf7-form-control-wrap {
        width: 100%;
    }
.wpcf7-form-control-wrap[data-name="privacy"] + p,
    form .form-submit,
    form p:has(.form-submit) {
        display: block !important;
        width: 100% !important;
        max-width: none !important; /* 横幅の制限を完全に解除 */
        flex: none !important;      /* flexによる縮小を無効化 */
        margin-top: 24px !important; /* ボタンの上の余白 */
    }
}
/* ── WRAPPER ───────────────────────────────── */
.wrapper {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4%, 60px);
    box-sizing: border-box;
}

/* ── SECTION BASE ──────────────────────────── */
section {
    padding: 65px 0;
}

section+section {
    border-top: 1px solid #e8e8e6;
}

/* ── SECTION BACKGROUNDS ────────────────────── */
section:has(.pain-list),
section:has(.speakers-grid),
section:has(.schedule-list),
section:has(.overview-table) {
    background: #efefef;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-eyebrow-icon {
    display: none;
}

.section-eyebrow-text {
    display: inline-block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    padding: 6px 14px;
}

.section-title {
    font-weight: 300;
    font-size: 26px;
    color: var(--color-dark);
    margin-bottom: 40px;
}

/* ── INTRO ─────────────────────────────────── */
.intro-text {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 2;
    max-width: 90％;
}

/* ── PAIN POINTS ───────────────────────────── */
.pain-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    max-width: none;
}

.pain-item {
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
    border-left: 5px solid var(--color-blue);
    border-top: none;
    border-bottom: none;
}

.pain-item:first-child {
    border-top: none;
}

.pain-num {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-blue);
    display: block;
    margin-bottom: 4px;
}

.pain-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-dark);
    line-height: 1.5;
}

/* ── AGENDA ────────────────────────────────── */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenda-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    padding: 0;
}

.agenda-time {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-blue);
    padding-right: 24px;
    padding-top: 20px;
}

.agenda-part-badge {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.agenda-part-icon {
    display: none;
}

.agenda-part-label {
    display: inline-block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    padding: 4px 12px;
    white-space: nowrap;
    line-height: 1.4;
}

.agenda-body {
    padding: 16px 20px;
    border: 1px solid #c4c4c4;
    border-top: 3px solid var(--color-blue);
}

.agenda-title {
    flex: 1;
    min-width: 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.4;
}

.agenda-desc {
    flex-basis: 100%;
    font-size: 14px;
    color: var(--color-dark);
    line-height: 1.8;
    margin-top: 10px;
}

.agenda-note {
    flex-basis: 100%;
    font-size: 12px;
    color: var(--color-dark);
    margin-top: 6px;
}

/* ── SPEAKERS ──────────────────────────────── */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    padding: 24px 20px 20px;
}

.speaker-role {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-dark);
    text-align: center;
}

.speaker-name {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-blue);
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
}

.speaker-bio {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.9;
}

/* ── ABOUT ─────────────────────────────────── */
.about-text {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 2;
    margin-bottom: 40px;
    max-width: 100%;
}

.about-head {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    padding: 0;
    border: 1px solid #c4c4c4;
    text-align: center;
}

/* ── SCHEDULE ──────────────────────────────── */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    gap: 0;
}

.schedule-date-col {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.schedule-date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--color-blue);
}

.schedule-day {
    font-size: 14px;
    color: var(--color-dark);
}

.schedule-body {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-left: 2px solid var(--color-blue);
    padding-left: 40px;
}

.schedule-pref {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
    min-width: 80px;
}

.schedule-venue {
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.7;
}

.schedule-venue .map-link {
    color: var(--color-blue);
    display: block;
    margin-top: 4px;
}

.schedule-badge {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: start;
    margin-top: 8px;
    display: inline-block;
    width: 90px;
    padding: 3px 10px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.schedule-badge.open {
    background: var(--color-blue);
}

.schedule-badge.limited {
    background: #c5a03b;
}

/* ── FLOW ──────────────────────────────────── */
.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.flow-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    padding: 28px 0;
    gap: 8px 20px;
    border-bottom: 1px solid var(--color-light-blue);
}

.flow-num-wrap {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    display: flex;
}

.flow-num {
    width: 80px;
    height: 100%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.flow-title {
    grid-column: 2;
    grid-row: 1;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
}

.flow-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.9;
}

/* ── EVENT OVERVIEW ────────────────────────── */
.overview-table {
    width: 100%;
    border-collapse: collapse;
}

.overview-table tr {
    border-bottom: 1px solid var(--color-light-blue);
}

.overview-table th {
    width: 160px;
    padding: 20px 16px;
    font-weight: 400;
    font-size: 15px;
    color: var(--color-dark);
    text-align: left;
    vertical-align: top;
}

.overview-table td {
    padding: 20px 16px;
    font-weight: 300;
    font-size: 15px;
    color: var(--color-dark);
    vertical-align: top;
}

/* ── FAQ ───────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 14px;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-light-blue);
}

.faq-q-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: stretch;
    width: 80px;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.faq-q {
    grid-column: 2;
    grid-row: 1;
}

.faq-q-text {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
    padding-top: 8px;
}

.faq-a {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.9;
}

/* ── FOOTER ────────────────────────────────── */
/* .site-footer {
    position: relative;
    background: #2a2a2a;
    padding: 60px 80px 40px;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/seminar2026/footer-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../img/seminar2026/footer-overlay.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-nav a {
    font-weight: 300;
    font-size: 13px;
    color: #ccc;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.footer-copy {
    font-weight: 300;
    font-size: 12px;
    color: #888;
} */

/* ── BACK TO TOP ───────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #fff;
    border: 1px solid var(--color-light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 4px;
    text-decoration: none;
    z-index: 100;
}

.back-to-top .arrow {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transform: rotate(-90deg);
}

.back-to-top span {
    font-size: 9px;
    color: var(--color-dark);
    font-weight: 300;
}

/* ── CF7 form.css グローバルスタイル上書き ──── */
.hero-form .wpcf7-form-control-wrap {
    margin-bottom: 0;
}

.hero-form .wpcf7-form-control {
    display: block;
}

.hero-form .wpcf7-list-item {
    width: auto;
    margin: 0;
    position: static;
}

.hero-form .wpcf7-list-item-label {
    font-size: 13px;
}

.hero-form .wpcf7-acceptance {
    display: block;
    margin-top: 16px;
    margin-bottom: 16px;
}

.hero-form .wpcf7-list-item-label::before {
    display: none;
}

/* ── CF7 日程ラジオボタン ──────────────────── */
.date-grid>p {
    grid-column: 1 / -1;
    margin: 0;
}

.date-grid .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.date-grid .wpcf7-radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.date-grid .wpcf7-radio .wpcf7-list-item {
    margin: 0;
}

.date-grid .wpcf7-radio .wpcf7-list-item label {
    display: block;
    background: #fff;
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    font-size: 13px;
    color: var(--color-blue);
    height: 100%;
    box-sizing: border-box;
}

.date-grid .wpcf7-radio .wpcf7-list-item label:hover {
    box-shadow: 0 0 0 2px var(--color-blue);
}

.date-grid .wpcf7-radio .wpcf7-list-item input[type="radio"] {
    display: none;
}

.date-grid .wpcf7-radio .wpcf7-list-item:has(input:checked) label {
    box-shadow: 0 0 0 2px var(--color-blue);
    background: var(--color-light-blue);
}

/* ── FOOTER (PC) ───────────────────────────── */
@media screen and (min-width: 1025px) {
    #footer .footer-wrap {
        align-items: baseline;
    }

    #footer .footer-wrap__brand {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }
}

#footer .footer-wrap__info-privacy {
    position: absolute;
    top: 55px;
    left: 0;
    max-width: 410px;
}

@media screen and (min-width: 835px) {
    #footer .footer-wrap__info-privacy li {
        margin-bottom: 15px;
    }
}

/* ── RESPONSIVE (SP) ───────────────────────── */
@media (max-width: 768px) {

    /* REORDER: form appears after main content */
    body {
        display: flex;
        flex-direction: column;
        margin-right: 0;
        margin-top: 0px !important;
    }

    #header {
        order: 1;
    }

    .hero {
        order: 2;
    }

    .hero-notice {
        order: 2;
    }

    main {
        order: 3;
    }

    .hero-form {
        order: 4;
    }

    .faq-sp-only {
        order: 4;
    }

    #footer {
        order: 5;
        padding: 62.5px 0 30px;
    }

    .back-to-top {
        order: 6;
    }

    .js-backtop.active {
        position: absolute;
        bottom: calc(100% - 75px);
        top: auto;
    }

    /* HERO */
    .hero {
        min-height: auto;
        margin-top: 45px !important;
    }

    #header,
    .scrolled-down #header {
        background-color: #fff;
        background-image:
            radial-gradient(at 88% 38%, #c6ced7 0, transparent 50%),
            radial-gradient(at 92% 75%, #838c91 0, transparent 50%),
            radial-gradient(at 50% 61%, #e4e9ec 0, transparent 50%),
            radial-gradient(at 18% 83%, #c6ced7 0, transparent 50%),
            radial-gradient(at 25% 45%, #c6ced7 0, transparent 50%),
            radial-gradient(at 14% 11%, #dbe1e6 0, transparent 50%),
            radial-gradient(at 5% 42%, #89939f 0, transparent 50%);
        background-size: 200% 200%;
    }

    .hero-inner {
        padding-right: 0;
        min-height: 120px;
    }

    .hero-notice {
        font-size: 12px;
        padding: 12px 20px;
    }

    /* FORM — un-fix, full width, inline after sections */
    .hero-form {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        
        /* 【超重要】100vhの引き延ばしを完全に無効化して中身ぴったりにする */
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 40px 20px;
        border-top: 3px solid var(--color-light-blue);
        border-radius: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
		
    }
	/* フォーム送信後のメッセージエリアや自動pタグが、下側にはみ出すのを防ぎます */
    .hero-form form,
    .hero-form .wpcf7-response-output {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .text-field .form-input,
    .text-field .wpcf7-validates-as-email {
        width: 100% !important;
        max-width: 100% !important; /* 180pxの制限を突破して100%広げる */
        margin-left: 0 !important;
    }

    /* ── 【追記】スマホ版の送信ボタンのはみ出しを直す ── */
    form p:has(.form-submit) {
        width: 100% !important;
        max-width: 100% !important;
        margin: 24px 0 0 0 !important;
    }

    .form-submit {
        width: 100% !important;
        max-width: 100% !important; /* ボタンが右側にはみ出さないようにガード */
        box-sizing: border-box !important; /* パディングが外に広がらないように計算 */
    }
    /* WRAPPER */
    .wrapper {
        padding: 0 20px;
    }

    /* SECTIONS */
    section {
        padding: 48px 0;
    }

    /* SECTION TITLE */
    .section-title {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .section-eyebrow-text {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* INTRO */
    .intro-text {
        font-size: 14px;
    }

    /* PAIN POINTS */
    .pain-list {
        grid-template-columns: 1fr;
    }

    .pain-item {
        padding: 12px 14px;
    }

    .pain-text {
        font-size: 14px;
    }

    /* AGENDA */
    .agenda-item {
        grid-template-columns: 1fr;
    }

    .agenda-time {
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 8px;
        font-size: 13px;
    }

    .agenda-part-label {
        font-size: 12px;
        padding: 3px 8px;
    }

    .agenda-body {
        padding: 12px 14px;
    }

    .agenda-title {
        font-size: 15px;
    }

    .agenda-desc {
        font-size: 14px;
    }

    /* SPEAKERS */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .speaker-card {
        display: block;
        text-align: left;
        padding: 22px 20px 20px;
    }

    .speaker-role {
        text-align: left;
        font-size: 12px;
    }

    .speaker-name {
        text-align: left;
        margin-top: 0 !important;
        margin-bottom: 0;
        font-size: 16px;
    }

    .speaker-bio {
        margin-top: 16px;
        font-size: 14px;
    }

    /* ABOUT */
    .about-text {
        font-size: 14px;
    }

    .about-head {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .stats-grid {
        gap: 8px;
    }

    .stat-item {
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* SCHEDULE */
    .schedule-item {
        grid-template-columns: 55px 1fr auto;
        grid-template-rows: auto;
    }

    .schedule-date-col {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .schedule-body {
        grid-column: 2;
        grid-row: 1;
        padding-left: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .schedule-badge {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        margin-top: 0;
        margin-left: 8px;
        width: fit-content;
    }

    .schedule-venue {
        font-size: 13px;
    }

    /* FLOW */
    .flow-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 8px 16px;
    }

    .flow-num-wrap {
        grid-row: 1;
        align-self: start;
    }

    .flow-num {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .flow-title {
        grid-row: 1;
        align-self: center;
    }

    .flow-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
    }

    /* OVERVIEW TABLE */
    .overview-table th,
    .overview-table td {
        font-size: 14px;
        padding: 14px 8px;
        display: block;
        width: 100%;
    }

    .overview-table th {
        padding-bottom: 4px;
        border-bottom: none;
        color: var(--color-blue);
    }

    .overview-table tr {
        display: block;
    }

    /* FAQ */
    .faq-item {
        grid-template-rows: auto auto;
    }

    .faq-q-icon {
        grid-row: 1;
        align-self: start;
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .faq-q {
        grid-row: 1;
    }

    .faq-a {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
        margin-top: 0;
    }

    .faq-q-text {
        font-size: 15px;
    }

    /* FOOTER */
    /* .site-footer {
        padding: 40px 20px 32px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    } */

    /* BACK TO TOP — hide on mobile (form is at bottom) */
    .back-to-top {
        display: none;
    }

    /* DATE GRID — keep 2 cols on mobile */
    .date-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* form submit button full width */
    .form-submit {
        font-size: 14px;
        padding: 18px 16px;
    }

    .form-label {
        margin-top: 12px;
    }

    .form-label .required {
        font-size: 12px;
    }

    .date-grid .wpcf7-radio .wpcf7-list-item label {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* FOOTER SP */
    #footer .footer-wrap__info-privacy {
        position: static;
        top: auto;
        left: auto;
        max-width: none;
    }

    #footer .footer-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-wrap__info {
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }

    #footer .footer-wrap__info-logo {
        justify-content: center;
    }

    #footer .footer-wrap__ct {
        width: 100%;
        border-top: 1px solid #4f6b8d;
        border-bottom: 1px solid #4f6b8d;
        padding: 24px 0;
    }

    #footer .footer-wrap__brand {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 0;
        max-width: none;
        width: 100%;
        margin-top: 0;
        border-top: none;
        padding-top: 0;
    }

    #footer .footer-wrap__brand-item {
        width: 33.333%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ── FOOTER SP: プライバシーリンク横並び ──── */
@media (max-width: 834px) {
    #footer .footer-wrap__info-privacy.sp {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        text-align: center;
        padding: 20px 0;
        margin: 0;
        width: 100%;
        border-top: none;
    }

    #footer .footer-wrap__info-privacy.sp li {
        margin-bottom: 0;
    }
}

/* ── SP STICKY BANNER ──────────────────────── */
.sp-sticky-banner {
    display: none;
}

@media (max-width: 834px) {
    .sp-sticky-banner {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 16px;
        background: rgba(239, 239, 239, 0.88);
        z-index: 9999;
        box-sizing: border-box;
    }

    .sp-sticky-banner-btn {
        display: block;
        width: 100%;
        padding: 16px;
        background: var(--color-gold);
        color: #fff;
        border: none;
        border-radius: 5px;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        text-decoration: none;
        box-sizing: border-box;
        transition: opacity 0.2s;
    }

    .sp-sticky-banner-btn:hover {
        opacity: 0.85;
    }

    body {
        padding-bottom: 72px;
    }
}

/* ── SP INLINE CTA ──────────────────────────── */
.sp-inline-cta {
    display: none;
}

@media (max-width: 834px) {
    .sp-inline-cta {
        display: block;
        padding: 0 16px 32px;
        box-sizing: border-box;
    }
}

/* ── BONUS SECTION (PC・SP一括中央寄せ設定) ──────────────────────────── */
section.bonus-section {
    background: #fefbf1 !important;
    background-color: #fefbf1 !important;
    border-top: none !important;
}

/* 丸バッジと画像を【常に中央で横並び】にする設定 */
.bonus-flex {
    display: flex;
    justify-content: center; /* 左右の中央に寄せる */
    align-items: center;     /* 上下の中央で揃える */
    gap: 5%;                 /* 画面幅に合わせて綺麗に縮むよう％で隙間を指定 */
    max-width: 600px;        /* 広がりすぎないように制限 */
    margin: 0 auto 32px;     /* 全体を画面の真ん中に配置 */
}

/* 金色の細丸バッジ本体 */
.bonus-badge {
    width: 140px;            /* スマホでもはみ出さない丁度いいサイズ */
    height: 140px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;          /* 画面が狭くなっても絶対に丸が潰れないように固定 */
}

.bonus-badge-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* 右：画像エリア */
.bonus-image-box {
    max-width: 520px;
    width: 100%;
    position: relative;
}

.bonus-thumb {
    width: 100%;
    height: auto;
    display: block;
}

/* 中段：テキストエリア */
.bonus-content {
    max-width: 90%;
    margin: 0 auto 32px;
    text-align: center;
}

.bonus-text {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.7;
    font-weight: 300;
}

/* 下段：ボタンエリア */
.bonus-action {
    display: flex;
    justify-content: center;
}

.bonus-action {
    display: block;
        width: 100%;
        padding: 16px;
        background: var(--color-gold);
        color: #fff;
        border: none;
        border-radius: 5px;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        text-decoration: none;
        box-sizing: border-box;
        transition: opacity 0.2s;
}

.bonus-action:hover {
    opacity: 0.85;
}
@media (max-width: 834px) {
    .bonus-content {
        max-width: 100%;
	    text-align: left;
    }
    .bonus-text {
        font-size: 14px;
    }
}
/* ── FAQ 出し分け ───────────────────────────── */
.faq-sp-only { display: none; }
.faq-pc-only { display: block; }
@media screen and (max-width: 767px) {
    .faq-sp-only { display: block; }
    .faq-pc-only { display: none; }
}

/* ── 申し込みフォームタイトル: SP＋PC大画面のみ表示 ── */
.form-title { display: none; }
@media screen and (max-width: 768px) {
    .form-title { display: block; }
}
@media screen and (min-width: 769px) and (min-height: 860px) {
    .form-title { display: block; }
}
