/* container */
html,
body {
    overflow-x: hidden;
}
.container {
    max-width: 1472px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}
.is-pc {
    display: block;
}
.is-m {
    display: none;
}
@media (max-width: 991px) {
    .is-pc {
        display: none;
    }
    .is-m {
        display: block;
    }
}

/* header */
header {
    padding: 16px 0 16px 24px;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    transition: all ease 0.5s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
header .header-logo h1 a img {
    width: 209px;
}
header .header-menu {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
header .header-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
header .header-menu ul li a {
    width: 160px;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
header.scroll {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
    header .header-menu ul li a {
        width: 120px;
    }
}
@media (max-width: 991px) {
    header {
        padding: 16px 16px 5px;
    }
    header .header-logo {
        width: 100%;
        margin: 0 0 12px;
    }
    header .header-logo h1 a {
        display: block;
    }
    header .header-logo h1 a img {
        display: block;
        margin: 0 auto;
        width: 148px;
    }
    header .header-menu {
        flex: none;
        width: 100%;
    }
    header .header-menu ul {
        width: 100%;
        justify-content: center;
    }
    header .header-menu ul li a {
        width: auto;
        height: 40px;
        font-size: 15px;
        padding: 0 12px;
    }
}

/* footer */
footer {
    background: #000;
    padding: 40px 0;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .footer-left .left-logo h2 img {
    width: 209px;
}
footer .footer-left .left-info {
    margin: 32px 0 0;
}
footer .footer-left .left-info ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    color: #fff;
}
footer .footer-left .left-copy {
    margin: 24px 0 0;
}
footer .footer-left .left-copy p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}
footer .footer-right .right-social ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
footer .footer-right .right-social ul li {
    margin: 0 16px 0 0;
}
footer .footer-right .right-social ul li:last-of-type {
    margin: 0;
}
footer .footer-right .right-social ul li a {
    display: block;
    font-size: 0;
    width: 48px;
    height: 48px;
    background-size: cover;
    background-position: center;
}
footer .footer-right .right-social ul li:nth-of-type(1) a {
    background-image: url("../images/icon_social_01.png");
}
footer .footer-right .right-social ul li:nth-of-type(2) a {
    background-image: url("../images/icon_social_02.png");
}
footer .footer-right .right-social ul li:nth-of-type(3) a {
    background-image: url("../images/icon_social_03.png");
}
footer .footer-quick {
    position: fixed;
    z-index: 1000;
    right: 40px;
    bottom: 40px;
}
footer .footer-quick ul li {
    margin: 0 0 16px;
}
footer .footer-quick ul li:last-of-type {
    margin: 0;
}
footer .footer-quick ul li a {
    display: block;
    font-size: 0;
    width: 56px;
    height: 56px;
    background-size: cover;
    background-position: center;
}
footer .footer-quick ul li:nth-of-type(1) a {
    background-image: url("../images/icon_quick_01.png");
}
footer .footer-quick ul li:nth-of-type(2) a {
    background-image: url("../images/icon_quick_02.png");
}
footer .footer-quick ul li:nth-of-type(3) a {
    background-image: url("../images/icon_quick_03.png");
}
@media (max-width: 991px) {
    footer {
        padding: 24px 0;
    }
    footer .footer-left {
        width: 100%;
    }
    footer .footer-left .left-logo h2 img {
        display: block;
        margin: 0 auto;
        width: 156px;
    }
    footer .footer-left .left-info ul li {
        text-align: center;
        font-size: 12px;
    }
    footer .footer-left .left-copy {
        margin: 16px 0 0;
    }
    footer .footer-left .left-copy p {
        font-size: 12px;
        text-align: center;
    }
    footer .footer-right {
        width: 100%;
        margin: 24px 0 0;
    }
    footer .footer-right .right-social ul {
        justify-content: center;
    }
    footer .footer-right .right-social ul li a {
        width: 40px;
        height: 40px;
    }
    footer .footer-quick {
        right: 15px;
        bottom: 15px;
    }
    footer .footer-quick ul li a {
        width: 40px;
        height: 40px;
    }
}

/* top-box */
.top-box {
    padding: 72px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url("../images/bg_top.png") no-repeat center / cover;
}
.top-box .container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.top-box .inner {
    max-width: 723px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
}
.top-box .inner:after {
    display: block;
    content: "";
    margin: 6% 0 40px;
    width: 72px;
    height: 24px;
    background: url("../images/icon_top_arrow.png") no-repeat center / cover;
}
.top-box .inner h2 {
    width: 100%;
}
.top-box .inner h2 img {
    display: block;
    margin: 0 auto;
    width: 360px;
}
.top-box .inner h3 {
    width: 100%;
    margin: -21% 0 0;
}
.top-box .inner h3 img {
    width: 100%;
}
.top-box .inner .swiper {
    width: 100%;
    max-width: 656px;
    position: relative;
    z-index: 10;
    margin: -23% 0 0;
}
.top-box .inner .swiper img {
    width: 100%;
}
@media (max-width: 991px) {
    .top-box {
        padding: 101px 0 0;
    }
    .top-box .container {
        padding: 0;
        max-width: 767px;
    }
    .top-box .inner {
        max-width: 100%;
        align-items: center;
    }
    .top-box .inner:after {
        width: 48px;
        height: 16px;
        margin: 12% 0 32px;
    }
    .top-box .inner h2 {
        padding: 0 16px;
    }
    .top-box .inner h2 img {
        width: 50%;
    }
    .top-box .inner h3 {
        padding: 0 16px;
    }
    .top-box .inner .swiper {
        max-width: 100%;
        margin: -20% 0 0;
    }
}

/* main-text-box */
.main-text-box {
    margin: 0 auto 120px;
    max-width: 1920px;
}
.main-text-box .list-image img {
    width: 100%;
}
.main-text-box .list-content {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 1000px;
    margin: -20.5% auto 0;
    padding: 64px;
}
.main-text-box .list-content h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #e69f1f;
    margin: 0 0 24px;
}
.main-text-box .list-content h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 56px;
    margin: 0 0 42px;
}
.main-text-box .list-content h3 b {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 56px;
}
.main-text-box .list-content p {
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    word-break: keep-all;
    color: #fff;
}
@media (max-width: 991px) {
    .main-text-box {
        margin: 0 0 80px;
    }
    .main-text-box .list-content {
        padding: 32px 16px;
        margin: -19% auto 0;
    }
    .main-text-box .list-content h2 {
        font-size: 14px;
        margin: 0 0 12px;
    }
    .main-text-box .list-content h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0 0 17px;
    }
    .main-text-box .list-content h3 b {
        font-size: 20px;
        line-height: 30px;
    }
    .main-text-box .list-content p {
        font-size: 15px;
        line-height: 21px;
    }
}

