@charset "UTF-8";

.pc-only {
    display: block;
}

.mo-only {
    display: none;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
    table-layout: fixed;
}

.schedule-table th,
.schedule-table td {
    height: 85px;
    position: relative;
    vertical-align: middle;
    padding: 0;
}

.schedule-table th {
    height: 40px;
}

.schedule-table td.row-header {
    background-color: #f8f8f8;
    font-weight: 500;
    color: #222;
}

.cell-highlight-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.tooltip-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    white-space: nowrap;
}

.tooltip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    z-index: 2;
}

.tooltip-box {
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    color: #222;
    font-size: 16px;
    line-height: 1.4;
}

.tooltip-container::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    transform: rotate(45deg);
    z-index: 1;
}

.site-jeju .cell-highlight-bar,
.site-jeju .schedule-table td.cell-highlight {
    background-color: #e5f1f9;
}

.site-jeju .tooltip-dot {
    background-color: #0079c3;
}

.site-jeju .tooltip-box {
    border: 1px solid #0079c3;
}

.site-jeju .tooltip-container.align-center::after,
.site-jeju .tooltip-container.align-left::after,
.site-jeju .tooltip-container.align-right.arrow-top::after {
    border-left: 1px solid #0079c3;
    border-top: 1px solid #0079c3;
}

.site-jeju .tooltip-container.align-right.arrow-bottom::after {
    border-right: 1px solid #0079c3;
    border-bottom: 1px solid #0079c3;
}

.site-pyeongchang .cell-highlight-bar,
.site-pyeongchang .schedule-table td.cell-highlight {
    background-color: #e7f1ec;
}

.site-pyeongchang .tooltip-dot {
    background-color: #167a47;
}

.site-pyeongchang .tooltip-box {
    border: 1px solid #167a47;
}

.site-pyeongchang .tooltip-container.align-center::after,
.site-pyeongchang .tooltip-container.align-left::after,
.site-pyeongchang .tooltip-container.align-right.arrow-top::after {
    border-left: 1px solid #167a47;
    border-top: 1px solid #167a47;
}

.site-pyeongchang .tooltip-container.align-right.arrow-bottom::after {
    border-right: 1px solid #167a47;
    border-bottom: 1px solid #167a47;
}

.tooltip-container.align-center::after {
    margin-bottom: -5px;
}

.tooltip-container.align-left::after {
    margin-left: 11px;
    margin-bottom: -5px;
}

.tooltip-container.align-right.arrow-top::after {
    margin-right: 11px;
    margin-bottom: -5px;
}

.tooltip-container.align-right.arrow-bottom::after {
    margin-right: 11px;
    margin-top: -5px;
}

.tooltip-container.align-center {
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-container.align-left {
    left: 4px;
    align-items: flex-start;
}

.tooltip-container.align-left .tooltip-dot {
    margin-left: 12px;
}

.tooltip-container.align-right {
    right: 4px;
    align-items: flex-end;
}

.tooltip-container.align-right .tooltip-dot {
    margin-right: 12px;
}

.tooltip-container.arrow-top {
    top: 8px;
}

.tooltip-container.arrow-top .tooltip-dot {
    margin-bottom: 4px;
}

.tooltip-container.arrow-top::after {
    order: 2;
}

.tooltip-container.arrow-top .tooltip-box {
    order: 3;
}

.tooltip-container.arrow-bottom {
    bottom: 69px;
    flex-direction: column-reverse;
}

.tooltip-container.arrow-bottom .tooltip-dot {
    margin-top: 4px;
}

.tooltip-container.arrow-bottom::after {
    order: 2;
}

.tooltip-container.arrow-bottom .tooltip-box {
    order: 3;
}

.m-timeline-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-year-header {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding-bottom: 8px;
    border-bottom: 1px solid #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.m-season-group-card {
    color: #222;
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
}

.m-season-badge-box {
    flex-shrink: 0;
    width: 72px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-season-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.m-month-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-month-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-month-item:not(:last-child) {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.m-month-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 0 8px 2px;
    border-radius: 4px;
    width: fit-content;
}

.site-jeju .m-month-label {
    background: #e5f1f9;
    color: #0079c3;
}

.site-pyeongchang .m-month-label {
    background: #e7f1ec;
    color: #167a47;
}

.m-date-detail-text {
    font-size: 14px;
    color: #222;
    font-weight: 400;
    line-height: 1.6;
}

@media screen and (max-width: 819px) {
    .pc-only {
        display: none;
    }

    .mo-only {
        display: block;
    }
}