@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.4em;
    color: #fff;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    background-color: #1e3250;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color .4s ease;
}
a:hover {
    color: #b2b2b2;
}

.is--tab {
    display: none;
}

.is--sp {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .is--tab {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    a:hover {
        opacity: 1;
    }
    .is--pc {
        display: none;
    }
    .is--sp {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.wrapper {
    opacity: 0;
}
.wrapper.is--active {
    opacity: 1;
    transition: opacity 1s;
}

@media only screen and (max-width: 767px) {
    .wrapper {
        padding-top: 0;
    }
}

.main {
    background-image: url(../images/bg.webp);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100%;
}

.l-inner {
    padding: 0 20px;
    max-width: 1280px;
    margin: auto;
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== btn ========== */
.c-btn01 {
    display: inline-block;
    background: #fff;
    width: 250px;
    max-width: 100%;
    text-align: center;
    border-radius: 10px;
    transition: .4s;
}
.c-btn01__inner {
    display: flex;
    height: 92px;
    align-items: center;
    justify-content: center;
}
.c-btn01:hover {
    background: #b2b2b2;
}

@media only screen and (max-width: 767px) {
    .c-btn01 {
        width: 160px;
    }
    .c-btn01__inner {
        height: 60px;
    }
    .c-btn01:hover {
        background: #fff;
    }
    .c-btn01 img {
        width: 106px;
    }
}

.c-btn02 {
    display: inline-block;
    border: 2px solid #fff;
    width: 240px;
    max-width: 100%;
    text-align: center;
    border-radius: 100px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 2.2rem;
    letter-spacing: .05em;
    position: relative;
    transition: .4s;
}
.c-btn02:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%) rotate(45deg);
    transition: .4s;
}
.c-btn02__inner {
    display: flex;
    height: 76px;
    align-items: center;
    justify-content: center;
}
.c-btn02__inner span {
    display: inline-block;
    padding-right: .5em;
}
.c-btn02:hover {
    border-color: #b2b2b2;
}
.c-btn02:hover:after {
    border-color: #b2b2b2;
}

@media only screen and (max-width: 767px) {
    .c-btn02 {
        width: 150px;
        font-size: 1.4rem;
        border-width: 1px;
    }
    .c-btn02:after {
        width: 6px;
        height: 6px;
        right: 14px;
        border-width: 1px;
    }
    .c-btn02__inner {
        height: 50px;
    }
    .c-btn02:hover {
        border-color: #fff;
    }
    .c-btn02:hover:after {
        border-color: #fff;
    }
}

/* ========== movie ========== */
.c-movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.c-movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ========== animation ========== */
.fadeInUp {
    opacity: 0;
    transform: translateY(3em);
}
.fadeInUp.js-scr-active {
    opacity: 1;
    transform: translateY(0);
    transition: 1s;
}

/*------------------------------------------
  header
------------------------------------------*/
.header {
    position: -webkit-sticky;
    position:         sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #1e3250;
    font-size: 1.4rem;
}
.header-inner {
    padding: 0 clamp(13px, 1.91176vw, 26px);
    height: 60px;
    display: flex;
    align-items: center;
}
.header-logo {
    padding-left: clamp(12px, 1.76471vw, 24px);
}
.header-link {
    margin-left: auto;
    display: flex;
}
.header-link li {
    border-right: 1px solid #fff;
}
.header-link li:first-child {
    border-left: 1px solid #fff;
}
.header-link a {
    display: block;
    padding: 0 8px 3px;
    min-width: 36px;
    text-align: center;
    transition: opacity .4s;
}
.header-link a.logo {
    padding: 0 10px 3px;
}
.header-link a:hover {
    opacity: .6;
}
.header-link img {
    height: 15px;
    width: auto;
    vertical-align: middle;
}
.header-sound span {
    display: inline-block;
    vertical-align: middle;
}
.header-sound__txt {
    margin-right: .3em;
}
.header-sound__icon {
    width: 15px;
    height: 15px;
    background-image: url(../images/sound-off.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}
.header-lang {
    margin-left: 20px;
    position: relative;
}
.header-lang__head {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px 0 20px;
    position: relative;
    background-image: url(../images/ico-lang.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 15px;
    cursor: pointer;
}
.header-lang__head:after {
    content: "";
    width: 11px;
    height: 6px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/arrow-d01.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
}
.header-lang__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 10px;
    width: 98px;
    border-radius: 9px;
    text-align: right;
}
.header-lang__list ul {
    display: inline-block;
    text-align: left;
}
.header-lang__list li {
    margin: .2em 0;
}
.header-lang__list a {
    color: #000;
    display: block;
    padding-left: 14px;
    position: relative;
}
.header-lang__list a.current {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}
.header-trigger {
    cursor: pointer;
    margin-left: 12px;
}

html[lang="ja"] .header-lang .is--selected:after {
    content: "日本語";
}

html[lang="ja"] .header-lang .lang-ja a {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}

html[lang="en"] .header-lang .is--selected:after {
    content: "English";
}

html[lang="en"] .header-lang .lang-en a {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}

html[lang="zh-hant"] .header-lang .is--selected:after {
    content: "繁體中文";
}

html[lang="zh-hant"] .header-lang .lang-tw a {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}

html[lang="zh-hans"] .header-lang .is--selected:after {
    content: "简体中文";
}

html[lang="zh-hans"] .header-lang .lang-zh a {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}

html[lang="ko"] .header-lang .is--selected:after {
    content: "한국어";
}

html[lang="ko"] .header-lang .lang-ko a {
    background-image: url(../images/ico-check.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
}

@media only screen and (max-width: 767px) {
    .header-inner {
        padding: 0 25px 0 16px;
    }
    .header-logo {
        padding-left: 15px;
        -ms-order: 2;
            order: 2;
    }
    .header-logo img {
        width: 105px;
    }
    .header-link {
        display: none;
        -ms-order: 4;
            order: 4;
    }
    .header-lang {
        margin-left: auto;
        -ms-order: 3;
            order: 3;
    }
    .header-trigger {
        margin-left: 0;
        -ms-order: 1;
            order: 1;
    }
}

.gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    -ms-overflow-y: auto;
        overflow-y: auto;
    background: linear-gradient(90deg, rgba(30, 50, 80, .5) 0%, #1e3250 80%, #1e3250 100%);
    z-index: 101;
}
.gnav-close {
    position: absolute;
    top: 26px;
    right: 26px;
    cursor: pointer;
}
.gnav-contents {
    padding: 110px 0;
    text-align: center;
}
.gnav-list li {
    font-size: 2.6rem;
    margin-bottom: .6em;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    letter-spacing: .05em;
}
.gnav-list li:last-child {
    margin-bottom: 0;
}
.gnav-list a {
    display: inline-block;
    padding: .5em;
}

@media only screen and (max-width: 767px) {
    .gnav {
        background: linear-gradient(270deg, rgba(30, 50, 80, .5) 0%, #1e3250 80%, #1e3250 100%);
    }
    .gnav-close {
        right: auto;
        left: 16px;
        top: 16px;
    }
    .gnav-contents {
        padding: 30px 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gnav-list li {
        font-size: 2rem;
        margin-bottom: 0;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.footer {
    position: relative;
    text-align: center;
    padding: 50px 0 185px;
}
.footer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: screen;
    background: #232d37;
}
.footer-inner {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 65px 0 80px;
    }
    .footer-copy {
        font-size: 1.2rem;
    }
}

/*------------------------------------------
  contents
------------------------------------------*/
.mv {
    position: relative;
}
.mv-img img {
    width: 100%;
}

.sec {
    position: relative;
    padding-bottom: 115px;
}
.sec:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: screen;
}
.sec-inner {
    position: relative;
}
.sec-head {
    position: relative;
    margin-bottom: 60px;
}
.sec-head .head-ttl {
    text-align: center;
    position: relative;
    line-height: 1.1;
}
.sec-head .head-ttl__en {
    display: block;
}
.sec-head .head-ttl__ja {
    display: block;
    position: relative;
    font-size: 2.8rem;
    font-weight: 500;
    border-top: 2px solid #fff;
}
.sec-head .head-ttl__ja:before, .sec-head .head-ttl__ja:after {
    content: "";
    position: absolute;
    top: -7px;
    width: 30px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.sec-head .head-ttl__ja:before {
    left: 0;
    background-image: url(../images/ttl-parts-l.svg);
    background-position: left center;
}
.sec-head .head-ttl__ja:after {
    right: 0;
    background-image: url(../images/ttl-parts-r.svg);
    background-position: right center;
}
.sec-head .head-ttl__ja span {
    display: block;
    padding-top: 1em;
    position: relative;
}
.sec-head .head-ttl__ja span:before {
    content: "";
    width: 100%;
    height: 12px;
    position: absolute;
    top: -7px;
    left: 0;
    background-image: url(../images/ttl-parts-c.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.sec-contents {
    position: relative;
    max-width: 1040px;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .sec {
        padding-bottom: 70px;
    }
    .sec-head {
        margin-bottom: 35px;
    }
    .sec-head .head-ttl__ja {
        font-size: 1.4rem;
        border-top: 1px solid #fff;
    }
    .sec-head .head-ttl__ja:before, .sec-head .head-ttl__ja:after {
        top: -4px;
        width: 15px;
        height: 6px;
    }
    .sec-head .head-ttl__ja span {
        padding-top: 15px;
    }
    .sec-head .head-ttl__ja span:before {
        height: 6px;
        top: -4px;
    }
}

.sec--platform {
    padding-top: 100px;
}
.sec--platform:before {
    background: #1e3250;
}
.sec--platform .sec-head .head-ttl__en {
    padding-bottom: 6px;
}
.sec--platform .sec-head .head-ttl__en img {
    width: 330px;
}

@media only screen and (max-width: 767px) {
    .sec--platform {
        padding-top: 70px;
    }
    .sec--platform .sec-head .head-ttl__en {
        padding-bottom: 3px;
    }
    .sec--platform .sec-head .head-ttl__en img {
        width: 146px;
    }
}

.sec--movie:before {
    background: linear-gradient(180deg, #1e3250 0%, #64a0cb 100%);
}

.sec--movie .sec-head .head-ttl__en {
    padding-bottom: 30px;
}
.sec--movie .sec-head .head-ttl__en img {
    width: 182px;
}

.sec--movie .movie-list {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 8%;
}
.sec--movie .movie-list__item {
    width: 46%;
}

@media only screen and (max-width: 767px) {
    .sec--movie .sec-inner {
        padding: 0;
    }
    .sec--movie .sec-head {
        padding: 0 20px;
    }
    .sec--movie .sec-head .head-ttl__en {
        padding-bottom: 14px;
    }
    .sec--movie .sec-head .head-ttl__en img {
        width: 81px;
    }
    .sec--movie .movie-list {
        gap: 30px 0;
    }
    .sec--movie .movie-list__item {
        width: 100%;
        max-width: 100%;
    }
}

.sec--news:before {
    background: linear-gradient(180deg, #3c6185 0%, #64a0cb 90%, #64a0cb 100%);
}

.sec--news .sec-head .head-ttl__en {
    padding-bottom: 25px;
}
.sec--news .sec-head .head-ttl__en img {
    width: 184px;
}

.sec--news .news-detail {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.sec--news .news-detail__img {
    width: 45%;
}
.sec--news .news-detail__txt {
    margin-left: auto;
    width: 50%;
}
.sec--news .news-detail .detail-ttl {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.75em;
}
.sec--news .news-detail .detail-lead {
    font-size: 1.7rem;
    line-height: 2;
}
.sec--news .news-detail .detail-foot {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #fff;
}
.sec--news .news-detail .detail-foot__sub {
    font-size: 1rem;
    margin-top: 1.5em;
}
.sec--news .news-detail .detail-foot__more {
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .sec--news {
        padding-bottom: 80px;
    }
    .sec--news .sec-head .head-ttl__en {
        padding-bottom: 10px;
    }
    .sec--news .sec-head .head-ttl__en img {
        width: 82px;
    }
    .sec--news .news-detail {
        padding: 0 10px;
    }
    .sec--news .news-detail__img {
        width: 100%;
        margin-bottom: 35px;
    }
    .sec--news .news-detail__txt {
        width: 100%;
    }
    .sec--news .news-detail .detail-ttl {
        font-size: 2.3rem;
        margin-bottom: 1em;
    }
    .sec--news .news-detail .detail-lead {
        font-size: 1.5rem;
        line-height: 1.75;
    }
    .sec--news .news-detail .detail-foot {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #fff;
    }
    .sec--news .news-detail .detail-foot__more {
        margin-top: 15px;
    }
}

.sec--story:before {
    background: linear-gradient(180deg, #64a0cb 0%, #6483b4 90%, #6483b4 100%);
}

.sec--story .sec-head {
    margin-bottom: 105px;
}
.sec--story .sec-head .head-ttl__en {
    padding-bottom: 15px;
}
.sec--story .sec-head .head-ttl__en img {
    width: 206px;
}

.sec--story .sec-contents {
    max-width: 100%;
    padding: 0;
}

.sec--story .story-lead {
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1.17;
    margin-bottom: 2em;
    max-width: 1080px;
}

.sec--story .story-txt {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 60px;
    max-width: 1080px;
}
.sec--story .story-txt p {
    padding-left: 1em;
    border-left: 1px solid #fff;
}

.sec--story .story-img01 {
    text-align: center;
    margin-bottom: 46px;
}
.sec--story .story-img01 img {
    width: 527px;
}

@media only screen and (max-width: 767px) {
    .sec--story .sec-head {
        margin-bottom: 60px;
    }
    .sec--story .sec-head .head-ttl__en {
        padding-bottom: 8px;
    }
    .sec--story .sec-head .head-ttl__en img {
        width: 92px;
    }
    .sec--story .story-lead {
        font-size: 3rem;
        margin-bottom: 1em;
        line-height: 1.333;
    }
    .sec--story .story-txt {
        font-size: 2rem;
        padding-right: 16px;
        margin-bottom: 0;
    }
    .sec--story .story-txt p {
        padding-left: 18px;
    }
    .sec--story .story-img01 {
        margin-bottom: 10px;
    }
    .sec--story .story-img01 img {
        width: 83%;
    }
}

.sec--gamesystem:before {
    background: linear-gradient(180deg, #6483b4 0%, #648cb4 70%, #546e86 100%);
}

.sec--gamesystem .sec-head .head-ttl__en {
    padding-bottom: 10px;
}
.sec--gamesystem .sec-head .head-ttl__en img {
    width: 450px;
}

.sec--gamesystem .gamesystem-block {
    margin-bottom: 110px;
}
.sec--gamesystem .gamesystem-block:last-child {
    margin-bottom: 0;
}
.sec--gamesystem .gamesystem-block__head {
    margin-bottom: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec--gamesystem .gamesystem-block__head .head-lead {
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
    font-size: clamp(4.6rem, 3.82353vw, 5.2rem);
    line-height: 1.17;
    padding-right: .5em;
    white-space: nowrap;
}
.sec--gamesystem .gamesystem-block__head .head-txt {
    font-size: clamp(1.4rem, 1.17647vw, 1.6rem);
}
.sec--gamesystem .gamesystem-block__head .head-txt p {
    border-left: 2px solid #fff;
    padding-left: 2em;
}
.sec--gamesystem .gamesystem-block__list .list-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 60px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    box-shadow: 0px 0px 22px 0px rgba(255, 255, 255, .7);
}
.sec--gamesystem .gamesystem-block__list .list-item:last-child {
    margin-bottom: 0;
}
.sec--gamesystem .gamesystem-block__list .list-item__txt {
    width: 44%;
    color: #0050be;
    padding: 10px clamp(20px, 2.94118vw, 40px);
}
.sec--gamesystem .gamesystem-block__list .list-item__movie {
    width: 56%;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-head {
    border-bottom: 2px solid #0050be;
    padding-bottom: .2em;
    margin-bottom: 1em;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-head.flex {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    padding-bottom: 1em;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-head.flex .item-head__ttl {
    padding-bottom: 0;
    white-space: nowrap;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-head__ttl {
    line-height: 1.2;
    font-size: clamp(26px, 2.94118vw, 4rem);
    padding-bottom: .5em;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-head__sub {
    font-size: clamp(14px, 1.32353vw, 1.8rem);
    line-height: 1.4;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-txt {
    font-size: clamp(16px, 1.47059vw, 2rem);
}
.sec--gamesystem .gamesystem-block__list .list-item .item-movie {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.sec--gamesystem .gamesystem-block__list .list-item .item-movie iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.sec--gamesystem .gamesystem-block__list .list-item:nth-child(odd) {
    padding: 20px 20px 20px 0;
}
.sec--gamesystem .gamesystem-block__list .list-item:nth-child(even) {
    padding: 20px 0 20px 20px;
}
.sec--gamesystem .gamesystem-block__tips {
    margin-top: 65px;
}
.sec--gamesystem .gamesystem-block__tips .tips-item {
    background: rgba(0, 0, 0, .3);
    border-radius: 20px;
    padding: clamp(20px, 2.94118vw, 40px);
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.sec--gamesystem .gamesystem-block__tips .tips-item__txt {
    width: 47%;
}
.sec--gamesystem .gamesystem-block__tips .tips-item__img {
    margin-left: auto;
    width: 46%;
}
.sec--gamesystem .gamesystem-block__tips .tips-item .item-ttl {
    margin-bottom: 45px;
}
.sec--gamesystem .gamesystem-block__tips .tips-item .item-ttl span {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 100px;
    width: 160px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    padding: .35em 0 .25em;
}
.sec--gamesystem .gamesystem-block__tips .tips-item .item-txt {
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    .sec--gamesystem .sec-head .head-ttl__en img {
        width: 200px;
    }
    .sec--gamesystem .sec-contents {
        padding: 0 10px;
    }
    .sec--gamesystem .gamesystem-block {
        margin-bottom: 65px;
    }
    .sec--gamesystem .gamesystem-block__head {
        margin-bottom: 35px;
        display: block;
    }
    .sec--gamesystem .gamesystem-block__head .head-lead {
        font-size: 3rem;
        line-height: 1.33;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
    }
    .sec--gamesystem .gamesystem-block__head .head-txt {
        font-size: 1.5rem;
        padding-top: 1em;
    }
    .sec--gamesystem .gamesystem-block__head .head-txt p {
        border: none;
        padding: 0;
    }
    .sec--gamesystem .gamesystem-block__list .list-item {
        padding: 1px !important;
        border-radius: 10px;
        margin-bottom: 35px;
        box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, .7);
    }
    .sec--gamesystem .gamesystem-block__list .list-item__txt {
        width: 100%;
        -ms-order: 1;
            order: 1;
        padding: 10px 0 15px;
    }
    .sec--gamesystem .gamesystem-block__list .list-item__movie {
        width: 100%;
        -ms-order: 2;
            order: 2;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-head {
        border-width: 1px;
        padding: 0 20px 8px;
        margin-bottom: 8px;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-head.flex {
        gap: 0 1em;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-head__ttl {
        font-size: 2.5rem;
        padding-bottom: 0;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-head__sub {
        font-size: 1rem;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-txt {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    .sec--gamesystem .gamesystem-block__list .list-item .item-movie {
        border-radius: 0 0 10px 10px/0 0 10px 10px !important;
    }
    .sec--gamesystem .gamesystem-block__tips {
        margin-top: 35px;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item {
        border-radius: 10px;
        padding: 22px 0 25px;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item__txt {
        width: 100%;
        padding: 0 20px 20px;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item__img {
        padding: 0;
        width: 100%;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item .item-ttl {
        text-align: center;
        margin-bottom: 18px;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item .item-ttl span {
        border-width: 1px;
        width: 80px;
        font-size: 2.5rem;
    }
    .sec--gamesystem .gamesystem-block__tips .tips-item .item-txt {
        font-size: 1.5rem;
    }
}

.sec--character {
    padding-bottom: 260px;
}
.sec--character:before {
    background: linear-gradient(180deg, #546e86 0%, #46555f 70%, #46555f 100%);
}
.sec--character .sec-head {
    margin-bottom: clamp(77px, 11.32353vw, 154px);
}
.sec--character .sec-head .head-ttl__en {
    padding-bottom: 20px;
}
.sec--character .sec-head .head-ttl__en img {
    width: 374px;
}
.sec--character .character-item {
    position: relative;
}
.sec--character .character-item__txt {
    width: 66%;
}
.sec--character .character-item:nth-child(odd) .character-item__txt {
    margin-left: auto;
}
.sec--character .character-item .item-ttl span {
    display: inline-block;
    background: #fff;
    color: #1e3250;
    font-size: 3.2rem;
    padding: .5em .9em;
    border-radius: 10px 10px 0 0 / 10px 10px 0 0;
}
.sec--character .character-item .item-txt {
    color: #1e3250;
    font-weight: 500;
    font-size: 2rem;
    padding: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sec--character .character-item .item-img {
    position: absolute;
}
.sec--character .character-item .item-img img {
    width: 100%;
}
.sec--character .character-item01 {
    padding-bottom: clamp(110px, 15.07353vw, 205px);
}
.sec--character .character-item01 .item-txt {
    background-image: url(../images/character-item-bg01.webp);
}
.sec--character .character-item01 .item-img {
    width: clamp(116px, 17.13235vw, 233px);
    left: clamp(37px, 5.44118vw, 74px);
    top: clamp(-110px, -8.08824vw, -55px);
}
.sec--character .character-item02 {
    padding-bottom: clamp(383px, 56.39706vw, 767px);
}
.sec--character .character-item02 .item-txt {
    background-image: url(../images/character-item-bg02.webp);
}
.sec--character .character-item02 .item-img {
    width: clamp(503px, 73.97059vw, 1006px);
    left: clamp(7px, .95588vw, 13px);
    bottom: clamp(58px, 8.52941vw, 116px);
}
.sec--character .character-item03 .item-txt {
    background-image: url(../images/character-item-bg03.webp);
}
.sec--character .character-item03 .item-img {
    width: clamp(144px, 21.17647vw, 288px);
    left: clamp(18px, 2.64706vw, 36px);
    top: clamp(-116px, -8.52941vw, -58px);
}

@media only screen and (max-width: 767px) {
    .sec--character {
        padding-bottom: 65px;
    }
    .sec--character .sec-head .head-ttl__en {
        padding-bottom: 10px;
    }
    .sec--character .sec-head .head-ttl__en img {
        width: 166px;
    }
    .sec--character .sec-contents {
        padding: 0 10px;
    }
    .sec--character .character-item__txt {
        width: 100%;
        -ms-order: 1;
            order: 1;
        margin-bottom: 20px;
    }
    .sec--character .character-item .item-ttl span {
        font-size: 2.3rem;
        padding: .2em .6em;
        border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    }
    .sec--character .character-item .item-txt {
        font-size: 1.6rem;
    }
    .sec--character .character-item .item-img {
        position: static;
    }
    .sec--character .character-item01 {
        padding-bottom: 60px;
    }
    .sec--character .character-item01 .item-img {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    .sec--character .character-item01 .item-img img {
        width: 105px;
    }
    .sec--character .character-item02 {
        padding-bottom: 70px;
    }
    .sec--character .character-item02 .item-img {
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }
    .sec--character .character-item02 .item-img img {
        width: 340px;
    }
    .sec--character .character-item03 .item-img {
        margin-top: 35px;
        width: 100%;
        text-align: center;
    }
    .sec--character .character-item03 .item-img img {
        width: 130px;
    }
}

.sec--developerteam:before {
    background: #46555f;
}

.sec--developerteam .sec-head {
    margin-bottom: 80px;
}
.sec--developerteam .sec-head .head-ttl__en {
    padding-bottom: 5px;
}
.sec--developerteam .sec-head .head-ttl__en img {
    width: 555px;
}

.sec--developerteam .developerteam-block {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
}
.sec--developerteam .developerteam-block__img {
    width: 50%;
    text-align: right;
    padding-right: clamp(32px, 4.70588vw, 64px);
}
.sec--developerteam .developerteam-block__txt {
    width: 50%;
}
.sec--developerteam .developerteam-block .block-img img {
    width: 416px;
    max-width: 100%;
}
.sec--developerteam .developerteam-block .block-ttl {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
}
.sec--developerteam .developerteam-block .block-txt {
    font-size: 2rem;
}
.sec--developerteam .developerteam-block .block-txt .sub {
    font-size: 80%;
    margin-top: 2em;
}

@media only screen and (max-width: 767px) {
    .sec--developerteam .sec-head {
        margin-bottom: 0;
    }
    .sec--developerteam .sec-head .head-ttl__en {
        padding-bottom: 3px;
    }
    .sec--developerteam .sec-head .head-ttl__en img {
        width: 246px;
    }
    .sec--developerteam .developerteam-block {
        padding: 0 18px;
    }
    .sec--developerteam .developerteam-block__img {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .sec--developerteam .developerteam-block__txt {
        width: 100%;
    }
    .sec--developerteam .developerteam-block .block-img img {
        width: 82%;
    }
    .sec--developerteam .developerteam-block .block-ttl {
        font-size: 2rem;
    }
    .sec--developerteam .developerteam-block .block-txt {
        font-size: 1.5rem;
    }
    .sec--developerteam .developerteam-block .block-txt .sub {
        font-size: 100%;
        margin-top: 2em;
    }
}

.sec--spec {
    padding-bottom: 0;
}
.sec--spec:before {
    background: linear-gradient(180deg, #46555f 0%, #46555f 20%, #232d37 80%, #232d37 100%);
}
.sec--spec .sec-head {
    margin-bottom: 55px;
}
.sec--spec .sec-head .head-ttl__en {
    padding-bottom: 6px;
}
.sec--spec .sec-head .head-ttl__en img {
    width: 155px;
}
.sec--spec .spec-info {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    margin-bottom: 65px;
}
.sec--spec .spec-info__img {
    width: 24%;
}
.sec--spec .spec-info__txt {
    width: 71%;
    margin-left: auto;
}
.sec--spec .spec-info table {
    width: 100%;
    border-top: 1px solid #fff;
}
.sec--spec .spec-info table tr {
    border-bottom: 1px solid #fff;
}
.sec--spec .spec-info table th, .sec--spec .spec-info table td {
    text-align: left;
    font-size: 1.6rem;
    padding: .5em 0;
}
.sec--spec .spec-info table th {
    width: 220px;
}
.sec--spec .spec-terms {
    max-width: 800px;
    margin: 200px auto 0;
}
.sec--spec .spec-terms__ttl {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    border-bottom: 1px solid #fff;
    padding-bottom: 1em;
    margin-bottom: 1em;
}
.sec--spec .spec-terms__txt {
    margin-bottom: 75px;
    font-size: 1.5rem;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #fff;
    -ms-word-break: break-all;
        word-break: break-all;
}
.sec--spec .spec-terms__more {
    text-align: center;
    margin-bottom: 75px;
}
.sec--spec .spec-terms__sub {
    text-align: center;
    font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
    .sec--spec {
        padding-bottom: 0;
    }
    .sec--spec .sec-head {
        margin-bottom: 35px;
    }
    .sec--spec .sec-head .head-ttl__en {
        padding-bottom: 3px;
    }
    .sec--spec .sec-head .head-ttl__en img {
        width: 68px;
    }
    .sec--spec .sec-contents {
        padding: 0 10px;
    }
    .sec--spec .spec-info {
        margin-bottom: 35px;
    }
    .sec--spec .spec-info__img {
        width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }
    .sec--spec .spec-info__img img {
        width: 44%;
    }
    .sec--spec .spec-info__txt {
        width: 100%;
    }
    .sec--spec .spec-info table th, .sec--spec .spec-info table td {
        font-size: 1.2rem;
        padding: .5em 0;
    }
    .sec--spec .spec-info table th {
        white-space: nowrap;
        width: auto;
    }
    .sec--spec .spec-info table td {
        padding-left: 1em;
    }
    .sec--spec .spec-terms {
        margin: 65px auto 0;
    }
    .sec--spec .spec-terms__ttl {
        font-size: 1.8rem;
        padding-bottom: 1.5em;
        margin-bottom: 1.5em;
    }
    .sec--spec .spec-terms__txt {
        margin-bottom: 35px;
    }
    .sec--spec .spec-terms__more {
        margin-bottom: 65px;
    }
    .sec--spec .spec-terms__sub {
        font-size: 1.2rem;
    }
}