@charset "utf-8";
/* -----------------------------------------------------------
 =top
----------------------------------------------------------- */
/* mainVisual --------------- */
.areaMainvisual {
    /*height: 100vh − 70px;*/
    overflow: hidden;
    position: relative;
    padding-top: 70px;
    background: linear-gradient(to right, #ffffff 50%, #005BAC 50%);
}
.mainvisual {
    width: 100%;
    max-width: 679px;
    height: auto;
    display: block;
    margin: auto;
    opacity: 0;
    animation: mvFadeIn 2.5s ease-out forwards;
}
.mainvisual-catch {
    position: absolute;
    left: 50%;
    top: min(580 / 679 * 100vw, 580px);
    transform: translateX(-50%);
    opacity: 0;
    width: 100%;
    max-width: 513px;
    animation: catchSlideIn 1.5s ease-out forwards;
    animation-delay: 1.5s;
}
.mainvisual-catch img {
    width: 100%;
    max-width: 513px;
    height: auto;
    display: block;
}
@media print, screen and (min-width: 680px) {
    .mainvisual-catch {
        top: 580px;
        width: 513px;
    }
}
@keyframes mvFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes catchSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 0) translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
/* mainvisual icon --------------- */
.mainvisual-icon-wrap {
    position: absolute;
    top: 56px;
    left: 4%;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.icon-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4px;
    box-sizing: border-box;
}
.icon-blue {
    background: var(--mainColor);
    font-size: 12px;
    text-decoration: none;
    &:hover {
        opacity: var(--hoverOpacity);
    }
}
.icon-img {
    width: 19px;
    height: 20.72px;
    margin-bottom: 5px;
}
.icon-white {
    background: #fff;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    font-size: 15px;
}
.icon-text {
    font-weight: 800;
    line-height: 1.3;
}
a .icon-text {
    color: #fff;
    line-height: 1.2;
}
/* schroll title --------------- */
.marquee-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 43px;
    overflow: hidden;
}
.marquee {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
:root {
    --marquee-speed: 30s;
}
.marquee-inner {
    display: inline-flex;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: marquee var(--marquee-speed) linear infinite;
}
.marquee-inner img {
    width: 500px;
    flex-shrink: 0;
    margin-right: 20px;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media print, screen and (min-width: 1200px) {
    .main-visual {
        z-index: 1001;
    }
    .mainvisual-icon-wrap {
        display: none;
    }
    .marquee-inner img {
        width: 660px;
    }
}
/* SCHEDULE --------------- */
.event-list {
    display: grid;
    gap: 12px;
    margin: 10px auto 15px;
    grid-auto-rows: 1fr;
}
.event-list.recent {
    grid-template-columns: repeat(2, 1fr);
}
.event-list.others {
    grid-template-columns: repeat(3, 1fr);
}
.event-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    padding: 14px 11px 16px;
    box-shadow: 0 0 10px 0 rgba(183, 219, 245, 0.50);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}
a.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 20px -6px rgba(183, 219, 245, 0.50);
}
.event-date {
    font-weight: 700;
    line-height: 1;
}
.recent .event-date {
    font-size: clamp(30.00px, calc(0.95vw + 26.57px), 38.00px);
}
.recent .event-date span {
    font-size: clamp(14.00px, calc(0.24vw + 13.14px), 16.00px);
}
.others .event-date {
    font-size: clamp(19.00px, calc(0.60vw + 16.86px), 24.00px);
}
.others .event-date span {
    font-size: 10px;
}
.event-title {
    margin-top: 0.4em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.4;
}
.event-title span {
    display: inline-block;
}
.recent .event-title {
    font-size: clamp(13.00px, calc(1.43vw + 7.86px), 15.00px);
}
.others .event-title {
    font-size: clamp(10.00px, calc(1.43vw + 4.86px), 12.00px);
}
.event-status {
    position: relative;
    display: inline-block;
    padding: 1px 0;
    width: 100%;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
}
.recent .event-status {
    border-radius: 9px;
    font-size: clamp(12.00px, calc(1.43vw + 6.86px), 14.00px);
}
.others .event-status {
    border-radius: 7px;
    font-size: clamp(9.00px, calc(0.71vw + 6.43px), 10.00px);
}
.status-open {
    position: relative;
    background: #005BAC;
    &::after {
        content: "";
        top: 50%;
        transform: translateY(-50%);
        background-image: url("../images/ic_arrow_schedule.svg");
        background-size: contain;
        background-repeat: no-repeat;
    }
}
.recent .status-open {
    &::after {
        position: absolute;
        right: 12px;
        width: 12px;
        height: 12px;
    }
}
.others .status-open {
    &::after {
        position: absolute;
        right: 8px;
        width: 9px;
        height: 9px;
    }
}
.status-prep {
    background: #00A8A8;
}
.event-year {
    margin-bottom: -18px;
    font-size: clamp(12.00px, calc(1.43vw + 6.86px), 14.00px);
    font-weight: 700;
    line-height: 0.5;
}
@media print, screen and (min-width: 501px) {
    .event-list {
        gap: 14px;
    }
    .recent .status-open {
        &::after {
            right: 16px;
            width: 15px;
            height: 15px;
        }
    }
    .others .status-open {
        &::after {
            right: 10px;
            width: 11px;
            height: 11px;
        }
    }
}
/* BENEFITS --------------- */
.area-h3Benefits {
    display: flex;
    align-items: center;
}
.area-h3Benefits .number {
    display: inline-block;
    width: 45px;
    height: 46px;
    background: url("../../images/bg_flow.svg") no-repeat 0 0;
    background-size: 45px 46px;
    margin-right: 10px;
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
}
.h3Benefits {
    flex: 1;
}
/* MOVIE --------------- */
.movie-swiper-wrap {
    /*width: 500px;*/
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}
.swiper-container {
    width: 100%;
    overflow: visible;
    padding-bottom: 60px;
}
.swiper-container .swiper-slide {
    width: 200px;
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}
.swiper-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    object-fit: cover;
}
.swiper-pagination {
    position: absolute;
    bottom: 18px !important;
    left: 0;
    width: 100%;
    text-align: center;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 8px !important;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #005BAC;
}
.custom-prev, .custom-next {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.custom-prev::after, .custom-next::after {
    font-size: 18px;
    color: #fff;
}
.custom-prev:not(.swiper-button-disabled), .custom-next:not(.swiper-button-disabled) {
    background: rgba(0, 91, 172, 0.8);
}
.custom-prev {
    left: 1px;
}
.custom-next {
    right: 1px;
}
/* VENUE --------------- */
.h3Venue {
    position: relative;
    padding-left: 44px;
    &::before {
        position: absolute;
        width: 31.2px;
        height: 26.53px;
        top: -3px;
        left: 0;
        background-image: url("../../images/ic_campus.svg");
        background-size: 31.2px 26.53px;
        background-repeat: no-repeat;
        content: "";
    }
}
/* ACCESS --------------- */
.access-flow {
    margin-bottom: 2.5em;
}
.access-flow li {
    position: relative;
    background-color: #FFF7BA;
    border-radius: 12px;
    margin-bottom: 26px;
    padding: 0.6em;
    font-weight: bold;
    text-align: center;
    &:not(:last-child)::after {
        position: absolute;
        width: 17px;
        height: 23px;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        background-image: url("../../images/arrow_access.svg");
        background-size: 17px;
        background-repeat: no-repeat;
        content: "";
    }
}
.areaTimetable {
    display: flex;
    justify-content: space-between;
}
.areaTimetable table {
    width: calc((100% - 5%) / 2);
}
.timetable th, .timetable td {
    border: 1px solid #7B7B7B;
    padding: 0.5em;
    text-align: center;
    font-weight: bold;
}
.timetable th {
    background-color: #FFF7BA;
}