/* title-box */
.title-box {
    margin: 0 0 40px;
}
.title-box strong {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #e69f1f;
    margin: 0 0 24px;
}
.title-box h2 {
    text-align: center;
    font-size: 56px;
    font-weight: bold;
}
.title-box h2.white {
    color: #fff;
}
@media (max-width: 991px) {
    .title-box {
        margin: 0 0 25px;
    }
    .title-box strong {
        margin: 0 0 15px;
        font-size: 14px;
    }
    .title-box h2 {
        font-size: 32px;
    }
}

/* .menu-box */
.menu-box .swiper-container {
    overflow: visible;
}
.menu-box .swiper-slide {
    transition: all ease 0.3s;
    transform: scale(0.95);
    left: 0;
}
.menu-box .swiper-slide.swiper-slide-prev {
    left: -2% !important;
}
.menu-box .swiper-slide.swiper-slide-next {
    left: 2% !important;
}
.menu-box .swiper-slide.swiper-slide-active {
    z-index: 10;
    transform: scale(1.35);
}
.menu-box .swiper-control {
    margin: 6% 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.menu-box .swiper-control > div {
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    margin: 0;
    position: static;
}
.menu-box .swiper-control > div.swiper-button-prev {
    background-image: url("../images/icon_menu_prev.png");
}
.menu-box .swiper-control > div.swiper-button-next {
    background-image: url("../images/icon_menu_next.png");
}
.menu-box .swiper-control > p {
    min-width: 400px;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
}
.menu-box .swiper {
    margin: 5% 0 0;
}
.menu-box .inner {
    position: relative;
    transition: 1s;
    transform-style: preserve-3d;
}
.menu-box .inner:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}
.menu-box .inner .inner-front {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.menu-box .inner .inner-front img {
    width: 100%;
}
.menu-box .inner .inner-back {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
}
.menu-box .inner .inner-back:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.8);
}
.menu-box .inner .inner-back img {
    width: 100%;
    filter: blur(2px) brightness(85%);
    opacity: 0.61;
}
.menu-box .inner .inner-back div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.menu-box .inner .inner-back div small {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #c6c6c6;
    margin: 0 0 15px;
}
.menu-box .inner .inner-back div strong {
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 15px;
}
.menu-box .inner .inner-back div p {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}
.menu-box .swiper-slide.active .inner {
    transform: rotateY(180deg);
}
@media (max-width: 991px) {
    .menu-box .swiper {
        margin: 10% 0 0;
    }
    .menu-box .swiper-control {
        margin: 55px 0 0;
        padding: 0 16px;
    }
    .menu-box .swiper-control > div {
        width: 40px;
        height: 40px;
    }
    .menu-box .swiper-control > p {
        flex: 1;
        min-width: 0;
        font-size: 24px;
    }
    .menu-box .inner .inner-back div small {
        font-size: 10px;
        margin: 0 0 10px;
    }
    .menu-box .inner .inner-back div strong {
        font-size: 22px;
        margin: 0 0 10px;
    }
    .menu-box .inner .inner-back div p {
        font-size: 10px;
    }
}

