@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@600&display=swap');
@font-face {
    font-family: "Histeagin";
    src: url("../font/histeagin.ttf") format("truetype");
}

@media(max-width:767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media(min-width:768px) {
    .show-for-small {
        display: none !important;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #4d4d4d;
    font-weight: 400;
    font-style: normal;
    overflow: auto;
    position: relative;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body p,
body li {
    line-height: 1.75;
    letter-spacing: 0.1em;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    right: 15px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
    border-radius: 50%;
    right: 16;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(22.5px);
}

#go-top.show {
    opacity: 1;
    bottom: 15px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    width: 48px;
    height: 48px;
    overflow: hidden;
}

#go-top a:hover {
    opacity: 0.7;
}

#go-top a img {
    margin: 0 auto;
    transform: rotate(-45deg);
}


/*FONT*/

.ff-serif {
    font-family: "Noto Serif JP", serif;
}

.ff-mincho {
    font-family: "Shippori Mincho B1", serif;
}

.ff-sawa {
    font-family: "Sawarabi Gothic", sans-serif;
}

:root {
    --font-primary: "Noto Sans JP", sans-serif;
    --font-heading: "Outfit", sans-serif;
}


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 1;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/


/* .header-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 174px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.header-inner {
    position: static;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    border-radius: 0 0 10px 10px;
}

header.hide .header-main {
    background-color: rgba(59, 112, 105, 0.3);
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: static;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: static;
    transition: .3s;
    padding-bottom: 0px;
    margin-right: 30px;
    margin-left: 30px;
}

.header-main .main-menu .nav>li>a {
    font-weight: bold;
    padding: 0;
    color: #fff;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    letter-spacing: 0.15em;
}


/* .header-main .main-menu .nav>li>a span {
    margin-top: 10px;
} */

.header-main .main-menu .nav>li>a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    /*線になる丸の形状*/
    width: 30px;
    height: 1px;
    background: #ffffff;
    /*アニメーションの指定*/
    transition: all .3s;
    /*X方向にスケール拡大*/
    left: 50%;
    transform: translateX(-50%) scale(0, 1);
}


/* .header-main .main-menu .nav>li>a span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 5px;
} */

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
}

.box-menu-phone {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
}

@media (min-width: 768px) {
    .header-main .main-menu .nav>li.current>a::after,
    .header-main .main-menu .nav>li:hover>a::after {
        opacity: 1;
        width: 50px;
        transform: translateX(-50%) scale(1, 1);
        /*X方向にスケール拡大*/
    }
}

a.menu-btn {
    width: 55px;
    min-height: 55px;
    position: absolute;
    border: none;
    top: 10px;
    right: 15px;
    z-index: 8999;
    transition: none;
    height: auto;
    box-shadow: none;
    background-color: #fff;
    border-radius: 50%;
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 1px;
    width: 20px;
    top: 15px;
    background-color: #1B4446;
    left: 17px;
    transition: all 0.5s;
}

a.menu-btn span:nth-child(2) {
    top: 23px;
    display: none;
}

a.menu-btn span:nth-child(3) {
    top: 24px;
}

a.menu-btn::after {
    content: 'MENU';
    left: calc(50%);
    transform: translateX(-50%);
    top: 30px;
    position: absolute;
    color: #1B4446;
    width: max-content;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}

a.menu-btn.open:after {
    content: "CLOSE";
}

body.menu-open header:before {
    display: none;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 20px;
    left: 20px;
    background-image: unset;
}

a.menu-btn.open span:nth-child(2) {
    display: none;
}

a.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.box-btn-top-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

a.btn.btn-header {
    min-width: 170px;
    height: 40px;
    padding: 10px 18px 10px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 10px;
    font-weight: 500;
    color: #1B4446;
    width: fit-content;
    font-weight: 500;
    letter-spacing: 0.05em;
}

a.btn.btn-header:hover {
    opacity: 0.6;
}

a.btn.btn-header:nth-child(2) {
    background-color: #ec5a24;
    color: #fff;
    border: 1px solid #EC5A24;
}

a.btn.btn-header:nth-child(2)::after {
    background-color: #fff;
}


/* a.btn.btn-header:nth-child(2):hover {
    background-color: #fff;
    color: #EC5A24;
}
a.btn.btn-header:nth-child(2):hover svg rect,a.btn.btn-header:nth-child(2):hover svg polyline{
    stroke: #EC5A24 !important;
}
a.btn.btn-header:nth-child(2):hover::after{
    background-color: #EC5A24;
} */

.box-top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.box-top-header>a {
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #725d06;
    font-family: "Shippori Mincho B1", serif;
    margin-right: 10px;
}

