@charset "UTF-8";

.-about .main_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about {
	width: 100%;
}

.about_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 40px;
}

.about_text {
	width: 50%;
}

.about_text_ttl {
	margin-bottom: 15px;
}

.about_text_img {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 25px;
	padding-bottom: 20px;
}

.about_text_img > img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.about_text_img .-wan {
	display: block;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: -50px;
	transform: translateY(500px) scale(0);
	width: 200px;
	height: 120px;
	padding: 30px 0 0 0;
	border-radius: 100px 100px 0 0;
	background-color: #ffffff;
	animation: fadeInWan 0.3s ease forwards;
	animation-delay: 0.2s;
}

.about_text_img .-wan > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@keyframes fadeInWan {
	0% {
		opacity: 0;
		transform: translateY(500px) scale(0);
	}

	90% {
		opacity: 1;
		transform: translateY(0) scale(1.2);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.about_img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.about_img_pk {
	opacity: 0;
	transform: translateY(300px);
	width: 50%;
	height: 100%;
	animation: fadeInPk 0.5s ease forwards;
	object-fit: contain;
}

.about_img_pk.-pk01 {
	margin-top: -50px;
	animation-delay: 0.8s;
}

.about_img_pk.-pk02 {
	margin: 70px 0 0 -60px;
	animation-delay: 1s;
}

@keyframes fadeInPk {
	0% {
		opacity: 0;
		transform: translateY(300px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ryori */
.ryori {
	width: 100%;
}

.ryori_text {
	margin-bottom: 15px;
}

.ryori_list {
	position: relative;
	width: 100%;
	height: 60vh;
	max-height: 600px;
}

.ryori_item {
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(300px);
	animation: fadeInRyori 0.5s ease forwards;
}

.ryori_item.-item01 {
	width: 28%;
}

.ryori_item.-item02 {
	bottom: 24vh;
	left: 30%;
	width: 18%;
	animation-delay: 0.2s;
}

.ryori_item.-item03 {
	bottom: 0;
	left: 52%;
	width: 40%;
	animation-delay: 0.4s;
}

.ryori_item.-item04 {
	right: 0;
	bottom: 50vh;
	left: auto;
	width: 10%;
	animation-delay: 0.6s;
}

@keyframes fadeInRyori {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.ryori_item_wrap {
	position: relative;
}

.ryori_item_lable {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s;

	backface-visibility: hidden;
}

.ryori_item_lable.-omote {
	transform: rotateY(180deg);
}

.ryori_item_lable.-ura {
	transform: rotateY(0deg);
}

#tg01:checked ~ .ryori_item_lable.-omote,
#tg02:checked ~ .ryori_item_lable.-omote,
#tg03:checked ~ .ryori_item_lable.-omote,
#tg04:checked ~ .ryori_item_lable.-omote {
	transform: rotateY(0deg);
}

#tg01:checked ~ .ryori_item_lable.-ura,
#tg02:checked ~ .ryori_item_lable.-ura,
#tg03:checked ~ .ryori_item_lable.-ura,
#tg04:checked ~ .ryori_item_lable.-ura {
	transform: rotateY(-180deg);
}

.ryori_item_img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-radius: 500px;
	box-shadow: var(--shadow);
	background-color: #ffffff;
	aspect-ratio: 1/1;
}

.ryori_item_img > img {
	display: block;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 500px;
	object-fit: cover;
}

.ryori_item_ttl {
	margin-top: 10px;
	font-weight: 900;
	font-size: 20px;
	text-align: center;
	white-space: nowrap;
}

@media screen and (max-width:768px) {
}