/* interior-box */
.interior-box {
    margin: 120px 0 0;
}
.interior-box .swiper {
    position: relative;
}
.interior-box .swiper-container {
    overflow: visible;
}
.interior-box .swiper-slide {
    transition: all ease 0.3s;
}
.interior-box .swiper-slide:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    transition: all ease 0.5s;
}
.interior-box .swiper-slide.swiper-slide-active {
    width: 60%;
    z-index: 10;
    /* transform: scale(1.9); */
}
.interior-box .swiper-slide.swiper-slide-active:after {
    opacity: 0;
}
.interior-box .swiper-slide img {
    width: 100%;
}
.interior-box .swiper-button-prev {
    left: 12%;
    width: 56px;
    height: 56px;
    background: url("../images/icon_prev.png") no-repeat center / cover;
}
.interior-box .swiper-button-next {
    right: 12%;
    width: 56px;
    height: 56px;
    background: url("../images/icon_next.png") no-repeat center / cover;
}
.interior-box .swiper-control {
    margin: 1.6% 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.interior-box .swiper-control > div {
    position: unset;
}
.interior-box .swiper-control > .swiper-pagination {
    width: auto;
}
.interior-box .swiper-control > .swiper-button-prev,
.interior-box .swiper-control > .swiper-button-next {
    width: 24px;
    height: 24px;
    margin-top: 0;
}
@media (max-width: 991px) {
    .interior-box {
        margin: 80px 0 0;
    }
    .interior-box .swiper {
        padding: 0;
        width: calc(100% - 32px);
        margin: 0 auto;
    }
    .interior-box .swiper-container {
        overflow: hidden;
    }
    .interior-box .swiper-slide.swiper-slide-active {
        transform: scale(1);
        width: 100%;
    }
    .interior-box .swiper-button-prev {
        display: none;
    }
    .interior-box .swiper-button-next {
        display: none;
    }
}

/* bottom-box */
.bottom-box {
    background: url("../images/bg_check.png") repeat left top / contain;
    padding: 11% 0 120px;
}
.bottom-box .swiper-pagination {
    position: static;
    width: 100%;
}
.bottom-box .swiper-pagination span {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #fff;
    opacity: 1;
    margin: 0 8px;
}
.bottom-box .swiper-pagination span.swiper-pagination-bullet-active {
    background: transparent;
}
@media (max-width: 991px) {
    .bottom-box {
        margin: -32% 0 0;
        padding: 31% 0 80px;
        background-color: #000;
        background-image: url("../images/bg_check_m.png");
    }
    .bottom-box .swiper-pagination {
        margin: 20px 0 0;
    }
    .bottom-box .swiper-pagination span {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
}

/* location-box */
.location-box {
    margin: 120px 0 0;
}
.location-box .list-head {
    margin: 0 0 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.location-box .list-head .title-box {
    margin: 0;
}
.location-box .list-head ul {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
}
.location-box .list-head ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 0 80px;
}
.location-box .list-head ul li:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    margin: 0 24px 0 0;
    background-size: cover;
    background-position: center;
}
.location-box .list-head ul li:nth-of-type(1):before {
    background-image: url("../images/icon_location_01.png");
}
.location-box .list-head ul li:nth-of-type(2):before {
    background-image: url("../images/icon_location_02.png");
}
.location-box .list-head ul li > div {
    flex: 1;
    min-width: 0;
}
.location-box .list-head ul li > div p {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
}
.location-box .list-head ul li > div small {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: 300;
    display: block;
}
.location-box .list-head ul li > div dl dd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.location-box .list-head ul li > div dl dd b {
    width: 130px;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: 300;
}
.location-box .list-head ul li > div dl dd p {
    flex: 1;
    min-width: 0;
}
.location-box .list-body {
    position: relative;
    overflow: hidden;
}
.location-box .list-body:after {
    display: block;
    content: "";
    padding-bottom: 46.5%;
}
.location-box .list-body iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1300px) {
    .location-box .list-head .title-box {
        width: 100%;
    }
    .location-box .list-head .title-box strong {
        text-align: center !important;
    }
    .location-box .list-head .title-box h2 {
        text-align: center !important;
    }
    .location-box .list-head ul {
        flex: none;
        width: 100%;
        margin: 32px 0 0;
    }
    .location-box .list-head ul li {
        flex: 1;
        min-width: 0;
    }
    .location-box .list-head ul li > div {
        flex: none;
    }
}
@media (max-width: 991px) {
    .location-box {
        margin: 80px 0 0;
    }
    .location-box .list-head {
        margin: 0 0 24px;
    }
    .location-box .list-head ul {
        margin: 24px 0 0;
    }
    .location-box .list-head ul li {
        flex: none;
        width: 100%;
        margin: 0 0 24px;
        padding: 0;
    }
    .location-box .list-head ul li:last-of-type {
        margin: 0;
    }
    .location-box .list-head ul li:before {
        width: 32px;
        height: 32px;
    }
    .location-box .list-head ul li > div {
        flex: 1;
    }
    .location-box .list-head ul li > div p {
        font-size: 15px;
        font-weight: 500;
    }
    .location-box .list-head ul li > div small {
        font-size: 15px;
    }
    .location-box .list-head ul li > div dl dd b {
        width: 95px;
        font-size: 15px;
    }
    .location-box .list-body:after {
        display: block;
        content: "";
        padding-bottom: 65.5%;
    }
}

