@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
/*default*/
html { scroll-behavior: smooth; -webkit-scroll-behavior: smooth; width: 100%; height: 100%;}
img { 
    max-width: 100%;
    border: 0;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
img a { outline : none;}
a:focus { outline: 0;}
a, img, li { 
	text-decoration: none !important;
	transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
}
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
    font-family: 'Noto Sans JP', Helvetica, Arial, sans-serif !important;
	-webkit-font-smoothing: antialiased;
    overflow-x: hidden;
	position: relative;
    -webkit-transition: all 300ms linear;
	transition: all 300ms linear;
    color: #fff;
}
.wrapper {
	width: 100%;
	position: relative;
}
.mobile { display: none;}


/* animation */
.hv-effect {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hv-effect:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.hvr-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hvr-forward:hover {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}


/*-----------------------------menu start------------------------------------*/
/* top_menu */
.top_menu {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	top: 0;
    background: rgba(20 20 20 / 60%);
	display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    z-index: 99;
}
.top_menu ul {
	width: 83%;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.top_menu ul li {
    position: relative;
	margin: 1.8% 0;
    width: 18%;
    text-align: center;
}
.top_menu .stick_logo {
	position: relative;
    width: 14%;
    margin: 0;
}
.top_menu .stick_logo img {
	position: absolute;
    top: -50px;
    left: 0;
}
.top_menu ul li a {
	color: #fff;
	font-size: 1.7rem;
	font-weight: 700;
	-webkit-transform: perspective(1px) translateZ(0);
  	transform: perspective(1px) translateZ(0);
	position: relative;
	display: inline-block;
}
.top_menu ul li a:hover,
.top_menu ul li a:focus,
.top_menu ul li a:active,
.top_menu ul li.active a {
	color: #ffdb77;
}
#menu li.active{
	color: #ffdb77;
}



/* mobile menu */
.mobile_menu {
    display: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mMenu_wrap {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 60%;
    background: #000;
    transition: all 0.6s ease-in-out;
    z-index: 99;
    display: flex;
    justify-content: center;
}
.mMenu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    display: none;
}
#mMenu-active:checked ~ .mMenu_overlay {
    display: block;
}
#mMenu-active:checked ~ .mMenu_wrap{
    right: 0;
}
.mMenu-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    height: 30px;
    width: 42px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    padding: 5px;
    background: rgba(20 20 20 / 80%);
    border-radius: 10px;
    border: 2px solid #fff;
}
.mMenu-btn span,
.mMenu-btn:before,
.mMenu-btn:after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    width: 50%;
    border-bottom: 2px solid #fff;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mMenu-btn:before {
    transform: translateY(-8px);
}
.mMenu-btn:after {
    transform: translateY(8px);
}


.mMenu-close {
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
    z-index: 100;
}

/* closing animation */
#mMenu-active:checked + .mMenu-btn span {
    transform: scaleX(0);
}
#mMenu-active:checked + .mMenu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}
#mMenu-active:checked + .mMenu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}


.mMenu_wrap ul {
    position: relative;
    list-style: none;
    text-align: left;
    padding: 15vw 0;
}
.mMenu_wrap ul li {
    margin: 5vw 0;
}
.mMenu_wrap ul li a {
    text-decoration: none;
    font-size: 5vw;
    font-weight: 500;
    color: #fff;
    position: relative;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mMenu_wrap ul li img {
    width: 35%;
}

.mMenu_wrap ul li a:hover {
    color: #ffdb77;
}
input[type="checkbox"] {
    display: none;
}

#mMenu-active:checked ~ .mMenu_wrap ul li a {
    opacity: 1;
}
.mMenu_wrap ul li a {
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}
#mMenu-active:checked ~ .mMenu_wrap ul li a {
    transform: none;
    transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1);
    transition-delay: .6s;
    transform: translateX(-100px);
}

/*-----------------------------menu end------------------------------------*/

