body {
    font-family: "Noto Sans JP", sans-serif;
}

p {
    margin-bottom: 1em;
}

.eng {
    font-family: "Inter", sans-serif;
}


/* ヘッダー */

.header {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
    height: 40px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 16px;
}

.hamburger span:nth-child(3) {
    top: 24px;
}


/* 「×」に変形する状態 */

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
}

.nav ul {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.nav ul li a:hover {
    background: #f4efff;
    color: #700091;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    .nav ul {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .nav ul li {
        border-bottom: solid #c3c3c3 1px;
    }
    .nav ul li a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        padding: 1em;
        border-radius: 20px;
        transition: background 0.2s, color 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav ul li a i {
        font-size: 0.8em;
    }
    .nav {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
        padding: 1em;
        transition: right 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        z-index: 999;
    }
    .nav.open {
        right: 0;
        opacity: 1;
    }
    .nav ul {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 1em;
    }
    .nav_cta .btn {
        width: 100%;
        margin-bottom: 0.5em!important;
    }
}


/* ファーストビュー */

.hero {
    position: relative;
    background: #fff;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-image: url(../img/kyoto.svg);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.hero-left {
    position: relative;
    padding: 200px 0 100px 0;
    width: 365px;
    margin-left: 12%;
}

.hero h1 {
    font-size: 80px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.hero-kib {
    color: #000;
}

.hero-term {
    color: #700091;
}

.hero-box {
    background: linear-gradient(45deg, #8B3EA2, #700091);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    padding: 3px 36px 12px;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
    width: 100%;
    text-align: center;
}

.hero-lead {
    font-size: 18px;
    color: #333;
    margin: 0 0 40px;
    line-height: 1.8;
    text-align: center;
    font-weight: bold;
}

.highlight {
    color: #700091;
}

.hero-right {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50vw;
    min-width: 838px;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ボタン帯 */

.hero-cta {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    background: linear-gradient(45deg, #8B3EA2, #700091);
}

.btn {
    font-size: 16px;
    font-weight: bold;
    padding: 12px 0;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    width: 280px;
    display: block;
    overflow: hidden;
}

.btn i {
    position: absolute;
    font-size: 0.8em;
    right: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease 0.35s;
}

.btn:hover i {
    opacity: 1;
}

.btn-solid,
.btn-outline {
    background: #700091;
    color: #fff;
    border: 2px solid #fff;
    z-index: 0;
}

/* 左→右に流れる塗りつぶしエフェクト */
.btn-solid::before,
.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #8B3EA2, #4a0064);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.btn-solid:hover::before,
.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-solid:hover,
.btn-outline:hover {
    background: #4a0064;
}

.hero .btn-outline {
    margin-right: 1em;
}

#first-view {
    width: 100%;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7em 1em;
}

.section-inner .btn {
    margin: 0 auto;
}

.cont_title {
    text-align: center;
    margin-bottom: 2em;
}

.cont_title strong {
    background: linear-gradient(45deg, #8B3EA2, #700091);
    -webkit-background-clip: text;
    /* テキストで背景を切り抜く */
    -webkit-text-fill-color: transparent;
    /* テキスト自体は透明 */
    font-size: 48px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin-top: -1em;
}

.cont_title span {
    display: block;
    width: 549px;
    margin: 0 auto -1.5em;
    position: relative;
    z-index: 1;
}

.purple .cont_title strong {
    background: none;
    color: #fff;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
}

.gray {
    background-image: url(../img/back-gray.jpg);
    background-repeat: repeat;
}

.gray2 {
    background-image: url(../img/back-gray3.png), /* 一番上：右下に非リピート */
    url(../img/back-gray2.png), /* 中間：左上に非リピート */
    url(../img/back-gray.jpg);
    /* 一番下：リピート背景 */
    background-repeat: no-repeat, /* back-gray3.png */
    no-repeat, /* back-gray2.png */
    repeat;
    /* back-gray.jpg */
    background-position: right bottom, /* back-gray3.png */
    left top, /* back-gray2.png */
    left top;
    /* back-gray.jpg */
    background-size: auto, /* back-gray3.png */
    auto, /* back-gray2.png */
    auto;
    /* back-gray.jpg */
}

.gray3 {
    background-image: url(../img/back-gray5.png), /* 左下に表示 */
    url(../img/back-gray4.png), /* 右上に表示 */
    url(../img/back-gray.jpg);
    /* 全体にリピート */
    background-repeat: no-repeat, /* back-gray5.png */
    no-repeat, /* back-gray4.png */
    repeat;
    /* back-gray.jpg */
    background-position: left bottom, /* back-gray5.png */
    right top, /* back-gray4.png */
    left top;
    /* back-gray.jpg */
    background-size: auto, /* back-gray5.png */
    auto, /* back-gray4.png */
    auto;
    /* back-gray.jpg */
}

.purple {
    background-image: url(../img/back-purple3.png), /* 一番上：右下に非リピート */
    url(../img/back-purple2.png), /* 中間：左上に非リピート */
    url(../img/back-purple.jpg);
    /* 一番下：リピート背景 */
    background-repeat: no-repeat, /* back-gray3.png */
    no-repeat, /* back-gray2.png */
    repeat;
    /* back-gray.jpg */
    background-position: right bottom, /* back-gray3.png */
    left top, /* back-gray2.png */
    left top;
    /* back-gray.jpg */
    background-size: auto, /* back-gray3.png */
    auto, /* back-gray2.png */
    cover;
    /* back-gray.jpg */
}

#guidance {
    background-image: url(../img/back-g3.png), /* 一番上：右下に非リピート */
    url(../img/back-g2.png);
    /* 一番下：リピート背景 */
    background-repeat: no-repeat, /* back-gray3.png */
    no-repeat;
    /* back-gray.jpg */
    background-position: right bottom, /* back-gray3.png */
    left top;
    /* back-gray.jpg */
    background-size: auto, /* back-gray3.png */
    auto;
    /* back-gray.jpg */
}


/* アバウト */

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 3em;
}

.about-left,
.about-right {
    width: 50%;
}

#partner {
    margin-bottom: 5em;
}

#partner h3 {
    text-align: center;
    margin-bottom: 1em;
}