/* insta-box */
.insta-box {
    margin: 120px 0 0;
}
.insta-box .swiper {
    padding: 10% 0 0;
    position: relative;
}
.insta-box .swiper-container {
    overflow: visible;
}
.insta-box .swiper-slide {
    transition: all ease 0.3s;
}
.insta-box .swiper-slide a {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 128/80;
    overflow: hidden;
    object-fit: cover;
}
.insta-box .swiper-slide a:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}
.insta-box .swiper-slide a img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insta-box .swiper-slide:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    transition: all ease 0.5s;
}
.insta-box .swiper-slide.swiper-slide-active {
    width: 60%;
    z-index: 10;
    transform: scale(1.9);
}
.insta-box .swiper-slide.swiper-slide-active:after {
    opacity: 0;
}
.insta-box .swiper-slide img {
    width: 100%;
}
.insta-box .swiper-button-prev {
    left: 12%;
    width: 56px;
    height: 56px;
    background: url("../images/icon_prev.png") no-repeat center / cover;
}
.insta-box .swiper-button-next {
    right: 12%;
    width: 56px;
    height: 56px;
    background: url("../images/icon_next.png") no-repeat center / cover;
}
.insta-box .swiper-pagination {
    display: none;
}
@media (max-width: 991px) {
    .insta-box {
        margin: 80px 0 0;
    }
    .insta-box .swiper {
        padding: 0;
        width: calc(100% - 32px);
        margin: 0 auto;
    }
    .insta-box .swiper-container {
        overflow: hidden;
    }
    .insta-box .swiper-slide.swiper-slide-active {
        transform: scale(1);
        width: 100%;
    }
    .insta-box .swiper-button-prev {
        display: none;
    }
    .insta-box .swiper-button-next {
        display: none;
    }
    .insta-box {
        background-color: #fff;
    }
    .insta-box .swiper-pagination {
        margin: 20px 0 0;
        display: block;
        position: static;
    }
    .insta-box .swiper-pagination span.swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #fff;
        border: 2px solid #fff;
        opacity: 1;
        margin: 0 6px;
    }
    .insta-box .swiper-pagination span.swiper-pagination-bullet-active {
        background: transparent;
    }
}

