@charset "UTF-8";
* {
    box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, sans-serif;
  font-style: normal;
  overflow: hidden;
  overflow-y: auto;
  color: #ffffff;
  font-size: 16px;
}

body,
p,
form,
input,
button,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* 清除默认样式 */
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: #ffffff;
}

a:visited {
  text-decoration: none;
  color: #ffffff;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #ffffff;
}

body {
  width: 100%;
}

img {
  border: none;
  width: 100%;
  /* 加入下面css */
  /* image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor; */
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  visibility: hidden;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.absoluteAll {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pointer {
  cursor: pointer;
}

.widthAll {
  width: 100%;
}

.nomargin {
  margin: 0 !important;
}

.noborder {
  border: none !important;
}

.nopadding {
  padding: 0 !important;
}


/* layout */
.acea-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 辅助类 */
}

.acea-row.row-middle {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.acea-row.row-top {
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.acea-row.row-bottom {
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.acea-row.row-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.acea-row.row-right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.acea-row.row-left {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.acea-row.row-between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.acea-row.row-around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
}

.acea-row.row-column-around {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}

.acea-row.row-column {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.acea-row.row-column-between {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* 上下左右垂直居中 */
.acea-row.row-center-wrapper {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/* 上下两边居中对齐 */
.acea-row.row-between-wrapper {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.checkbox-wrapper .icon {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


.bgColor-a1 {
    background-color: #30BBFF;
}

.bgColor-a2 {
    background-color: #FF3636;
}

.bgColor-a3 {
    background-color: #B97EFF;
}

.bgColor-a4 {
    background: linear-gradient(to right, #ff1818 0%,#b77aff 66%, #68cdff 100%);
    background:-o-linear-gradient(to right, #ff1818 0%,#b77aff 66%, #68cdff 100%);
    background:-webkit-linear-gradient(to right, #ff1818 0%,#b77aff 66%, #68cdff 100%);
    background:-ms-linear-gradient(to right, #ff1818 0%,#b77aff 66%, #68cdff 100%);
}

.bgColor-a5 {
    background-color: #00D4AA;
}

.gradient-text {
    background: linear-gradient(to right, #ff1818 0%, #b77aff 66%, #68cdff 100%);

    /* 关键 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 兼容部分浏览器 */
    background-clip: text;
    color: transparent;
}

.bgColor-content1 {
    background: linear-gradient(to bottom, #000000,#3991bc);
    background:-o-linear-gradient(to bottom, #000000,#3991bc);
    background:-webkit-linear-gradient(to bottom, #000000,#3991bc);
    background:-ms-linear-gradient(to bottom, #000000,#3991bc);
}

.bgColor-content2 {
    background: linear-gradient(to bottom, #000000,#ff3636ff);
    background:-o-linear-gradient(to bottom, #000000,#ff3636ff);
    background:-webkit-linear-gradient(to bottom, #000000,#ff3636ff);
    background:-ms-linear-gradient(to bottom, #000000,#ff3636ff);
}

.bgColor-content3 {
    background: linear-gradient(to bottom, #000000,#b97eff);
    background:-o-linear-gradient(to bottom, #000000,#b97eff);
    background:-webkit-linear-gradient(to bottom, #000000,#b97eff);
    background:-ms-linear-gradient(to bottom, #000000,#b97eff);
}

.bgColor-content4 {
   background-color: #333333;
}


.bgColor-div1 {
    background: linear-gradient(to right, rgba(255,24,24,0.2)  0%,rgba(183,122,255,0.2) 66%, rgba(104,205,255,0.2) 100%);
    background:-o-linear-gradient(to right, rgba(255,24,24,0.2) 0%,rgba(183,122,255,0.2) 66%, rgba(104,205,255,0.2) 100%);
    background:-webkit-linear-gradient(to right, rgba(255,24,24,0.2) 0%,rgba(183,122,255,0.2) 66%, rgba(104,205,255,0.2) 100%);
    background:-ms-linear-gradient(to right, rgba(255,24,24,0.2) 0%,rgba(183,122,255,0.2) 66%, rgba(104,205,255,0.2) 100%);
}

.color1 {
    color: #30BBFF;
}

.color2 {
    color: #47C3FF;
}

.color3 {
    color: #FF3636;
}

.color4 {
    color: #B97EFF;
}

.color5 {
  color: #333333;
}


.md-show {
  display: block;
}

.md-hidden {
  display: none;
}


#header {
    width: 100%;
}

img.logo {
    width: 150px;
    height: auto;
    display: block;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
}

.site-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-nav__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.site-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-nav__list li {
    list-style: none;
}

.site-nav__lang-item {
    display: none;
}

.site-nav__list .menu-btn {
    display: flex;
    align-items: center;
    margin: 0 15px;
    padding: 2px 16px;
    border-radius: 80px;
    font-size: 14px;
    font-weight: 600;
    line-height: 175%;
}

.site-nav__list .menu-btn--manual {
    background-color: transparent;
    border: 3px solid #fff;
    box-sizing: border-box;
    font-size: 12px;
}

.site-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.site-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.site-nav__right .menu-btn--manual {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 80px;
    font-size: 12px;
    font-weight: 600;
    border: 3px solid #fff;
    box-sizing: border-box;
    margin-right: 10px;
}

.site-nav__series-link {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.site-nav__series-link:hover {
    opacity: 1;
    color: #fff;
}

.site-nav__sep {
    color: rgba(255, 255, 255, 0.4);
}

.site-nav__lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav__lang-slash {
    color: rgba(255, 255, 255, 0.4);
}

.site-nav__lang-btn {
    color: #fff;
    transition: color 0.2s;
    cursor: pointer;
}

.site-nav__lang-btn.is-active {
    color: rgba(255, 255, 255, 0.45);
    cursor: default;
    pointer-events: none;
}

.header-banner {
    padding-top: 67px;
}

.main-content {
    width: 100%;
    padding-top: 50px;
}

.about,.detail,.series,.pre-order,.footer-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.about p,.detail p,.series p,.pre-order p {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
}

.about .big-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about .small-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
}

.about .introduction {
    padding: 50px 20px 50px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.about .introduction div {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.about .list {
    margin-top: 50px;
}

.about .list .item {
    padding-bottom: 50px;
    text-align: left;
}

.about .list .item .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;

}

.about .list .item .line {
    margin: 5px 0 25px;
    width: 100%;
    height: 2px;
    background-color: #30BBFF;
}

.about .list .item .imgBox {
    border-radius: 30px;
    overflow: hidden;
}

.about .list .item .tips-list {
    padding: 30px 0 0;
    position: relative;
    display: flex;
    gap:20px;
    /* flex-wrap: wrap;
    justify-content: space-between; */
}

.about .list .item .more-tip {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 20px;
}

.about .item .tips-list .tip {
    padding: 30px;
    border-radius: 20px;
    width: calc(calc(100% - 40px)/3);
    /* height: 320px; */
    height: auto;
}

.about .item .tips-list .tip.tip-all {
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    height: 580px;
}

.about .item.item-auto .tips-list .tip.tip-all {
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.about .tips-list .tip .tip-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.about .tips-list .tip .tip-sm {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.detail, .series, .pre-order {
    padding-bottom: 50px;
}

.detail > p, .series > p {
    margin-bottom: 20px;
}

.detail .img-box {
    max-width: 1280px;
    margin: 0 auto;
}

.detail  .content-sm {
    padding: 30px;
    text-align: left;
    margin: 30px 0;
    border-radius: 20px;
}

.detail  .content-sm div {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.detail  .content-sm div.middle {
    margin: 20px 0;
}

.detail  .content-sm .limit-list-box {
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 8px;
    margin-top: 10px;
}


.series .series-one {
    padding: 30px;
    border-radius: 20px;
}

.series .series-one .series-one-main {
    background-color: #eeeeee;
    border-radius: 20px;
}

.series .series-one-main table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
}

.series .series-one-main th {
    padding: 30px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 900;
    border: 2px solid #B97EFF;
}


.series .series-one-main th div {
    font-size: 20px;
}

.series .series-one-main th img {
    max-width: 300px;
}

.series-one-main tr td:nth-child(1) {
    width: 20%;
    text-align: center;
    font-weight: 700;
}

.series-one-main tr td:nth-child(2) {
    width: 40%;
    text-align: left;
    font-weight: 400;
}

.series-one-main tr td:nth-child(3) {
    width: 40%;
    text-align: left;
    font-weight: 400;
}

/* 移除 table 四周边框 */
.series .series-one-main tr:first-child th {
    border-top: none;
}

.series .series-one-main tr:last-child td {
    border-bottom: none;
}

.series .series-one-main td:first-child,
.series .series-one-main th:first-child {
    border-left: none;
}

.series .series-one-main td:last-child,
.series .series-one-main th:last-child {
    border-right: none;
}

.series .series-one-main td {
    padding: 10px 30px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    border: 2px solid #B97EFF;
}

.series .series-two {
    border-radius: 20px;
    overflow: hidden;
    margin: 30px auto;
    padding: 30px;
    text-align: left;
}

.series .series-two .title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
}

.series .series-two .min-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.series .series-two a {
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
}

.pre-order {
    padding-bottom: 50px;
}

.pre-order p {
   display: inline-block;
}

.pre-order .min-top-title {
   font-size: 24px;
   line-height: 1.4;
   font-weight: 900;
   margin-bottom: 20px;
}

.pre-order .pre-order-main {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    color: #333;
}

.pre-order .pre-order-main .product-thumbnail {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
}

.pre-order .pre-order-main .link-btn-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pre-order .pre-order-main .link-btn-list a {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.75;
    padding: 8px 20px;
    border-radius: 999px;
}

.pre-order .pre-order-main .last-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 10px;
}

.pre-order .pre-order-main .last-img {
    max-width: 530px;
}

.link-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 2;
}

.link-list a {
    display: inline-block;
    text-align: center;
    color: #fff;
    line-height: 1.75;
    font-weight: 900;
    width: 300px;
    padding: 8px 20px;
    border-radius: 999px;
    margin-top: 10px;
}



#footer {
    background-color: #eee;
    padding: 20px 0px 50px;
}

#footer .share-list {
    margin-top: 20px;
    display: flex;
}

#footer .share-list a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 20px;
}



@media screen and (max-width: 1280px) {

    .about, .detail, .series, .pre-order, .footer-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}


@media screen and (max-width: 1180px) {
    .about .list .item .tips-list {
        flex-wrap: wrap;
    }

    .about .item .tips-list .tip {
       width: calc(calc(100% - 20px)/2);
    }

}


@media screen and (max-width: 1100px) {
    .site-nav {
        height: 61px;
        padding: 8px 16px;
    }

    .site-nav__logo img {
        height: 32px;
    }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav__right {
        display: none;
    }

    .site-nav__list {
        position: absolute;
        top: 61px;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(0, 0, 0, 0.8);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-nav.is-open .site-nav__list {
        max-height: 400px;
    }

    .site-nav__list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-nav__list .menu-btn {
        display: block;
        padding: 18px 24px;
        margin: 0;
        border: 0;
        border-radius: 0;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #fff !important;
        background: transparent !important;
        line-height: 1.4;
    }

    .site-nav__lang-item {
        display: block;
        padding: 18px 24px;
    }

    .header-banner {
        padding-top: 61px;
    }
}


@media screen and (max-width: 830px) {
    .about .list .item .title {
        font-size: 28px;
    }

    .about .item .tips-list .tip {
        width: 100%;
    }

    .about .tips-list .tip .tip-title {
        font-size: 18px;
    }

}

@media screen and (max-width: 768px) {
    .md-show {
        display: none;
    }
    .md-hidden {
        display: block;
    }

    .pre-order .pre-order-main .link-btn-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .pre-order .pre-order-main .link-btn-list a {
        width: auto;
        font-size: 14px;
        padding: 5px 20px;
    }

    .about{
        text-align: left;
    }

    .about p.color1 {
        text-align: center;
    }

    .about .big-title {
        font-size: 40px;
    }

    .about .introduction {
        padding-left: 0;
        padding-right: 0;
    }

    .about .list .item .title,
    .about .tips-list .tip .tip-title {
        font-size: 16px;
    }

    .about .tips-list .tip .tip-sm {
        font-size: 12px;
    }

    .series-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .series .series-one.bgColor-div1 {
        background: #fff !important;
    }

    .series .series-one .series-one-main {
        border: 2px solid #B97EFF;
        color: #333;
        font-size: 14px;
    }

    .series .phone-top {
        padding: 20px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .series .phone-top .phone-item {
        width: 50%;
        font-weight: 700;
        padding: 0;
    }

    .series .phone-top .phone-top-1 {
        border-right: 2px solid #B97EFF;
    }

    .series .phone-top .phone-item img {
        max-width: 156px;
        width: 90%;
    }

    .series .phone-top .phone-item div {
        font-size: 20px;
        font-weight: 900;
    }

    .series .phone-main .phone-main-top {
        background-color: #B97EFF;
        color: white;
        font-weight: 700;
        padding: 10px;
    }

    .series .phone-main-content {
        display: flex;
    }

    .series .phone-main-content .item {
        font-weight: 400;
        padding: 10px;
        width: 50%;
        text-align: left;
        word-break: break-word;
    }

    .series .phone-main-content .item:nth-child(1)  {
        border-right: 2px solid #B97EFF;
    }

    .pre-order .pre-order-main .last-title {
        font-size: 16px;
    }

    .pre-order .pre-order-main .last-img {
        max-width: 500px;
    }

    .link-list a {
        margin-top: 10px;
        font-size: 14px;
        width: auto;
        padding: 5px 20px;
        max-width: 260px;
    }

}

/* ══════════════════════════════════════════════════════
   MANUAL Section
══════════════════════════════════════════════════════ */
.bgColor-manual {
    background-color: #000000;
    padding-top: 0;
}

.manual {
    padding: 70px 30px 70px;
    max-width: 1280px;
    margin: 0 auto;
}

.manual-header {
    text-align: center;
    margin-bottom: 30px;
}

.manual .manual-title-en {
    font-size: 35px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2.65px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.manual .manual-title-jp {
    font-size: 23px;
    font-weight: 900;
    color: #ffffff;
}

.manual-cards-wrapper {
    /* background-color: #ffffff; */
    /* padding: 49px 48px; */
    border-radius: 20px;
}

.manual-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    max-width: 1183px;
    margin: 0 auto;
}

.manual-cards a {
    display: block;
    transition: opacity 0.2s ease;
}

.manual-cards a:hover {
    opacity: 0.75;
}

.manual-cards a img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 830px) {
    .manual {
        padding: 40px 20px 40px;
    }

    .manual .manual-title-en {
        font-size: 24px;
    }

    .manual .manual-title-jp {
        font-size: 16px;
    }

    .manual-header {
        margin-bottom: 20px;
    }

    /* .manual-cards-wrapper {
        padding: 20px;
    } */

    .manual-cards {
        gap: 17px;
        max-width: none;
    }
}
