@import url(default.css);
@import url(common.css);
@import url(fonts.css);
@import url(layout.css);

.visual {
    background: url(../images/main/visual_bg.jpg) #222 no-repeat center center / cover;
    color: var(--white);
}

.visual .wrapper {
    position: relative;
}

.visual .tit {
    position: absolute;
    left: 0;
    top: clamp(63px, calc(240 / 1024 * 100vw), 240px);
}

.visual .tit h2 {
    font-size: clamp(32px, calc(60 / 1200 * 100vw), 60px);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
}

.visual .tit p {
    font-size: var(--size-heading-5);
}

.visual .swiper {
    height: clamp(500px, calc(900 / 1024 * 100vw), calc(100vh - var(--header-h)));
    margin-top: var(--header-h);
}

.visual .swiper .swiper-slide {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px 24px;
}

.visual .swiper .swiper-slide .photo {
    width: 725px;
    height: 725px;
    overflow: hidden;
    align-self: center;
}

.visual .swiper .swiper-slide .photo img {
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: contain;
    vertical-align: top;
    filter: drop-shadow(8px 16px 8px rgba(0, 0, 0, 0.1));
    margin: 0 36px 36px 0;
}

.visual .swiper .info_box {
    background-color: var(--white);
    color: var(--color-text);
    padding: clamp(18px, calc(48 / 1024 * 100vw), 48px);
    padding-bottom: clamp(7px, calc(18 / 1024 * 100vw), 18px);
    min-width: clamp(328px, calc(511 / 1024 * 100vw), 511px);
    white-space: nowrap;
}

.visual .swiper .info_box h3 {
    display: inline-block;
    font-size: var(--size-heading-4);
    font-weight: var(--weight-bold);
    margin-right: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.visual .swiper .info_box a {
    text-decoration: underline;
    vertical-align: 50%;
}
.visual .swiper .info_box p {
    font-size: var(--size-heading-4);
    line-height: var(--line-height-default);
    height: calc(2em * var(--line-height-default));
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
    .visual .tit p {
        display: none;
    }    
} /* @media screen and (max-width: 1024px) */

@media screen and (max-width: 768px) {
    .visual .wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px 0;
        margin-top: var(--header-h);
    }

    .visual .tit {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 63px;
    }
    
    .visual .swiper {
        width: 100%;
        margin-top: 0;
    }

    .visual .swiper .swiper-slide {
        flex-direction: column;
    }

    .visual .swiper .swiper-slide .photo {
        overflow: hidden;
        align-self: center;
    }
    
    .visual .swiper .info_box {
        min-width: auto;
        width: 100%;
    }
} /* @media screen and (max-width: 768px) */


/* .museum의 탭 */
@media screen and (min-width: 769px) {
    .museum .tab_wrapper {
        margin: 146px 0 0 0;
        position: relative;
    }

    .museum .tab_wrapper .tab {
        position: absolute;
        left: 0;
        top: 78px;
        z-index: 10;
    }

    .museum .tab .tab-dropdown {
        display: none;
    }

    .museum .tab ul {
        display: flex;
        gap: 0 12px;
    }

    .museum .tab ul li .tab-item {
        display: block;
        padding: 0.3529em 0.8235em 0.2941em 0.8824em;
        background-color: var(--white);
        border: 1px solid var(--color-second-text);
        border-radius: 10px;
    }
    .museum .tab ul li.active .tab-item {
        background-color: var(--color-text);
        color: var(--white);
        border-color: var(--color-text);
    }
    .museum .tab ul li .tab-item:hover {
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    }
} /* @media screen and (min-width: 769px) */

