@charset "UTF-8";

:root {
    --theme-color:#0a9d8d;  
}

/* ==========================================================================
   Elements
   ========================================================================== */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, 游ゴシック, YuGothic, sans-serif;
    background-color: #fff;
    color: #2d2c2a;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

a {
    display: inline-block;
    color: #138de2;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    text-underline-position: under;
}

a:hover,
a:active,
a:link,
a:visited {
    color: #138de2;
}

p {
    line-height: 1.65;
}

li {
    line-height: 1.7;
}

/* ==========================================================================
   Header
   ========================================================================== */

div#header {
    background-color: white;
    width: 100%;
    border-bottom: 1px solid #F9C852;
    padding: 5px 0;
}

.headerBox {
    display: flex;
}

.headerLogo {
    font-size: 11px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logoImg {
    max-width: 100%;
    width: 130px;
}

.tagLine {
    font-size: 0.75em;
    text-align: left;
    margin-top: 6px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

#footer {
    background-color: #1e1e1e;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 5px;
}

#footer a {
    color: #fff;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.wp-block-columns.wk-two-col {
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

.wk-sidebar-col {
    position: sticky;
    top: 24px;
}

@media (max-width: 991px) {
    .wp-block-columns.wk-two-col {
        flex-wrap: wrap !important;
    }

    .wk-sidebar-col {
        display: none !important;
    }

    .wk-main-col {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
}

/* スマホ時にサイドバーフォームをメインコンテンツ下に全幅表示 */
@media (max-width: 991.998px) {
    .wk-sidebar-col {
        display: block !important;
        flex-basis: 100% !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   Section Title
   ========================================================================== */

.wp-block-heading.wk-sec-title,
.wk-bottom-form-section .wk-sec-title {
    font-size: 22px !important;
    font-weight: 700;
    text-align: center;
}

.wp-block-heading.wk-sec-title {
    margin-top: 48px !important;
    margin-bottom: 0 !important;
}

.wp-block-heading.wk-sec-title::after,
.wk-bottom-form-section .wk-sec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--theme-color);
    margin: 8px auto 32px;
}

.wk-bottom-form-section.wk-sec-title {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   CTA Button
   ========================================================================== */

.wk-cta-btn {
    display: inline-block;
    background: #2d9e6b;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    padding: 1rem 48px;
    border-radius: 4px;
    text-decoration: none;
}

/* ==========================================================================
   Form Card
   ========================================================================== */

.wk-form-card {
    background: #fff;
    border: 2px solid var(--theme-color);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
    max-height: calc(100vh - 140px);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.wk-form-card-inner {
    padding: 20px;
    max-height: calc(100vh - 144px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .wk-form-card,
    .wk-form-card-inner {
        max-height: 100%;
    }
}

.wk-form-eyebrow {
    display: inline-block;
    background: #e8f7f0;
    color: var(--theme-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.wk-form-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.wk-form-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--theme-color)
    margin: 8px auto;
}

.wk-form-meta {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #e8e8e8;
}

/* --------------------------------------------------------------------------
   Form Fields
   -------------------------------------------------------------------------- */

.wk-form-group {
    margin-bottom: 12px !important;
}

.wk-form-group label {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    color: #333 !important;
}

.wk-form-req {
    display: inline-block !important;
    background: #c0392b !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 1px 5px !important;
    border-radius: 3px !important;
    margin-left: 4px !important;
    vertical-align: middle !important;
    line-height: 1.6 !important;
}

.wk-form-group input[type="text"],
.wk-form-group input[type="email"],
.wk-form-group select {
    width: 100% !important;
    padding: 9px 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    font-size: 0.875rem !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    background: #fff !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    color: #333 !important;
}

.wk-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 28px !important;
}

.wk-form-group input:focus,
.wk-form-group select:focus {
    outline: none !important;
    border-color: #2d9e6b !important;
    box-shadow: 0 0 0 3px rgba(45, 158, 107, .15) !important;
}

.wk-form-privacy input[type="checkbox"],
.wk-form-group input[type="radio"] {
    width: 1rem !important;
    height: 1rem !important;
    accent-color: #2d9e6b !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
    float: left;
    margin-right: 8px;
}

.wk-form-group .wk-form-radio-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.wk-form-group .wk-form-radio-group-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #333 !important;
    cursor: pointer !important;
}

.wk-form-privacy label {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    color: #333 !important;
}

.wk-form-privacy-note {
    padding: 10px;
    background: #eef7ff;
    font-size: 0.812rem;
}

.wk-form-privacy-note a {
    color: #2d9e6b !important;
    text-decoration: underline !important;
}

.wk-submit-btn {
    width: 100% !important;
    background: #2d9e6b !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 0.875rem !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background .2s, transform .1s !important;
    font-family: inherit !important;
    letter-spacing: .02em !important;
}

.wk-submit-btn:hover {
    background: #218a58 !important;
}

.wk-submit-btn:active {
    transform: scale(.98) !important;
}

.wk-form-note {
    font-size: 11px !important;
    color: #999 !important;
    text-align: center !important;
    margin-top: 10px !important;
    line-height: 1.6 !important;
}

/* ==========================================================================
   Content Blocks
   ========================================================================== */

/* 区切り線 */
.wk-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 40px;
}

/* 開催概要テーブル */
.wk-table {
    width: 100%;
    font-size: 0.9375rem;
    border-collapse: collapse;
    margin-bottom: 48px;
}

.wk-table th {
    background: #f0f7f4;
    padding: 14px 16px;
    font-weight: bold;
    border: 1px solid #ddd;
    text-align: left;
}

.wk-table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
}

/* プログラム */
.wk-program-block {
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 12px;
}

.wk-program-time {
    font-size: 0.8125rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.wk-program-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
}

.wk-program-list {
    font-size: 0.9375rem;
    line-height: 1.9;
    margin: 0;
    padding-left: 1.5em;
}

/* 2カラム */
.wk-cols {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.wk-col {
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .wk-cols {
        flex-direction: column;
    }
}

/* 参加特典カード */
.wk-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
}

.wk-card-label {
    font-size: 0.8125rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.wk-card-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.wk-card-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* 登壇者 */
.wk-speaker-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wk-speaker-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.wk-speaker-header {
    text-align: center;
    margin-bottom: 20px;
}

.wk-speaker-role {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wk-speaker-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px;
}

.wk-speaker-affiliation {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

.wk-speaker-bio {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px;
}

/* SVGアイコン */
.wk-icon {
    vertical-align: -2px;
}

/* 注意事項 */
.wk-notice-list {
    font-size: 0.875rem;
}

/* ==========================================================================
   Bottom Form Section
   ========================================================================== */

.wk-bottom-form-section {
    margin: 0 20px 48px;
    background: #fff;
    border: 2px solid #2d9e6b;
    border-radius: 10px;
    padding: 24px 20px;
}

@media (min-width: 991.998px) {
    .wk-bottom-form-section {
        display: none;
    }
}

/* ==========================================================================
   Mobile Fixed CTA
   ========================================================================== */

.wk-mobile-fixed-cta {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wk-mobile-fixed-cta.wk-cta-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 991px) {
    .wk-mobile-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 10px 1rem 12px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -2px 1rem rgba(0, 0, 0, .13);
    }

    .wk-mobile-fixed-cta a {
        display: block;
        text-align: center;
        background: #2d9e6b;
        color: #fff !important;
        font-size: 1rem;
        font-weight: 700;
        padding: 0.875rem 1rem;
        border-radius: 5px;
        text-decoration: none !important;
        letter-spacing: .03em;
    }
}