#partner ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2em;
}

#partner ul li {
    width: 25%;
}

#about_ib ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#about_ib ul li {
    background-color: #fff;
    padding: 1.5em;
}

#about_ib ul li figure {
    margin-bottom: 1em;
}

.cont_title_h3 {
    text-align: center;
    background: linear-gradient(45deg, #8B3EA2, #700091);
    -webkit-background-clip: text;
    /* テキストで背景を切り抜く */
    -webkit-text-fill-color: transparent;
    /* テキスト自体は透明 */
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1em;
}

.purple .cont_title_h3 {
    text-align: center;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    color: #fff;
}

#about_ib ul li section h4 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #673B75;
}

#about_ib ul li section p {
    margin-bottom: 0;
}


/* EO */

.eo-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
}

.eo-content .eo-text {
    width: calc(52% + 3em);
    border-radius: 8px;
    background-color: #F7F7F7;
    padding: 2em;
    padding-right: 5em;
    margin-top: 2em;
    position: relative;
    z-index: 0;
}

.eo-content .eo-img {
    width: 48%;
    margin-left: -3em;
    position: relative;
    z-index: 1;
}

.eo-content2 .eo-text {
    width: calc(52% + 3em);
    border-radius: 8px;
    background-color: #F7F7F7;
    padding: 2em;
    padding-left: 5em;
    margin-top: 2em;
}

.eo-content2 .eo-img {
    width: 48%;
    margin-right: -3em;
    margin-left: 0;
}


/* メッセージ */

.waku {
    padding: 0 1em;
}

.waku-wrap {
    max-width: 1300px;
    margin: 0 auto 5em;
    position: relative;
    padding: 120px 50px 30px;
    margin-top: -7.5em;
}

.waku-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-top: #673B75 solid 4px;
    border-left: #673B75 solid 4px;
}

.waku-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom: #673B75 solid 4px;
    border-right: #673B75 solid 4px;
}

.message-inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.message-inner figure {
    width: 40%;
}

.message-inner figure img {
    width: 100%;
}

.message-inner .message-text {
    width: 60%;
}

.message-inner .message-text .message_head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-inner .message-text .message_head img {
    width: 128px;
}

.message-inner .message-text .message_head h3 {
    font-size: 24px;
    font-weight: bold;
    color: #673B75;
}


/* プログラム */

.program-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3em;
}