@media screen and (max-width: 1024px) {
    .museum .tab_wrapper {
        margin: 107px 0 0 0;
        position: relative;
    }

    .museum .tab_wrapper .tab {
        top: 0;
    }
}
@media screen and (max-width: 768px) {
    .museum .tab {
        width: calc(100% - 49px);
    }

    .museum .tab .tab-dropdown {
        display: block;
        position: relative;
        width: 100%;
        background-color: var(--white);
        border: 1px solid var(--color-whitish-background);
        border-radius: 6px;
        text-align: left;
        padding: 0.375em 2em 0.375em 1.625em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .museum .tab .tab-dropdown::after {
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        width: 14px;
        height: 8px;
        transform: translateY(-50%) rotate(180deg);
        background: var(--icon-arrow-gray) no-repeat center center / contain;
    }

    .museum .tab ul {
        display: none;
        position: absolute;
        left: 0;
        top: calc(1em * var(--line-height-default) + 0.75em); /* 글자 높이 + 양쪽 패딩 */
        z-index: 10;
        width: calc(100% - 49px);
        border: 1px solid var(--color-whitish-background);
        border-radius: 6px;
        background-color: var(--white);
    }
    .museum .tab ul.open {
        display: block;
    }
    
    .museum .tab ul li .tab-item {
        width: 100%;
        border-top: 1px solid var(--color-whitish-background);
        padding: 0.375em 2em 0.375em 1.625em;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }    
    .museum .tab ul li:first-child .tab-item {
        border-top: none;
    }
    .museum .tab ul li.active .tab-item {
        background-color: var(--color-whitish-background);
        color: var(--color-emphasis);
        border-color: var(--color-whitish-background);
    }
    .museum .tab ul li .tab-item:hover {
        box-shadow: none;
    }
} /* @media screen and (max-width: 768px) */

/* .museum의 탭 내용 */
.museum .tab_wrapper .tab-contents {
    display: none;
    justify-content: space-between;
    position: relative;
}

.museum .tab_wrapper .tab-contents.active {
    display: flex;
}

.museum .tab-contents .txt_box {
    width: 404px;
    margin: 147px 0 0 0;
}

.museum .tab-contents .txt_box h3 {
    font-size: var(--size-heading-2);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 34px 0;
}
.museum .tab-contents .txt_box span {
    font-weight: var(--weight-bold);
}

.museum .tab-contents .img_box .swiper {
    width: clamp(500px, calc(618 / 1300 * 100vw), 618px);
}

.museum .tab-contents .img_box .photo_box_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 24px;
}

.museum .tab-contents .img_box .photo_box_wrapper .photo_box {
    width: calc(50% - 12px); /* 297 */
    background-color: var(--color-whitish-background);
    padding: 10px 10px 30px 10px;
}

.museum .tab-contents .img_box .photo_box_wrapper .photo_box .photo {
    overflow: hidden;
    width: 100%;
    height: 276px;
    vertical-align: top;
}

.museum .tab-contents .img_box .photo_box_wrapper .photo_box .photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.museum .tab-contents .img_box .photo_box_wrapper .photo_box h4 {
    margin: 12px 10px 0 10px;
    font-weight: var(--weight-bold);
    line-height: var(--line-height-default);
    height: calc(1em * var(--line-height-default));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.museum .tab-contents .img_box .photo_box_wrapper .photo_box span {
    margin:  0 0 0 10px;
    display: block;
    line-height: var(--line-height-default);
    height: calc(1em * var(--line-height-default));
    color: var(--color-second-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.museum .tab-contents .controls_box {
    position: absolute;
    left: 0;
    bottom: 147px;
    width: 404px;
}
.museum .tab-contents .controls_box .navigation {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    gap: 0 40px;
}

.museum .tab-contents .controls_box .navigation button {
    width: 37px;
    height: 37px;
    background: var(--icon-arrow) no-repeat center center / 18px;
    transform: rotate(270deg);
    border-radius: 50%;
}
.museum .tab-contents .controls_box .navigation button.next {
    transform: rotate(270deg) scaleY(-1);
}
.museum .tab-contents .controls_box .navigation button:hover {
    background-color: var(--color-whitish-background);
}

.museum .tab-contents .controls_box .more {
    display: inline-block;
    font-weight: var(--weight-bold);
    position: relative;
    margin: 0 0 9px 0;
}
.museum .tab-contents .controls_box .more::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 1em);
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-second-text);
    border-radius: 50%;
    pointer-events: none;
}
.museum .tab-contents .controls_box .more:hover {
    color: var(--white);
}
.museum .tab-contents .controls_box .more:hover::before {
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--color-emphasis);
    border-radius: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    padding: 3px 15px;
}