.mega-menu {
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    visibility: hidden;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-main .main-menu .nav>li.nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 135px;
    z-index: 12;
}

.box-mega-menu {
    display: flex;
}

.mega-menu-left {
    width: 493px;
}

.mega-menu-right {
    flex: 1;
    padding: 35px 50px 50px;
}

.box-flex-mega {
    display: flex;
}

.flex-mega-left {
    width: 342px;
    padding-top: 10px;
}

.flex-mega-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
}

a.btn.btn-mega {
    font-size: 2.5rem;
    color: #725d06;
    padding: 15px 0;
    border-bottom: 1px solid;
    justify-content: flex-start;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.2em;
}

a.btn.btn-mega::after {
    width: 27px;
    height: 24px;
    background-image: url(../images/index/icon-right.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    right: 23px;
}

.box-sub-link-mega {
    width: 50%;
    max-width: 225px;
}

a.sub-link {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #7f5b3d;
    text-align: left;
    display: block;
    padding-left: 25px;
    margin-bottom: 16px;
    position: relative;
}

a.sub-link::after {
    content: "";
    width: 16px;
    height: 5px;
    background-image: url(../images/index/icon-right-mini.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

a.btn.btn-mega:first-child {
    margin-bottom: 60px;
}

.img-mega {
    position: relative;
}

.img-mega p {
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.header-wrapper {
    position: absolute;
    top: -100px;
    width: 100%;
    left: 0;
    z-index: 2;
    transition: all 0.6s ease;
}

.show.header-wrapper {
    top: 0;
}

a.link-footer {
    color: #1B4446;
}

.breadcrumbs {
    position: relative;
    padding-top: 10px;
    z-index: 3;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(27, 68, 70, 0.3);
}

.breadcrumbs ol {
    display: flex;
    justify-content: flex-end;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    flex-wrap: nowrap;
}
.breadcrumbs ol li>a span{
    font-weight: 400;
}
.breadcrumbs ol li:not(:last-child){
    flex-shrink: 0;
}
.breadcrumbs ol li>a {
    color: #1B4446;
    font-size: 1.6rem;
}
.large-4 .col-inner,.price-card{
    height: 100%;
}
.breadcrumbs ol li {
    position: relative;
    margin-bottom: 0;
}

.breadcrumbs ol li:not(:last-child) {
    margin-right: 24px;
}

.breadcrumbs ol li span {
    color: #1B4446;
    font-weight: bold;
}
.breadcrumbs ol li > span{
    
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs ol li span br {
    display: none;
}

.breadcrumbs ol li:not(:nth-last-child(1)):after {
    content: "/";
    position: absolute;
    color: #1B4446;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
}

ul.list-anchor {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

ul.list-anchor li {
    width: fit-content;
}

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(5n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    min-height: unset;
    font-size:1.6rem;
    justify-content: flex-start;
    color: #1B4446;
    background-color: transparent;
    position: relative;
    border-radius: 50px;
    padding: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.185;
    letter-spacing: 0.05em;
    gap: 8px;
    justify-content: center;
}

ul.list-anchor li a::before {
    content: "";
    width: 21px;
    height: 21px;
    background-image: url(../images/index/icon-anchor.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.page-anchor .container {
    max-width: 1130px;
}

ul.list-anchor li a:hover {
    background-color: rgb(59 112 105 / 60%);
    opacity: 1;
}

.color-1 {
    color: #1B4446;
}

.color-2 {
    color: #0d3570;
}

.color-3 {
    color: #274e7c;
}

.color-4 {
    color: #ae7d53;
}

.color-5 {
    color: #873d07;
}

.color-6 {
    color: #0071b7;
}

#recruit-05 {
    z-index: 0;
    position: relative;
}

#recruit-04 {
    z-index: 1;
    position: relative;
}

.scroll-bar-block {
    height: 357px;
    position: relative;
    width: 100vw;
    /* Full width viewport */
}


/* Wrapper cho scrollbar - Track 1 */

.scrollbar-wrapper-1 {
    position: absolute;
    width: 150vw;
    /* Rộng hơn viewport để luôn đầy */
    left: -25vw;
    /* Bắt đầu từ ngoài bên trái */
    height: 80px;
    display: flex;
    transform: rotate(-9.283deg);
    padding: 32px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    overflow: visible;
    background: transparent;
    border-radius: 20px;
    top: 150px;
}

.scroll-item .text {
    color: #FFF;
    text-shadow: 0 8.565px 21.413px rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    position: relative;
    top: 3px;
    /* 62.4px */
}

body {
    background-size: cover;
    background-position: center;
}


/* Wrapper cho scrollbar - Track 2 */

.scrollbar-wrapper-2 {
    position: absolute;
    width: 150vw;
    /* Rộng hơn viewport để luôn đầy */
    left: -25vw;
    /* Bắt đầu từ ngoài bên trái */
    height: 80px;
    display: flex;
    transform: rotate(1.817deg);
    padding: 32px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0px;
    top: 150px;
    background: rgba(94, 144, 137, 0.60);
    backdrop-filter: blur(5px);
}


/* Container cho nội dung scroll */

.scrollbar-track {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 80px;
    will-change: transform;
    left: 0;
    top: 0;
    border: 1px solid #FFF;
    border-left: none;
    border-right: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0px;
    padding: 0 40px;
    /* Padding để content không chạm viền */
}

.scrollbar-wrapper-2 .scrollbar-track {
    border: none;
}

.scrollbar-wrapper-2 .scrollbar-track .text {
    color: #C9C4A6;
}


/* Item lặp lại (LOUIS LAB + icon) */

.scroll-item {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.scroll-item .icon {
    width: 39.31px;
    height: 39px;
    transform: rotate(-0.175deg);
    flex-shrink: 0;
    aspect-ratio: 39.31 / 39.00;
}

.scroll-item .text {
    color: #FFF;
    text-shadow: 0 8.565px 21.413px rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 62.4px */
}

@media(min-width:768px) {
    section#about {
        padding-bottom: 100px;
        padding-top: 100px;
    }
    .header-main .main-menu .nav>li {
        width: 80px;
    }
    .header-main .main-menu .nav>li>a:not(.btn) {
        padding: 21px 62px;
    }
    .header-main .main-menu .nav>li>a:not(.btn) span {
        position: absolute;
        left: 50%;
        top: 0;
        /*çµ¶å¯¾é…ç½®ã§ãƒ†ã‚­ã‚¹ãƒˆã®ä½ç½®ã‚’æ±ºã‚ã‚‹*/
        /*ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã®æŒ‡å®š*/
        transition: all .5s;
        transform: translate(-50%, 0);
        /*Xæ–¹å‘ã«-50% â€»ä¸­å¤®å¯„ã›ã«ã™ã‚‹ãŸã‚*/
        /*ãƒ–ãƒ­ãƒƒã‚¯è¦ç´ ã«ã—ã¦é€éŽãªã—ã€ãƒ†ã‚­ã‚¹ãƒˆæŠ˜ã‚Šè¿”ã—ãªã—*/
        display: block;
        opacity: 1;
        white-space: nowrap;
        line-height: 42px;
    }
    /*å·®ã—æ›¿ã‚ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã®è¨­å®š*/
    .header-main .main-menu .nav>li>a:not(.btn) span:nth-child(2) {
        opacity: 0;
        /*é€éŽ0ã«*/
        transform: translate(-50%, 100%);
        /*Xæ–¹å‘ã«-50% Yæ–¹å‘ã«100%*/
        position: absolute;
        padding-top: 2px;
        font-size: 18px;
        font-family: var(--font-heading);
    }
    /*hoverã™ã‚‹ã¨ãƒ†ã‚­ã‚¹ãƒˆãŒå…¥ã‚Œæ›¿ã‚ã‚‹è¨­å®š*/
    .header-main .main-menu .nav>li>a:not(.btn):hover span:nth-child(1) {
        opacity: 0;
        /*é€éŽ0ã«*/
        transform: translate(-50%, -100%);
        /*Xæ–¹å‘ã«-50% Yæ–¹å‘ã«-100%*/
    }
    .header-main .main-menu .nav>li>a:not(.btn):hover span:nth-child(2) {
        opacity: 1;
        /*ä¸é€æ˜Žã«*/
        transform: translate(-50%, 0%);
        /*Xæ–¹å‘ã«-50% Yæ–¹å‘ã«0*/
    }
}


/* Hiệu ứng 1: Shimmer Slide */

.shimmer-slide {
    position: relative;
    overflow: hidden;
}

.shimmer-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmerSlide 3s infinite;
    z-index: 1;
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


/* Hiệu ứng 2: Glow Pulse */

.glow-pulse img {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 25px rgba(255, 255, 255, 1));
    }
}


/* Hiệu ứng 3: Rotating Shine */

.rotating-shine {
    position: relative;
    overflow: hidden;
}

.rotating-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient( from 0deg, transparent 0deg, transparent 80deg, rgba(255, 255, 255, 0.4) 90deg, rgba(255, 255, 255, 0.8) 100deg, rgba(255, 255, 255, 0.4) 110deg, transparent 120deg, transparent 360deg);
    animation: rotateShine 3s linear infinite;
    z-index: 1;
}

@keyframes rotateShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Hiệu ứng 4: Diagonal Sweep */

.diagonal-sweep {
    position: relative;
}

.diagonal-sweep::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 00%;
    height: 300%;
    background: linear-gradient( 45deg, transparent 30%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 55%, transparent 70%);
    animation: diagonalSweep 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes diagonalSweep {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(50%, 50%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}


/* Hiệu ứng 5: Sparkle */

.sparkle-effect {
    position: relative;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff, transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
    z-index: 2;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(3) rotate(180deg);
        opacity: 0;
    }
}


/* Hiệu ứng 6: Flash */

.flash-effect {
    position: relative;
    overflow: hidden;
}

.flash-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: flash 4s infinite;
    z-index: 1;
}

@keyframes flash {
    0%,
    90% {
        opacity: 0;
    }
    92% {
        opacity: 1;
    }
    94%,
    100% {
        opacity: 0;
    }
}


/* Hiệu ứng 7: Rainbow Shimmer */

.rainbow-shimmer {
    position: relative;
    overflow: hidden;
}

.rainbow-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.3) 20%, rgba(255, 255, 0, 0.3) 40%, rgba(0, 255, 0, 0.3) 60%, rgba(0, 255, 255, 0.3) 80%, rgba(0, 0, 255, 0) 100%);
    animation: rainbowSlide 3s infinite;
    z-index: 1;
}