.program-list li {
    background-color: #fff;
    border-radius: 4px;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding: 1.5em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.program-list li i {
    font-size: 78px;
    color: #ABA0AF;
}

.program-list li section {}

.program-list li section h3 {}

.program-list li section p {
    margin-bottom: 0;
}

.program-detail {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 2em;
}

.program-detail .program-img {
    width: 47%;
    border-radius: 4px;
    overflow: hidden;
}

.program-detail .program-img img {
    width: 100%;
}

.program-detail .program-text ul li {
    color: #fff;
    border-bottom: solid #92759A 1px;
    padding-top: 1em;
}

.program-detail .program-text ul li:first-child {
    border-top: solid #92759A 1px;
}

.program-detail .program-text ul li p strong {
    display: block;
}

.guidance-content {
    display: flex;
    gap: 20px;
    margin-bottom: 2em;
}

.guidance-content>li {
    background-image: url(../img/back-gray.jpg);
    background-repeat: repeat;
    text-align: center;
    width: 50%;
    position: relative;
    padding: 2em 0;
}

.guidance-content li ul {
    display: inline-block;
    text-align: left;
}

.guidance-content li ul li {
    text-align: left;
}

.guidance-content li ul li h4 {
    color: #673B75;
    font-size: 0.7em;
}

.guidance-content li ul li p strong {
    font-size: 1.2em;
    display: inline-block;
    margin-right: 0.2em;
}

.guidance-content li ul li p span {
    font-size: 0.8em;
}

.guidance-content li ul li table td {
    padding: 3px;
    white-space: nowrap;
}

.guidance-content>li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: #673B75 solid 4px;
    border-left: #673B75 solid 4px;
}

.guidance-content>li::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: #673B75 solid 4px;
    border-right: #673B75 solid 4px;
}

.lecture-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 5em;
}

.lecture-content li {
    width: calc((100% - 15px * 3) / 4);
    /* gapの合計45pxを引いて4等分 */
}

.lecture-card {
    display: block;
}

.lecture-photo-wrap {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lecture-photo-wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}

.lecture-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lecture-card:hover .lecture-photo {
    transform: scale(1.08);
}

.lecture-content li section {
    background-color: rgba(120, 50, 141, 0.92);
    color: #fff;
    padding: 0.5em 2em 0.5em 0.5em;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.lecture-card:hover section {
    background-color: rgba(74, 0, 100, 0.96);
}

.lecture-content li section h4 {
    font-weight: normal;
    font-size: 1rem;
}

.lecture-content li section p {
    margin: 0;
    font-size: 0.8em;
}

.lecture-arrow {
    position: absolute;
    right: 0.7em;
    top: 50%;
    font-size: 0.9em;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

.lecture-card:hover .lecture-arrow {
    opacity: 1;
}

#lecture_list {
    max-height: 800px;
    /* 初期表示時の制限（適宜調整） */
    overflow: hidden;
    transition: max-height 0.6s ease;
    position: relative;
}

#lecture_list.expanded {
    max-height: 10000px;
    /* 十分に大きな値にしておく */
}

#lecture button {
    margin-top: 2em;
}

#voice_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#voice_list li {
    width: calc((100% - 15px * 1) / 2);
    /* gapの合計45pxを引いて4等分 */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#voice_list li figure {
    border-radius: 50%;
    width: 130px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}

#voice_list li figure img {
    width: 100%;
}

#voice_list li section {
    background-color: #7A5885;
    border-radius: 4px;
    color: #fff;
    width: calc(100% - 65px);
    margin-left: -65px;
    padding: 2em 2em 2em 85px;
    height: 100%;
}

#voice_list li section h3 {
    font-size: 1rem;
    margin-bottom: 0.5em;
}

#voice_list li section p {
    margin-bottom: 0;
}

#voice_list li section p span {
    display: block;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.member-inner {
    max-width: 800px;
    margin: 0 auto;
}

.tab-menu {
    display: flex;
    margin-bottom: 20px;
}

.tab {
    background: none;
    border: none;
    font-size: 16px;
    padding: 10px 0;
    cursor: pointer;
    color: #000;
    border-bottom: 1px solid #000;
    width: 25%;
}

.tab.active {
    color: #78328D;
    border-bottom: 2px solid #78328D;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-content ul li {
    background-color: #fff;
    border-radius: 4px;
    width: calc((100% - 15px * 2) / 3);
    padding: 0.8em;
}

.tab-content ul li h3 {
    font-weight: normal;
    font-size: 0.9rem;
}

.tab-content ul li p {
    font-size: 0.8em;
    margin-bottom: 0;
}

.tab-content.active {
    display: block;
}

#member .waku-wrap {
    padding-bottom: 100px;
}

.flow-list {
    text-align: center;
    margin-bottom: 2em;
}

.flow-list i {
    font-size: 32px;
    color: #fff;
    opacity: 0.5;
}

