[v-clock] {
    display: none;
}

@keyframes downTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes topDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rollingOriginal {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100%);
    }

    50.01% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes rollingClone {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes hover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--main-color-bg);
}

.mobile {
    display: none;
}

.containerDiv {
    width: calc(100% - 80px);
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

header .containerDiv {
    position: unset;
}

.mockupImg {
    width: 300px;
}

.hover {
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.hover:hover {
    top: -10px;
}


/* Header */
.header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    font-size: 2rem;
}

.header.active {
    background-color: var(--main-color-bg);
}

.header .containerDiv {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.headerLeftDiv {
    display: flex;
    margin-right: auto;
    align-items: center;
}

.logoA {
    width: 160px;
    display: block;
}

.logoA img {
    width: 100%;
}

.menuUl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.menuUl li {
    margin-right: 30px;
}

.menuUl li:last-child {
    margin-right: 0;
}

.menuUl a:hover {
    color: var(--color-white);
}

.headerRightDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.soundButton {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color-point2);
    border-radius: 22px;
    background-color: transparent;
    background: url(../images/icon/soundOff.svg) no-repeat center;
    background-size: 20px 20px;
    margin-right: 16px;
}

.soundButton:hover {
    background-image: url(../images/icon/soundOffHover.svg);
    cursor: pointer;
}

.soundButton.active {
    background-image: url(../images/icon/soundOn.svg);
}

.soundButton.active:hover {
    background-image: url(../images/icon/soundOnHover.svg);
}

.languageDiv {
    position: relative;
}

.languageUl {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 10;
}

.languageUl.open {
    display: block;
}

.currentLanguageButton,
.languageButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 44px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 22px;
    border: 1px solid var(--color-light-gray);
    background-color: transparent;
}

.currentLanguageButton {
    justify-content: left;
    padding-left: 20px;
    background: url(../images/icon/arrowDwon.svg) no-repeat calc(100% - 20px) center;
    background-size: 20px 20px;
}

.currentLanguageButton:hover {
    background-image: url(../images/icon/arrowDwonWhite.svg);
}

.currentLanguageButton:hover,
.languageButton:hover {
    color: var(--color-white);
    border-color: var(--color-white);
    cursor: pointer;
}

.currentLanguageButton.open {
    background-image: url(../images/icon/arrowUp.svg);
}

.currentLanguageButton.open:hover {
    background-image: url(../images/icon/arrowUpWhite.svg);
}

.mobileMenuButton {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 0 none;
    background: url(../images/icon/menu.svg) no-repeat center;
    background-size: 100% 100%;
    margin-left: 12px;
}

.mobileMenuUl {
    display: none;
    position: fixed;
    left: 0;
    top: 80px;
    background-color: var(--main-color-bg);
    width: 100%;
    height: calc(100% - 80px);
    font-size: 1.6rem;
    line-height: 20px;
}

.mobileMenuUl a {
    display: block;
    padding: 18px 20px;
}

.mobileStoreLi {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 18px 20px 20px;
}

.mobileStoreLi a {
    display: block;
    width: 100%;
    height: 44px;
    border-radius: 60px;
    background: var(--button-color-store);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 500;
}

.menuOpen .mobileMenuButton {
    background-image: url(../images/icon/close.svg);
}

.menuOpen .soundButton {
    display: none;
}

.menuOpen .languageDiv {
    display: none;
}

.menuOpen .mobileMenuUl {
    display: block;
}


/* Section */
.blur {
    position: absolute;
    z-index: 0;
}

.blur1 {
    top: -210px;
    left: -450px;
    width: 430px;
    height: 430px;
    border-radius: 430px;
    background: var(--blur-color-point1);
    opacity: 0.5;
    filter: blur(250px);
    -webkit-filter: blur(250px);
    -moz-filter: blur(250px);
    -o-filter: blur(250px);
}

.blur2 {
    top: 154px;
    left: -470px;
    width: 378px;
    height: 378px;
    border-radius: 378px;
    background: var(--blur-color-point2);
    filter: blur(250px);
    -webkit-filter: blur(250px);
    -moz-filter: blur(250px);
    -o-filter: blur(250px);
}

