/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #000000;
    line-height: 1.362;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* フェードインアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 全体レイアウト */
body {
    width: 100%;
    margin: 0 auto;
}

/* header */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__inner {
    width: 100%;
    margin: 0 auto;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;

}

.header__logo img {
    width: 400px;
    height: 43px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #020202;
    line-height: 1.362;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.header__nav-link:hover {
    color: #00A0E9;
    transform: translateY(-2px);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.header__hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #020202;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* kv */
.kv {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 83px;
}

.kv img {
    opacity: 0;
}

.kv img.is-loaded {
    opacity: 1;
    animation: bounceIn 1s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    40% {
        opacity: 1;
        transform: scale(1.08);
    }
    55% {
        transform: scale(0.98);
    }
    70% {
        transform: scale(1.03);
    }
    85% {
        transform: scale(0.99);
    }
    95% {
        transform: scale(1.01);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.kv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #D4ECF0;
}

.kv img {
    width: 100%;
    max-width: 1234px;
    margin: 0 auto;
    height: auto;
    position: relative;
    z-index: 3;
}

/* content-box共通 */
.content-box {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 13px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-box__header {
    width: 100%;
    max-width: 1000px;
    background-color: #00A0E9;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.content-box__title {
    font-size: 25px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.362;
    letter-spacing: 0.2em;
    text-align: center;
}

.content-box__body {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 0;
}

/* event-overview */
.event-overview {
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0;
}

.event-overview__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.event-overview__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-overview__row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.event-overview__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-overview__header {
    width: 100%;
}

.event-overview__badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 50px;
    padding: 10px 20px;
}

.event-overview__badge-dot {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.362;
    letter-spacing: 0.05em;
}

.event-overview__badge--yellow .event-overview__badge-dot {
    color: #FFD428;
}

.event-overview__badge--pink .event-overview__badge-dot {
    color: #00A0E9;
}

.event-overview__badge--red .event-overview__badge-dot {
    color: #E62887;
}

.event-overview__badge-label {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    letter-spacing: 0.05em;
}

.event-overview__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.event-overview__text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.362;
    margin: 0;
    text-align: left;
    width: 100%;
}

.event-overview__text--bold {
    font-weight: 700;
}

.event-overview__text--small {
    font-size: 16px;
}

.event-overview__text--red {
    color: #E62887;
    margin-top: 10px;
}

/* past-events */
.past-events {
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0;
}

.past-events__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.past-events__gallery {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.past-events__item {
    flex: 0 0 calc(50% - 10px);
}

.past-events__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 480 / 309;
}

/* event-venue */
.event-venue {
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0 0;
}

.event-venue__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.event-venue__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-venue .content-box {
    padding-bottom: 50px;
}

/* event-schedule */
.event-schedule {
    width: 100%;
    position: relative;
    z-index: 15;
}

.event-schedule__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.event-schedule__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 57px;
}
.event-schedules-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 50px;
}

.schedule-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.schedule-card {
    width: 100%;
    max-width: 1000px;
    border: 2px solid #000000;
    border-radius: 10px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
}

.schedule-card__header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 30px 50px;
}

.schedule-card__date {
    flex-shrink: 0;
}

.schedule-card__date-text {
    background-color: #FFD428;
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    text-align: center;
    width: 141px;
    display: block;
}

.schedule-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    align-items: flex-start;
}

.schedule-card__university {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}

.schedule-card__university-name {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    text-align: left;
}

.schedule-card__campus-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    text-align: left;
}

.schedule-card__info-item {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    text-align: left;
}

.schedule-card__badges {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-shrink: 0;
}

.schedule-card__badge img {
    width: 97px;
    height: 97px;
}

.schedule-card__button {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    pointer-events: auto;
}

