@import url(./normalize.css);
html {
    font-family: "PingFangTC-Regular", "Heiti TC", "Noto Sans TC", "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html body {
    margin: 0;
    font-size: 0;
    background-color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gbox-default {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 0;
}

.gbox-default .gbox-wrap {
    position: relative;
    max-width: none;
    width: 1099px;
    height: auto;
    margin: 0;
    padding-top: 400px;
    padding-bottom: 150px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(./img/gbox-bg-pc.png);
    border: 2px solid #ead4a0;
}

.gbox-default .gbox-close {
    padding: 0;
    top: 30px;
    right: 40px;
    width: 86px;
    height: 85px;
    background-image: url(./img/gbox-X-pc.png);
    background-size: cover;
}

.gbox-default .gbox-btn {
    margin: 0;
    padding: 0;
    width: 294px;
    height: 121px;
    line-height: 118px;
    background-color: transparent;
    background-image: url(./img/gbox-btn-short-off-pc.png);
    background-size: cover;
    font-size: 45px;
    font-weight: bold;
    color: #1b1b1b;
    text-align: center;
}

.gbox-default .gbox-btn:hover {
    background-image: url(./img/gbox-btn-short-on-pc.png);
}

.gbox-default .gbox-content {
    text-align: center;
    color: #ffdfa0;
    font-size: 40px;
    font-weight: bold;
}

.gbox-select .gbox-content {
    margin-bottom: 100px;
}

.gbox-select .gboxSign {
    position: absolute;
    bottom: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #f66a6a;
    font-size: 30px;
    text-align: center;
}

.gbox-select .gboxText {
    margin: 0 auto;
    background-size: cover;
}

.gbox-select .gboxText.roleName {
    margin-bottom: 80px;
    width: 720px;
    height: 58px;
    background-image: url(./img/gbox-roleName-pc.png);
}

.gbox-select .gboxScroll {
    max-width: 900px;
    max-height: 900px;
    margin: 0 auto;
    overflow-y: auto;
}

.gbox-select .gboxScroll label {
    text-align: left;
    display: block;
    margin: 0 auto 40px auto;
    color: #ffffff;
    cursor: pointer;
}

.gbox-select .gboxScroll label input[type="checkbox"] {
    display: inline-block;
    vertical-align: top;
    width: 52px;
    height: 45px;
    margin-right: 40px;
    background-image: url(./img/gbox-tick-off-pc.png);
    background-size: 39px 39px;
    background-repeat: no-repeat;
    background-position: left bottom;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.gbox-select .gboxScroll label input[type="checkbox"]::-ms-expand {
    display: none;
}

.gbox-select .gboxScroll label input[type="checkbox"]:checked {
    background-image: url(./img/gbox-tick-on-pc.png);
    background-size: cover;
}

.gbox-select .gbox-btn:last-child {
    margin-left: 100px;
}

.gbox-long .gboxText {
    margin: 0 auto;
    background-size: cover;
}

.gbox-long .gboxText.already {
    margin-bottom: 0px;
    width: 519px;
    height: 163px;
    background-image: url(./img/gbox-text-fail2-pc.png);
}

.gbox-long .gboxText.download {
    margin-bottom: 100px;
    width: 774px;
    height: 163px;
    background-image: url(./img/gbox-text-fail-pc.png);
}

.gbox-long .gboxText.success {
    margin-bottom: 0px;
    width: 346px;
    height: 77px;
    background-image: url(./img/gbox-text-success-pc.png);
}

.gbox-long .gboxText.timesUp {
    margin-bottom: 0px;
    width: 429px;
    height: 76px;
    background-image: url(./img/gbox-text-timesUp-pc.png);
}

.gbox-long .gbox-btn {
    width: 656px;
    height: 137px;
    line-height: 130px;
    background-image: url(./img/gbox-btn-long-off-pc.png);
}

.gbox-long .gbox-btn:hover {
    background-image: url(./img/gbox-btn-long-on-pc.png);
}

.container {
    max-width: 1920px;
    min-width: 1200px;
    background-image: url(./img/body-bgNoLight-pc.jpg);
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    -webkit-animation-name: bgAnimate;
    animation-name: bgAnimate;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes bgAnimate {
    0% {
    }
    100% {
        background-image: url(./img/body-bgLight-pc.jpg);
    }
}

@keyframes bgAnimate {
    0% {
    }
    100% {
        background-image: url(./img/body-bgLight-pc.jpg);
    }
}

header {
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.logo {
    display: block;
    width: 228px;
    height: 81px;
    background-image: url(./img/logo-pc.png);
    background-size: cover;
    position: absolute;
    top: 20px;
    left: 10px;
}

.anchorBar {
    position: fixed;
    z-index: 100;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.anchorBar div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 214px;
    height: 76px;
    line-height: 76px;
    font-size: 26px;
    font-weight: bold;
    color: #d0d0d0;
    background-color: rgba(118, 110, 80, 0.9);
    text-align: center;
    border-bottom: 1px solid #959595;
    cursor: pointer;
}

.anchorBar div:last-child {
    border-bottom: none;
}

.anchorBar div:hover {
    color: #ffffff;
}

.header {
    position: absolute;
    top: 35px;
    right: 10px;
}

.headerIcon {
    display: inline-block;
    width: 51px;
    height: 51px;
    background-size: cover;
    margin-left: 5px;
    cursor: pointer;
}

.headerIcon.download {
    margin-left: 0;
    background-image: url(./img/header-download-off-pc.png);
}

.headerIcon.download:hover {
    background-image: url(./img/header-download-on-pc.png);
}

.headerIcon.account {
    background-image: url(./img/header-account-off-pc.png);
}

.headerIcon.account:hover {
    background-image: url(./img/header-account-on-pc.png);
}

.headerIcon.f_b {
    background-image: url(./img/header-f_b-off-pc.png);
}

.headerIcon.f_b:hover {
    background-image: url(./img/header-f_b-on-pc.png);
}

.headerIcon.homepage {
    background-image: url(./img/header-homepage-off-pc.png);
}

.headerIcon.homepage:hover {
    background-image: url(./img/header-homepage-on-pc.png);
}

section {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

section.sec1 {
    height: 1080px;
    padding-top: 130px;
}

section.sec2 {
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 235px;
}

section.sec3 {
    z-index: 2;
    padding-bottom: 115px;
}

section.sec4 {
    padding-bottom: 100px;
}

section.sec5 {
    padding-bottom: 40px;
}

section.sec6 {
    min-height: 1061px;
}

.logo11th {
    width: 746px;
    height: 288px;
    margin: 0 auto 425px auto;
    position: relative;
}

.logo11th div {
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(./img/logo-11th-pc.png);
    background-size: cover;
    background-position: left;
    -webkit-animation-name: logoAnimate;
    animation-name: logoAnimate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes logoAnimate {
    0% {
        visibility: visible;
        width: 0;
    }
    100% {
        width: 100%;
        visibility: visible;
    }
}

@keyframes logoAnimate {
    0% {
        visibility: visible;
        width: 0;
    }
    100% {
        width: 100%;
        visibility: visible;
    }
}

.introLoginBtn {
    display: block;
    width: 197px;
    height: 77px;
    background-image: url(./img/btn-goIntro-pc-off.png);
    background-size: cover;
    margin: 0 auto;
    cursor: pointer;
}

.introLoginBtn:hover {
    background-image: url(./img/btn-goIntro-pc-on.png);
}

.preLoginBtn {
    width: 595px;
    height: 215px;
    background-image: url(./img/btn-preLogin-pc-off.png);
    background-size: cover;
    margin: 0 auto 45px auto;
    cursor: pointer;
}

.preLoginBtn:hover {
    background-image: url(./img/btn-preLogin-pc-on.png);
}

.bfTeach {
    width: 537px;
    height: 91px;
    background-image: url(./img/btn-bfTeach-off-pc.png);
    background-size: cover;
    display: block;
    margin: 0 auto 110px auto;
}

.bfTeach:hover {
    background-image: url(./img/btn-bfTeach-on-pc.png);
}

.countPerson {
    font-size: 58px;
    letter-spacing: 4px;
    font-weight: bold;
    color: #1b1b1b;
    text-align: center;
    margin-bottom: 90px;
}

.countBar {
    width: 888px;
    height: 19px;
    background-image: url(./img/countBar-0-pc.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
}

.countBar .countBarOn {
    width: 0%;
    height: 100%;
    background-image: url(./img/countBar-100-pc.png);
}

.countBar .countBarLine {
    display: none;
}

.countBar .countMS {
    width: 36px;
    height: 32px;
    background-image: url(./img/countBar-point-off-pc.png);
    background-size: cover;
    position: absolute;
    z-index: 2;
    top: -7px;
    right: 0;
}

.countBar .countMS.left {
    left: -10px;
}

.countBar .countMS.mid {
    left: 425px;
}

.countBar .countMS.right {
    left: 876px;
}

.countBar .countMS.on {
    background-image: url(./img/countBar-point-on-pc.png);
}

.countBar .countBonus {
    position: absolute;
    bottom: 0;
}

.countBar .countBonus.left {
    bottom: -80px;
    left: -42px;
}

.countBar .countBonus.left .countText {
    width: 101px;
    height: 33px;
    background-image: url(./img/countText-present-pc.png);
    background-size: cover;
    margin-bottom: 20px;
}

.countBar .countBonus.mid {
    bottom: -80px;
    left: 400px;
}

.countBar .countBonus.mid .countText {
    width: 119px;
    height: 33px;
    background-image: url(./img/countText-5000-pc.png);
    background-size: cover;
    margin-bottom: 20px;
}

.countBar .countBonus.right {
    bottom: -80px;
    left: 825px;
}

.countBar .countBonus.right .countText {
    width: 137px;
    height: 33px;
    background-image: url(./img/countText-10000-pc.png);
    background-size: cover;
    margin-bottom: 20px;
}

.countBar .countBonus .drawer {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
    width: 106px;
    height: 40px;
    background-image: url(./img/drawer-off-pc.png);
    background-size: cover;
    cursor: pointer;
}

.countBar .countBonus .drawer.web {
    display: inline-block;
}

.countBar .countBonus .drawer.mb {
    display: none;
}

.countBar .countBonus .drawer.on {
    bottom: -342px;
    width: 375px;
    height: 351px;
    background-image: url(./img/drawer-on-pc.png);
    background-size: cover;
    font-size: 21px;
    font-weight: bold;
    line-height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.countBar .countBonus .drawer.mid.on {
    bottom: -241px;
    height: 250px;
    background-image: url(./img/drawer-on-mid-pc.png);
}

.countBar .countBonus .drawer.mid.on div {
    line-height: 30px;
}

.countBar .countBonus .drawer.right.on {
    bottom: -303px;
    height: 314px;
    background-image: url(./img/drawer-on-right-pc.png);
}

.countBar .countBonus .drawer.right.on div {
    line-height: 30px;
}

.title-h2.intro {
    width: 787px;
    height: 76px;
    background-image: url(./img/titleH2-intro-pc.png);
    background-size: cover;
    margin: 0 auto 55px auto;
}

.introContent {
    text-align: center;
    margin-bottom: 40px;
}

.introContent .introText {
    display: block;
    width: 920px;
    margin: 0 auto 10px auto;
    padding-left: 150px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1b1b1b;
    font-size: 25px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: 2px;
    text-align: left;
    position: relative;
}

.introContent .introText span {
    position: absolute;
    left: 10px;
}

.introTable {
    width: 1186px;
    height: 482px;
    background-image: url(./img/table-bg-pc.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

.introTable .introTd {
    text-align: center;
    width: 340px;
    display: inline-block;
    font-size: 25px;
    color: #484338;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
}

.introTable .introTd.web {
    display: inline-block;
}

.introTable .introTd.mb {
    display: none;
}

.introTable .introTd.left {
    line-height: 40px;
    margin-left: 35px;
    padding-top: 130px;
}

.introTable .introTd.mid {
    margin-left: 60px;
    padding-top: 210px;
}

.introTable .introTd.mid div {
    margin-bottom: 20px;
}

.introTable .introTd.right {
    margin-left: 45px;
    padding-top: 180px;
}

.introTable .introTd.right div {
    margin-bottom: 20px;
}

.title-h2.attention {
    width: 923px;
    height: 76px;
    background-image: url(./img/titleH2-attention-pc.png);
    background-size: cover;
    margin: 0 auto 60px auto;
}

.attentionContent {
    text-align: center;
}

.attentionContent .attentionText {
    width: 850px;
    display: block;
    text-align: justify;
    text-justify: distribute;
    position: relative;
    font-size: 25px;
    font-weight: bold;
    line-height: 32px;
    color: #1b1b1b;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 50px;
    margin: 0 auto 5px auto;
}

.attentionContent .attentionText span {
    position: absolute;
    left: 0px;
}

.title-h2.skill {
    width: 787px;
    height: 74px;
    background-image: url(./img/titleH2-skill-pc.png);
    background-size: cover;
    margin: 0 auto 60px auto;
}

.skillContent {
    width: 980px;
    margin: 0 auto 15px auto;
}

.skillContent div {
    display: inline-block;
    vertical-align: middle;
}

.skillContent .skillName {
    font-size: 54px;
    color: #2b1306;
    font-weight: bold;
    position: relative;
}

.skillContent .skillName span {
    display: block;
    text-align: center;
}

.skillContent .skillName div {
    display: block;
    width: 249px;
    height: 25px;
    margin: 30px auto 0 auto;
    background-image: url(./img/roleName-bg-pc.png);
    background-size: cover;
}

.skillContent .skillIntro {
    width: 610px;
    margin-left: 100px;
}

.skillContent .skillIntro div {
    text-align: left;
    font-weight: bold;
    color: #1b1b1b;
}

.skillContent .skillIntro .IntroTitle {
    display: block;
    font-size: 45px;
    margin-bottom: 20px;
}

.skillContent .skillIntro .skillIntroText {
    display: block;
    text-align: justify;
    text-justify: distribute;
    font-size: 30px;
}

.skillVideo {
    width: 946px;
    height: 558px;
    background-image: url(./img/video-bg-pc.png);
    background-size: cover;
    margin: 0 auto 10px auto;
    position: relative;
}

.skillVideo iframe {
    width: 899px;
    height: 507px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.skillIconContent {
    width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.skillIconContent .icon {
    display: inline-block;
    width: 114px;
    height: 114px;
    margin: 0 5px 5px 5px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.skillIconContent .icon.icon001 {
    background-image: url(./img/icon-1-off.png);
}

.skillIconContent .icon.icon001:hover {
    background-image: url(./img/icon-1-on.png);
}

.skillIconContent .icon.icon001.on {
    background-image: url(./img/icon-1-on.png);
}

.skillIconContent .icon.icon002 {
    background-image: url(./img/icon-2-off.png);
}

.skillIconContent .icon.icon002:hover {
    background-image: url(./img/icon-2-on.png);
}

.skillIconContent .icon.icon002.on {
    background-image: url(./img/icon-2-on.png);
}

.skillIconContent .icon.icon003 {
    background-image: url(./img/icon-3-off.png);
}

.skillIconContent .icon.icon003:hover {
    background-image: url(./img/icon-3-on.png);
}

.skillIconContent .icon.icon003.on {
    background-image: url(./img/icon-3-on.png);
}

.skillIconContent .icon.icon004 {
    background-image: url(./img/icon-4-off.png);
}

.skillIconContent .icon.icon004:hover {
    background-image: url(./img/icon-4-on.png);
}

.skillIconContent .icon.icon004.on {
    background-image: url(./img/icon-4-on.png);
}

.skillIconContent .icon.icon005 {
    background-image: url(./img/icon-5-off.png);
}

.skillIconContent .icon.icon005:hover {
    background-image: url(./img/icon-5-on.png);
}

.skillIconContent .icon.icon005.on {
    background-image: url(./img/icon-5-on.png);
}

.skillIconContent .icon.icon006 {
    background-image: url(./img/icon-6-off.png);
}

.skillIconContent .icon.icon006:hover {
    background-image: url(./img/icon-6-on.png);
}

.skillIconContent .icon.icon006.on {
    background-image: url(./img/icon-6-on.png);
}

.skillIconContent .icon.icon007 {
    background-image: url(./img/icon-7-off.png);
}

.skillIconContent .icon.icon007:hover {
    background-image: url(./img/icon-7-on.png);
}

.skillIconContent .icon.icon007.on {
    background-image: url(./img/icon-7-on.png);
}

.skillIconContent .icon.icon008 {
    background-image: url(./img/icon-8-off.png);
}

.skillIconContent .icon.icon008:hover {
    background-image: url(./img/icon-8-on.png);
}

.skillIconContent .icon.icon008.on {
    background-image: url(./img/icon-8-on.png);
}

.skillIconContent .icon.icon009 {
    background-image: url(./img/icon-9-off.png);
}

.skillIconContent .icon.icon009:hover {
    background-image: url(./img/icon-9-on.png);
}

.skillIconContent .icon.icon009.on {
    background-image: url(./img/icon-9-on.png);
}

.skillIconContent .icon.icon010 {
    background-image: url(./img/icon-10-off.png);
}

.skillIconContent .icon.icon010:hover {
    background-image: url(./img/icon-10-on.png);
}

.skillIconContent .icon.icon010.on {
    background-image: url(./img/icon-10-on.png);
}

.skillIconContent .icon.icon011 {
    background-image: url(./img/icon-11-off.png);
}

.skillIconContent .icon.icon011:hover {
    background-image: url(./img/icon-11-on.png);
}

.skillIconContent .icon.icon011.on {
    background-image: url(./img/icon-11-on.png);
}

.skillIconContent .icon.icon012 {
    background-image: url(./img/icon-12-off.png);
}

.skillIconContent .icon.icon012:hover {
    background-image: url(./img/icon-12-on.png);
}

.skillIconContent .icon.icon012.on {
    background-image: url(./img/icon-12-on.png);
}

.skillIconContent .icon.icon013 {
    background-image: url(./img/icon-13-off.png);
}

.skillIconContent .icon.icon013:hover {
    background-image: url(./img/icon-13-on.png);
}

.skillIconContent .icon.icon013.on {
    background-image: url(./img/icon-13-on.png);
}

.skillIconContent .icon.icon014 {
    background-image: url(./img/icon-14-off.png);
}

.skillIconContent .icon.icon014:hover {
    background-image: url(./img/icon-14-on.png);
}

.skillIconContent .icon.icon014.on {
    background-image: url(./img/icon-14-on.png);
}

.skillIconContent .icon.icon015 {
    background-image: url(./img/icon-15-off.png);
}

.skillIconContent .icon.icon015:hover {
    background-image: url(./img/icon-15-on.png);
}

.skillIconContent .icon.icon015.on {
    background-image: url(./img/icon-15-on.png);
}

.skillIconContent .icon.icon016 {
    background-image: url(./img/icon-16-off.png);
}

.skillIconContent .icon.icon016:hover {
    background-image: url(./img/icon-16-on.png);
}

.skillIconContent .icon.icon016.on {
    background-image: url(./img/icon-16-on.png);
}

.skillIconContent .icon.icon017 {
    background-image: url(./img/icon-17-off.png);
}

.skillIconContent .icon.icon017:hover {
    background-image: url(./img/icon-17-on.png);
}

.skillIconContent .icon.icon017.on {
    background-image: url(./img/icon-17-on.png);
}

.skillIconContent .icon.icon018 {
    background-image: url(./img/icon-18-off.png);
}

.skillIconContent .icon.icon018:hover {
    background-image: url(./img/icon-18-on.png);
}

.skillIconContent .icon.icon018.on {
    background-image: url(./img/icon-18-on.png);
}

.skillIconContent .icon.icon019 {
    background-image: url(./img/icon-19-off.png);
}

.skillIconContent .icon.icon019:hover {
    background-image: url(./img/icon-19-on.png);
}

.skillIconContent .icon.icon019.on {
    background-image: url(./img/icon-19-on.png);
}

.skillIconContent .icon.icon020 {
    background-image: url(./img/icon-20-off.png);
}

.skillIconContent .icon.icon020:hover {
    background-image: url(./img/icon-20-on.png);
}

.skillIconContent .icon.icon020.on {
    background-image: url(./img/icon-20-on.png);
}

.skillIconContent .icon.icon021 {
    background-image: url(./img/icon-21-off.png);
}

.skillIconContent .icon.icon021:hover {
    background-image: url(./img/icon-21-on.png);
}

.skillIconContent .icon.icon021.on {
    background-image: url(./img/icon-21-on.png);
}

.skillIconContent .icon.icon022 {
    background-image: url(./img/icon-22-off.png);
}

.skillIconContent .icon.icon022:hover {
    background-image: url(./img/icon-22-on.png);
}

.skillIconContent .icon.icon022.on {
    background-image: url(./img/icon-22-on.png);
}

.skillIconContent .icon.icon023 {
    background-image: url(./img/icon-23-off.png);
}

.skillIconContent .icon.icon023:hover {
    background-image: url(./img/icon-23-on.png);
}

.skillIconContent .icon.icon023.on {
    background-image: url(./img/icon-23-on.png);
}

.skillIconContent .icon.icon024 {
    background-image: url(./img/icon-24-off.png);
}

.skillIconContent .icon.icon024:hover {
    background-image: url(./img/icon-24-on.png);
}

.skillIconContent .icon.icon024.on {
    background-image: url(./img/icon-24-on.png);
}

.skillIconContent .icon.icon025 {
    background-image: url(./img/icon-25-off.png);
}

.skillIconContent .icon.icon025:hover {
    background-image: url(./img/icon-25-on.png);
}

.skillIconContent .icon.icon025.on {
    background-image: url(./img/icon-25-on.png);
}

.skillIconContent .icon.icon026 {
    background-image: url(./img/icon-26-off.png);
}

.skillIconContent .icon.icon026:hover {
    background-image: url(./img/icon-26-on.png);
}

.skillIconContent .icon.icon026.on {
    background-image: url(./img/icon-26-on.png);
}

.skillIconContent .icon.icon027 {
    background-image: url(./img/icon-27-off.png);
}

.skillIconContent .icon.icon027:hover {
    background-image: url(./img/icon-27-on.png);
}

.skillIconContent .icon.icon027.on {
    background-image: url(./img/icon-27-on.png);
}

.skillIconContent .icon.icon028 {
    background-image: url(./img/icon-28-off.png);
}

.skillIconContent .icon.icon028:hover {
    background-image: url(./img/icon-28-on.png);
}

.skillIconContent .icon.icon028.on {
    background-image: url(./img/icon-28-on.png);
}

.skillIconContent .icon.icon029 {
    background-image: url(./img/icon-29-off.png);
}

.skillIconContent .icon.icon029:hover {
    background-image: url(./img/icon-29-on.png);
}

.skillIconContent .icon.icon029.on {
    background-image: url(./img/icon-29-on.png);
}

.skillIconContent .icon.icon030 {
    background-image: url(./img/icon-30-off.png);
}

.skillIconContent .icon.icon030:hover {
    background-image: url(./img/icon-30-on.png);
}

.skillIconContent .icon.icon030.on {
    background-image: url(./img/icon-30-on.png);
}

.skillIconContent .icon.icon031 {
    background-image: url(./img/icon-31-off.png);
}

.skillIconContent .icon.icon031:hover {
    background-image: url(./img/icon-31-on.png);
}

.skillIconContent .icon.icon031.on {
    background-image: url(./img/icon-31-on.png);
}

.skillIconContent .icon.icon032 {
    background-image: url(./img/icon-32-off.png);
}

.skillIconContent .icon.icon032:hover {
    background-image: url(./img/icon-32-on.png);
}

.skillIconContent .icon.icon032.on {
    background-image: url(./img/icon-32-on.png);
}

.skillIconContent .icon.icon033 {
    background-image: url(./img/icon-33-off.png);
}

.skillIconContent .icon.icon033:hover {
    background-image: url(./img/icon-33-on.png);
}

.skillIconContent .icon.icon033.on {
    background-image: url(./img/icon-33-on.png);
}

.skillIconContent .icon.icon034 {
    background-image: url(./img/icon-34-off.png);
}

.skillIconContent .icon.icon034:hover {
    background-image: url(./img/icon-34-on.png);
}

.skillIconContent .icon.icon034.on {
    background-image: url(./img/icon-34-on.png);
}

.skillIconContent .icon.icon035 {
    background-image: url(./img/icon-35-off.png);
}

.skillIconContent .icon.icon035:hover {
    background-image: url(./img/icon-35-on.png);
}

.skillIconContent .icon.icon035.on {
    background-image: url(./img/icon-35-on.png);
}

.skillIconContent .icon.icon036 {
    background-image: url(./img/icon-36-off.png);
}

.skillIconContent .icon.icon036:hover {
    background-image: url(./img/icon-36-on.png);
}

.skillIconContent .icon.icon036.on {
    background-image: url(./img/icon-36-on.png);
}

.skillIconContent .icon.icon037 {
    background-image: url(./img/icon-37-off.png);
}

.skillIconContent .icon.icon037:hover {
    background-image: url(./img/icon-37-on.png);
}

.skillIconContent .icon.icon037.on {
    background-image: url(./img/icon-37-on.png);
}

.skillIconContent .icon.icon038 {
    background-image: url(./img/icon-38-off.png);
}

.skillIconContent .icon.icon038:hover {
    background-image: url(./img/icon-38-on.png);
}

.skillIconContent .icon.icon038.on {
    background-image: url(./img/icon-38-on.png);
}

.skillIconContent .icon.icon039 {
    background-image: url(./img/icon-39-off.png);
}

.skillIconContent .icon.icon039:hover {
    background-image: url(./img/icon-39-on.png);
}

.skillIconContent .icon.icon039.on {
    background-image: url(./img/icon-39-on.png);
}

.skillIconContent .icon.icon040 {
    background-image: url(./img/icon-40-off.png);
}

.skillIconContent .icon.icon040:hover {
    background-image: url(./img/icon-40-on.png);
}

.skillIconContent .icon.icon040.on {
    background-image: url(./img/icon-40-on.png);
}

.skillIconContent .icon.icon041 {
    background-image: url(./img/icon-41-off.png);
}

.skillIconContent .icon.icon041:hover {
    background-image: url(./img/icon-41-on.png);
}

.skillIconContent .icon.icon041.on {
    background-image: url(./img/icon-41-on.png);
}

.skillIconContent .icon.icon042 {
    background-image: url(./img/icon-42-off.png);
}

.skillIconContent .icon.icon042:hover {
    background-image: url(./img/icon-42-on.png);
}

.skillIconContent .icon.icon042.on {
    background-image: url(./img/icon-42-on.png);
}

.skillIconContent .icon.icon043 {
    background-image: url(./img/icon-43-off.png);
}

.skillIconContent .icon.icon043:hover {
    background-image: url(./img/icon-43-on.png);
}

.skillIconContent .icon.icon043.on {
    background-image: url(./img/icon-43-on.png);
}

.skillIconContent .icon.icon044 {
    background-image: url(./img/icon-44-off.png);
}

.skillIconContent .icon.icon044:hover {
    background-image: url(./img/icon-44-on.png);
}

.skillIconContent .icon.icon044.on {
    background-image: url(./img/icon-44-on.png);
}

.skillIconContent .icon.icon045 {
    background-image: url(./img/icon-45-off.png);
}

.skillIconContent .icon.icon045:hover {
    background-image: url(./img/icon-45-on.png);
}

.skillIconContent .icon.icon045.on {
    background-image: url(./img/icon-45-on.png);
}

.skillIconContent .icon.icon046 {
    background-image: url(./img/icon-46-off.png);
}

.skillIconContent .icon.icon046:hover {
    background-image: url(./img/icon-46-on.png);
}

.skillIconContent .icon.icon046.on {
    background-image: url(./img/icon-46-on.png);
}

.title-h2.back {
    width: 787px;
    height: 75px;
    background-image: url(./img/titleH2-back-pc.png);
    background-size: cover;
    margin: 0 auto;
}

.comingSoon {
    width: 1111px;
    height: 167px;
    background-image: url(./img/comingSoon-bg-pc.png);
    background-size: cover;
    margin: 300px auto 0 auto;
}

.backContent {
    width: 1920px;
    height: 925px;
    margin: 61px auto 0 auto;
    background-image: url(./img/tree-bg-pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.backContent .flower {
    display: inline-block;
    position: absolute;
    width: 61px;
    height: 62px;
    background-size: 39px 47px;
    background-image: url(./img/flower1-step1-pc.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.backContent .flower.bfie {
    background-image: url(./img/flower1-step5-pc.png);
}

.backContent .flower .flowerName {
    position: absolute;
    z-index: 1;
    width: 240px;
    height: 64px;
    font-size: 30px;
    line-height: 64px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    border: 1px solid #eccfcd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flowerIntro {
    position: absolute;
    z-index: 2;
    width: 513px;
    height: 335px;
    background-image: url(./img/flowerIntro-bg-pc.png);
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    opacity: 1;
    pointer-events: none;
    top: 45px;
    left: -240px;
    text-align: center;
    visibility: visible;
}

.flowerIntro.off {
    visibility: hidden;
    opacity: 0;
}

.flowerIntro .introX {
    display: none;
}

.flowerIntro .introTitle {
    font-size: 25px;
    line-height: 35px;
    font-weight: bold;
    color: #341c09;
    margin-bottom: 20px;
}

.flowerIntro .introText {
    width: 400px;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    color: #341c09;
    margin: 0 auto 20px auto;
}

.flowerIntro a {
    text-decoration: none;
    display: block;
    width: 248px;
    height: 40px;
    margin: 0 auto;
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    background-color: #f3bfc6;
    border: 1px solid #ffe6e9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: visible;
}

.backContent .flower.f01 {
    top: 245px;
    left: 700px;
}

@-webkit-keyframes f01 {
    0% {
    }
    25% {
        background-image: url(./img/flower1-step2-pc.png);
    }
    50% {
        background-image: url(./img/flower1-step3-pc.png);
    }
    75% {
        background-image: url(./img/flower1-step4-pc.png);
    }
    100% {
        background-image: url(./img/flower1-step5-pc.png);
    }
}

@keyframes f01 {
    0% {
    }
    25% {
        background-image: url(./img/flower1-step2-pc.png);
    }
    50% {
        background-image: url(./img/flower1-step3-pc.png);
    }
    75% {
        background-image: url(./img/flower1-step4-pc.png);
    }
    100% {
        background-image: url(./img/flower1-step5-pc.png);
    }
}

.backContent .flower.f01 .flowerName {
    background-color: rgba(219, 173, 164, 0.8);
    left: -260px;
    top: -55px;
}

.backContent .flower.f01.on {
    -webkit-animation: f01 0.5s ease-in-out;
    animation: f01 0.5s ease-in-out;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.backContent .flower.f02 {
    background-image: url(./img/flower2-step1-pc.png);
    top: 88px;
    left: 960px;
}

@-webkit-keyframes f02 {
    0% {
    }
    25% {
        background-image: url(./img/flower2-step2-pc.png);
    }
    50% {
        background-image: url(./img/flower2-step3-pc.png);
    }
    75% {
        background-image: url(./img/flower2-step4-pc.png);
    }
    100% {
        background-image: url(./img/flower2-step5-pc.png);
    }
}

@keyframes f02 {
    0% {
    }
    25% {
        background-image: url(./img/flower2-step2-pc.png);
    }
    50% {
        background-image: url(./img/flower2-step3-pc.png);
    }
    75% {
        background-image: url(./img/flower2-step4-pc.png);
    }
    100% {
        background-image: url(./img/flower2-step5-pc.png);
    }
}

.backContent .flower.f02.bfie {
    background-image: url(./img/flower2-step5-pc.png);
}

.backContent .flower.f02 .flowerName {
    background-color: rgba(179, 191, 206, 0.8);
    left: 50px;
    top: -65px;
}

.backContent .flower.f02.on {
    -webkit-animation: f02 0.5s ease-in-out;
    animation: f02 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.backContent .flower.f03 {
    top: 275px;
    left: 1020px;
}

.backContent .flower.f03 .flowerName {
    background-color: rgba(224, 183, 164, 0.8);
    left: -190px;
    top: -90px;
}

.backContent .flower.f03.on {
    -webkit-animation: f01 0.5s ease-in-out;
    animation: f01 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.backContent .flower.f04 {
    top: 185px;
    left: 1300px;
}

.backContent .flower.f04 .flowerName {
    background-color: rgba(225, 203, 167, 0.8);
    left: 20px;
    top: -95px;
}

.backContent .flower.f04.on {
    -webkit-animation: f01 0.5s ease-in-out;
    animation: f01 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.backContent .flower.f05 {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    background-image: url(./img/flower2-step1-pc.png);
    top: 395px;
    left: 915px;
}

.backContent .flower.f05.bfie {
    background-image: url(./img/flower2-step5-pc.png);
}

.backContent .flower.f05 .flowerName {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    background-color: rgba(177, 215, 164, 0.8);
    left: -220px;
    top: -120px;
}

.backContent .flower.f05 .flowerIntro.mis05 {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    top: 70px;
}

.backContent .flower.f05.on {
    -webkit-animation: f02 0.5s ease-in-out;
    animation: f02 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.backContent .flower.f06 {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    top: 400px;
    left: 1160px;
}

.backContent .flower.f06 .flowerName {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    background-color: rgba(198, 182, 211, 0.8);
    left: 50px;
    top: 40px;
}

.backContent .flower.f06 .flowerIntro.mis06 {
    top: 75px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.backContent .flower.f06.on {
    -webkit-animation: f01 0.5s ease-in-out;
    animation: f01 0.5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    .gbox-default {
        padding: 3.90625vw 0;
    }
    .gbox-default .gbox-wrap {
        width: 91.14583vw;
        padding-top: 28.64583vw;
        padding-bottom: 13.02083vw;
        padding-left: 2.60417vw;
        padding-right: 2.60417vw;
        background-image: url(./img/gbox-bg-mb.png);
        background-size: cover;
        background-position: center top;
    }
    .gbox-default .gbox-close {
        top: 1.95312vw;
        right: 2.60417vw;
        width: 8.59375vw;
        height: 8.59375vw;
    }
    .gbox-default .gbox-btn {
        width: 26.43229vw;
        height: 11.84896vw;
        font-size: 3.77604vw;
        line-height: 11.06771vw;
        background-image: url(./img/gbox-btn-short-on-mb.png);
    }
    .gbox-default .gbox-btn:hover {
        background-image: url(./img/gbox-btn-short-on-mb.png);
    }
    .gbox-default .gbox-content {
        font-size: 4.16667vw;
    }
    .gbox-select .gbox-wrap {
        padding-bottom: 15.625vw;
    }
    .gbox-select .gbox-content {
        margin-bottom: 0vw;
    }
    .gbox-select .gboxSign {
        display: block;
        width: 100%;
        bottom: 10.41667vw;
        font-size: 3.125vw;
    }
    .gbox-select .gboxText {
        margin: 0 auto;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .gbox-select .gboxText.roleName {
        margin-bottom: 8.46354vw;
        width: 60.28646vw;
        height: 4.94792vw;
        background-image: url(./img/gbox-roleName-mb.png);
    }
    .gbox-select .gboxScroll {
        max-width: 78.125vw;
        max-height: 78.125vw;
        margin: 0 auto;
        overflow-y: auto;
    }
    .gbox-select .gboxScroll label {
        margin: 0 auto 5.20833vw auto;
    }
    .gbox-select .gboxScroll label input[type="checkbox"] {
        width: 4.6875vw;
        height: 4.03646vw;
        margin-right: 2.60417vw;
        background-image: url(./img/gbox-tick-off-pc.png);
        background-size: 3.64583vw 3.64583vw;
    }
    .gbox-select .gbox-btn:last-child {
        margin-left: 6.51042vw;
    }
    .gbox-long .gboxText {
        margin: 0 auto;
        background-size: cover;
    }
    .gbox-long .gboxText.already {
        width: 43.61979vw;
        height: 13.67188vw;
        background-image: url(./img/gbox-text-fail2-mb.png);
    }
    .gbox-long .gboxText.download {
        margin-bottom: 0px;
        width: 64.97396vw;
        height: 13.67188vw;
        background-image: url(./img/gbox-text-fail-mb.png);
    }
    .gbox-long .gboxText.success {
        margin-bottom: 0px;
        width: 29.03646vw;
        height: 6.51042vw;
        background-image: url(./img/gbox-text-success-pc.png);
    }
    .gbox-long .gboxText.timesUp {
        width: 35.9375vw;
        height: 6.38021vw;
        background-image: url(./img/gbox-text-timesUp-mb.png);
    }
    .gbox-long .gbox-btn {
        width: 57.03125vw;
        height: 14.0625vw;
        line-height: 13.02083vw;
        background-image: url(./img/gbox-btn-long-on-mb.png);
    }
    .gbox-long .gbox-btn:hover {
        background-image: url(./img/gbox-btn-long-on-mb.png);
    }
    .container {
        min-width: 0;
        width: 100%;
        height: auto;
        background-image: url(./img/body-bgNoLight-mb.jpg);
    }
    @-webkit-keyframes bgAnimate {
        0% {
        }
        100% {
            background-image: url(./img/body-bgLight-mb.jpg);
        }
    }
    @keyframes bgAnimate {
        0% {
        }
        100% {
            background-image: url(./img/body-bgLight-mb.jpg);
        }
    }
    header {
        width: 100%;
    }
    .logo {
        width: 44.66146vw;
        height: 16.27604vw;
        background-image: url(./img/logo-mb.png);
        top: 4.55729vw;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .anchorBar {
        display: none;
    }
    .header {
        position: absolute;
        top: 3.25521vw;
        right: 7.8125vw;
    }
    .headerIcon {
        display: block;
        width: 8.72396vw;
        height: 8.85417vw;
        right: 0;
        margin-left: 0;
        position: absolute;
    }
    .headerIcon.download {
        display: none;
    }
    .headerIcon.account {
        display: none;
    }
    .headerIcon.f_b {
        top: 0;
        background-image: url(./img/header-f_b-on-mb.png);
    }
    .headerIcon.f_b:hover {
        background-image: url(./img/header-f_b-on-mb.png);
    }
    .headerIcon.homepage {
        top: 12.10938vw;
        background-image: url(./img/header-homepage-on-mb.png);
    }
    .headerIcon.homepage:hover {
        background-image: url(./img/header-homepage-on-mb.png);
    }
    section {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }
    section.sec1 {
        height: auto;
        padding-top: 28.64583vw;
    }
    section.sec2 {
        padding-top: 13.02083vw;
        padding-bottom: 26.04167vw;
        z-index: 3;
    }
    section.sec3 {
        padding-bottom: 13.02083vw;
        z-index: 1;
    }
    section.sec4 {
        padding-bottom: 13.02083vw;
    }
    section.sec5 {
        padding-bottom: 13.02083vw;
    }
    .logo11th {
        width: 93.48958vw;
        height: 36.06771vw;
        margin: 0 auto 84.63542vw auto;
    }
    .logo11th div {
        background-image: url(./img/logo-11th-mb.png);
    }
    .introLoginBtn {
        width: 40.49479vw;
        height: 15.75521vw;
        background-image: url(./img/btn-goIntro-mb-on.png);
    }
    .introLoginBtn:hover {
        background-image: url(./img/btn-goIntro-mb-on.png);
    }
    .preLoginBtn {
        width: 45.83333vw;
        height: 16.53646vw;
        background-image: url(./img/btn-preLogin-mb-on.png);
    }
    .preLoginBtn:hover {
        background-image: url(./img/btn-preLogin-mb-on.png);
    }
    .bfTeach {
        width: 59.11458vw;
        height: 10.28646vw;
        background-image: url(./img/btn-bfTeach-on-mb.png);
        margin: 0 auto 11.71875vw auto;
    }
    .bfTeach:hover {
        background-image: url(./img/btn-bfTeach-on-mb.png);
    }
    .countPerson {
        font-size: 4.6875vw;
        letter-spacing: 0.52083vw;
        margin-bottom: 6.51042vw;
    }
    .countBar {
        width: 68.35938vw;
        height: 1.5625vw;
        background-image: url(./img/countBar-0-mb.png);
        background-size: cover;
    }
    .countBar .countBarOn {
        width: 0%;
        height: 100%;
        background-image: url(./img/countBar-100-mb.png);
        background-size: cover;
        position: relative;
        z-index: 1;
    }
    .countBar .countBarOn span {
        width: 10%;
        height: 100%;
    }
    .countBar .countBarLine {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
    }
    .countBar .countBarLine span {
        display: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 10%;
        height: 100%;
        border-right: 1px solid black;
    }
    .countBar .countBarLine span.on {
        display: inline-block;
    }
    .countBar .countMS {
        width: 2.86458vw;
        height: 2.47396vw;
        background-image: url(./img/countBar-point-off-mb.png);
        top: -0.39062vw;
        right: 0;
    }
    .countBar .countMS.left {
        left: -1.5625vw;
    }
    .countBar .countMS.mid {
        left: 33.20312vw;
    }
    .countBar .countMS.right {
        left: 67.05729vw;
    }
    .countBar .countMS.on {
        background-image: url(./img/countBar-point-on-mb.png);
    }
    .countBar .countBonus {
        position: absolute;
        bottom: 0;
    }
    .countBar .countBonus.left {
        bottom: -9.76562vw;
        left: -7.29167vw;
    }
    .countBar .countBonus.left .countText {
        width: 13.15104vw;
        height: 4.29688vw;
        background-image: url(./img/countText-present-pc.png);
        background-size: cover;
        margin-bottom: 3.90625vw;
    }
    .countBar .countBonus.mid {
        bottom: -9.76562vw;
        left: 27.34375vw;
    }
    .countBar .countBonus.mid .countText {
        width: 15.49479vw;
        height: 4.29688vw;
        background-image: url(./img/countText-5000-pc.png);
        background-size: cover;
        margin-bottom: 3.90625vw;
    }
    .countBar .countBonus.right {
        bottom: -9.76562vw;
        left: 59.89583vw;
    }
    .countBar .countBonus.right .countText {
        width: 17.83854vw;
        height: 4.29688vw;
        background-image: url(./img/countText-10000-pc.png);
        background-size: cover;
        margin-bottom: 3.90625vw;
    }
    .countBar .countBonus .drawer {
        bottom: -3.25521vw;
        width: 13.80208vw;
        height: 5.20833vw;
        background-image: url(./img/drawer-off-pc.png);
    }
    .countBar .countBonus .drawer.web {
        display: none;
    }
    .countBar .countBonus .drawer.mb {
        display: inline-block;
    }
    .countBar .countBonus .drawer.on {
        bottom: -92.70833vw;
        width: 25.13021vw;
        height: 94.40104vw;
        background-image: url(./img/drawer-on-mb.png);
        background-size: cover;
        font-size: 3.125vw;
        font-weight: bold;
        line-height: 3.90625vw;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 7.8125vw 0;
        text-align: center;
        color: #ffffff;
    }
    .countBar .countBonus .drawer.on div {
        margin-bottom: 3.90625vw;
    }
    .countBar .countBonus .drawer.mid.on {
        bottom: -45.57292vw;
        height: 47.65625vw;
        background-image: url(./img/drawer-on-mid-mb.png);
    }
    .countBar .countBonus .drawer.mid.on div {
        line-height: 3.90625vw;
    }
    .countBar .countBonus .drawer.right.on {
        bottom: -65.75521vw;
        height: 67.44792vw;
        background-image: url(./img/drawer-on-right-mb.png);
    }
    .countBar .countBonus .drawer.right.on div {
        line-height: 3.90625vw;
    }
    .title-h2.intro {
        width: 78.25521vw;
        height: 7.94271vw;
        background-image: url(./img/titleH2-intro-mb.png);
        margin: 0 auto 3.90625vw auto;
    }
    .introContent {
        text-align: center;
        margin-bottom: 3.25521vw;
    }
    .introContent .introText {
        display: block;
        width: 88.54167vw;
        margin: 0 auto 0.65104vw auto;
        padding-left: 20.18229vw;
        color: #1b1b1b;
        font-size: 3.125vw;
        font-weight: bold;
        line-height: 4.55729vw;
        letter-spacing: 1;
        word-break: break-all;
    }
    .introContent .introText span {
        position: absolute;
        left: 1.30208vw;
    }
    .introTable {
        width: 91.27604vw;
        height: 79.94792vw;
        background-image: url(./img/table-bg-mb.png);
        background-size: cover;
        margin: 0 auto;
        position: relative;
        text-align: left;
    }
    .introTable .introTd {
        text-align: center;
        width: 29.94792vw;
        display: inline-block;
        font-size: 3.125vw;
        color: #484338;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        vertical-align: top;
        word-break: keep-all;
    }
    .introTable .introTd.web {
        display: none;
    }
    .introTable .introTd.mb {
        display: inline-block;
    }
    .introTable .introTd.left {
        line-height: 1;
        margin-left: 0.65104vw;
        padding-top: 12.36979vw;
    }
    .introTable .introTd.left div {
        margin-bottom: 2.60417vw;
    }
    .introTable .introTd.mid {
        margin-left: 0.65104vw;
        padding-top: 27.34375vw;
    }
    .introTable .introTd.mid div {
        margin-bottom: 3.90625vw;
    }
    .introTable .introTd.right {
        margin-left: 0vw;
        padding-top: 21.48438vw;
    }
    .introTable .introTd.right div {
        margin-bottom: 3.90625vw;
    }
    .title-h2.attention {
        width: 91.53646vw;
        height: 8.07292vw;
        background-image: url(./img/titleH2-attention-mb.png);
        background-size: cover;
        margin: 0 auto 5.20833vw auto;
    }
    .attentionContent {
        text-align: center;
    }
    .attentionContent .attentionText {
        word-break: break-all;
        width: 91.14583vw;
        font-size: 3.125vw;
        line-height: 4.55729vw;
        padding-left: 6.51042vw;
        margin: 0 auto 1.30208vw auto;
    }
    .title-h2.skill {
        width: 78.25521vw;
        height: 7.8125vw;
        background-image: url(./img/titleH2-skill-mb.png);
        background-size: cover;
        margin: 0 auto 4.55729vw auto;
    }
    .skillContent {
        width: 91.14583vw;
        margin: 0 auto 2.60417vw auto;
        text-align: center;
    }
    .skillContent .skillName {
        font-size: 4.16667vw;
    }
    .skillContent .skillName div {
        display: block;
        width: 18.75vw;
        height: 1.82292vw;
        margin: 2.60417vw auto 0 auto;
    }
    .skillContent .skillIntro {
        width: 46.22396vw;
        margin-left: 7.8125vw;
        text-align: left;
    }
    .skillContent .skillIntro div {
        font-weight: bold;
        color: #1b1b1b;
    }
    .skillContent .skillIntro .IntroTitle {
        font-size: 3.64583vw;
        margin-bottom: 2.60417vw;
    }
    .skillContent .skillIntro .skillIntroText {
        text-align: justify;
        font-size: 3.125vw;
    }
    .skillVideo {
        width: 87.63021vw;
        height: 50.78125vw;
        background-image: url(./img/video-bg-pc.png);
        background-size: cover;
        margin: 0 auto 1.30208vw auto;
    }
    .skillVideo iframe {
        width: 83.33333vw;
        height: 46.875vw;
    }
    .skillIconContent {
        width: 91.14583vw;
        margin: 0 auto;
        text-align: center;
    }
    .skillIconContent .icon {
        display: inline-block;
        width: 13.02083vw;
        height: 13.02083vw;
        margin: 0 1.04167vw 0.65104vw 1.04167vw;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 11.06771vw 11.06771vw;
        cursor: pointer;
    }
    .skillIconContent .icon.on {
        background-size: 13.02083vw 13.02083vw;
    }
    .title-h2.back {
        width: 78.25521vw;
        height: 7.94271vw;
        background-image: url(./img/titleH2-back-mb.png);
        background-size: cover;
        margin: 0 auto;
    }
    .comingSoon {
        width: 85.67708vw;
        height: 13.02083vw;
        background-image: url(./img/comingSoon-bg-mb.png);
        background-size: cover;
        margin: 69.01042vw auto 69.01042vw auto;
    }
    .backContent {
        width: 100%;
        height: 158.07292vw;
        margin: 0 auto 0 auto;
        background-image: url(./img/tree-bg-mb.png);
        background-size: cover;
        position: relative;
    }
    .backContent .flower {
        display: inline-block;
        position: absolute;
        width: 7.16146vw;
        height: 7.16146vw;
        background-size: 5.20833vw 6.25vw;
        background-image: url(./img/flower1-step1-pc.png);
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }
    .backContent .flower .flowerName {
        width: 18.22917vw;
        height: 12.23958vw;
        font-size: 3.90625vw;
        line-height: 5.20833vw;
        padding: 0.65104vw 1.30208vw 0 1.30208vw;
    }
    .flowerIntro {
        width: 87.36979vw;
        height: 97.13542vw;
        background-image: url(./img/flowerIntro-bg-mb.png);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 8.33333vw 0;
        opacity: 1;
        pointer-events: none;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .flowerIntro .introX {
        position: absolute;
        display: inline-block;
        width: 10.15625vw;
        height: 10.15625vw;
        background-image: url(./img/intro-X-pc.png);
        background-size: cover;
        top: 3.90625vw;
        right: 3.90625vw;
        cursor: pointer;
        pointer-events: visible;
    }
    .flowerIntro .introTitle {
        font-size: 4.81771vw;
        line-height: 6.51042vw;
        margin-bottom: 5.85938vw;
    }
    .flowerIntro .introText {
        width: 45.57292vw;
        font-size: 3.90625vw;
        line-height: 5.20833vw;
        margin: 0 auto 7.8125vw auto;
        text-align: justify;
    }
    .flowerIntro a {
        width: 42.96875vw;
        height: 7.55208vw;
        font-size: 4.29688vw;
        line-height: 7.16146vw;
        font-weight: bold;
        color: #9e414e;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        pointer-events: visible;
    }
    .backContent .flower.f01 {
        top: 61.84896vw;
        left: 11.71875vw;
    }
    .backContent .flower.f01 .flowerName {
        left: -7.8125vw;
        top: -14.32292vw;
    }
    .backContent .flower.f02 {
        background-image: url(./img/flower2-step1-pc.png);
        top: 44.01042vw;
        left: 42.96875vw;
    }
    .backContent .flower.f02 .flowerName {
        left: 6.51042vw;
        top: -11.71875vw;
    }
    .backContent .flower.f03 {
        top: 65.10417vw;
        left: 46.875vw;
    }
    .backContent .flower.f03 .flowerName {
        left: -18.22917vw;
        top: -11.71875vw;
    }
    .backContent .flower.f04 {
        top: 54.29688vw;
        left: 81.38021vw;
    }
    .backContent .flower.f04 .flowerName {
        left: -7.16146vw;
        top: -13.02083vw;
    }
    .backContent .flower.f05 {
        -webkit-transform: rotate(-40deg);
        transform: rotate(-40deg);
        background-image: url(./img/flower2-step1-pc.png);
        top: 80.07812vw;
        left: 35.54688vw;
    }
    .backContent .flower.f05 .flowerName {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
        background-color: rgba(177, 215, 164, 0.8);
        left: -11.71875vw;
        top: -16.92708vw;
    }
    .backContent .flower.f05 .flowerIntro.mis05 {
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
    }
    .backContent .flower.f06 {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
        top: 80.07812vw;
        left: 65.10417vw;
    }
    .backContent .flower.f06 .flowerName {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        left: 7.8125vw;
        top: -6.51042vw;
    }
    .backContent .flower.f06 .flowerIntro.mis06 {
        top: 75px;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
    }
    .backContent .flower.f06.on {
        -webkit-animation: f01 0.5s ease-in-out;
        animation: f01 0.5s ease-in-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}