.flow-cont {
    border-radius: 4px;
    border: solid 2px #fff;
    display: flex;
    background-color: #fff;
    text-align: left;
}

.flow-cont .number {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #78328D;
    width: 90px;
}

.flow-cont .number span {
    font-size: 14px;
    display: block;
}

.flow-cont .number strong {
    font-size: 32px;
    line-height: 1;
}

.flow-cont section {
    padding: 1em;
}

.flow-cont section h3 {
    color: #78328D;
}

.flow-cont section p {
    margin-bottom: 0;
}

#flow .btn {
    margin: 0;
}

#flow .btn-outline {
    margin-right: 1em;
}

#flow .hero-cta {
    background: none;
}


/* フッター */

.site-footer {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
}

.site-footer i {
    color: #673B75;
    display: inline-block;
    margin-right: 0.2em;
    font-size: 1.2em;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.footer-block {
    min-width: 240px;
}

.footer-block h4 {
    color: #673B75;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-block p {
    margin: 4px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.icon {
    width: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 12px;
    color: #666;
}

@media (min-width: 769px) {
    .sp {
        display: none!important;
    }
}

@media (max-width: 768px) {
    .header-inner {
        margin: 0 1em;
        padding: 0.5em 1em;
    }
    .pc {
        display: none!important;
    }
    .hero-bg-overlay {
        background-size: 100%;
        background: url(../img/kyoto.svg);
    }
    .hero-inner {
        display: block;
    }
    .hero-right {
        position: static;
        width: 100%;
        min-width: auto;
    }
    #first-view {
        background-size: 300%;
        background-position: left top;
    }
    .hero-left {
        width: 70%;
        margin: 0 auto;
        padding: 7em 0 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 16vmin;
    }
    .hero-box {
        font-size: 12vmin;
        padding: 3px 0 12px;
    }
    .hero-lead {
        margin-bottom: 0;
        font-size: 1rem;
    }
    .hero-right img {
        height: auto;
    }
    .cont_title span {
        width: 80%;
        margin: 0 auto -1em;
    }
    .cont_title strong {
        font-size: 1.2em;
    }
    .cont_title_h3 {
        font-size: 1.4em;
    }
    .hero-cta,
    .tab-content ul,
    #voice_list,
    .guidance-content,
    .program-detail,
    .program-list,
    .message-inner,
    #about_ib ul {
        display: block;
    }
    .guidance-content>li,
    .program-list li {
        width: 100%;
    }
    .program-detail .program-img {
        width: 100%;
    }
    .guidance-content>li {
        padding: 1.5em;
        margin-bottom: 2em;
    }
    .lecture-content li {
        width: calc((100% - 15px * 1) / 2);
    }
    .lecture-photo-wrap::before {
        padding-top: 100%;
    }
    .lecture-content li section {
        font-size: 0.8em;
    }
    .lecture-content li section h4 span {
        display: block;
        font-size: 0.8em;
    }
    #voice_list li {
        width: 100%;
        display: block;
        margin-bottom: 2em;
    }
    #voice_list li figure {
        width: 30%;
        margin: 0 auto;
    }
    #voice_list li section {
        width: 100%;
        margin-left: 0;
        padding: 4em 2em 2em;
        margin-top: -3em;
    }
    .tab-content ul li {
        width: 100%;
    }
    .btn {
        width: 80%;
        margin: 0 auto!important;
    }
    .hero .btn-outline {
        margin-bottom: 1em!important;
    }
    #flow .btn-outline {
        margin-right: 0;
        margin-bottom: 1em;
    }
    .section-inner {
        padding: 4em 1em;
    }
    .flow-cont .number span {
        font-size: 10px;
    }
    .flow-cont .number strong {
        font-size: 26px;
    }
    .flow-cont .number {
        min-width: 50px;
    }
    .waku-wrap {
        margin-top: -6em;
        padding: 5em 2em 3em;
    }
    .waku-wrap::before,
    .waku-wrap::after {
        width: 2em;
        height: 2em;
    }
    .tab-content ul li {
        margin-bottom: 1em;
    }
    .message-inner .message-text,
    .message-inner figure {
        width: 100%;
    }
    .message-inner .message-text .message_head img {
        width: 5em;
    }
    .message-inner .message-text .message_head h3 {
        font-size: 1rem;
    }
    .message-inner .message-text .message_head p {
        font-size: 0.8em;
    }
    .about-content {
        flex-direction: column-reverse;
    }
    .about-left,
    .about-right {
        width: 100%;
    }
    #partner ul {
        flex-wrap: wrap;
    }
    #partner ul li {
        width: calc((100% - 20px * 1) / 2);
    }
    #about_ib ul li {
        margin-bottom: 1em;
    }
    #about_ib ul li section h4 {
        font-size: 1em;
    }
    .eo-content .eo-img {
        width: 90%;
    }
    .eo-content .eo-img {
        margin-left: -20em;
    }
    .eo-content .eo-text {
        margin-top: 11em;
        padding: 4em 2em 2em;
        width: calc(79% + 3em);
    }
    .eo-content2 .eo-img {
        margin-left: 0;
        margin-right: -20em;
    }
    #lecture button {
        margin-top: 2em!important;
    }
    .message-inner figure {
        margin-bottom: 0.7em;
    }
    .message-inner .message-text .message_head {
        gap: 10px;
        align-items: flex-start;
    }
}