.blur3 {
    top: 282px;
    right: -445px;
    width: 430px;
    height: 430px;
    border-radius: 430px;
    background: var(--blur-color-point3);
    filter: blur(120px);
    -webkit-filter: blur(120px);
    -moz-filter: blur(120px);
    -o-filter: blur(120px);
}

.blur4 {
    top: -200px;
    right: -492px;
    width: 280px;
    height: 280px;
    border-radius: 280px;
    background: var(--blur-color-point4);
    filter: blur(250px);
    -webkit-filter: blur(250px);
    -moz-filter: blur(250px);
    -o-filter: blur(250px);
}

.blur5 {
    bottom: -220px;
    left: -454px;
    width: 414px;
    height: 414px;
    border-radius: 414px;
    background: var(--blur-color-point5);
    filter: blur(265px);
    -webkit-filter: blur(265px);
    -moz-filter: blur(265px);
    -o-filter: blur(265px);
}

.blur6 {
    top: -170px;
    right: -508px;
    width: 358px;
    height: 358px;
    border-radius: 358px;
    background: var(--blur-color-point6);
    filter: blur(150px);
    -webkit-filter: blur(150px);
    -moz-filter: blur(150px);
    -o-filter: blur(150px);
}

.blur7 {
    top: 260px;
    left: -540px;
    width: 503px;
    height: 503px;
    border-radius: 503px;
    background: var(--blur-color-point1);
    opacity: 0.5;
    filter: blur(150px);
    -webkit-filter: blur(150px);
    -moz-filter: blur(150px);
    -o-filter: blur(150px);
}

.sectionTitleDiv {
    color: var(--font-color-point1);
    font-size: 6rem;
    font-weight: 700;
    line-height: 110%;
}

.sectionDescriptionDiv {
    color: var(--font-color-point2);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 140%;
}

/* Section1 */
#overviewSection {
    background-image: url(../images/bg/pcSection1Contents1.png), url(../images/bg/pcSection1Contents2.png), url(../images/bg/pcSection1.png);
    background-position: calc(0% + 80px) bottom, calc(100% - 200px) bottom, center;
    background-size: 580px auto, 510px auto, cover;
    background-repeat: no-repeat;
    background-color: var(--point-color-bg);
    padding: 210px 0 206px;
    text-align: center;
    text-shadow: 0 0 20px var(--shadow-color-black-40);
}

#overviewSection .containerDiv>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#overviewSection .sectionTitleDiv {
    color: var(--color-white);
    font-size: 5.4rem;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
}

#overviewSection .sectionDescriptionDiv {
    color: var(--color-white-90);
    font-size: 2rem;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: normal;
}

.ja #overviewSection .sectionDescriptionDiv {
    max-width: 554px;
}

/* Section2 */
#centennialSection {
    padding: 114px 0 0;
}

#centennialSection .containerDiv {
    display: flex;
    justify-content: space-between;
    margin-bottom: 75px;
}

#centennialSection .sectionTextDiv {
    max-width: 540px;
    margin-top: 40px;
    margin-right: 63px;
}

#centennialSection .sectionTitleDiv {
    margin-bottom: 30px;
}

#centennialSection .sectionImageDiv {
    margin-left: 80px;
    margin-right: auto;
}

#centennialSection .mockupImg {
    width: 400px;
}

.loopImageDiv {
    overflow: hidden;
    display: flex;
}

.loopImageDiv ul {
    display: flex;
}

.loopImageDiv li {
    margin-right: 17px;
}

.loopImageDiv ul img {
    height: 260px;
}

.original {
    animation: rollingOriginal 100s linear infinite;
}

.clone {
    animation: rollingClone 100s linear infinite;
}

/* Section3 */
#alterEgoSection {
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
}

#alterEgoSection .containerDiv {
    position: relative;
}

.alterEgo1 {
    position: absolute;
    top: 242px;
    left: -188px;
    z-index: 8;
    width: 140px;
    transform: scaleX(-1);
}

.alterEgo2 {
    position: absolute;
    top: 12px;
    right: 41px;
    z-index: 8;
    width: 194px;
}