@keyframes rainbowSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}


/* Hiệu ứng 8: Bounce Glow */

.bounce-glow img {
    animation: bounceGlow 2s ease-in-out infinite;
}

@keyframes bounceGlow {
    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
        transform: scale(1);
    }
    50% {
        filter: brightness(1.4) drop-shadow(0 0 30px rgba(255, 255, 255, 1));
        transform: scale(1.05);
    }
}


/* Hiệu ứng 9: Wave Shine */

.wave-shine {
    position: relative;
}

.wave-shine::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle, rgba(255, 255, 255, 0.6) 10%, transparent 20%);
    animation: waveShine 3s infinite;
    z-index: 1;
}

@keyframes waveShine {
    0% {
        transform: translate(-40%, -40%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(50%, 50%) scale(1);
        opacity: 0;
    }
}

.image-wrapper {
    width: fit-content;
}

.banner-home .scroll-bar-block {
    opacity: 0;
    transition: all 0.5s;
}

.banner-home .scroll-bar-block.show {
    opacity: 1;
}

.infor-line .date {
    color: #333;
    border-color: #333;
}

@media (min-width: 768px) {
    .logged-in .header-wrapper {
        top: 0px;
    }
}

.home-sub-title {
    font-size: 2rem;
    letter-spacing: 0.15em;
    line-height: 2;
    color: white;
    font-weight: bold;
}

a.card-service:hover {
    opacity: 1;
}

a.card-service:hover .service-img img {
    transform: scale(1.15);
}

a.card-service:hover .box-service::after {
    transform: scale(1.15);
}

a.card-service .box-service::after {
    transition: all 0.3s;
}

.box-service {
    transition: all 0.3s;
}

a.card-service:hover .box-service {
    border-color: #1B4446;
    box-shadow: 0 0 5px 0 rgba(59, 112, 105, 0.35);
}

a.link-news:before {
    width: 0%;
    height: 1px;
    display: block;
    position: absolute;
    background-color: white;
    content: '';
    bottom: -3px;
    transition: all 0.3s;
}

a.link-news:hover {
    opacity: 1;
}

a.link-news:hover:before {
    width: 100%;
}

.biggerlink .img-news img {
    transition: all 0.3s;
}

.biggerlink:hover .img-news img {
    transform: scale(1.1);
}

.icon-favi {
    opacity: 0.7;
}

.link-insta a {
    display: flex;
    align-items: center;
}

.bg-rotate {
    position: fixed;
    top: -250vh;
    left: -150vw;
    /* top: -200vh;
    left: -200vw; */
    width: 500vw;
    height: 500vh;
    background: conic-gradient( from 0deg, #6bb8b2, #f3d7a3, #f9eecf, #8ec5c3, #6bb8b2, #6bb8b2);
    transform: rotate(0deg);
    animation: spin 20s linear infinite;
    z-index: -1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Ánh sáng mờ di chuyển */

.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 70%);
    filter: blur(90px);
    animation: glowMove 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes glowMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-5%, 5%);
    }
}


/* Sao lấp lánh */

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}
.title-service span,.page-header-title .title-en span{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}