@charset 'utf-8';
*{
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
    color: inherit;
}
ol, ul {
	list-style: none;
}
button{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
html{
    font-size: 18px;
    font-family: 'LINE Seed JP', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #4D4948;
    line-height: 2;
    min-height: 100dvh;
    background: url(../img/bg.png) repeat-x center / contain;
    background-size: 1440px auto;
    background-color: #FFD200;
    background-attachment: fixed;
}
body{
    padding-top: 40px;
    padding-bottom: 70px;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* center */
.center{
    text-align: center;
}

/* margin */
.mb8{
    margin-bottom: 8px;
}
.mb10{
    margin-bottom: 10px;
}
.mb16{
    margin-bottom: 16px;
}
.mb24{
    margin-bottom: 24px;
}
.mb32{
    margin-bottom: 32px;
}
.mb40{
    margin-bottom: 40px;
}
.mb48{
    margin-bottom: 48px;
}
.mb64{
    margin-bottom: 64px;
}
.mb80{
    margin-bottom: 80px;
}

/* .button */
.button a{
    max-width: 216px;
    width: 100%;
    display: inline-block;
    background: #4D4948;
    border-radius: 50px;
    text-decoration: none;
    line-height: 48px;
    transition: 0.3s;
    font-size: 14px;
    color: #fff;
}
.button a:hover{
    background-color: #FF5600;
}

/* container */
.container{
    padding: 0 40px;
}

/* title */
.title{
    font-size: 36px;
    font-weight: 800;
    color: #FF5600;
    line-height: 1.5;
}
.title:not(.releaseCmpTitle) span{
    position: relative;
}
.title:not(.releaseCmpTitle) span:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border-radius: 2px;
}
.title:not(.releaseCmpTitle).animation-show span:before{
    animation: titleShow 0.3s 0s ease-in-out forwards;
}
@keyframes titleShow {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

/* ======== wrapper ========= */
#wrapper{
    width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

/* cmp */
.cmp{
    padding: 24px 24px 15px;
}
.cmpTitle{
    padding: 10px 14px 9px;
    background: #FFD200;
    margin-bottom: 14px;
    line-height: 1;
}

/* download */
.downloadLinks{
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* feature */
.featureTitle{
    font-size: 48px;
    font-weight: 800;
    color: #FF5600;
}
.featureSubTitle{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.67;
}
.featureText{
    position: relative;
}
.featureCharacter{
    position: absolute;
    bottom: -46px;
    right: 0;
    text-align: right;
}
.featureCharacter img{
    display: inline-block;
    padding-right: 10px;
}
.featureCharacter p{
    font-size: 14px;
    font-weight: 700;
    color: #FF5600;
    margin-top: 8px;
}
.featureThumbs li{
    position: relative;
}
.featureThumbCharacter{
    position: absolute;
}
.featureThumbCharacter2{
    top: -60px;
    left: -140px;
}
.featureThumbCharacter3{
    top: -100px;
    right: -140px;
}
.featureThumbCharacter4{
    top: -100px;
    left: -140px;
}

/* releaseCmp */
.releaseCmp{
    padding: 53px 0 64px;
    background: #FF5601;
    position: relative;
}
.releaseCmp:before{
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/release_cmp_bg.png) no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    border-radius: 200px;
}
.releaseCmp.animation-show:before{
    animation: releaseCmpBgShow 0.4s 0s ease-in-out forwards;
}
@keyframes releaseCmpBgShow {
    0% {
        transform: scale(0);
        border-radius: 200px;
    }
    100% {
        transform: scale(1);
        border-radius: 0;
    }
}
.releaseCmpTitle,
.releaseCmpList{
    position: relative;
    z-index: 1;
}
.releaseCmpTitle{
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}
.releaseCmp.animation-show .releaseCmpTitle{
    animation: fadeInUp 0.4s 0.4s ease-in-out forwards;
}
.releaseCmpTitle span{
    position: relative;
    padding: 0 43px 3px;
    display: inline-block;
}
.releaseCmpTitle span:before,
.releaseCmpTitle span:after{
    content: "";
    width: 33px;
    height: 67px;
    background: url(../img/release_cmp_title.png)no-repeat center bottom / contain;
    position: absolute;
    bottom: 0;
}
.releaseCmpTitle span:before{
    left: 0;
}
.releaseCmpTitle span:after{
    right: 0;
    transform: scaleX(-1);
}
.releaseCmpList li{
    transform: scale(0.2);
    opacity: 0;
}
.releaseCmp.animation-show .releaseCmpList li{
    animation: popup 0.4s 0.7s ease-in-out forwards;
}
.releaseCmpList a{
    position: relative;
    display: block;
}
.releaseCmpList a:before{
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transition: 0.15s;
}
.releaseCmpList a:not([tabindex="-1"]):hover:before{
    border-width: 6px;
    border-color: #FFD200;
}

/* info */
.info{
    padding: 48px 0 24px;
}
.infoList li{
    padding-bottom: 20px;
    background-image: linear-gradient(to left, #4D4948, #4D4948 2px, transparent 2px, transparent 6px);
    background-size: 6px 1px;
    background-position: right bottom;
    background-repeat: repeat-x;
}
.infoList li + li{
    padding-top: 20px;
}
.infoList li a{
    display: flex;
    gap: 16px;
    text-decoration: none;
    align-items: flex-start;
}
.infoDate{
    width: 94px;
    line-height: 32px;
    background: #FFD200;
    border-radius: 32px;
    font-size: 15px;
    margin-top: 1px;
}
.infoTitle{
    flex: 1;
}
.infoList li a:not([tabindex="-1"]) .infoTitle{
    text-decoration: underline;
    transition: 0.3s;
}
.infoList li a:not([tabindex="-1"]):hover .infoTitle{
    color: #FF5600;
}

/* faq */
.faq{
    padding: 48px 0 64px;
}
.faqList{
    font-size: 16px;
    line-height: 1.75;
}
.faqList dd + dt{
    margin-top: 8px;
}
.faqList dt{
    padding: 20px 69px 19px 51px;
    background: #F4F0E7;
    transition: 0.3s;
    cursor: pointer;
}
.faqList dt:hover{
    background: #f3ebdb;
}
.faqList dd{
    background: #FDFBF5;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}
.faqList dd .faqInner{
    padding: 20px 24px 20px 51px;
}
.faqList dd a{
    font-weight: 700;
    transition: 0.3s;
}
.faqList dd a:hover{
    color: #FF5600;
}
.faqList dt,
.faqList dd{
    position: relative;
}
.faqList dt:before,
.faqList dd:before{
    font-size: 20px;
    font-weight: 700;
    color: #FF5600;
    position: absolute;
    top: 16px;
    left: 16px;
}
.faqList dt:before{
    content: "Q";
}
.faqList dd:before{
    content: "A";
}
.faqList dt:after{
    content: "";
    width: 21px;
    height: 21px;
    background: url(../img/faq_ico_plus.png) no-repeat center / contain;
    position: absolute;
    top: 24px;
    right: 24px;
    transition: 0.3s;
}
.faqList dt.is-active:after{
    background-image: url(../img/faq_ico_minus.png);
}

/* infoThumb */
.infoThumb img{
    border-radius: 16px 16px 0 0;
}

/* infoCont */
.infoCont{
    padding: 32px 0 48px;
}
.infoCont ul li{
    text-indent: -1em;
    padding-left: 1em;
}
.infoCont ul li:before{
    content: "・";
}
.infoCont ol{
    list-style-type: auto;
    padding-left: 1em;
}
.infoCont li{
    line-height: 1.5;
}
.infoCont li:not(:last-child){
    margin-bottom: 12px;
}
.infoCont * + p,
.infoCont * + ul,
.infoCont * + ol{
    margin-top: 32px;
}
.infoCont p + ul,
.infoCont p + pl{
    margin-top: 16px;
}

/* ======== footer ========= */
footer{
    padding: 64px 40px;
    background: #FF5600;
    border-radius: 0 0 16px 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.57;
}
footer a img{
    transition: 0.3s;
}
footer a:hover img{
    opacity: 0.8;
}
.footerNav{
    padding: 0 69px;
}
.footerNav ul{
    display: flex;
    justify-content: space-between;
}
.footerNav a{
    transition: 0.3s;
    text-decoration: none;
}
.footerNav a:hover{
    color: #FFD200;
}
.footerUnei{
    font-size: 14px;
}
.copyright{
    font-size: 10px;
}

/* ======== fixedBnr ========= */
#fixedBnr{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 1;
    transition: opacity 0.35s ease;
}
#fixedBnr.is-hidden{
    opacity: 0;
    pointer-events: none;
}
.fixedBnrInner{
    display: inline-block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    max-width: 560px;
    width: 80%;
}
.fixedBnrInner a img{
    border-radius: 16px;
    transition: 0.3s;
}
.fixedBnrInner a:hover img{
    filter: brightness(1.1);
}
.fixedBnrClose{
    position: absolute;
    top: -42px;
    right: -42px;
    transition: 0.3s;
}
.fixedBnrClose:hover{
    opacity: 0.8;
}

@media screen and (min-width: 641px) {
    .sp{
        display: none !important;
    }
    
    @media screen and (max-width: 920px) {
        .featureThumbCharacter2{
            left: calc((100vw - 640px) / -2);
        }
        .featureThumbCharacter3{
            right: calc((100vw - 640px) / -2);
        }
        .featureThumbCharacter4{
            left: calc((100vw - 640px) / -2);
        }
    }
}

@media screen and (max-width: 640px) {
    .pc{
        display: none !important;
    }

    html{
        font-size: 14px;
    }
    body{
        padding-top: 0;
        padding-bottom: 0;
        max-width: 100%;
    }

    /* margin */
    .mb8{
        margin-bottom: 8px;
    }
    .mb10{
        margin-bottom: 10px;
    }
    .mb16{
        margin-bottom: 12px;
    }
    .mb24{
        margin-bottom: 16px;
    }
    .mb32,
    .mb40{
        margin-bottom: 32px;
    }
    .mb48,
    .mb64,
    .mb80{
        margin-bottom: 48px;
    }

    /* container */
    .container{
        padding: 0 24px;
    }

    /* title */
    .title{
        font-size: 22px;
    }

    /* ======== wrapper ========= */
    #wrapper{
        width: 100%;
        border-radius: 0;
        overflow: hidden;
    }

    /* cmp */
    .cmp{
        padding: 0 0 7px;
    }
    .cmpTitle{
        padding: 9px 14px;
        margin-bottom: 9px;
    }
    .cmpList{
        padding: 0 23px;
        line-height: 1;
    }

    /* download */
    .downloadLinks{
        gap: 8px;
    }
    .downloadLinks li{
        flex: 1;
        max-width: 216px;
    }

    /* feature */
    .featureTitle{
        font-size: 28px;
    }
    .featureSubTitle{
        font-size: 17px;
        line-height: 1.67;
    }
    .featureSubTitle span{
        white-space: nowrap;
    }
    .featureCharacter{
        bottom: -16px;
    }
    .featureCharacter img{
        width: 80px;
        padding-right: 8px;
    }
    .featureCharacter p{
        font-size: 12px;
    }
    .featureThumbCharacter{
        width: 100px;
    }
    .featureThumbCharacter2,
    .featureThumbCharacter4{
        top: -50px;
        left: -24px;
    }
    .featureThumbCharacter3{
        top: -50px;
        left: unset;
        right: -24px;
    }

    /* releaseCmp */
    .releaseCmp{
        padding: 48px 0;
    }
    .releaseCmpTitle span{
        padding: 0 32px 3px;
    }
    .releaseCmpTitle span:before,
    .releaseCmpTitle span:after{
        width: 24px;
    }

    /* info */
    .info{
        padding: 48px 0 0;
    }
    .infoList li{
        padding-bottom: 16px;
    }
    .infoList li + li{
        padding-top: 16px;
    }
    .infoList li a{
        gap: 12px;
    }
    .infoDate{
        width: 84px;
        line-height: 26px;
        font-size: 12px;
    }

    /* faq */
    .faq{
        padding: 48px 0;
    }
    .faqList{
        font-size: 14px;
    }
    .faqList dt{
        padding: 20px 48px 19px 48px;
    }
    .faqList dd .faqInner{
        padding: 20px 24px 20px 48px;
    }
    .faqList dt:before,
    .faqList dd:before{
        top: 15px;
    }
    .faqList dt:after{
        width: 18px;
        height: 18px;
        top: 23px;
        right: 20px;
    }

    /* infoThumb */
    .infoThumb img{
        border-radius: 0;
    }

    /* infoCont */
    .infoCont li:not(:last-child){
        margin-bottom: 8px;
    }
    .infoCont * + p,
    .infoCont * + ul,
    .infoCont * + ol{
        margin-top: 24px;
    }
    .infoCont p + ul,
    .infoCont p + pl{
        margin-top: 8px;
    }

    /* ======== footer ========= */
    footer{
        padding: 48px 24px;
        border-radius: 0;
    }
    footer.is-spFixedBnr{
        padding-bottom: 128px;
    }
    .footerNav{
        padding: 0;
    }
    .footerUnei{
        font-size: 12px;
    }
    .footerLogo{
        width: 160px;
    }
    .footerGoodayLogo{
        width: 140px;
    }

    /* ======== fixedBnr ========= */
    .fixedBnrClose{
        right: -16px;
    }

    /* ======== spFixedBnr ========= */
    #spFixedBnr{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 0 16px;
        box-sizing: border-box;
        transform: translateY(100%);
        transition: 0.3s;
    }
    #spFixedBnr a{
        display: block;
        width: 100%;
        max-width: 398px;
        margin: auto;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    }
    #spFixedBnr.animation-show{
        transform: translateY(0);
    }
}

/* ======== animation ========= */
/* fadeIn */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.animation-fadeIn{
    opacity: 0;
}
.animation-fadeIn.animation-show{
    animation: fadeIn 0.4s 0s ease-in-out forwards;
}

/* fadeInUp */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animation-fadeInUp{
    opacity: 0;
    transform: translateY(20px);
}
.animation-fadeInUp.animation-show{
    animation: fadeInUp 0.5s 0s ease-in-out forwards;
}

/* popup */
@keyframes popup {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    75% {
        transform: scale(0.96);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.animation-popup{
    opacity: 0;
    transform: scale(0.2);
}
.animation-popup.animation-show{
    animation: popup 0.6s cubic-bezier(.17,.89,.32,1.49) forwards;
}