.museum .tab-contents > .more {
    position: absolute;
    left: calc(276px + 12px);
    top: 78px;
    width: 37px;
    height: 37px;
    border: 1px solid var(--color-second-text);
    border-radius: 10px;
    background: var(--icon-plus) no-repeat center center / 22px;
}

.museum .tab-contents > .more:hover {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px) {
    .museum .tab_wrapper .tab-contents {
        flex-direction: column;
    }

    .museum .tab-contents .txt_box {
        width: calc(100% - 102px);
        margin: 64px 0 0 0;
    }

    .museum .tab-contents .txt_box h3 {
        margin: 0 0 40px 0;
    }
    .museum .tab-contents .txt_box p,
    .museum .tab-contents .txt_box span {
        display: none;
    }

    .museum .tab-contents .img_box .swiper {
        width: auto;
    }

    .museum .tab-contents .img_box .photo_box_wrapper {
        gap: 16px 16px;
    }

    .museum .tab-contents .img_box .photo_box_wrapper .photo_box {
        width: calc(50% - 8px);
        padding: 10px 10px 15px 10px;
    }

    .museum .tab-contents .img_box .photo_box_wrapper .photo_box .photo {
        height: clamp(135px, calc(276 / 768 * 100vw), 276px);
    }

    .museum .tab-contents .controls_box {
        left: auto;
        bottom: auto;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .museum .tab-contents .controls_box .navigation {
        bottom: auto;
        top: 64px;
    }

    .museum .tab-contents .controls_box .more {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -56px;
        margin: 0;
    }
    .museum .tab-contents .controls_box .more::before {
        transform: translate(-50%, 0.5em);
        width: 32px;
        height: 32px;
    }
    .museum .tab-contents .controls_box .more:hover {
        color: var(--white);
    }

    .museum .tab-contents > .more {
        position: absolute;
        top: 0;
    }
} /* @media screen and (max-width: 1024px) */


@media screen and (max-width: 768px) {
    .museum .tab-contents .txt_box {
        margin: 28px 0 0 0;
    }    
    
    .museum .tab-contents .img_box .photo_box_wrapper .photo_box h4 {
        margin: 8px 0 4px 0;
        height: auto;
        white-space: normal;
        word-break: normal;
    }

    .museum .tab-contents .img_box .photo_box_wrapper .photo_box span {
        margin: 0;
        text-overflow: ellipsis;
    }

    .museum .tab-contents .controls_box .navigation {
        right: 0;
        top: 28px; /* .txt_box의 위에 준 margin 값 */
        gap: 0 12px;
    }

    .museum .tab-contents .controls_box .navigation button {
        background-color: var(--white);
        background-size: 16px;
        background-image: var(--icon-arrow-gray);
        border: 1px solid var(--color-whitish-background);
        border-radius: 6px;
    }

    .museum .tab-contents > .more {
        left: auto;
        top: -37px;
        right: 0;
        border-color: var(--color-whitish-background);
        border-radius: 6px;
        background-image: var(--icon-plus-gray);
        background-size: 16px;
    }
    .museum .tab-contents > .more:hover {
        box-shadow: none;
    }
} /* @media screen and (max-width: 768px) */


/* .artist */

.artist {
    margin: clamp(88px, calc(140 / 1024 * 100vw), 140px) 0 0 0;
}

.artist h2 {
    font-size: var(--size-heading-2);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 11px 0;
}

.artist p {
    margin: 0 0 46px 0;
}

/* .artist의 탭 */
@media screen and (min-width: 769px) {
    .artist .tab_wrapper {
        position: relative;
    }

    .artist .tab_wrapper .tab {
        z-index: 10;
    }

    .artist .tab .tab-dropdown {
        display: none;
    }

    .artist .tab ul {
        display: flex;
        gap: 0 12px;
    }

    .artist .tab ul li .tab-item {
        display: block;
        padding: 0.3529em 0.8235em 0.2941em 0.8824em;
        background-color: var(--white);
        border: 1px solid var(--color-second-text);
        border-radius: 10px;
    }
    .artist .tab ul li.active .tab-item {
        background-color: var(--color-text);
        color: var(--white);
        border-color: var(--color-text);
    }
    .artist .tab ul li .tab-item:hover {
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    }
} /* @media screen and (min-width: 769px) */

@media screen and (max-width: 1024px) {
    .artist h2 {
        margin: 0 0 0.3667em 0;
    }

    .artist p {
        display: none;
    }

    .artist .tab_wrapper {
        position: relative;
    }
}/* @media screen and (max-width: 1024px) */
@media screen and (max-width: 768px) {
    .artist {
        margin: 151px 0 0 0;
    }

    .artist .tab .tab-dropdown {
        display: block;
        position: relative;
        width: 100%;
        background-color: var(--white);
        border: 1px solid var(--color-whitish-background);
        border-radius: 6px;
        text-align: left;
        padding: 0.375em 2em 0.375em 1.625em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .artist .tab .tab-dropdown::after {
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        width: 14px;
        height: 8px;
        transform: translateY(-50%) rotate(180deg);
        background: var(--icon-arrow-gray) no-repeat center center / contain;
    }

    .artist .tab ul {
        display: none;
        position: absolute;
        left: 0;
        top: calc(1em * var(--line-height-default) + 0.75em); /* 글자 높이 + 양쪽 패딩 */
        z-index: 10;
        width: 100%;
        border: 1px solid var(--color-whitish-background);
        border-radius: 6px;
        background-color: var(--white);
    }
    .artist .tab ul.open {
        display: block;
    }
    
    .artist .tab ul li .tab-item {
        width: 100%;
        border-top: 1px solid var(--color-whitish-background);
        padding: 0.375em 2em 0.375em 1.625em;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }    
    .artist .tab ul li:first-child .tab-item {
        border-top: none;
    }
    .artist .tab ul li.active .tab-item {
        background-color: var(--color-whitish-background);
        color: var(--color-emphasis);
        border-color: var(--color-whitish-background);
    }
    .artist .tab ul li .tab-item:hover {
        box-shadow: none;
    }
} /* @media screen and (max-width: 768px) */

.artist .tab_wrapper .tab-contents {
    margin: clamp(16px, calc(41 / 1024 * 100vw), 41px) 0 0 0;
    display: none;
}
.artist .tab_wrapper .tab-contents.active {
    display: block;
}

.artist .tab-contents .swiper {
    height: auto;
}

.artist .tab-contents .swiper-slide {
    width: calc(33% - 8px);
    background-color: var(--color-whitish-background);
}

.artist .tab-contents .swiper-slide .photo_box {
    display: block;
}

.artist .tab-contents .swiper-slide .photo_box .photo {
    margin: 10px 10px 1.0588em 10px;
    height: clamp(256px, calc(384 / 1300 * 100vw), 384px);
    overflow: hidden;
    position: relative;
}
.artist .tab-contents .swiper-slide .photo_box .photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.artist .tab-contents .swiper-slide .photo_box h4 {
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 1.1176em 0;
    text-align: center;
}

.artist .tab-contents .swiper-slide .photo_box .txt_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    white-space: nowrap; /* 글자 한 줄로 만들기 */
    overflow: hidden; /* 호버하기 전에 보이는거 감추기 */
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0 20px;
    transition: height 0.3s;
}

.artist .tab-contents .swiper-slide:hover .photo_box .txt_box {
    height: 3.4706em;
}

.artist .tab-contents .swiper-slide .photo_box .txt_box .left {
    display: flex;
    gap: 0 0.25em;
    overflow: hidden;
    text-overflow: ellipsis;
}
.artist .tab-contents .swiper-slide .photo_box .txt_box .left strong {
    font-weight: var(--weight-bold);
}

.artist .tab-contents .swiper-slide .photo_box .txt_box .left span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist .tab-contents .swiper-slide .photo_box .txt_box .right {
    display: block;
    position: relative;
    margin: 0 1.1176em 0 0;
}
.artist .tab-contents .swiper-slide .photo_box .txt_box .right::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 14px;
    height: 8px;
    background: var(--icon-arrow) no-repeat center center / contain;
}