.schedule-card__button-link {
    background-color: #FFD428;
    border-radius: 100px;
    padding: 15px 70px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.schedule-card__button-link:hover {
    background-color: #FFE55C;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* time-schedule */
.time-schedule {
    width: 100%;
    padding: 0 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.time-schedule.is-open {
    max-height: 2000px;
    padding: 0 20px 0;
}

.time-schedule__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
}

.time-schedule__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-schedule__header {
    width: 100%;
    max-width: 1000px;
    background-color: #00A0E9;
    border-radius: 10px 10px 0 0;
    padding: 10px;
}

.time-schedule__title {
    font-size: 25px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.362;
    letter-spacing: 0.2em;
    text-align: left;
}

.time-schedule__body {
    width: 100%;
    max-width: 1000px;
    background-color: #F4F4F4;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.time-schedule__row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.time-schedule__text {
    flex: 1;
}

.time-schedule__text p {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.362;
}

.time-schedule__image {
    flex-shrink: 0;
}

.time-schedule__image img {
    width: 372px;
    height: 208px;
}

/* companies */
.companies {
    width: 100%;
    background-color: #FFFFFF;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.companies.is-open {
    max-height: 5000px;
    padding: 0 20px;
}

.companies__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.companies__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.companies__header {
    width: 100%;
    max-width: 1000px;
    background-color: #00A0E9;
    border-radius: 10px 10px 0 0;
    padding: 10px;
}


.companies__body {
    width: 100%;
    max-width: 1000px;
    background-color: #F4F4F4;
    padding: 30px;
}

.companies__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.company-card {
    flex: 0 0 calc(50% - 15px);
    border-radius: 5px 5px 0 0;
}

.company-card__header {
    background-color: #FFFEFE;
    border-radius: 5px 5px 0 0;
    padding: 10px 30px;
}

.company-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #00A0E9;
    line-height: 1.362;
}

.company-card__logo {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card__logo img {
    width: 100%;
    height: auto;
}

.company-card__button {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-card__button-link {
    background-color: #FFD428;
    border-radius: 100px;
    padding: 5px;
    width: 184px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 1.362;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card__button-link:hover {
    background-color: #FFE55C;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.company-card__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.company-card__info-row {
    display: flex;
    border-bottom: 1px dashed #000000;
}

.company-card__info-label {
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #00A0E9;
    line-height: 1.362;
    letter-spacing: 0.2em;
    width: 100px;
    flex-shrink: 0;
}

.company-card__info-value {
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #020202;
    line-height: 1.362;
    flex: 1;
}

/* qa */
.qa {
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0;
}

.qa__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.qa__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qa__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
}

.qa__item {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
}

.qa__question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.qa__question:hover {
    background-color: #F5F5F5;
    transform: translateX(5px);
}

.qa__q-mark {
    background-color: #00A0E9;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.362;
    flex-shrink: 0;
}

.qa__question-text {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.362;
    flex: 1;
}

.qa__icon {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.qa__icon::before,
.qa__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #000000;
    transition: transform 0.3s ease;
}

.qa__icon::before {
    transform: translate(-50%, -50%);
}

.qa__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.qa__item.is-open .qa__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.qa__item.is-open .qa__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.qa__answer {
    background: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.qa__item.is-open .qa__answer {
    max-height: 500px;
}

.qa__answer-inner {
    padding: 20px;
    border-top: 1px dashed #000000;
}

.qa__answer-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.362;
}

/* footer */
.footer {
    width: 100%;
    background-color: #00A0E9;
    padding: 70px 20px 250px;
}

.footer__inner {
    width: 100%;
    margin: 0 auto;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__section--contact {
    width: 900px;
    padding: 0 20px;
}

.footer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__label-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
}

.footer__label {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.362;
    text-align: center;
}

.footer__label--contact {
    font-size: 16px;
    font-weight: 600;
}

.footer__text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.362;
    text-align: center;
}

.footer__text--large {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.362;
}

.footer__text--contact {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.362;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer__text--email {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.362;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.footer__contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__phone-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer__email-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.footer__note {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.362;
    text-align: center;
}

.footer__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    .kv {
        margin-top: 71px;
    }

    .header__content {
        gap: 20px;
        padding: 20px 30px;
        position: relative;
    }

    .header__logo img {
        width: 200px;
        height: auto;
    }

    .header__hamburger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .header__nav.is-open {
        max-height: 300px;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        gap: 15px;
    }

    .header__nav-item {
        width: 100%;
    }

    .header__nav-link {
        display: block;
        padding: 10px 0;
    }

    .kv__inner {
        height: auto;
    }

    .kv__bg {
        height: auto;
        min-height: 150px;
    }

    .kv__image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
    }

    .kv__image img {
        width: 100%;
        height: auto;
    }

    .event-overview,
    .past-events,
    .qa,
    .event-venue {
        padding-left: 0;
        padding-right: 0;
    }

    .event-schedule,
    .time-schedule,
    .companies {
        padding-left: 20px;
        padding-right: 20px;
    }

    .content-box,
    .schedule-card,
    .time-schedule__header,
    .time-schedule__body,
    .companies__header,
    .companies__body {
        width: 100%;
        max-width: 100%;
    }

    .event-overview__row {
        flex-direction: column;
    }


    .time-schedule__row {
        flex-direction: column;
    }

    .schedule-card__date {
        flex-direction: column;
    }

    .companies__grid {
        flex-direction: column;
        gap: 30px;
    }

    .company-card {
        width: 100%;
        min-width: 100%;
    }

    .footer__section--contact {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .kv {
        margin-top: 62px;
    }

    .header__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .header__nav {
        top: 62px;
    }

    .header__nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .event-overview,
    .past-events,
    .qa {
        padding-left: 0;
        padding-right: 0;
    }

    .event-schedule,
    .time-schedule,
    .companies {
        padding-left: 2.506vw;
        padding-right: 2.506vw;
    }

    .content-box {
        padding: 0 2.506vw;
    }


    .content-box__header {
        width: 100%;
    }

    .content-box__title {
        font-size: 18px;
    }

    .time-schedule__title {
        font-size: 18px;
        letter-spacing: normal;
        padding: 5px 10px;
    }


    .event-overview__badge {
        padding: 1.253vw 2.506vw;
    }

    .time-schedule__image img {
        width: 100%;
        height: auto;
    }

    .time-schedule.is-open {
        padding: 0 2.506vw 0;
    }

    .companies.is-open {
        padding: 0 2.506vw;
    }

    .time-schedule__inner {
        padding-top: 10vw;
        gap: 5.013vw;
    }

    .time-schedule__header {
        padding: 1.253vw;
    }

    .time-schedule__body {
        padding: 3.759vw;
        gap: 3.759vw;
    }

    .time-schedule__row {
        gap: 3.759vw;
    }

    .companies__inner {
        gap: 5.013vw;
    }

    .companies__header {
        padding: 1.253vw;
    }

    .companies__body {
        padding: 3.759vw;
    }

    .companies__grid {
        gap: 3.759vw;
    }

    .event-overview {
        padding: 6.266vw 0;
    }

    .event-overview__inner {
        gap: 5.013vw;
    }

    .event-overview__row {
        gap: 2.506vw;
    }

    .event-overview__item {
        gap: 1.253vw;
    }

    .past-events {
        padding: 6.266vw 0;
    }

    .past-events__gallery {
        gap: 2.506vw;
    }

    .qa {
        padding: 6.266vw 0;
    }

    .qa__inner {
        gap: 5.013vw;
    }

    .qa__list {
        gap: 2.506vw;
        padding-bottom: 6.266vw;
    }

    .qa__question {
        gap: 1.253vw;
        padding: 2.506vw;
    }

    .qa__answer-inner {
        padding: 2.506vw;
    }

    .content-box__body {
        padding: 5.013vw 0 0;
    }

    .past-events .content-box__body {
        padding-bottom: 3.133vw;
    }

    .event-venue .content-box {
        padding-bottom: 6.266vw;
    }

    .event-schedules-wrapper {
        gap: 6.266vw;
        padding-bottom: 6.266vw;
    }
}

@media (max-width: 798px) {
    .schedule-card__header {
        padding: 2.506vw 1.88vw 3.759vw;
        gap: 1.88vw;
    }

    .schedule-card__date-text {
        padding: 2.506vw;
        font-size: 2.757vw;
        width: 17.67vw;
    }

    .schedule-card__info {
        gap: 0.627vw;
    }

    .schedule-card__university {
        gap: 1.253vw;
    }

    .schedule-card__university-name {
        font-size: 3.759vw;
    }

    .schedule-card__campus-name {
        font-size: 2.506vw;
    }

    .schedule-card__info-item {
        font-size: 2.256vw;
    }

    .schedule-card__badges {
        flex-direction: column;
        gap: 1.253vw;
    }

    .schedule-card__badge img {
        width: 6.892vw;
        height: 6.892vw;
    }

    .schedule-card__button {
        bottom: -3.759vw;
    }

    .schedule-card__button-link {
        padding: 1.88vw 8.772vw;
        font-size: 2.256vw;
    }
}

@media (max-width: 480px) {
    .header__content {
        padding: 15px 20px;
    }

    .header__logo img {
        width: 150px;
    }

    .content-box__title {
        font-size: 18px;
    }

    .event-overview__badge-text,
    .event-overview__badge-sub {
        font-size: 16px;
    }

    .schedule-card {
        padding: 2.506vw;
    }

    .schedule-card__button {
        bottom: -4.637vw;
    }

    .schedule-card__button-link {
        padding: 2.757vw 11.278vw;
        font-size: 2.757vw;
        white-space: nowrap;
    }

    .qa__question-text {
        font-size: 16px;
    }

    .past-events__item {
        flex: 0 0 100%;
    }
}

#side_bn {
    position: fixed;
    right: 10px;
    bottom: 0;
    z-index: 100;
}

#side_bn a img:hover {
    opacity: 0.8;
}

@media screen and (max-width: 798px) {
    #side_bn img {
        width: 180px;
    }
    .footer {
        padding: 70px 20px 180px;
    }
}