/*head*/
.head {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.head .head_bg {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: url('../images/header_bg.webp') center top no-repeat;
    background-size: cover;
}

.head .head_logo {
    position: absolute;
    top: 1%;
    width: 22%;
    margin: 0 auto;
    left: 2.5%;
    filter: drop-shadow(0 3px 3px rgba(0 0 0 / 60%));
}
.head .head_slogan {
    position: absolute;
    margin: 0 auto;
    bottom: 6.5rem;
    left: 0;
    right: 0;
    width: 33%;
    text-align: center;
}
.head .download {
    position: absolute;
    margin: 0 auto;
    bottom: 5rem;
    left: 0;
    right: 0;
    width: 28%;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.head .copyright { display: none;}



/*news*/
.news {
    position: relative;
    background: url('../images/news_bg.webp') center top no-repeat;
    background-size: cover;
    margin: 0 auto;
    overflow: hidden;
}
.news .title {
    width: 18%;
    margin: 7% auto 0 auto;
    text-align: center;
}
.news .news_wrap {
    position: relative;
    background: url('../images/news_frame.webp') center top no-repeat;
    margin: 0 auto;
    width: 70%;
    padding: 60px 0;
    height: 470px;
    overflow: hidden;
}
.news .news_wrap .news_tab {
    position: relative;
    margin: 0 auto;
    width: 74%;
}
.news .news_wrap .news_tab ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.news .news_wrap .news_tab ul li {
    margin-right: 20px;
}
.news .news_wrap .news_tab ul li:hover,
.news .news_wrap .news_tab ul li:focus,
.news .news_wrap .news_tab ul li:active {
    filter: brightness(120%);
}
.news .news_wrap hr {
    margin: 1.6% auto 1% auto;
    width: 74%;
    border-top: 1px solid #976a2f;
    border-bottom: 0;
}
.news .news_wrap .news_content {
    margin: 0 0 0 13%;
    width: 74%;
}
.news .news_wrap .news_box li {
    margin: 0 auto;
    padding: 0.8rem 1rem;
    border-top: 1px solid #beb2a1;
}
.news .news_wrap .news_box li:nth-child(4n + 1)  {
     border-top: 0px;
}
.news .news_wrap .news_box li a {
    color: #202020;
    line-height: 2;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news .news_wrap .news_box li a:hover,
.news .news_wrap .news_box li a:focus,
.news .news_wrap .news_box li a:active {
    color: #972f2f;
}
.news .news_wrap .news_box li p.n_title {
    width: 100%;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    box-sizing: border-box;
}
.news .pagination {
    text-align: center;
    position: relative;
    margin-top: 2rem;
}
.news .pagination ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.news .pagination ul li {
    padding: 0 0.6rem;
}
.news .pagination ul li a {
    font-weight: 500;
    color: #734913;
    padding: 2px 10px 4px 10px;
    border-radius: 3rem;
}
.news .pagination ul li a:hover { color: #dd6300;}
.news .pagination ul li a.nowPage {
    background: #734913;
    color: #fff;
}




/*character*/
.character {
    position: relative;
    background: url('../images/character_bg.webp') center top no-repeat;
    background-size: cover;
    margin: 0 auto;
    overflow: hidden;
}
.character .title {
    width: 18%;
    top: 14vh;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
}
.character .char_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.character .char_outer {
    margin: 0 auto;
}
.character #thumbs {
    position: absolute;
    top: 62%;
    right: 16vw;
    width: 14%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.owl-carousel .owl-stage-outer {
    overflow: inherit !important;
}
.character #thumbs .item {
    position: relative;
    margin: 0 5%;
    cursor: pointer;
    filter: grayscale(1);
}
.character #thumbs .current .item {
    filter: grayscale(0);
    top: -30px;
}
.owl-carousel .owl-item img {
    width: auto !important;
}
.owl-carousel .owl-item img.mobile {
    display: none;
}
.owl-theme .owl-nav {
    position: absolute;
    top: 40rem;
    right: 21.4rem;
    margin-top: 0 !important;
}
.character .owl-theme .owl-nav [class*='owl-'] {
    margin: 0;
    padding: 0;
    background: unset;
    transition: all .3s ease;
}
.character .owl-theme .owl-nav [class*='owl-']:hover {
    background: unset;
}
.owl-carousel .owl-nav .owl-next {
    position: relative;
    right: -7vw;
}
.owl-carousel .owl-nav .owl-next:hover {
    transform: translateX(1vw);
}
.owl-carousel .owl-nav .owl-prev {
    position: relative;
    transform: rotate(180deg);
    left: -7vw;
}
.owl-carousel .owl-nav .owl-prev:hover {
    transform: rotate(180deg) translateX(1vw);
}
.character #big.owl-theme {
    position: relative;
}

.char_content .char-img {
    width: 100vw;
    overflow: hidden;
}
.char_content .char-img img {
    position: relative;
    top: -18rem;
    left: -10vw;
}
.char_content .char-infor {
    position: absolute;
    top: 28vh;
    right: 0;
    width: 40%;
    font-family: "Noto Serif JP";
}
.char-infor .c-name {
    display: inline-flex;
    font-size: 3.8rem;
    font-weight: 700;
    color: #714811;
    margin-bottom: 1.4rem;
}
.char-infor .c-name .ruby {
    position: relative;
    display: inline-flex;
    justify-content: center;
}
.char-infor .c-name .ruby .rt {
    font-size: 1.4rem;
    letter-spacing: 10px;
    position: absolute;
    display: block;
    top: -1.3rem;
}
.char-infor .c-va {
    font-size: 1.2rem;
    font-weight: 700;
    background: #714811;
    padding: 5px 32px 8px 32px;
    color: #fff;
    width: fit-content;
    border-radius: 50px;
}
.char-infor .c-intro {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.8;
    position: relative;
    width: 80%;
    color: #2e1f0b;
    margin-top: 3%;
}





/*feature*/
.feature {
    position: relative;
    background: url('../images/feature_bg.webp') center top no-repeat;
    background-size: cover;
    margin: 0 auto;
    overflow: hidden;
    height: 100vh;
}
.feature .title {
    position: relative;
    width: 18%;
    margin: 7% auto 0 auto;
    text-align: center;
}
.feature .system_content {
    width: 60%;
    margin: 0 auto;
    position: relative;
    height: calc(100vh - 20%);
    overflow: hidden;
}
.feature .swipe_area_pad { display: none;}
.feature .swipe_area_4K { display: none;}

.feature #carousel .flip-items li a,
.feature #carousel_4K .flip-items li a,
.feature #carousel_pad .flip-items li a {
    position: absolute;
}

