@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Titillium+Web);
@import url(https://fonts.googleapis.com/css?family=Aldrich);
@import url(https://fonts.googleapis.com/css?family=Orbitron);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

@font-face {
    font-family: 'AORUS';
    src: url('../innergigabytefonts/AORUS.woff') format("woff");
}

::-webkit-scrollbar {
    width: 0;
}

#divGoTop {
    display: none !important;
}

html,
body {
    background-color: #000;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media screen and (min-width:960px) {
    #model-header {
        padding: 0.5% 0;
        position: unset;
        left: unset;
        top: unset
    }

    #model-header .header-sub-title {
        display: block
    }

    .model-content {
        margin-top: 120px;
        display: none;
    }

    .Content-TopArea .breadcrumb {
        margin-right: 0;
        margin-left: 0;
    }

    #PageMainContent .container {
        max-width: 90%;
        min-width: 90%;
    }

    .main-content .model-header>.header-sub-title {
        margin: 5px 0;
    }
}

.inside-mouse.InnerGIGABYTEContent {
    max-width: 2560px;
    margin: auto;
    padding: 0;
    width: 100%;
}

.InnerGIGABYTEContent a,
.InnerGIGABYTEContent h3,
.InnerGIGABYTEContent .h3 {
    text-align: left;
    font-size: 2rem;
    font-family: "AORUS", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ddd;
    margin: 0;
    padding: 0;
}

.InnerGIGABYTEContent h4,
.InnerGIGABYTEContent .h4 {
    font-family: 'Aldrich', 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ff6400;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

.InnerGIGABYTEContent p {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 1.8px;
    color: #ddd;
    margin: 0;
    font-family: "Titillium Web", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.InnerGIGABYTEContent * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}

@media screen and (min-width:1201px) and (max-height:768px) {

    .InnerGIGABYTEContent a,
    .InnerGIGABYTEContent h3,
    .InnerGIGABYTEContent .h3 {
        font-size: 10px;
        line-height: unset;
        margin: 0 0 5px 0;
    }

    .InnerGIGABYTEContent h4,
    .InnerGIGABYTEContent .h4 {
        font-size: 9px;
    }

    .InnerGIGABYTEContent p {
        font-size: 8px;
        line-height: unset;
        margin: 0;
    }
}

svg.noise-effects {
    position: absolute;
    width: 0;
    height: 0;
}

.KVsection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.kv-img {
    height: 100%;
}

.kv-img-rwd {
    display: none;
}

.sec1 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.kf-sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.kf-slider {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    position: absolute;
    padding: 0 10vw;
    top: 0;
    left: 50%;
    transition: transform .5s cubic-bezier(0, 0, 0, 1);
    z-index: 0;
    display: none;
    opacity: 0;
}

.kf-slider:first-child {
    position: relative;
}

.kf-slider.kf-prev {
    transform: translateX(-150%);
    display: flex;
    z-index: 3;
    opacity: 1;
}

.kf-slider.kf-next {
    transform: translateX(50%);
    display: flex;
    z-index: 3;
    opacity: 1;
}

.kf-slider.active {
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
    opacity: 1;
}

.kf-sliders.next-ani .kf-slider.prev {
    animation: next-ani-prev .5s forwards linear;
}

@keyframes next-ani-prev {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-150%);
    }
}

.kf-sliders.next-ani .kf-slider.next {
    animation: next-ani-next .5s forwards linear;
}

@keyframes next-ani-next {
    0% {
        transform: translateX(150%);
    }

    100% {
        transform: translateX(50%);
    }
}

.kf-sliders.prev-ani .kf-slider.prev {
    animation: prev-ani-prev .5s forwards linear;
}

@keyframes prev-ani-prev {
    0% {
        transform: translateX(-250%);
    }

    100% {
        transform: translateX(-150%);
    }
}

.kf-sliders.prev-ani .kf-slider.next {
    animation: prev-ani-next .5s forwards linear;
}