.artist .tab-contents .swiper-pagination {
    height: 0;
}
.artist .tab-contents .swiper-pagination.swiper-pagination-progressbar {
    background-color: var(--color-whitish-background);
}
.artist .tab-contents .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--color-second-text);
}

.artist .tab-contents .more {
    display: block;
    position: absolute;
    left: 450px;
    top: 0;
    width: 37px;
    height: 37px;
    border: 1px solid var(--color-second-text);
    border-radius: 10px;
    background: var(--icon-plus) no-repeat center center / 22px;
}
.artist .tab-contents > .more:hover {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.artist .tab-contents .more span:not(.sr-only){
    display: none;
}
@media screen and (max-width: 1024px) {
    .artist .tab-contents .swiper-slide .photo_box .txt_box {
        background-color: var(--white);
        height: 3.2353em;
        bottom: 4px;
    }
    .artist .tab-contents .swiper-slide:hover .photo_box .txt_box {
        height: 3.2353em;
    }

    .artist .tab-contents .swiper-pagination {
        height: 4px;
        top: auto;
        bottom: 0;
    }
} /* @media screen and (max-width: 1024px) */

@media screen and (max-width: 768px) {
    .artist .tab-contents .swiper {
        height: auto;
    }
    
    .artist .tab-contents .swiper-slide .photo_box .photo {
        margin: 10px 10px 52px 10px;
    }

    .artist .tab-contents .swiper-slide .photo_box h4 {
        display: none;
    }

    .artist .tab-contents .swiper-slide .photo_box .txt_box {
        height: 3em;
        bottom: 4px;
    }
    .artist .tab-contents .swiper-slide:hover .photo_box .txt_box {
        height: 3em;
    }

    .artist .tab-contents .more {
        display: inline-block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -56px;
        width: auto;
        height: auto;
        border: none;
        border-radius: 0;
        background: none;
        font-weight: bold;
    }
    .artist .tab-contents .more:hover {
        box-shadow: none;
    }    
    .artist .tab-contents .more:hover {
        color: var(--white);
    }
    .artist .tab-contents .more::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translate(-50%, 0.5em);
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-second-text);
        border-radius: 50%;
        pointer-events: none;
    }
    .artist .tab-contents .more:hover::before {
        left: 50%;
        bottom: 50%;
        transform: translate(-50%, 50%);
        background-color: var(--color-emphasis);
        border-radius: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        padding: 3px 15px;
    }

    .artist .tab-contents .more span:not(.sr-only){
        display: inline;
    }

} /* @media screen and (max-width: 768px) */