/*-------mobile-------*/
.feature .feature-slider {
    width: 50rem;
    height: 70vh;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.feature .feature-slider ul li {
    width: 100%;
    height: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.feature .feature-slider ul li a {
    position: absolute;
    width: 20%;
}  
.feature .feature-slider .items {
    position: absolute;
}  
.feature .feature-slider .main-pos {
    margin-left: 0 !important;
    z-index: 30;
}
.feature .feature-slider .left-pos {
    filter: brightness(40%);
    margin-left: -14rem !important;
    z-index: 10;
    -webkit-transform: scale(.75);
    -moz-transform: scale(.75);
    transform: scale(.75);
}  
.feature .feature-slider .back-pos {
    margin-left: 0 !important;
    filter: brightness(40%);
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    transform: scale(.5);
}
.feature .feature-slider .right-pos {
    filter: brightness(40%);
    margin-left:  14rem !important;
    z-index: 10;
    -webkit-transform: scale(.75);
    -moz-transform: scale(.75);
    transform: scale(.75);
}
.feature .feature-slider .feature-slider-btn {
    position: relative;
    margin: 0 auto;
    z-index: 10;
    top: 12rem;
    width: 100%;
    filter: drop-shadow(0 0 10px black);
}
.feature-slider-btn .L-btn {
    position: absolute;
    left: -6rem;
    width: 12%;
    transition: all .3s;
}
.feature-slider-btn .L-btn:hover {
    transform:translateX(-8px);
}
.feature-slider-btn .R-btn {
    position: absolute;
    right: -6rem;
    width: 12%;
    transition: all .3s;
}
.feature-slider-btn .R-btn:hover {
    transform:translateX(8px);
}



/*footer*/
.footer {
    width: 100%;
    height: 560px !important;
    padding: 3% 0 5% 0;
    bottom: 0;
    background: #000;
    position: absolute;
    text-align: center;
}
.footer .footer-wrap {
    position: relative;
    width: 30%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer .link { 
    margin: 1% auto 3% auto;
    width: 100%;
}
.footer .link ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .link ul li { margin: 0 2%;}
.footer .link a {
	color: #fff;
}
.footer .link a:hover { opacity: .7;}
.footer .origin img {
    margin: 0 3%;
    width: 40%;
    vertical-align: middle;
}
.footer .origin a:hover { opacity: .7;}
.footer .copyright {
    margin-top: 2%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.footer .copyright h6 {
    font-size: 12px;
    margin-top: 8px;
}


/*浮動*/
.side_bar {
    position: fixed;
    top: 32vh;
    right: -6px;
    z-index: 99;
    width: 95px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 20px 0;
    background: url('../images/side-bar-bg.webp') top right no-repeat;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
}
.side_bar a {
    margin: 5px 0;
}
.side_bar:hover { right: 0;}
.side_pay {
    position: fixed;
    width: 15%;
    bottom: 4vh;
    z-index: 99;
    right: 20px;
}
.side_pay a:hover { filter: brightness(110%);}

.icon-float {
	vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-animation-name: icon-float;
  animation-name: icon-float;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
@-webkit-keyframes icon-float {
    0% {
      -webkit-transform: translateY(16px);
      transform: translateY(16px);
    }
    50% {
      -webkit-transform: translateY(8px);
      transform: translateY(8px);
    }
    100% {
      -webkit-transform: translateY(16px);
      transform: translateY(16px);
    }
  }
  @keyframes icon-float {
    0% {
      -webkit-transform: translateY(16px);
      transform: translateY(16px);
    }
    50% {
      -webkit-transform: translateY(8px);
      transform: translateY(8px);
    }
    100% {
      -webkit-transform: translateY(16px);
      transform: translateY(16px);
    }
  }

/* 彈窗 */
.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(58, 58, 58, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prize .cd-popup-trigger {
    color: #131313;
    background: #fff;
    padding: 0 6px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    position: relative;
    top: -3px;
    margin-left: 10px;
}
.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}
.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 4em auto;
    text-align: center;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.cd-popup-container .popup-content {
    margin: 0 auto;
}
.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
  .cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
    content: '';
    position: absolute;
    top: 13px;
    width: 30px;
    height: 3px;
    border-radius: 20px;
    background-color: #fff;
  }
  .cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
  }
  .cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 0;
  }
.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
    .cd-popup-container {
      margin: 8em auto;
    }
}


/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#loading-screen img {
    max-width: 30%;
    width: 100%;
    margin-bottom: 20px;
}