#alterEgoSection .sectionTextDiv {
    position: relative;
    z-index: 9;
}

#alterEgoSection .sectionTextDiv {
    max-width: 790px;
}

#alterEgoSection .sectionTitleDiv {
    margin-bottom: 24px;
}

.jp #alterEgoSection .sectionTextDiv {
    max-width: 800px;
}

.alterEgoStepUl {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.alterEgoStepUl li {
    position: relative;
    background-color: var(--card-color-bg1);
    border: 2px solid var(--color-white-10);
    border-radius: 24px;
    overflow: hidden;
}

.alterEgoStepUl li:nth-child(2) {
    background-color: var(--card-color-bg2);
}

.alterEgoStepUl img {
    width: 100%;
}

.stepTextDiv {
    position: absolute;
    top: 40px;
    left: 32px;
    text-shadow: 0 0 20px var(--shadow-color-black-40);
}

.stepDiv {
    font-size: 2rem;
    font-weight: 700;
    color: var(--font-color-point3);
    margin-bottom: 10px;
}

.stepDescriptionDiv {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 30px;
    color: var(--color-white);
}

/* Section4 */
#landmarkSection {
    background-color: var(--point-color-bg);
    padding: 130px 0 120px;
}

#landmarkSection .containerDiv {
    display: flex;
    justify-content: space-between;
}

#landmarkSection .sectionTextDiv {
    max-width: 600px;
    margin-top: 90px;
    margin-right: auto;
}

.ja #landmarkSection .sectionTextDiv {
    max-width: 500px;
}

#landmarkSection .sectionTitleDiv {
    margin-bottom: 30px;
}

#landmarkSection .sectionTitleDiv {
    margin-bottom: 30px;
}

.sectionImageDiv {
    position: relative;
    margin-right: 80px;
}

.laughImg {
    position: absolute;
    top: 20px;
    left: -56px;
    width: 100px;
    height: 100px;
    animation-name: downTop;
    animation-duration: 1.8s;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

.heartImg {
    position: absolute;
    bottom: 58px;
    right: -48px;
    width: 103px;
    height: 103px;
    animation-name: topDown;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

.handImg {
    position: absolute;
    top: 36%;
    right: -10px;
    width: 90px;
    height: 90px;
    animation-name: topDown;
    animation-duration: 2.2s;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

/* Section5 */
#readySection {
    background: url(../images/bg/pcSection5.png) no-repeat center;
    background-size: cover;
    padding: 110px 0 133px;
    text-align: center;
}

#readySection .sectionTitleDiv {
    color: var(--color-white);
    font-size: 5.2rem;
    margin-bottom: 40px;
}

.storeButtonUl {
    display: flex;
    justify-content: center;
}

.storeButtonUl li:first-child {
    margin-right: 20px;
}

.storeButtonUl a {
    display: block;
    width: 254px;
    height: 60px;
    border-radius: 60px;
    background: var(--button-color-store);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 500;
}

.storeImageDiv {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.storeImageDiv img {
    width: 24px;
    height: 24px;
}

.storeImageDiv div {
    width: 1px;
    height: 14px;
    margin: 0 8px;
    background-color: var(--color-white-40);
}


/* Footer */
.footer {
    background-color: var(--footer-color-bg);
    padding: 60px 0;
    text-align: center;
    font-size: 1.6rem;
    line-height: normal;
    color: var(--font-color-footer);
}

.snsUl {
    display: flex;
    justify-content: center;
}

.snsUl li {
    margin: 0 15px;
}

.snsUl a {
    display: block;
    width: 80px;
    height: 80px;
}

.snsUl img {
    width: 100%;
}

.storeCopyrightInfoDiv {
    margin: 40px 0 30px;
}


@media (max-width: 1600px) {

    /* Section1 */
    #overviewSection {
        background-position: calc(0% + 10px) bottom, calc(100% - 20px) bottom, center;
    }

    /* Section3 */
    .alterEgo1 {
        top: 204px;
        left: -40px;
    }
}


@media (max-width: 1240px) {

    /* Section1 */
    #overviewSection {
        background-size: 540px auto, 470px auto, cover;
    }

    /* Section3 */
    .alterEgoStepUl {
        gap: 28px;
    }

    .stepDiv {
        font-size: 1.8rem;
        margin-bottom: 7px;
    }

    .stepDescriptionDiv {
        font-size: 2.2rem;
    }
}