/* .news */

.news {
    background-color: var(--color-whitish-background2);
    margin: 174px 0 0 0;
    padding: clamp(102px, calc(126 / 1024 * 100vw), 126px) 0 clamp(73px, calc(91 / 1024 * 100vw), 91px) 0;
}

.news h2 {    
    font-size: var(--size-heading-2);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 clamp(26px, calc(44 / 1024 * 100vw), 44px) 0;
}

.news .contents-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 69px clamp(54px, calc(108 / 1440 * 100vw), 108px);
}

.news .news_box,
.news .promotion_box {
    width: calc(50% - (clamp(54px, calc(108 / 1440 * 100vw), 108px) / 2));
}

.news .news_box {
    position: relative;
}

.news .news_box .list {
    border-top: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
}

.news .news_box .list ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: clamp(300px, calc(394 / 1024 * 100vw), 394px);
    margin: 10px clamp(7px, calc(20 / 1024 * 100vw), 20px); /* a의 위아래 패딩, 좌우 여백 */
}

.news .news_box .list ul li a {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0;
}

.news .news_box .list ul li a h3 {
    font-size: var(--size-heading-6);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 1em 0 0;
}
.news .news_box .list ul li:hover a h3 {
    text-decoration: underline;
}

.news .news_box .list ul li a span {
    color: var(--color-second-text);
    font-variant-numeric: tabular-nums;
}