/* ================= サブページ用：ページヘッダー ================= */
.page-head {
    padding: 160px 1em 60px;
    text-align: center;
}

.page-head-title {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.page-head-lead {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-head {
        padding: 120px 1em 40px;
    }
    .page-head-title {
        font-size: 28px;
    }
}

/* パンくずのみの薄い帯（講師詳細など、タイトルを別の場所で見せるページ用） */
.page-head--compact {
    padding: 110px 1em 24px;
    text-align: left;
}

@media (max-width: 768px) {
    .page-head--compact {
        padding: 90px 1em 20px;
    }
}

/* 一覧ページ用（タイトル＋説明文は残しつつ高さだけ短縮） */
.page-head--list {
    padding: 120px 1em 36px;
}

@media (max-width: 768px) {
    .page-head--list {
        padding: 100px 1em 28px;
    }
}

/* page-head内のsection-innerは、外側のpage-head側で余白を管理するため打ち消す */
.page-head .section-inner {
    padding: 0 1em;
}


/* ================= サブページ用：イベント一覧 ================= */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 4px;
    padding: 1.5em 2em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 左→右に広がる塗りつぶしレイヤー */
.event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #8B3EA2, #4a0064);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card:hover::before {
    transform: scaleX(1);
}

/* 文字色の反転（塗りを少し追いかけるように遅延） */
.event-card .event-date .year,
.event-card .event-date .day,
.event-card .event-date .time,
.event-card .event-body h3,
.event-card .event-body p,
.event-card .event-arrow,
.event-card .event-lecturer-name,
.event-card .event-lecturer-company {
    transition: color 0.3s ease 0.12s;
}

.event-card:hover .event-date .year,
.event-card:hover .event-date .day,
.event-card:hover .event-date .time,
.event-card:hover .event-body h3,
.event-card:hover .event-body p,
.event-card:hover .event-arrow,
.event-card:hover .event-lecturer-name,
.event-card:hover .event-lecturer-company {
    color: #fff;
}

/* 矢印：色が変わるだけ */
.event-arrow {
    transition: color 0.3s ease 0.12s;
}

/* 日付：わずかに拡大 */
.event-date {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover .event-date {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.35);
}