@media (max-width: 1024px) {
    .mockupImg {
        width: 260px;
    }


    /* Header */
    .logoA {
        width: 130px;
    }

    .menuUl {
        font-size: 1.8rem;
    }

    .menuUl li {
        margin-right: 20px;
    }

    .soundButton {
        width: 36px;
        height: 36px;
        background-size: 17px 17px;
        margin-right: 13px;
    }

    .languageUl {
        top: 35px;
    }

    .currentLanguageButton,
    .languageButton {
        width: 100px;
        height: 36px;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .currentLanguageButton {
        padding-left: 16px;
        background-position: calc(100% - 16px) center;
        background-size: 17px 17px;
    }


    /* Section */
    .sectionTitleDiv {
        font-size: 4.8rem;
        line-height: 110%;
    }

    .sectionDescriptionDiv {
        font-size: 1.8rem;
        line-height: 140%;
    }

    /* Section1 */
    #overviewSection {
        background-position: 0 bottom, calc(100% - 10px) bottom, center;
        background-size: 450px auto, 400px auto, cover;
        padding: 180px 0 158px;
    }

    #overviewSection .sectionTitleDiv {
        font-size: 4.2rem;
        margin-bottom: 16px;
        max-width: 800px;
    }

    #overviewSection .sectionDescriptionDiv {
        color: var(--color-white-90);
        font-size: 1.6rem;
        margin-bottom: 30px;
        max-width: 550px;
    }

    .ja #overviewSection .sectionDescriptionDiv {
        max-width: 450px;
    }

    /* Section2 */
    #centennialSection {
        padding: 96px 0 0;
    }

    #centennialSection .containerDiv {
        margin-bottom: 60px;
    }

    #centennialSection .sectionTextDiv {
        margin-top: 34px;
        margin-right: 20px;
    }

    #centennialSection .sectionTitleDiv {
        margin-bottom: 24px;
    }

    #centennialSection .sectionImageDiv {
        margin-left: 20px;
    }

    #centennialSection .mockupImg {
        width: 300px;
    }

    .loopImageDiv li {
        margin-right: 14px;
    }

    .loopImageDiv ul img {
        height: 220px;
    }

    /* Section3 */
    .alterEgo1 {
        top: 180px;
        left: -30px;
        width: 70px;
    }

    .alterEgo2 {
        top: 70px;
        right: -20px;
        width: 120px;
    }

    /* Section4 */
    #landmarkSection {
        padding: 110px 0 106px;
    }

    #landmarkSection .sectionTextDiv {
        max-width: 480px;
        margin-top: 76px;
    }

    #landmarkSection .sectionTitleDiv {
        margin-bottom: 38px;
    }

    .sectionImageDiv {
        margin-right: 40px;
    }

    .laughImg {
        top: 28px;
        left: -34px;
        width: 70px;
        height: 70px;
    }

    .heartImg {
        bottom: 52px;
        right: -28px;
        width: 72px;
        height: 72px;
    }

    /* Section5 */
    #readySection {
        padding: 90px 0 110px;
    }

    #readySection .sectionTitleDiv {
        font-size: 4.4rem;
        margin-bottom: 40px;
    }

    .storeButtonUl li:first-child {
        margin-right: 16px;
    }


    /* Footer */
    .footer {
        padding: 46px 0;
    }

    .snsUl li {
        margin: 0 12px;
    }

    .snsUl a {
        width: 66px;
        height: 66px;
    }

    .storeCopyrightInfoDiv {
        margin: 30px 0 24px;
    }
}


@media (max-width: 850px) {

    /* Section1 */
    #overviewSection {
        background-size: 400px auto, 360px auto, cover;
        padding: 150px 0 128px;
    }
}