.news .news_box .more {
    display: block;
    position: absolute;
    right: 0;
    top: calc(-1em - (clamp(26px, calc(44 / 1024 * 100vw), 44px)));
    font-size: var(--size-heading-2);
    line-height: var(--line-height-tit);
    width: clamp(22px, calc(32 / 1024 * 100vw), 32px);
    height: clamp(22px, calc(32 / 1024 * 100vw), 32px);
    background: var(--icon-plus-gray) no-repeat center center / contain;
}

.news .promotion_box {
    position: relative;
}

.news .promotion_box .swiper {
    font-size: var(--size-heading-3);
    height: 100%;
}

.news .promotion_box .swiper-slide a {
    display: block;
    text-align: center;
    /* .news_box ul li 위아래 padding + .news_box ul 높이 */
    height: calc(20px + clamp(300px, calc(394 / 1024 * 100vw), 394px));
    background: url(../images/main/news01.jpg) #222 no-repeat center center / 100% auto;
    color: var(--white);
    transition: background-size 0.3s;
}
.news .promotion_box .swiper-slide.bg2 a {
    background-image: url(../images/main/news02.jpg);
}
.news .promotion_box .swiper-slide.bg3 a {
    background-image: url(../images/main/news03.jpg);
}
.news .promotion_box .swiper-slide a:hover {
    background-size: 105%;
}

.news .promotion_box .swiper-slide a .txt_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 20px;
}

.news .promotion_box .swiper-slide a h3 {
    font-size: var(--size-heading-3);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 21px 0;
}

.news .promotion_box .swiper-slide a h3 br.no-pc {
    display: none;
}

.news .promotion_box .swiper-slide a span {
    display: inline-block;
    font-size: var(--size-p);
    background-color: var(--color-text);
    border-radius: 100px;
    padding: 8px 23px 7px 22px;
}

.news .promotion_box .controls_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: clamp(32px, calc(60 / 1024 * 100vw), 60px);
    background-color: rgba(17, 17, 17, 0.8);
    color: var(--white);
}

.news .promotion_box .controls_box .left {
    font-size: clamp(16px, calc(24 / 1024 * 100vw), 24px);
    margin-left: clamp(10px, calc(30 / 1024 * 100vw), 30px);
    font-variant-numeric: tabular-nums;
}

.news .promotion_box .controls_box .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 8px;
    margin-right: clamp(12px, calc(33 / 1024 * 100vw), 33px);
}