/* タグ：塗りに埋もれないよう白背景を保って浮き上がる */
.event-tag {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.event-card:hover .event-tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* 講師サムネイル：拡大＋白リング */
.event-lecturers {
    transition: border-color 0.3s ease;
}

.event-card:hover .event-lecturers {
    border-color: rgba(255, 255, 255, 0.35);
}

.event-lecturer-thumb {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.event-card:hover .event-lecturer-thumb {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

/* 過去イベント：控えめなグレー演出（opacityで一律に薄めず、個別に色を落とす） */
.event-card.is-past {
    background-color: #f5f5f4;
}

.event-card.is-past .event-date .year,
.event-card.is-past .event-date .day {
    color: #999;
}

.event-card.is-past .event-date {
    border-right-color: #ddd;
}

.event-card.is-past .event-body h3 {
    color: #777;
}

.event-card.is-past .event-body p {
    color: #999;
}

.event-card.is-past .event-arrow {
    color: #aaa;
}

.event-card.is-past .event-lecturer-name,
.event-card.is-past .event-lecturer-company {
    color: #999;
}

.event-card.is-past::before {
    background: linear-gradient(45deg, #cfcfcf, #a8a8a8);
}

.event-card.is-past:hover .event-date {
    transform: none;
}

.event-card.is-past:hover .event-tag {
    transform: none;
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    .event-card,
    .event-card::before,
    .event-card .event-arrow,
    .event-card .event-date,
    .event-card .event-tag,
    .event-lecturer-thumb,
    .btn,
    .btn i {
        transition: none !important;
    }
}

.event-date {
    flex: 0 0 110px;
    text-align: center;
    color: #700091;
    border-right: 1px solid #e5e5e5;
    padding-right: 24px;
}

.event-date .year {
    display: block;
    font-size: 0.8em;
    color: #999;
}

.event-date .day {
    display: block;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.event-date .time {
    display: block;
    font-size: 0.75em;
    color: #999;
    margin-top: 2px;
}

.event-body {
    flex: 1;
}

.event-tag {
    display: inline-block;
    background: linear-gradient(45deg, #8B3EA2, #700091);
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 3px 14px;
    border-radius: 12px;
    margin-bottom: 0.6em;
}

.event-card.is-past .event-tag {
    background: #ABA0AF;
}

.event-body h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.3em;
    color: #333;
}

.event-body p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0;
}

.event-arrow {
    flex: 0 0 auto;
    font-size: 1.2em;
    color: #700091;
}

@media (max-width: 768px) {
    .event-card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 1.2em;
    }
    .event-date {
        flex: 0 0 auto;
        border-right: none;
        padding-right: 0;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    .event-arrow {
        display: none;
    }
}

/* purple背景内でのイベントカード（TOPページ用） */
.purple .event-list {
    margin-bottom: 3em;
}


/* ================= イベントカード内：登壇講師（任意） =================
   イベントに講師が紐づいている場合のみ表示するブロック。
   講師が未設定のイベントはこのブロックごと出力しない想定。 */
.event-lecturers {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
    padding-left: 28px;
    border-left: 1px solid #e5e5e5;
}

.event-lecturer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-lecturer .event-lecturer-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.event-lecturer .event-lecturer-info {
    line-height: 1.4;
    white-space: nowrap;
}

.event-lecturer .event-lecturer-name {
    display: block;
    font-size: 1.05em;
    font-weight: bold;
    color: #333;
}

.event-lecturer .event-lecturer-company {
    display: block;
    font-size: 0.9em;
    color: #888;
}

@media (max-width: 768px) {
    .event-lecturers {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-left: 0;
        padding-top: 12px;
        margin-top: 4px;
        width: 100%;
        flex-wrap: wrap;
    }
}


/* ================= イベント詳細ページ ================= */
.event-detail-head {
    max-width: 1200px;
    margin: 0 auto 1em;
    padding: 0 1em;
}

.event-detail-breadcrumb {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1em;
}

.event-detail-breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.event-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 4em;
    align-items: flex-start;
}

.event-detail-main {
    flex: 1;
    min-width: 0;
}

.event-detail-main h2.cont_title_h3:first-child {
    margin-top: 0;
}

.event-detail-main table {
    width: 100%;
    margin-bottom: 2em;
}

.event-detail-main table td {
    padding: 0.8em 1em;
    border-bottom: 1px solid #e5e5e5;
}

.event-detail-main table td:first-child {
    width: 160px;
    color: #673B75;
    font-weight: bold;
    white-space: nowrap;
}

.event-detail-side {
    flex: 0 0 320px;
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 2em;
}

.event-detail-side ul li {
    margin-bottom: 1.4em;
}

.event-detail-side ul li h4 {
    color: #673B75;
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 0.3em;
}

.event-detail-side ul li p {
    margin-bottom: 0;
}

.event-detail-side .btn {
    width: 100%;
    margin-top: 0.5em;
}

@media (max-width: 768px) {
    .event-detail {
        flex-direction: column;
    }
    .event-detail-side {
        flex: 0 0 auto;
        width: 100%;
    }
}


/* 登壇講師カード（詳細ページ用：lecture-contentより大きめのプロフィール表示） */
.speaker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 2em;
}

.speaker-list li {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
}

.speaker-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    padding: 1.2em 1.6em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.speaker-card:hover {
    box-shadow: 0 6px 20px rgba(74, 0, 100, 0.15);
}

.speaker-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.speaker-card:hover img {
    transform: scale(1.08);
}

.speaker-card h4 {
    font-size: 1.05em;
    margin-bottom: 0.2em;
    transition: color 0.3s ease;
}

.speaker-card:hover h4 {
    color: #700091;
}

.speaker-card p {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 0;
}

.speaker-arrow {
    margin-left: auto;
    color: #700091;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-arrow {
    opacity: 1;
}

@media (max-width: 768px) {
    .speaker-list li {
        flex: 0 0 100%;
    }
}


/* ================= 講師詳細ページ ================= */
.lecturer-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 4em;
    align-items: flex-start;
}

.lecturer-detail-photo {
    flex: 0 0 280px;
    border-radius: 8px;
    overflow: hidden;
}

.lecturer-detail-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.lecturer-detail-main {
    flex: 1;
    min-width: 0;
}

.lecturer-detail-name {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 0.2em;
}

.event-detail-title {
    font-size: 1.6em;
    font-weight: bold;
    margin: 0.5em 0 1em;
}

.event-detail-main .event-tag,
.event-detail-main .event-ended-badge {
    margin-bottom: 0;
}

.lecturer-detail-name .eng {
    display: block;
    font-size: 0.55em;
    font-weight: normal;
    color: #888;
    margin-top: 0.2em;
}

.lecturer-detail-company {
    display: inline-block;
    color: #700091;
    font-weight: bold;
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .lecturer-detail {
        flex-direction: column;
    }
    .lecturer-detail-photo {
        flex: 0 0 auto;
        width: 60%;
        margin: 0 auto;
    }
}


/* ================= お知らせバー（hero-cta内に表示） ================= */
.notice-bar-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 1em;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.notice-bar-inner:hover {
    background: rgba(255, 255, 255, 0.1);
}

.notice-label {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 12px;
}

.notice-date {
    flex: 0 0 auto;
    color: #fff;
    font-weight: bold;
    font-size: 0.95em;
}

.notice-title {
    flex: 1;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-arrow {
    flex: 0 0 auto;
    color: #fff;
    font-size: 1.6em;
    line-height: 1;
    font-weight: bold;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.notice-bar-inner:hover .notice-arrow {
    opacity: 1;
}

@media (max-width: 768px) {
    .notice-bar-inner {
        flex-wrap: wrap;
        gap: 4px 12px;
    }
    .notice-title {
        order: 3;
        width: 100%;
        white-space: normal;
    }
    .notice-arrow {
        position: absolute;
        right: 1em;
    }
    .notice-bar-inner {
        position: relative;
    }
}


/* ================= 終了バッジ（開催日を過ぎたイベントに自動表示） ================= */
.event-ended-badge {
    display: inline-block;
    background: #888;
    color: #fff;
    font-size: 0.7em;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    margin-right: 8px;
    vertical-align: middle;
}

/* 一覧・ピックアップカード内（is-past時は少し馴染ませる） */
.event-card.is-past .event-ended-badge {
    background: rgba(255, 255, 255, 0.85);
    color: #666;
}


/* ================= 固定ヘッダー分のスクロール位置調整 =================
   他ページから index.html#about のようにジャンプした際、
   固定ヘッダーに見出しが隠れないようにする。 */
#about,
#about_eo,
#message,
#lecturers,
#events,
#voices,
#member {
    scroll-margin-top: 110px;
}


/* ================= 申込ボタン：無効状態 ================= */
.btn-disabled {
    background: #ccc;
    color: #888;
    border: 2px solid #ccc;
    cursor: default;
    pointer-events: none;
}


/* ================= CF7フォーム共通スタイル ================= */
.wpcf7-form p {
    margin-bottom: 2.4em;
}

.wpcf7-form label {
    display: block;
    font-weight: bold;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    margin-bottom: 0.4em;
    color: #700091;
}

.wpcf7-form .required-mark {
    display: inline-block;
    background: #F9E9E9;
    color: #d94141;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 0;
    padding: 1px 8px;
    border-radius: 8px;
    margin-left: 0.5em;
    vertical-align: middle;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 0.8em 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #700091;
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #700091 50%), linear-gradient(135deg, #700091 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 15px) center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.5em;
}

/* 必須マーク */
.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 0;
}

/* プライバシーポリシー同意チェックボックス */
.wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    font-weight: normal;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
    accent-color: #700091;
}

