.gnb_wrap {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

/*==== 메인화면 ====*/

/* 메인 슬라이더 */
.slider_box.main_01 {
}
.main_visual_01.pc {
    display: block;
}
.main_visual_01_mobile {
    display: none;
}

@media (max-width: 700px) {
    .main_visual_01.pc {
        display: none;
    }
    .main_visual_01_mobile {
        display: block;
    }
}

.slick-active .main_visual_01 {
    width: 100%;
    padding-bottom: 35%;
    box-sizing: border-box;
    position: relative;
    /* background-color: #f2d56f; */
    background-image: url("/buanmasil/images/slider01/pc_main_banner_2026.jpg");
    background-size: cover;
    background-position: center bottom;
}
.mv_info {
    width: 100%;
    box-sizing: border-box;
    padding: 1% 1%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    color: #2f703a;
    font-weight: 600;
}
.slick-active .main_visual_01 .mv_redmon {
    width: 18%;
    padding-bottom: 25%;
    background-image: url("/buanmasil/images/slider01/buanmon_main_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    left: -.8%;
    bottom: 0;
    z-index: 800;
    animation: mv_redmon 1s cubic-bezier(0.65, 0.05, 0.36, 1) backwards,
        mon_infinite 2s ease-in 2s infinite;
}
@keyframes mv_redmon {
    from {
        left: -100%;
    }
    to {
        left: -.8%;
    }
}
.slick-active .main_visual_01 .mv_redmon .name_tag {
    width: 30%;
    padding-bottom: 30%;
    position: absolute;
    left: 10%;
    top: -7%;
    background-image: url("/buanmasil/images/slider01/tag_main_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_nametag 0.3s ease 1.7s backwards;
}
.slick-active .main_visual_01 .mv_redmon .speech {
    width: 44%;
    padding-bottom: 35%;
    position: absolute;
    left: 70%;
    top: -7%;
    background-image: url("/buanmasil/images/slider01/talk_main_02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_speach 0.5s ease 3.5s backwards;
}
.slick-active .main_visual_01 .mv_bluemon {
    width: 15%;
    padding-bottom: 15%;
    background-image: url("/buanmasil/images/slider01/buanmon_main_02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    left: 11.5%;
    bottom: 0;
    z-index: 800;
    animation: mv_bluemon 1s cubic-bezier(0.65, 0.05, 0.36, 1) 1s backwards,
        mon_infinite 2s ease-in 2.5s infinite;
}
.slick-active .main_visual_01 .mv_bluemon .speech {
    width: 25%;
    padding-bottom: 20%;
    position: absolute;
    left: 80%;
    top: 10%;
    background-image: url("/buanmasil/images/slider01/etc_main.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_speach 0.5s ease 3.5s backwards;
}
@keyframes mv_bluemon {
    from {
        left: -100%;
    }
    to {
        left: 11.5%;
    }
}

.slick-active .main_visual_01 .mv_bluemon .name_tag {
    width: 37%;
    padding-bottom: 37%;
    position: absolute;
    left: 40%;
    top: -25%;
    background-image: url("/buanmasil/images/slider01/tag_main_02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_nametag 0.3s ease 2.5s backwards;
}
.slick-active .main_visual_01 .mv_greenmon {
    width: 30%;
    padding-bottom: 35%;
    background-image: url("/buanmasil/images/slider01/buanmon_main_03.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    right: -5%;
    bottom: 0;
    z-index: 800;
    animation: mv_greenmon 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.5s backwards,
        mon_infinite 2s ease-in 4s infinite;
}
@keyframes mv_greenmon {
    from {
        right: -100%;
    }
    to {
        right: -5%;
    }
}
.slick-active .main_visual_01 .mv_greenmon .name_tag {
    width: 20%;
    padding-bottom: 18%;
    position: absolute;
    left: 22%;
    top: 70%;
    background-image: url("/buanmasil/images/slider01/tag_main_03.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_nametag 0.3s ease 3s backwards;
}
.slick-active .main_visual_01 .mv_greenmon .speech {
    width: 30%;
    padding-bottom: 25%;
    position: absolute;
    left: 15%;
    top: 38%;
    background-image: url("/buanmasil/images/slider01/talk_main_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 900;
    animation: mv_speach 0.5s ease 3.5s backwards;
}

@keyframes mon_infinite {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes mv_nametag {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mv_speach {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.slick-active .main_visual_01 .mv_title {
    width: 45%;
    padding-bottom: 20%;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate3d(-50%, -50%, 0);
}
.slick-active .main_visual_01 .mv_title_t {
    width: 80%;
    padding-bottom: 7%;
    background-image: url("/buanmasil/images/slider01/title_main_top_2026.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slick-active .main_visual_01 .mv_title_m {
    width: 100%;
    padding-bottom: 25%;
    margin: 5% 0;
    background-image: url("/buanmasil/images/slider01/title_main_mid.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 12%;
    animation: mv_title 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) 2s infinite;
}

@keyframes mv_title {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-10%);
    }
    100% {
        transform: translateY(0%);
    }
}
.slick-active .main_visual_01 .mv_title_b {
    width: 100%;
    padding-bottom: 8%;
    background-image: url("/buanmasil/images/slider01/title_main_bottom_2026.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    bottom: 0;
}

.star_01 {
    width: 2.5%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 1%;
    top: 35%;
    opacity: 0;
    animation: mv_stars 3s linear 4.4s infinite;
}
.star_02 {
    width: 6%;
    padding-bottom: 5%;
    background-image: url("/buanmasil/images/slider01/star_main_02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 23%;
    top: 10%;
    opacity: 0;
    animation: mv_stars 4.1s linear 4.2s infinite;
}
.star_03 {
    width: 3%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_03.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 33%;
    top: 10%;
    opacity: 0;
    animation: mv_stars 6s linear 3.9s infinite;
}
.star_04 {
    width: 3%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_04.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 37%;
    bottom: 13%;
    opacity: 0;
    animation: mv_stars 4.3s linear 4.5s infinite;
}
.star_05 {
    width: 3%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_05.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 17%;
    top: 20%;
    opacity: 0;
    animation: mv_stars 5s linear 4.2s infinite;
}
.star_06 {
    width: 3%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_06.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 27%;
    bottom: 13%;
    opacity: 0;
    animation: mv_stars 4.5s linear 3.4s infinite;
}
.star_07 {
    width: 3%;
    padding-bottom: 3%;
    background-image: url("/buanmasil/images/slider01/star_main_07.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 1%;
    bottom: 2%;
    opacity: 0;
    animation: mv_stars 3s linear 4s infinite;
}

@keyframes mv_stars {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.slider_box.main_02 {
    background: #f0f0f0;
}

.mss_wrap {
    margin: 100px 0 180px 0;
    text-align: center;
}
.mss_wrap img {
    margin: 0 auto;
    padding: 0 32px;
}

.main_section.slogan_s {
    background: url("/buanmasil/images/main/background_line.svg");
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.slogan_s > .object {
    content: "";
    width: 16%;
    padding-bottom: 20%;
    position: absolute;
    left: -1.5%;
    top: 18%;
    background: url("/buanmasil/images/main/mid_left_pc.png");
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slogan_s > .object2 {
    content: "";
    width: 15%;
    padding-bottom: 20%;
    position: absolute;
    right: 0%;
    top: -1%;
    background: url("/buanmasil/images/main/mid_right_pc.png");
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

/* 프로그램 슬라이더 */
.main_program_slider_wrap {
    padding-bottom: 50px;
}
/* .main_program_slider {
    width: 300px !important;
    height: 410px !important;
} */
.main_program_slider.slider_01 {
    background: url("/buanmasil/images/main/2026/slider01.png?v=2");
    background-position: center;
    background-size: cover;
}
.main_program_slider.slider_02 {
    background: url("/buanmasil/images/main/2026/slider02.png?v=2");
    background-position: center;
    background-size: cover;
}
.main_program_slider.slider_03 {
    background: url("/buanmasil/images/main/2026/slider03.png?v=2");
    background-position: center;
    background-size: cover;
}
.main_program_slider.slider_04 {
    background: url("/buanmasil/images/main/2026/slider04.png?v=2");
    background-position: center;
    background-size: cover;
}
.main_program_slider.slider_05 {
    background: url("/buanmasil/images/main/2026/slider05.png?v=2");
    background-position: center;
    background-size: cover;
}
.main_program_slider.slider_06 {
    background: url("/buanmasil/images/main/2026/slider06.png");
    background-position: center;
    background-size: cover;
}

/* 공지사항 */

/* 타이머 */
.main_section.date_s {
    margin-bottom: 180px;
}

/* 하단 배경 */
.main_bottom_background_wrap {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin-top: 100px;
    padding-top: 13%;
    position: relative;
    background: url("/buanmasil/images/main/bottom_background.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.main_bottom_gate_img {
    width: 25%;
    padding-bottom: 13%;
    background: url("/buanmasil/images/main/entrance_pc_2026.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -60%, 0);
}

@media (max-width: 764px) {
    .main_bottom_gate_img {
        width: 50%;
        padding-bottom: 25%;
    }
}

@media (max-width: 840px) {
    .slogan_s > .object {
        width: 18%;
        padding-bottom: 20%;
        left: -1.5%;
        top: 15%;
    }

    .slogan_s > .object2 {
        width: 18%;
        padding-bottom: 20%;
        right: 0%;
        top: -3%;
        height: 16%;
    }
}

@media (max-width: 500px) {
    .slogan_s > .object {
        width: 32%;
        left: -7%;
        top: 13%;
        height: 15%;
    }

    .slogan_s > .object2 {
        width: 30%;
        right: -5%;
        top: -8%;
        height: 19%;
    }
}

@media (max-width: 460px) {
    .slogan_s > .object {
        top: 10%;
    }
}

/* 유튜브섹션 */

.video_section {
    width: 100%;
    margin-bottom: 7%;
    text-align: center;
    position: relative;
}

/* 하단 배너 */
.bottom_banner {
    width: 90%;
    padding-bottom: 26%;
    background: url("/buanmasil/images/main/bottom_banner_pc_2026.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 764px) {
    .bottom_banner {
        width: 100%;
        padding-bottom: 118%;
        background: url("/buanmasil/images/main/bottom_banner_mobile_2026.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
        text-align: center;
    }

    .main_bottom_background_wrap {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        margin-top: 100px;
        padding-top: 13%;
        position: relative;
        background: url("/buanmasil/images/main/bottom_background_mobile.jpg");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* 
	100 29
	90 26
*/

/*==== 메인화면 끝 ====*/

/* intro */

.intro_title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
}
.intro_title_wrap span {
    font-size: 32px;
    line-height: 42px;
    color: #999;
}
.intro_title_wrap span strong {
    color: #111;
}

.intro_img_wrap {
    display: flex;
    gap: 20px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 200px;
    align-items: flex-start;
}
.iiw_wrap {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
}
.iiw_wrap img {
    display: block;
    width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
}
.intro_img_wrap .iiw_wrap:nth-child(2) {
    margin-top: 24px;
}
.intro_img_wrap .iiw_wrap:last-child {
    margin-top: 48px;
}

.intro_info_wrap {
    display: flex;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.intro_info_wrap img {
    margin-right: 72px;
    width: 500px;
}
.intro_info_text {
    display: flex;
    flex-direction: column;
}
.iit_title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 48px;
}
.iit_title span:first-child {
    font-size: 24px;
    line-height: 34px;
}
.iit_title span:last-child {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
}
.iit_caption {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 40px;
}
.iit_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    line-height: 26px;
    border-top: 2px solid #111;
}
.iit_table th,
.iit_table td {
    border-bottom: 1px solid #999;
    padding: 12px;
    text-align: center;
}
.iit_table th {
    font-weight: 600;
    border-right: 1px solid #999;
}

@media (max-width: 1000px) {
    .intro_title_wrap {
        margin-bottom: 50px;
    }
    .intro_title_wrap img {
        width: 80%;
        max-width: 230px;
        margin: 0 auto;
    }
    .intro_title_wrap span {
        font-size: 20px;
        line-height: 28px;
    }
    .intro_img_wrap {
        margin-bottom: 50px;
        gap: 5px;
    }
    .intro_img_wrap .iiw_wrap:nth-child(2) {
        margin-top: 12px;
    }
    .intro_img_wrap .iiw_wrap:last-child {
        margin-top: 24px;
    }
    .intro_info_wrap {
        flex-direction: column;
    }
    .intro_info_wrap img {
        margin-bottom: 20px;
        order: 2;
        margin-bottom: 0;
        margin-right: 0;
        margin-top: 48px;
        width: 100%;
    }
    .iit_title {
        margin-bottom: 24px;
    }
    .iit_caption {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 24px;
    }
    .iit_table {
        font-size: 16px;
        line-height: 24px;
    }
}


/* 오시는길 */

.location_title_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}
.location_title_wrap > span {
    font-size: 40px;
    line-height: 52px;
    font-weight: 700;
}
.ltw_caption {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ltw_caption span {
    font-size: 20px;
    line-height: 28px;
}
.location_map_wrap {
    background: #f7f7fb;
    border-radius: 16px;
    border: 1px solid #e5e5ec;
    margin-bottom: 100px;
    width: 100%;
    height: 600px;
}
.location_caption_wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.lcw_item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lcw_item > span {
    font-size: 20px;
    line-height: 28px;
}
.lcwi_title_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lcwi_title_wrap img {
    padding: 4px;
}
.lcwi_title_wrap span {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

@media (max-width: 764px) {
    .location_title_wrap {
        margin-bottom: 30px;
    }
    .location_title_wrap > span {
        font-size: 24px;
        line-height: 34px;
    }
    .location_map_wrap {
        height: 300px;
        margin-bottom: 24px;
    }
    .lcwi_title_wrap span {
        font-size: 20px;
        line-height: 28px;
    }
    .location_caption_wrap {
        gap: 40px;
    }
    .lcw_item > span {
        font-size: 16px;
        line-height: 24px;
    }
}

/* 프로그램 */

.card-header-c {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}
.card-c {
    overflow: hidden;
}
.card-header-c h3 {
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    overflow: hidden; /* 넘치는 텍스트 숨김 */
    text-overflow: ellipsis;
    min-width: 0;
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
}
.date-time_wrap {
    display: flex;
    margin-bottom: 8px;
}
.date-time_wrap * {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}
.date-time_wrap .time-c,
.date-time_wrap .date-c .only-mo  {
    color: #00a199;
    font-size: 18px;
}

.date-time_wrap.column {
    display: flex;
    flex-direction: column;
}

.card-header-c a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.location-c,
.contact-c {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    line-height: 20px;
    color: #fff;
    background: #00a199;
    display: inline-block;
    border-radius: 14px;
}

.card-description + .contact-c {
    margin-top: 16px;
}

.card-info-c {
    margin-bottom: 20px;
}
.card-c_caption {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 4px;
    word-break:keep-all;
}
.card-c_tag {
    font-size: 16px;
    line-height: 24px;
    color: #767676;
}
.card-header-c a img {
    width: 30px;
    height: 30px;
}
.card-description {
    padding-right: 24px;
}

/* AI 작성 */
.grid-container-c {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC 화면에서는 3열 */
    gap: 20px;
}
.grid-container-c {
    /* 기존 속성들 */
    row-gap: 80px; /* 행 간격 늘림 */
}

/* nth-child를 활용해 3개씩 묶음 이후에 구분선 추가 */
.grid-container-c .card-c:nth-child(3n + 1):nth-last-child(n + 4)::before,
.grid-container-c .card-c:nth-child(3n + 2):nth-last-child(n + 3)::before,
.grid-container-c .card-c:nth-child(3n + 3):nth-last-child(n + 2)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px; /* 카드 하단과의 간격 */
    height: 1px;
    background-color: #e5e5e7; /* 구분선 색상 */
    width: 100%;
}

.card-image-c {
    /* background-color: #f7f7fb; */
    height: 330px; /* 이미지 영역의 높이 지정 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* 이미지가 영역을 벗어나지 않도록 */
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .card-image-c {
        height: 230px;
    }
}

@media (min-width: 765px) and (max-width: 950px) {
    .card-image-c {
        height: 240px;
    }
}
@media (min-width: 1201px) and (max-width: 1400px) {
    .card-image-c {
        height: 250px;
    }
}

.card-image-c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 태블릿 크기 */
@media (max-width: 1200px) {
    .grid-container-c {
        grid-template-columns: repeat(2, 1fr); /* 태블릿에서는 2열 */
    }

    /* 구분선 조정 (2개씩 묶음 이후에 구분선) */
    .grid-container-c .card-c:nth-child(3n + 1)::before,
    .grid-container-c .card-c:nth-child(3n + 2)::before,
    .grid-container-c .card-c:nth-child(3n + 3)::before {
        content: none; /* 기존 규칙 초기화 */
    }

    .grid-container-c .card-c:nth-child(2n + 1):nth-last-child(n + 3)::before,
    .grid-container-c .card-c:nth-child(2n + 2):nth-last-child(n + 2)::before {
        content: "";
        /* 구분선 스타일 */
    }
}

/* 모바일 크기 */
@media (max-width: 764px) {
    .card-header-c {
        margin-bottom: 12px;
    }
    .card-header-c h3 {
        font-size: 20px;
    }
    .card-header-c a img {
        width: 20px;
        height: 20px;
    }
    .grid-container-c {
        grid-template-columns: 1fr; /* 모바일에서는 1열 */
    }
    .card-info-c {
    }
    .date-time_wrap {
        margin-bottom: 0;
    }
    .location-c {
        margin-top: 8px;
        /* font-size: 13px;
        padding: 1px 10px; */
    }
    .card-c_caption {
        font-size: 16px;
    }
    .card-c_tag {
        font-size: 16px;
    }

    .grid-container-c {
        row-gap: 48px;
    }
    /* 모바일에서는 구분선 제거 */
    .grid-container-c .card-c::before {
        content: none !important;
    }
}

.youtube_box.video_promotion {
    display: block;
    /* width: 80% !important; */
    height: auto;
    margin: 0 auto;
    outline: none !important;
    box-shadow: none !important;
    /* padding-bottom: 37.5%; */
}
/* @media (max-width: 1440px) {
    .youtube_box.video_promotion {
        width: 80% !important;
        padding-bottom: 40%;
    }
} */

/* @media (max-width: 1350px) {
    .youtube_box.video_promotion {
        width: 80% !important;
        padding-bottom: 43%;
    }
} */

@media (max-width: 1280px) {
    .youtube_box.video_promotion {
        width: 80% !important;
        padding-bottom: 45%;
    }
}

@media (max-width: 840px) {
    .youtube_box.video_promotion {
        width: 90% !important;
        padding-bottom: 50.5%;
    }
}



.timetable_img_wrap {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
}

/* .timetable_img_wrap a:nth-child(1) {
    width: 100%;
    margin-bottom: 32px;
}
.timetable_img_wrap a:nth-child(2),
.timetable_img_wrap a:nth-child(3) {
    width: 50%;
}
.timetable_img_wrap a:nth-child(2) {
    padding-right: 8px;
}
.timetable_img_wrap a:nth-child(3) {
    padding-left: 8px;
} */

.timetable_img_wrap a{
    width: 70%;
    margin: 0 auto;
}
@media (max-width: 840px) {
    /* .timetable_img_wrap a:nth-child(2),
    .timetable_img_wrap a:nth-child(3) {
        width: 100%;
        padding: 0;
    }
    .timetable_img_wrap a:nth-child(2) {
        margin-bottom: 32px;
    } */
    .timetable_img_wrap a {
        width: 100%;
        padding: 0;
    }

}
@media (min-width: 841px) {
    .timetable_img_wrap *, .img_plus img, .comming_soon_wrap {
        pointer-events: none;
        cursor: none;
    }
}

@media (max-width: 764px) {
    .iit_title span:first-child {
        font-size: 20px;
        line-height: 28px;
    }
    .iit_title span:last-child {
        font-size: 32px;
        line-height: 42px;
    }
    .ltw_caption span {
        font-size: 16px;
        line-height: 24px;
    }
    .ltw_caption img {
        width: 24px;
        height: 24px;
    }
    .ltw_caption {
        gap: 6px;
    }
    .location_title_wrap {
        gap: 16px;
    }
    .location_map_wrap {
        margin-bottom: 60px;
        border-radius: 12px;
    }
    .lcwi_title_wrap {
        gap: 8px;
    }
    .lcwi_title_wrap img {
        width: 28px;
        height: 28px;
        padding: 2px;
    }
    .lcw_item {
        gap: 12px;
    }
}

.leaftlet_img_wrap {
    width: 100%;
}

.date-time_wrap .date-c {
    white-space: nowrap;
}

.cardnews_wrap {
    position: absolute;
    right: 30px;
    padding: 7px 20px;
    background: #3ca84f;
    border-radius: 20px;
    text-align: center;
}

.cardnews_wrap a {  
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}


.card-c.ani_up{
    border: 1px solid #e5e5e5 !important;
    border-radius: 30px;
    padding: 20px 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.button-wrap{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button-wrap a{
    padding: 10px 20px;
    background-color: #3ca84f;
    color: #fff;
    border-radius: 20px;
}

.card-sns {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    height: 32px;
}
.card-sns a {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.green {
    color: #00a199 !important;
}
.black {
    color: #111 !important;
}


.contact-c::selection {
    background-color: #fff;
    color: #111;
}

@media (max-width: 764px) {
    .mo-br-dev {
        position: unset;
    }
    .card-header-c:has(.mo-br-dev) {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}