@charset "UTF-8";

/*------------------------------------------ 共通 */

.lower .lowerHeader .lowerHeaderInner {
    padding: 130px 50px 100px;
    margin-bottom: 100px;
    position: relative;
}

.lower .lowerHeader .lowerHeaderInner .pageTitle {
    font-size: 4rem;
    font-weight: 700;
    color: #e50012;
    text-align: center;
    margin-bottom: 40px;
}

.lower .lowerHeader .lowerHeaderInner .titleText {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.8;
}

.lower .lowerHeader .lowerHeaderInner .chara01 {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    width: 150px;
}


/*------------------------------------------ ポッポのなかまたち */

#character .characterBox {
    margin-bottom: 120px;
}

#character .characterBox .characterList {
    position: relative;
    background: #ccc;
    padding: 110px 0 140px;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#character .characterBox .characterList:nth-child(n+2) {
    margin-top: 80px;
}

#character .characterBox .characterList.no1 {
    background-image: url(/pp/frozen/images/character/listbg_01.jpg);
}

#character .characterBox .characterList .number {
    font-size: 1.8rem;
    color: #881a1f;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
    width: min(345px, 50%);
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}

#character .characterBox .characterList.no1 .number {
    background-color: #ffbf00;
}

#character .characterBox .characterList .imgBox {
    position: relative;
    margin-bottom: 50px;
}

#character .characterBox .characterList .imgBox .img_01 {
    width: 31%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#character .characterBox .characterList .imgBox .img_02 {
    width: 26%;
    top: 3%;
    left: 9%;
}

#character .characterBox .characterList .imgBox .img_03 {
    width: 82%;
    top: 75%;
    left: 0;
    right: 0;
    margin: auto;
    opacity: .8;
    mix-blend-mode: multiply;
}

#character .characterBox .characterList .textBox {
    background-color: #fff;
    padding: 45px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 74%;
    margin: 0 auto;
    border-radius: 20px;
}

#character .characterBox .characterList .textBox .charaBox {
    width: 24%;
}

#character .characterBox .characterList .textBox .textBoxInner {
    width: 66%;
}

#character .characterBox .characterList .textBox .textBoxInner .nameBox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#character .characterBox .characterList .textBox .textBoxInner .nameBox .nameTitle {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1;
    border-radius: 21px;
    padding: 13px 26px;
    background-color: #881a1f;
    margin-right: 20px;
}

#character .characterBox .characterList .textBox .textBoxInner .nameBox .name {
    font-size: 2rem;
}

#character .characterBox .characterList .textBox .textBoxInner .text {
    font-size: 1.6rem;
}

/*no2*/

#character .characterBox .characterList.no2 {
    background-image: url(/pp/frozen/images/character/listbg_02.jpg);
}

#character .characterBox .characterList.no2 .number {
    background-color: #f3b3c9;
}

#character .characterBox .characterList.no2 .imgBox .img_02 {
    top: -26%;
    left: 64%;
}

#character .characterBox .characterList.no2 .imgBox .img_03 {
    top: 64%;
}

/*----------------------------------------------------
    ☆ANIMATION
----------------------------------------------------*/


/* 初期状態 */
.lowerHeader .chara01,
.characterList .img_01,
.characterList .img_02 {
    opacity: 0;
}


/*--------------------------------
    lowerHeader ponnya
--------------------------------*/

.lowerHeader.in .chara01 {
    animation: popIn .5s ease-out forwards;
}


/*--------------------------------
    character
--------------------------------*/


/* メインキャラ */
.characterList.in .img_01 {
    animation:
        popIn .5s ease-out .3s forwards,
        shake .8s ease-out .8s,
        idleShake 3.5s ease-in-out 2s infinite;
}


/* 装飾 */
.characterList.in .img_02 {
    animation: popIn .5s ease-out 1.1s forwards;
}



/*--------------------------------
    animation
--------------------------------*/


/* ポンっと出る */
@keyframes popIn {

    0% {
        opacity: 0;
        transform: scale(.5);
    }

    70% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* 少し揺れる（登場時） */
@keyframes shake {

    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }

}

/* たまに揺れる */
@keyframes idleShake {

    0%,
    70%,
    100% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(3deg);
    }

    80% {
        transform: rotate(-3deg);
    }

    85% {
        transform: rotate(2deg);
    }

    90% {
        transform: rotate(0deg);
    }

}


/*----------------------------------------------------
    ☆TABLET UNDER 900
----------------------------------------------------*/
@media screen and (max-width: 900px) {

    #special .imemoriesInner {
    }
	
#character .characterBox .characterList .textBox {
	flex-direction: column;
	padding: 35px 40px;
	width: 85%;
}
	
#character .characterBox .characterList .textBox .textBoxInner {
    width: 90%;
}
	
#character .characterBox .characterList .textBox .textBoxInner .nameBox {
	margin-top: 20px;
	justify-content: center;
}
	
#character .characterBox .characterList {
	padding: 80px 0 80px;
	border-radius: 50px;
}
	
#character .characterBox .characterList .textBox .textBoxInner .nameBox .nameTitle {
        font-size: 1.3rem;
        padding: 11px 22px;
        margin-right: 15px;
    }
	
#character .characterBox .characterList .textBox .textBoxInner .nameBox .name {
        font-size: 1.7rem;
    }
	
#character .characterBox .characterList .textBox .textBoxInner .text {
        font-size: 1.5rem;
    }

}


/*----------------------------------------------------
    ☆UNDER 600
----------------------------------------------------*/
@media screen and (max-width: 600px) {

    #special {
        margin-bottom: 50px;
    }
	
	#main {
        padding-top: 60px;
    }
	
	.lower .lowerHeader .lowerHeaderInner .pageTitle {
    line-height: 1.2;
	font-size: 2.7rem;
}
	
	.lower .lowerHeader .lowerHeaderInner .titleText {
	text-align: left;
	font-size: 1.4rem;
	}
	
	.lower .lowerHeader .lowerHeaderInner {
	padding: 130px 50px 10px;
	}
	
	#character .characterBox .characterList {
        padding: 70px 0 40px;
        border-radius: 20px;
}
	
	#character .characterBox .characterList .textBox {
        padding: 25px 15px;
		width: 85%;
        border-radius: 15px;
    }
	
	#character .characterBox .characterList .textBox .textBoxInner {
		width: 85%;
	}
	
	#character .characterBox .characterList .textBox .textBoxInner .nameBox .nameTitle {
        font-size: 1.5rem;
        padding: 9px 20px;
        margin-right: 10px;
    }
	
	#character .characterBox .characterList .textBox .textBoxInner .nameBox .name {
		font-size: 2rem;
		line-height: 1.5;
    }
	
	#character .characterBox .characterList .textBox .textBoxInner .text {
        font-size: 1.4rem;
		line-height: 1.5;
    }
	
	#character .characterBox .characterList.no1 .number {
    width: min(345px, 75%);
}
	
	#character .characterBox .characterList .imgBox .img_01 {
    width: 55%;
}
	
#character .characterBox .characterList .textBox .charaBox {
    width: 35%;
}
	
#character .characterBox .characterList .imgBox .img_03 {
    top: 90%;
}
	
#character .characterBox .characterList.no2 .imgBox .img_03 {
    top: 85%;
}
	
#character .characterBox .characterList .imgBox .img_02 {
    width: 30%;
    top: -2%;
    left: 4%;
}
	
#character .characterBox .characterList.no2 .number {
    width: min(345px, 75%);
}

}