@keyframes prev-ani-next {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.kf-slider-prev-btn {
    width: 10vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.kf-img-bg {
    position: absolute;
    width: 2560px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.kf-text {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    gap: 1vw;
}

.kf-text p {
    margin: 0 0 .5vw 0;
}

.kf-logos {
    display: flex;
    gap: 1vw;
}

.kf-logos>img {
    height: 80px;
}

.kf-img-col {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kf-img-main {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kf-img {
    width: 100%;
    max-width: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sec3 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    padding: 0 5vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 1vw;
}

.rgb-bg-img {
    width: 2560px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rgb-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    gap: 1vw;
}

.rgb-text h3,
.rgb-text h4 {
    text-align: left;
}

.rgb-text p {
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.rgb-text span {
    margin-top: 10px;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ff6400;
}

.rgb-learn-more {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.rgb-learn-more .link {
    display: flex;
    overflow: hidden;
    font-size: 0.9rem;
    transition: all .3s;
    padding: 0.6vw 2vw;
    background: #331400;
    border: #ff6400 1px solid;
    color: #ff6400;
}

.rgb-learn-more .link:hover {
    color: #ddd;
    font-weight: bold;
    text-shadow: 0 0 1rem #ff6400, 0 0 1.5rem #ff6400, 0 0 2rem #ff6400;
    text-decoration: none;
}

.rgb-imgs {
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.off-light,
.rgb-bgs {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.rgb-bgs>* {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.rgb-bgs>div>* {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.rgb-bgs *.active {
    display: flex;
}

.rgb-cover {
    width: 100%;
    position: relative;
    z-index: 1;
}

.rgb-bg-fill {
    fill: #ff6400;
}

.huerotate.active {
    animation: huerotate 4s linear infinite;
}

@keyframes huerotate {
    0% {
        filter: hue-rotate(0);
    }

    100% {
        filter: hue-rotate(359deg);
    }
}

.gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: sprite infinite steps(29) 3s;
    background-image: url(../innergigabyteimages/rgb/gradient.png);
    background-size: 100% 3000%;
    z-index: 1;
}

@keyframes sprite {
    0% {
        background-position-y: 0%;
    }

    100% {
        background-position-y: 100%;
    }
}

.flash {
    animation: flash .5s linear infinite;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.doubleflash {
    animation: doubleflash 1s linear infinite;
}

@keyframes doubleflash {
    0% {

        opacity: 1;
    }

    10% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.pulse {
    animation: pulse 4s linear infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.rgb-btn-colorpicker {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
}

.rgb-btns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rgb-btns::-webkit-scrollbar {
    height: 0px;
}

.rgb-btns>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 1vw 1vw 0;
    cursor: pointer;
    filter: grayscale(1);
    width: 100px;
    transition: all .5s;
}

.rgb-btns>div:hover {
    filter: grayscale(0);
    transform: translateY(-1px)
}

.rgb-btns>div.active {
    filter: grayscale(0);
}

#wheelPicker {
    display: block;
}

#sliderPicker {
    display: none;
    padding: 5% 0 0 0;
}

.rgb-btns p {
    font-family: 'Aldrich', 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ff6400;
    text-align: center;
    line-height: 1;
    font-size: 0.5rem;
}

.sec2 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 5vw;
    padding: 0 5vw;
}

.sec2>img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sec2-text {
    position: relative;
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1vw;
}

.sec2-text>div {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.sec2-text>.modular-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5vw;
}

.modular-btns>div {
    cursor: pointer;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    position: relative;
}

.modular-btns>div p {
    text-align: center;
}

.modular-btns>div div {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 3px);
    width: 0;
    height: 5px;
    border-radius: 2.5px;
    transition: width .5s;
}

.modular-btns>div.active div,
.modular-btns>div:hover div {
    width: 50%;
    background-color: #ff6400;
}

.modular-imgs {
    position: relative;
    max-width: 750px;
    width: 100%;
    height: 100%;
}

.modular-img {
    position: absolute;
    max-width: 99%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s;
}

.modular-img.active {
    opacity: 1;
}

.sec5 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.io-img-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.io-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4vw 0 2vw;
}

.io-text {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    gap: 1vw;
}

.io-text>p {
    max-width: 600px;
    text-align: center;
}

.io-btns-group {
    margin: 1vw 0 0 0;
    padding: 0 5vw;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.io-btns-left {
    width: 30%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.io-btns-right {
    width: 30%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.io-btns-right,
.io-btns-left {
    opacity: 0;
}

.io-btns-left.transparent,
.io-btns-right.transparent {
    opacity: 0;
    cursor: default;
}

.io-btns-right>div,
.io-btns-left>div {
    width: 33px;
    height: 33px;
    border: #ccc 1px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .5s;
    margin: 0 1vw;
}

.io-btns-right>div>div,
.io-btns-left>div>div {
    position: absolute;
    width: 9px;
    height: 9px;
    border-top: #ccc 1px solid;
    border-right: #ccc 1px solid;
    transform: rotate(45deg);
    left: 9px;
    transition: all .5s;
}

.io-btns-left>div>div {
    transform: rotate(225deg);
    left: unset;
    right: 9px;
}

.io-btns-right:hover>div,
.io-btns-left:hover>div {
    border: #ff6400 1px solid;
}

.io-btns-right:hover>div>div,
.io-btns-left:hover>div>div {
    border-top: #ff6400 1px solid;
    border-right: #ff6400 1px solid;
}

.io-btns {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    font-size: 0;
    gap: .5vw;
}

.io-btn {
    position: relative;
    cursor: pointer;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    transition: all .5s;
    margin: 0;
    text-align: center;
    max-width: 250px;
    width: calc(100% / 3);
    height: 100%;
    transform: translateX(0);
}

.io-btn p {
    color: #ddd;
    position: relative;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    width: 100%;
    height: 100%;
    white-space: normal;
}

.io-btn>div {
    width: 0;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 3px);
    height: 5px;
    border-radius: 2.5px;
    transition: width .5s;
}

.io-btn:hover div,
.io-btn.active div {
    width: 50%;
    background-color: #ff6400;
}

.io-paragraph {
    width: 100%;
    max-width: 600px;
    text-align: center;
    height: 100%;
    position: relative;
    margin-top: .5vw;
}

.io-paragraph p {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    color: #aaa;
}

.io-paragraph p.crown {
    position: relative;
}

.io-paragraph p.active {
    display: block;
    z-index: 1;
    opacity: 1;
}

.io-imgs {
    width: 100%;
    height: 50%;
    position: relative;
    pointer-events: none;
}

.io-imgs img {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .5s linear;
}

.io-imgs img.active {
    opacity: 1;
}

.sec4 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
}

.sec4-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sec4-text {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
}

.sec4-text p {
    max-width: 700px;
    text-align: center;
}

.sec4-cols {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 100%);
    grid-template-rows: 100%;
    width: 75vw;
    max-height: 50vh;
    height: 100%;
    gap: 20px;
}

.sec4-cols>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    width: 100%;
    background-color: #181819b3;
    backdrop-filter: blur(5px);
    padding: 1vw 2.5vw;
    border: 1px solid #636363;
    border-radius: .5rem;
    transition: all .5s;
    opacity: .5;
    cursor: pointer;
}

.sec4-cols>div.active {
    opacity: 1;
    cursor: unset;
}

.sec4-cols>div img {
    pointer-events: none;
}

.sec4-cols>div.active img {
    pointer-events: unset;
}

.sec4-cols>div:hover {
    opacity: 1;
}

.col-text {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.sec4-cols .col-text h4,
.sec4-cols .col-text p {
    color: #ddd;
}

.sec4-cols .col-imgs {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec4-cols .col-imgs img {
    max-width: 100%;
    max-height: 100%;
}

.sec4-cols .ball-bearing img {
    width: 50%;
}

.sec4-cols .col-imgs img:hover {
    cursor: zoom-in;
    filter: brightness(1.1);
}

.sec4-dots {
    display: flex;
    position: relative;
    gap: 9px;
}

.sec4-dots>div {
    cursor: pointer;
    font-size: 30px;
    color: #636363;
}

.sec4-dots>div:hover,
.sec4-dots>div.active {
    color: #ff6400;
}

.lightbox {
    max-width: 1600px;
    max-height: 900px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #191B1E;
    backdrop-filter: blur(15px);
    pointer-events: none;
    padding: 3vw;
    gap: 1vw;
    border-radius: 10px;
}

.lightbox.active {
    pointer-events: unset;
    opacity: 1;
}

.lbimgs {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lbimgs img {
    height: 100%;
}

.lightbox .closebtn {
    width: 3rem;
    height: 3rem;
    background-color: #31313161;
    position: relative;
    bottom: 0;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.lightbox .closebtn:hover {
    border: 2px solid #ff6400;
    cursor: pointer;
}

.lightbox .closebtn div {
    width: 60%;
    height: 2px;
    position: absolute;
    background-color: #ddd;
    transition: .3s;
}

.lightbox .closebtn:hover div {
    background-color: #ff6400;
}

.lightbox .closebtn div:first-child {
    transform: rotate(45deg);
}

.lightbox .closebtn div:last-child {
    transform: rotate(-45deg);
}

#designconcept {
    position: relative;
    overflow: hidden;
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5vw 0 0;
    background-color: #111111;
}

.concept-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
}

.concept-text p {
    text-align: center;
    max-width: 600px;
}

.concept-imgs {
    position: relative;
    width: 100%;
    height: 100%;
}

.concept-imgs img {
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    opacity: 0;
}

.concept-imgs img:nth-child(3) {
    transform: translate(-45%, -45%);
}

.concept-imgs img:nth-child(4) {
    transform: translate(-55%, -50%);
}

.concept-imgs img:nth-child(5) {
    transform: translate(-55%, -45%);
}

.concept-imgs img:nth-child(6) {
    transform: translate(-45%, -55%);
}

.concept-imgs img:nth-child(7) {
    transform: translate(-48%, -48%);
}

.active .concept-imgs img {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.concept-imgs .rwd {
    display: none;
}

.sec7 {
    position: relative;
    overflow: hidden;
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lcd-img-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lcd-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

.lcd-text {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    height: 100%;
    z-index: 1;
    gap: 1vw;
}

.lcd-text-content {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    gap: 1vw;
}

.lcd-btns {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.lcd-btn {
    position: relative;
    cursor: pointer;
    font-family: 'Aldrich', 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #ddd;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.lcd-btn:hover,
.lcd-btn.active {
    color: #ff6400;
}

.lcd-btn p {
    clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
    height: 0;
    line-height: 1.5;
    letter-spacing: 0;
    font-size: .75rem;
}

.lcd-btn.active p {
    transition: clip-path .5s;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    height: unset;
}

.lcd-btn>div {
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-1rem);
    transition: all .5s;
    clip-path: polygon(0 50%, 0 50%, 100% 50%, 100% 50%);
    background-color: #ddd;
}

.lcd-btn:hover div,
.lcd-btn.active div {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    background-color: #ff6400;
}

.lcd-imgs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 750px;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translate(0, 0);
}

.lcd-imgs>img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 100%;
    opacity: 0;
}

.lcd-imgs>.lcd-img-1 {
    position: relative;
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.lcd-imgs>.lcd-img-2 {
    opacity: 1;
    width: unset;
    height: 100%;
    left: 0;
    transform: translate(-100%, 0);
}

.lcd-imgs>.lcd-img-video1,
.lcd-imgs>.lcd-img-video2 {
    animation: huerotate 4s linear infinite;
}

.lcd-imgs>img.active {
    opacity: 1;
}

.dimen {
    position: relative;
    overflow: hidden;
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
}

.dimen-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.dimen-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
    text-align: center;
}

.dimen-text p {
    max-width: 900px;
}

.dimen-img {
    max-width: 900px;
    width: 100%;
    position: relative;
}

.illustration-announce {
    position: relative;
    z-index: 999;
}

.illustration-announce p {
    text-align: center;
}

/************************************************************************** dots **************************************************************************/
.dots {
    position: fixed;
    right: 1vw;
    top: 50%;
    color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(calc(-50% + 30px));
}

.dots a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dots a p {
    white-space: nowrap;
    color: #ff6400;
    font-size: 8px;
    text-align: right;
    opacity: 0;
    pointer-events: none;
    padding: 0 8px 0 0;
    position: relative;
    left: 100%;
    font-family: "AORUS", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    width: 0;
}

.dots a div {
    background-color: white;
    width: 10px;
    height: 10px;
}

.dots a div.active {
    background-color: #ff6400;
}

.dots a:hover {
    text-decoration-color: #00000000;
}

.dots a:hover p {
    opacity: 1;
    pointer-events: unset;
    left: 0;
    width: unset;
    transition: all .5s;
}

.dots a:hover div {
    background-color: #ff6400;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .dots a p {
        line-height: 1.6rem;
    }
}

@media screen and (max-width:1200px) {
    .dots {
        display: none;
    }
}

.hide-dot {
    display: none;
}

/************************************************************************** dots **************************************************************************/