/*----------
	social-card
----------*/
.social-card {
	position: relative;
	margin-left: -20px;
	margin-right: -20px;
	padding: 30px 20px;
	background-color: #BAF3B6;
	border-radius: 20px;
}
.social-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.5;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(/kids/assets/img/common/bg_category2.png);
	background-repeat: repeat;
	background-size: 600px auto;
}
.social-card__inner {
	position: relative;
	z-index: 1;
}
.social-card__sttl {
	margin-top: 25px;
}
.social-card__img {
	max-width: 315px;
	margin: 20px auto 0;
}
.social-card__chara {
	position: relative;
	height: 125px;
	width: 100%;
	margin-top: 11.5px;
}
.social-card__chara img {
	position: absolute;
	bottom: 0;
	width: auto;
	height: 125px;
}
.social-card__chara .social-card__chara-left {
	left: calc(50% - 125px);
}
.social-card__chara .social-card__chara-right {
	right: calc(50% - 125px);
}
.social-card__chara--1 .social-card__chara-right {
	width: 125px;
	height: auto;
}
.social-card--green {
	background-color: #BAF3B6;
}
.social-card--yellow {
	background-color: #FFF79B;
}
.social-card--blue {
	background-color: #B1EDFE;
}
@media (min-width: 744px) {
	.social-card {
		margin-left: -50px;
		margin-right: -50px;
		padding: 33px 45px 50px;
		border-radius: 30px;
	}
	.social-card__sttl {
		position: relative;
		z-index: 1;
		margin: 35px 160px 0;
	}
	.social-card__img {
		max-width: 100%;
		margin: 20px 160px 0;
		text-align: center;
	}
	.social-card__img img {
		max-width: 530px;
	}
	.social-card__chara {
		position: static;
		height: auto;
		width: auto;
		margin-top: 0;
	}
	.social-card__chara img {
		width: auto;
		height: 240px;
	}
	.social-card__chara .social-card__chara-left {
		left: -45px;
	}
	.social-card__chara .social-card__chara-right {
		right: -45px;
	}
	.social-card__chara--1 .social-card__chara-right {
		width: 240px;
		height: auto;
	}
	.social-card--green {
		background-color: #BAF3B6;
	}
	.social-card--yellow {
		background-color: #FFF79B;
	}
	.social-card--blue {
		background-color: #B1EDFE;
	}
}

/*----------
	social-karuta
----------*/
.social-karuta__item {
	max-width: 315px;
	margin: 0 auto;
	cursor: pointer;
}
.social-karuta__item:not(:first-child) {
	margin-top: 15px;
}
.social-karuta__item.is-ura {
	animation: anime-karuta 0.4s ease-in-out;
}
.social-karuta__item.is-ura .social-karuta__ura {
	visibility: visible;
}
.social-karuta__item.is-omote {
	animation: anime-karuta 0.4s ease-in-out;
}
.social-karuta__item.is-omote .social-karuta__ura {
	visibility: hidden;
}
.social-karuta__img {
	position: relative;
}
.social-karuta__img .social-karuta__ura {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	transition: visibility 0s 0.2s;
}
@media (min-width: 744px) {
	.social-karuta {
		display: flex;
		gap: 7px;
	}
	.social-karuta__item {
		flex: 1;
		max-width: 100%;
	}
	.social-karuta__item:not(:first-child) {
		margin-top: 0;
	}
}

@keyframes anime-karuta {
	0% {
		transform: scale(1, 1);
	}
	50% {
		transform: scale(0, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}