.news .promotion_box .controls_box .right button {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.news .promotion_box .controls_box .right .stop {
    background-size: clamp(14px, calc(20 / 1024 * 100vw), 20px);
    background-image: var(--icon-pause-w);
    order: 2;
}
.news .promotion_box .controls_box .right .play {
    background-size: clamp(14px, calc(20 / 1024 * 100vw), 20px);
    background-image: var(--icon-play-w);
    order: 2;
    display: none;
}
.news .promotion_box .controls_box .right .prev {
    background-size: clamp(14px, calc(18 / 1024 * 100vw), 18px);
    background-image: var(--icon-arrow-w);
    transform: rotate(270deg);
    order: 1;
}
.news .promotion_box .controls_box .right .next {
    background-size: clamp(14px, calc(18 / 1024 * 100vw), 18px);
    background-image: var(--icon-arrow-w);
    transform: rotate(90deg);
    order: 3;
}

@media screen and (max-width: 1024px) {
    .news .contents-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .news .news_box,
    .news .promotion_box {
        width: 100%;
    }

    .news .promotion_box .swiper {
        height: 8.75em;
    }

    .news .promotion_box .swiper-slide a {
        text-align: left;
        height: 100%;
    }

    .news .promotion_box .swiper-slide a .txt_box {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .news .promotion_box .swiper-slide a h3 {
        margin: 20px 0 21px 0;
    }
    .news .promotion_box .swiper-slide a h3 br.no-pc {
        display: block;
    }

    .news .promotion_box .swiper-slide a span {
        display: none;
    }

}/* @media screen and (max-width: 1024px) */


/* .donation */
.donation {
    background: url(../images/main/donation_bg.webp) #222 no-repeat center center / cover;
    color: var(--white);
    padding: clamp(85px, calc(146 / 1024 * 100vw), 146px) 0 clamp(72px, calc(138 / 1024 * 100vw), 138px) 0;
    text-align: center;
}

.donation strong {
    display: block;
    font-size: clamp(32px, calc(60 / 1200 * 100vw), 60px);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-tit);
    margin: 0 0 clamp(21px, calc(25 / 1200 * 100vw), 25px) 0;
}

.donation strong br {
    display: none;
}

.donation h3 {
    font-size: var(--size-heading-5);
    line-height: var(--line-height-tit);
    margin: 0 0 clamp(52px, calc(55 / 1200 * 100vw), 55px) 0;
}

.donation h3 br {
    display: none;
}

.donation .btn_wrap {
    display: flex;
    justify-content: center;
    gap: 6px 16px;
}

.donation .btn_wrap a {
    position: relative;
    display: flex;
    align-items: center;
    width: 236px;
    height: 3.6875em;
    border: 2px solid var(--color-emphasis);
    text-align: left;
    padding: 0 0 0 54px;
}
.donation .btn_wrap a::after,
.donation .btn_wrap a span::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    width: 12px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: rotate(90deg);
}
.donation .btn_wrap a.donation_hall {
    background-color: var(--white);
    color: var(--color-emphasis);
}
.donation .btn_wrap a.request {
    background-color: var(--color-emphasis);
}
.donation .btn_wrap a.donation_hall::after {
    background-image: var(--icon-arrow);
}
.donation .btn_wrap a.request::after {
    background-image: var(--icon-arrow-w);
}

.donation .btn_wrap a span {
    position: relative;
}
.donation .btn_wrap a span::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 15px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
} 
.donation .btn_wrap a span::after {
    display: none;
    right: -22px;
}
.donation .btn_wrap a.donation_hall span::before {
    background-image: var(--icon-museum);
}
.donation .btn_wrap a.request span::before {
    background-image: var(--icon-check-w);
}
.donation .btn_wrap a.donation_hall span::after {
    background-image: var(--icon-arrow);
}
.donation .btn_wrap a.request span::after {
    background-image: var(--icon-arrow-w);
}

@media screen and (max-width: 768px) {
    .donation strong br {
        display: block;
    }

    .donation h3 br {
        display: block;
    }

    .donation {
        text-align: left;
    }

    .donation .btn_wrap {
        flex-direction: column;
    }

    .donation .btn_wrap a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0 0 0 0;
    }

    .donation .btn_wrap a::after {
        display: none;
    }

    .donation .btn_wrap a span::after {
        display: block;
    }

} /* @media screen and (max-width: 768px) */