.progress-bar-container {
    width: 90%;
    max-width: 600px;
    height: 5px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #b08242;
    transition: width 0.1s linear;
}

.progress-percentage {
    color: #fff;
    font-size: 1rem;
}

/* Hide loading screen when done */
body.loaded #loading-screen {
    opacity: 0;
    pointer-events: none;
}


/*----------------------------------------4K---------------------------------------------------*/
@media screen and (min-width:2050px) {

    .news .title { position: relative; margin: 0 auto;}
    .feature .title { position: relative; margin: 8% auto 0.5% auto;}
    .news .news_wrap { background-size: 100% 100%; width: 65%; height: 38vh; padding: 3% 0;}
    
    .char_content .char-img img { top: 0; left: 0;}
    .char_content .char-infor { right: 10vw; top: 30vh;}
    .char-infor .c-name { font-size: 4.8rem;}
    .char-infor .c-va { font-size: 1.8rem; padding: 9px 45px 12px 45px;}
    .char-infor .c-intro { font-size: 1.5rem; width: 92%;}

    .character #thumbs { top: 65vh; right: 25vw;}
    .owl-theme .owl-nav { top: 72vh; right: 28.3vw;}
    
    .feature .swipe_area { display: none;}
    .feature .swipe_area_4K { display: block;}
    .feature .system_content { width: 80%;}
    .feature .feature-slider { transform: scale(1.5); top: 17%;}

}
/*----------------------------------------Mac book---------------------------------------------*/
@media screen and (max-width:1440px) {
	
    .sec_wrapper { width: 100%;}
    .top_menu ul li a { font-size: 1.2rem;}

    .news .news_wrap { background-size: contain; padding: 50px 0;}
    .news .news_wrap .news_tab ul li { width: 20%;}
    .news .news_wrap .news_content li a { font-size: 0.9rem;}
    
    .char-infor .c-name { font-size: 2.6rem; margin-bottom: 1.2rem;}
    .char-infor .c-va { font-size: 1rem; padding: 5px 28px 7px 28px;}
    .char-infor .c-intro { font-size: 1rem; margin-top: 3%;}
    .character #thumbs { right: 22vw; top: 64%;}
    .char_content .char-img { width: 92vw;}
    .char_content .char-img img { left: -19vw;}
    .owl-theme .owl-nav { top: 38%; right: 23.5vw;}
    .owl-carousel .owl-nav .owl-prev { left: -9vw;}
    .owl-carousel .owl-nav .owl-next { right: -9vw;}

    .feature .system_content { width: 62%;}
    .feature .swipe_area { display: none;}
    .feature .swipe_area_pad { display: block;}

    .footer { height: 65vh !important;}
    .footer .copyright .logo img { height: 50px;}
    .footer .copyright h6 { font-size: 8px;}

}
/*----------------------------------------小尺寸筆電-------------------------------------------*/
@media screen and (max-width:1280px) {
    
    .top_menu ul { width: 100%;}
    .top_menu ul li a { font-size: 1.3rem;}
    
    .news .title, .character .title, .feature .title { width: 20%;}
    .news .news_wrap { width: 80%; background-size: 100%; padding: 45px 0;}
    .news .news_wrap .news_tab ul li { width: 20%;}
    
    .char-infor .c-va { font-size: 1rem;}
    .char_content .char-infor { top: 30vh;}
    .char-infor .c-intro { font-size: 1rem; width: 85%;}
    .character #thumbs { width: 16%; bottom: 3rem; right: 15rem;}
    .owl-theme .owl-nav { top: 40%; right: 19vw;}
    .owl-carousel .owl-nav .owl-prev { left: -8vw;}
    .owl-carousel .owl-nav .owl-next { right: -7.6vw;}

    .feature .system_content { width: 70%;}
    .feature .feature-slider { width: 40rem;}
    .feature .feature-slider .feature-slider-btn { top: 9rem;}

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

    .head .head_bg { background: url('../images/header_pad.webp') center top no-repeat; background-size: cover;}
    .head .head_slogan { bottom: 11rem; width: 75%;}
    .head .download { bottom: 10rem; width: 60%;}
    .head .copyright { position: absolute; display: block; width: 45%; bottom: 2.5%; margin: 0 auto; left: 0; right: 0;}
    .mobile { display: block;}
    .desktop { display: none;}
    .news .title, .character .title, .feature .title { width: 50%;}

    .news .news_wrap { background: url('../images/news_frame_m.webp') center top no-repeat; background-size: 100%;
        height: 60vh; width: 80%; padding: 35px 0;}

    .news .news_wrap .news_tab { width: 82%;}
    .news .news_wrap .news_tab ul { margin-left: 2%;}
    .news .news_wrap .news_tab ul li { margin-right: 8px; width: 25%;}
    .news .news_wrap hr { margin: 3% auto 0 auto; width: 80%;}
    .news .news_wrap .news_content { margin: 0 0 0 8%; width: 84%;}
    .news .news_wrap .news_box li p.n_title { -webkit-line-clamp: 2;}
    .news .news_wrap .news_box li { width: 85%;}
    .news .news_wrap .news_content li a { font-size: 12px;}
    .news .pagination { margin-top: 0;}

    .character .title { margin: 3% auto 0 auto; top: 0;}
    .character #thumbs { width: 45%; top: unset; right: 28%; bottom: 6vh;}
    .char_content .char-img img { left: unset; top: 2rem;}
    .owl-carousel .owl-item img.mobile { display: block;}
    .owl-carousel .owl-item img.desktop { display: none;}
    .character #thumbs .current .item { top: 0;}
    .char_content .char-infor { position: relative; bottom: 14vh; top: unset; right: 0; width: 84%; padding: 12vh 8% 20vh 8%;
        background: url('../images/character_infor_bgM.webp') center top no-repeat; background-size: 100% 100%; margin: 0 auto;}
    .char-infor .c-name { font-size: 2rem; font-weight: 900; margin-bottom: 10px;}
    .char-infor .c-name .ruby .rt { font-size: 12px; letter-spacing: 4px; top: -14px;}
    .char-infor .c-va { font-size: 0.8rem; padding: 5px 22px 5px 22px;}
    .char-infor .c-intro { font-size: 0.8rem; width: 100%; margin-top: 2%;}
    .owl-theme .owl-nav { width: 100vw; right: 0; left:0; display: flex; justify-content: space-between;}
    .owl-carousel .owl-nav .owl-prev { left: 0;}
    .owl-carousel .owl-nav .owl-next { right: 0;}

    .feature .system_content { width: 100%;}

    .footer .footer-wrap { width: 50%;}


    @media screen and (orientation: landscape) {
        .head .head_bg {
            height: 200vh;
        }


        .feature .feature-slider {
            height: 100vh;
        }

        .news .news_wrap { 
            background: url('../images/news_frame.webp') center top no-repeat;
            background-size: 100%;
            height: 85vh;
        }

        .mMenu_wrap ul li a {
            font-size: 20px;
        }

        .mMenu_wrap ul {
            padding: 15px 0;
        }

    }

    .side_pay { width: 26%; top: 6vh; z-index: 3; right: 5px;}


}
/*---------------------------------------------------------------------------------------------*/
@media screen and (max-width:767px) {
    
    .head .head_bg { background: url('../images/header_bg_m.webp') center top no-repeat; background-size: cover;}
    .head .head_logo { top: 1%; width: 28%; left: 0; right: 0; filter: drop-shadow(0 1px 1px rgba(0 0 0 / 60%));}
    .head .head_slogan { width: 100%; bottom: 9rem;}
    .head .download { bottom: 8.6rem; width: 80%; gap: 8px;}
    .head .copyright { bottom: 12%;}
    
    .news .news_wrap { width: 100%; left: 3px; background-size: 100% 100%;}
    .news .news_wrap .news_tab ul li { width: unset;}

    .news .title, .character .title, .feature .title { margin: 0 auto; filter: drop-shadow(0 0 10px white);}
    .char_content .char-img { height: 100vh; width: 100vw;}
    .char_content .char-img img { top: 7rem; transform: scale(1.8);}
    .char_content .char-infor { bottom: 60vh;}
    .character #thumbs { width: 60%; right: 21%; bottom: 3vh;}
    .owl-theme .owl-nav { top: 22%;}

    .feature .swipe_area_pad { display: none;}
    .feature .feature-slider { width: 95%; height: 70vh; top: 14vh;}
    .feature .feature-slider .main-pos { margin-left: 0 !important; top: 0 !important; right: 0 !important;}
    .feature .feature-slider .left-pos { top: -8rem !important; margin-left: 0 !important;}  
    .feature .feature-slider .right-pos { right: 0 !important; top: 8rem !important;}
    .feature .feature-slider .back-pos { top: 0 !important; right: 0 !important;}
    .feature .feature-slider .feature-slider-btn { left: 0; top: 0; z-index: 20;}
    .feature-slider-btn .L-btn { left: 45%; top: -8%; transform: rotate(90deg) !important;}
    .feature-slider-btn .R-btn { right: 43%; top: 40%; transform: rotate(90deg) !important;}

    .footer { height: 44vh !important;}
    .footer .footer-wrap { width: 75%;}
    .footer .link { margin: 0 auto 4% auto; width: 90%;}
    .footer .link ul { flex-wrap: wrap; justify-content: space-between;}
    .footer .link ul li { margin: 2%; width: 45%;}
	.footer .link a { margin: 0 6%; font-size: 11px; line-height: 20px;}
    .footer .copyright { margin-top: 5%;}
    .footer .copyright h6 { font-size: 12px;}

    .side_pay { width: 30%; top: 9vh; bottom: unset;}

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

    .head .head_slogan { bottom: 7rem;}
    .head .download { bottom: 6.6rem;}
    .character #thumbs { bottom: 4vh;}
    .char-infor .c-intro { font-size: 10px;}
    .feature .feature-slider { height: 170vw; top: 16vh;}

}