/* 送信ボタン：サイト共通の.btnデザインに寄せる */
.wpcf7-form input[type="submit"] {
    font-size: 16px;
    font-weight: bold;
    padding: 14px 0;
    width: 280px;
    text-align: center;
    border-radius: 30px;
    border: 2px solid #700091;
    background: #700091;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 2em auto 0;
}

.wpcf7-form input[type="submit"]:hover {
    background: #4a0064;
}

.wpcf7-form input[type="submit"]:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: default;
}

/* エラー・完了メッセージ */
.wpcf7-not-valid-tip {
    color: #d94141;
    font-size: 0.85em;
    margin-top: 0.4em;
}

.wpcf7-response-output {
    margin-top: 2em;
    padding: 1em 1.5em;
    border-radius: 4px;
    border: none;
    font-size: 0.95em;
}

.wpcf7-mail-sent-ok {
    background: #eafaf0;
    color: #1a7a4c;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked,
.wpcf7-mail-sent-ng {
    background: #fdeeee;
    color: #b23c3c;
}

.wpcf7 .wpcf7-spinner {
    margin-left: 1em;
}


/* ================= 申込ページ：選択中イベントの表示 ================= */
.apply-selected-event {
    background: #F7F2F9;
    border: 1px solid #E3D3EA;
    border-radius: 8px;
    padding: 1em 1.4em;
    margin-bottom: 2em;
}

.apply-selected-event-label {
    display: block;
    font-size: 0.8em;
    color: #700091;
    font-weight: bold;
    margin-bottom: 0.3em;
}

.apply-selected-event strong {
    font-size: 1.2em;
    color: #333;
}


/* ================= 固定ページ本文の共通スタイル ================= */
.page-content {
    line-height: 1.9;
    color: #333;
}

.page-content > p:first-child {
    font-size: 1.05em;
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
}

.page-content h2 {
    font-size: 1.3em;
    font-weight: bold;
    color: #700091;
    margin: 2.2em 0 0.9em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #E3D3EA;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin: 1.6em 0 0.6em;
}

.page-content p {
    margin-bottom: 1.4em;
}

.page-content ul,
.page-content ol {
    list-style: disc;
    margin: 0 0 1.6em 1.6em;
    padding: 0;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 0.6em;
    padding-left: 0.3em;
}

.page-content a {
    color: #700091;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: #4a0064;
}

.page-content strong {
    font-weight: bold;
}


/* ================= 上書き対策：CF7フォームの余白を確実に優先させる ================= */
.page-content .wpcf7-form p {
    margin-bottom: 2.4em;
}

.page-content .wpcf7-form label {
    margin-bottom: 0.4em;
}


/* ================= 追従CTA（近日開催イベント） ================= */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 40px;
    padding: 12px 20px 12px 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    max-width: 320px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.sticky-cta-label {
    flex: 0 0 auto;
    background: linear-gradient(45deg, #8B3EA2, #700091);
    color: #fff;
    font-size: 0.7em;
    font-weight: bold;
    padding: 10px 6px;
    border-radius: 30px;
    writing-mode: horizontal-tb;
    white-space: nowrap;
}

.sticky-cta-date {
    flex: 0 0 auto;
    color: #700091;
    font-weight: bold;
    font-size: 0.95em;
}

.sticky-cta-title {
    flex: 1;
    color: #333;
    font-size: 0.85em;
    font-weight: bold;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .sticky-cta {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        padding: 10px 16px 10px 10px;
    }
    .sticky-cta-title {
        font-size: 0.8em;
    }
}


/* ================= フッター：SNSアイコン ================= */
.footer-sns {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-sns a {
    display: block;
    width: 28px;
    height: 28px;
}

.footer-sns img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ================= ヘッダー：お問い合わせボタンをPCにも表示 ================= */
@media (min-width: 769px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 28px;
    }
    .nav_cta .btn {
        width: auto;
        padding: 10px 26px;
    }
}


/* ================= フッター上：CTAエリア（ダイナミック版） ================= */
.footer-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a0064, #26002e);
    padding: 6em 1em 5em;
    text-align: center;
}

.footer-cta-bg-text {
    position: absolute;
    top: 0.15em;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.footer-cta-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-cta-heading {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: bold;
    margin-bottom: 0.6em;
}

.footer-cta-lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 3em;
}

.footer-cta-row {
    display: flex;
    justify-content: center;
}

.footer-cta-divider {
    display: none;
}

.footer-cta-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.footer-cta-event-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
}

.footer-cta-event-title {
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 1.1em;
}

.footer-cta-event-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-cta-event-buttons .btn {
    width: auto;
    padding: 12px 28px;
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 5em 1em 4em;
    }
    .footer-cta-event-buttons {
        flex-direction: column;
        width: 100%;
    }
    .footer-cta-event-buttons .btn {
        width: 100%;
    }
}

/* 追従CTA：フッターCTAエリアが画面に入ったら非表示にする */
.sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}


/* ================= reCAPTCHAバッジを非表示（代わりに規約文言をフォーム内に表示） ================= */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-notice {
    font-size: 0.78em;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.recaptcha-notice a {
    color: #999;
    text-decoration: underline;
}
