* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-218648: #218648;
    --green-217A54: #217A54;
    --green-235B45: #235B45;
    --white-fff: #fff;
    --golden-EFDAB9: #EFDAB9;
    --black-171717: #171717;
    --black-5D5D5D: #5D5D5D;
    --grey-d1d1d1: #D1D1D1;
    --grey-f7f7f7: #f7f7f7;
    --grey-b9b9b9: #B9B9B9;
    --grey-747474: #747474;

}

body {
    font-family: 'Geist', sans-serif !important;
    font-size: 18px;
    color: var(--black-5D5D5D);
    text-wrap-style: pretty;
    letter-spacing: -0.36px;
    line-height: 27px;
}

/* common */
.ym_container-fluid {
    width: calc(100% - 32px);
    margin: 0 auto;
}

.ym_container {
    width: calc(100% - 128px);
    margin: 0 auto;
}

a {
    text-decoration: none !important;
}


.schedule-container {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.schedule-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.schedule-item:nth-child(even) {
    border-right: none;
}

.schedule-item:nth-last-child(-n+2) {
    border-bottom: none;
}

/* Hover effect */
.schedule-item:hover {
    background: #f9fafb;
    transition: background-color 0.2s ease;
}

/* construction */
.const_title {
    font-size: 64px;
    line-height: 83px;
    letter-spacing: -2px;
    color: var(--black-171717);
}

.construction_wrapper {
    padding: 132px 159px;
}

.construction .schedule-grid {
    grid-template-columns: 1fr;
}

.construction .const_title:nth-child(2) {
    border-bottom: 1px solid #e5e7eb;
}
.schedule-item a{color: #14402F;}
.construction_wrapper .schedule-item{display: flex;gap: 12px;}
.construction_wrapper .schedule-item:not(:last-child){border-bottom: 1px solid #e5e7eb;}
.construction_img img{min-height: 377px;border-radius: 24px;}
/* construction */

@media screen and (max-width:1281px) {
    .const_title {
        font-size: 46px;
        line-height: 56px;
    }
}

@media screen and (max-width:992px) {
    body{font-size: 16px;line-height: 24px;letter-spacing: -0.32px;}
    .ym_container-fluid{width: calc(100% - 16px);}
    .const_title {
        font-size: 40px;
        line-height: 52px;
        letter-spacing: -1.2px;
    }
    .construction_img img{border-radius: 16px;}
    .construction_wrapper{padding: 7px 0px;}
}