/* tab-box */
.tab-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-box ul li {
    margin: 0 75px 0 0;
}
.tab-box ul li:last-of-type {
    margin: 0;
}
.tab-box ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}
.tab-box ul li a:hover {
    color: #000;
}
.tab-box ul li.active a {
    color: #000;
    border-bottom: 1px solid #000;
    padding: 0 0 9px;
}
@media (max-width: 991px) {
    .tab-box ul li {
        margin: 0 35px 0 0;
    }
    .tab-box ul li a {
        font-size: 18px;
    }
}

/* tab-content-box */
.tab-content-box .content {
    display: none;
}
.tab-content-box .content.active {
    display: block;
}

/* menu-box */
.menu-box {
    padding: 120px 0;
    background: url("../images/bg_top.png") no-repeat center / cover;
}
@media (max-width: 991px) {
    .menu-box {
        padding: 80px 0;
        margin: -80px 0 0;
    }
}

/* animation-box */
.scroll_on {
    opacity: 0;
    transition: all ease-in-out 0.5s;
    display: block;
}
.scroll_on.type_top {
    transform: translate(0, -50px);
}
.scroll_on.type_bottom {
    transform: translate(0, 50px);
}
.scroll_on.type_left {
    transform: translate(-50px, 0);
}
.scroll_on.type_right {
    transform: translate(50px, 0);
}
.scroll_on.on {
    opacity: 1;
    transform: translate(0, 0);
}

.delay01 {
    transition-delay: 0.1s !important;
}
.delay02 {
    transition-delay: 0.2s !important;
}
.delay03 {
    transition-delay: 0.3s !important;
}
.delay04 {
    transition-delay: 0.4s !important;
}
.delay05 {
    transition-delay: 0.5s !important;
}
.delay06 {
    transition-delay: 0.6s !important;
}
.delay07 {
    transition-delay: 0.7s !important;
}
.delay08 {
    transition-delay: 0.8s !important;
}
.delay09 {
    transition-delay: 0.9s !important;
}
.delay10 {
    transition-delay: 1s !important;
}
.delay15 {
    transition-delay: 1.5s !important;
}
.delay20 {
    transition-delay: 2s !important;
}
.delay25 {
    transition-delay: 2.5s !important;
}
.delay30 {
    transition-delay: 3s !important;
}
.delay35 {
    transition-delay: 3.5s !important;
}
.delay40 {
    transition-delay: 4s !important;
}

.intro-box {
    pointer-events: inherit;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1.5s ease;
}

/* bg 컨테이너는 그대로 두고, 내부 img를 절대 위치로 중앙 고정 */
.intro-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intro-box .bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    opacity: 1;
    /* 중앙을 기준으로 transform */
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    object-fit: cover;
}

.intro-box .bg img.animate {
    /* 애니메이션 */
    animation: bgCoverShrink 0.5s ease-out forwards;
    animation-delay: 1.8s;
}

/* h2 로고는 나중에 페이드인 */
.intro-box h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.intro-box h2 img {
    width: 100%;
    opacity: 0;
}

.intro-box h2 img.animate {
    animation: h2FadeIn 0.5s ease-out forwards;
    animation-delay: 1.8s;
}

/* 이 클래스가 붙으면 바로 opacity가 0으로 변화합니다 */
.intro-box.fade {
    opacity: 0;
}

/* 이 클래스가 붙으면 pointer-events만 차단합니다 */
.intro-box.hide {
    pointer-events: none;
}

/* keyframes */
@keyframes bgCoverShrink {
    to {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

@keyframes h2FadeIn {
    to {
        width: 70%;
        opacity: 1;
    }
}

@keyframes disablePointer {
    to {
        pointer-events: none;
        opacity: 0;
    }
}