@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .containerDiv {
        width: calc(100% - 40px);
        max-width: 350px;
    }

    .mockupImg {
        width: 100%;
    }


    /* Header */
    .header .containerDiv {
        max-width: 100%;
    }

    .logoA {
        width: 100px;
    }

    .soundButton {
        width: 30px;
        height: 30px;
        background-size: 14px 14px;
        margin-right: 12px;
    }

    .languageUl {
        top: 30px;
    }

    .currentLanguageButton,
    .languageButton {
        width: 92px;
        height: 30px;
        font-size: 1.4rem;
        font-weight: 400;
    }

    .currentLanguageButton {
        padding-left: 14px;
        background-position: calc(100% - 13px) center;
        background-size: 16px 16px;
    }

    .mobileMenuButton {
        display: block;
    }


    /* Section */
    .sectionTitleDiv {
        font-size: 3.2rem;
        line-height: normal;
    }

    .sectionDescriptionDiv {
        font-size: 1.6rem;
    }

    .mergeSection {
        background: url(../images/bg/mobileBlur.png) no-repeat top center;
        background-size: cover;
    }

    /* Section1 */
    #overviewSection {
        background-image: url(../images/bg/mobileSection1Contents.png), url(../images/bg/mobileSection1.png);
        background-position: calc(50% - 30px) calc(100% + 10px), center;
        background-size: 570px 360px, cover;
        background-repeat: no-repeat;
        padding: 120px 0 300px;
    }

    #overviewSection .sectionTitleDiv {
        font-size: 3.2rem;
    }

    #overviewSection .sectionDescriptionDiv {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    /* Section2 */
    #centennialSection {
        padding: 72px 0 0;
    }

    #centennialSection .containerDiv {
        margin-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    #centennialSection .sectionTextDiv {
        margin-top: 40px;
        margin-right: auto;
    }

    #centennialSection .sectionTitleDiv {
        margin-bottom: 20px;
    }

    #centennialSection .sectionImageDiv {
        margin-left: 20px;
    }

    #centennialSection .mockupImg {
        width: 300px;
    }

    .loopImageDiv li {
        margin-right: 14px;
    }

    .loopImageDiv ul img {
        height: 195px;
    }

    /* Section3 */
    #alterEgoSection {
        padding: 190px 0 60px;
    }

    .alterEgo1 {
        top: -105px;
        left: -30px;
        width: 70px;
    }

    .alterEgo2 {
        top: -70px;
        right: -40px;
        width: 120px;
    }

    #alterEgoSection .sectionTitleDiv {
        margin-bottom: 20px;
    }

    .alterEgoStepUl {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .alterEgoStepUl li {
        margin-bottom: 20px;
    }

    .alterEgoStepUl li:last-child {
        margin-bottom: 0;
    }

    .stepTextDiv {
        top: 38px;
        left: 27px;
    }

    .stepDiv {
        font-size: 1.9rem;
        margin-bottom: 9px;
    }

    .stepDescriptionDiv {
        font-size: 2.4rem;
        line-height: 120%;
    }

    /* Section4 */
    #landmarkSection .containerDiv {
        flex-direction: column;
        align-items: center;
    }

    #landmarkSection {
        padding: 60px 0;
    }

    #landmarkSection .sectionTextDiv {
        max-width: none;
        margin-top: 0;
    }

    #landmarkSection .sectionTitleDiv {
        margin-bottom: 16px;
    }

    .sectionImageDiv {
        margin-top: 40px;
        margin-right: 0;
    }

    .laughImg {
        top: 44px;
        left: -16px;
        width: 100px;
        height: 100px;
    }

    .heartImg {
        bottom: 120px;
        left: -20px;
        right: auto;
        width: 83px;
        height: 83px;
    }

    /* Section5 */
    #readySection {
        background: url(../images/bg/mobileSection5.png) no-repeat center;
        background-size: cover;
        padding: 84px 0 124px;
    }

    #readySection .sectionTitleDiv {
        font-size: 3.2rem;
    }

    .storeButtonUl {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .storeButtonUl li:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }


    /* Footer */
    .footer {
        padding: 60px 0;
    }

    .snsUl li {
        margin: 0 12.5px;
    }

    .snsUl a {
        width: 40px;
        height: 40px;
    }

    .storeCopyrightInfoDiv {
        margin: 30px 0 40px;
    }
}