@charset "UTF-8";
.swiper-container {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;

 }
.swiper-wrapper {
	width: 100%;
}
 .swiper-thumb-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	gap:3vw;
 }

 .swiper-thumb {
	width: 15vw;
	height: 15vw;
	margin: 0;
	cursor: pointer;
	border-radius: 50%;
	box-sizing:content-box;
	display: block;
	overflow: hidden;
 }
 .swiper-thumb img {
	width: 100%;
 }
 .swiper-thumb-active {
	opacity: 1;
	border: 4px solid #007AB7;
	transform: scale(1.1);
 }

.chara-container {
	flex-direction: column;
}
.chara-img {
	width: 65%;
	margin: 0 auto 20px;
}
.chara-img img {
	width: 100%;
	display: block;
}
.chara-text {
	width: 100%;
	text-align: center;
}
.chara-name {
	color: #EBE176;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 2.5em;
	font-weight: 800;
	line-height: 1em;
	position: relative;
	display: inline-block;
}
.chara-name--s {
	font-size: 2em;

}
.chara-name::before,.chara-name::after {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background-size: 100%;
	background-repeat: no-repeat;
	vertical-align: middle;
	position: absolute;
	top:0;
}
.chara-name::before {
	background-image: url(../character/img/line-left.svg);
	left: -45px;
}
.chara-name::after {
	background-image: url(../character/img/line-right.svg);
	right: -45px;
}
.chara-cv {
	color: #FFFDE9;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 20px;
}
.chara-cv span {
	font-size: 0.8em;
}
.chara-description {
	background-color: #FFFDE9;
	background-image: url(../character/img/bg-chara-text.svg);
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: bottom 10px center;
	box-sizing: border-box;
	padding: 30px 20px 60px;
	border-radius: 20px;
}

/* --------------------------------------
   Tablet style
-------------------------------------- */

@media screen and (min-width: 768px){
	.chara-container {
		flex-direction: row;
		align-items: flex-start;
	}
	.chara-img {
		width: 40%;
		margin-left: 0;
	}
	.chara-text {
		width: 55%;
		padding-top: 50px;
	}
	.swiper-thumb-container {

		gap:15px;
		margin-bottom: 50px;
	 }
	.swiper-thumb {
		width: 90px;
		height: 90px;
	 }
}


/* --------------------------------------
   　PC style
-------------------------------------- */
@media screen and (min-width: 1028px) {

	.swiper-thumb-container {
		width: 70%;
		margin: 0 auto;
	 }
}