@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : cast.css
Description : 出演者ページ ポップアップ用CSS
===================================================================== */

/* ********************************************************************
popup
******************************************************************** */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: none;
}

.popup_area {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.popup_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(248, 223, 8, 0.8);
	z-index: 1;
}

.popup_close {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(56 / 670 * 100%);
	z-index: 3;
	margin-top: calc(-70 / 670 * 100%);
}

.popup_close::before,
.popup_close::after {
	content: "";
	display: block;
	width: 2px;
	padding-top: 100%;
	background-color: #ff00a5;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: 0 auto;
}

.popup_close::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.popup_inner {
	width: calc(670 / 750 * 100%);
	margin: calc(150 / 750 * 100%) auto;
	z-index: 2;
}

.popup_details {
	display: none;
	height: 100%;
}

.cast_about,
.cast_catch2 {
	display: none;
}

.cast_box {}

.cast_photo img {
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.cast_photo_wrap figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(520 / 670 * 100%);
	background-color: #fff;
	padding: calc(20 / 670 * 100%) calc(20 / 670 * 100%) calc(50 / 670 * 100%) calc(50 / 670 * 100%);
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.cast_name {
	/* display: block; */
	color: #ff00a5;
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.2;
}

.cast_name2 {
	display: block;
	color: #be32b4;
	font-size: 1.4rem;
	font-family: 'Concert One', cursive;
}

.cast_nickname {
	/* display: block; */
	color: #be32b4;
	font-size: 1rem;
}


.cast_sns {
	width: calc(50 / 330 * 100%);
	background-color: #e52879;
	border-radius: 50%;
	padding: calc(13 / 330 * 100%);
}

.cast_catch {
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(590 / 670 * 100%);
	background-color: #f8df08;
	padding: calc(23 / 670 * 100%) calc(160 / 670 * 100%) calc(23 / 670 * 100%) calc(50 / 670 * 100%);
	margin-bottom: calc(-40 / 670 * 100%);
	border-radius: 3em 0 0 3em;
	z-index: 1;
}

.cast_catch::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(../images/cast/bg_catch_origin.png) no-repeat center/contain;
	width: calc(153 / 590 * 100%);
	padding-top: calc(182 / 590 * 100%);
}

.cast_catch p {
	font-size: 2rem;
	font-weight: 700;
}

.cast_catch1 {
	color: #ff00a5;
}

.cast_profile,
.cast_about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.cast_profile li,
.cast_about li {
	position: absolute;
	top: 0;
}

.cast_profile li::before,
.cast_about li::before {
	content: "";
	display: block;
	position: absolute;
	width: 2px;
	background-color: #FF00A5;
	padding-top: calc(25 / 750 * 100vw);
	z-index: 1;
}

.topLeft,
.bottomLeft,
.leftSide_t,
.leftSide_b {
	left: 0;
}

.topRight,
.bottomRight,
.rightSide_t,
.rightSide_b {
	right: 0;
}

.topLeft::before {
	bottom: 0;
	right: 0;
	-webkit-transform: skew(35deg);
	transform: skew(35deg);
	margin: 0 calc(40 / 750 * 100vw) calc(-25 / 750 * 100vw) 0;
}

.topRight::before {
	bottom: 0;
	left: 0;
	-webkit-transform: skew(-35deg);
	transform: skew(-35deg);
	margin: 0 0 calc(-25 / 750 * 100vw) calc(40 / 750 * 100vw);
}

.bottomLeft::before {
	top: 0;
	right: 0;
	-webkit-transform: skew(-35deg);
	transform: skew(-35deg);
	margin: calc(-25 / 750 * 100vw) calc(40 / 750 * 100vw) 0 0;
}

.bottomRight::before {
	top: 0;
	left: 0;
	-webkit-transform: skew(35deg);
	transform: skew(35deg);
	margin: calc(-25 / 750 * 100vw) 0 0 calc(40 / 750 * 100vw);
}

.leftSide_t::before {
	top: 40%;
	right: 0;
	-webkit-transform: skew(45deg);
	transform: skew(45deg);
	margin-right: calc(-15 / 750 * 100vw);
}

.leftSide_b::before {
	bottom: 40%;
	right: 0;
	-webkit-transform: skew(-45deg);
	transform: skew(-45deg);
	margin-right: calc(-15 / 750 * 100vw);
}

.rightSide_t::before {
	top: 40%;
	left: 0;
	-webkit-transform: skew(-45deg);
	transform: skew(-45deg);
	margin-left: calc(-15 / 750 * 100vw);
}

.rightSide_b::before {
	bottom: 40%;
	left: 0;
	-webkit-transform: skew(45deg);
	transform: skew(45deg);
	margin-left: calc(-15 / 750 * 100vw);
}

.cast_profile li span {
	font-size: 1.8rem;
	line-height: 1;
	display: block;
	font-weight: 700;
	color: #e811aa;
	border-radius: 2em;
	padding: .6em 2em;
	text-align: center;
	background-color: #fff;
	/*	-webkit-box-shadow: 0 0 0 2px #FF00A5;*/
	/*	box-shadow: 0 0 0 2px #FF00A5;*/
	border: 2px solid #FF00A5;
	z-index: 2;
}

.cast_box_inner {
	border-radius: 0 0 30px 30px;
	overflow: hidden;
	background: url(../images/common/bg_pattern4.jpg) repeat center top/calc(40 / 670 * 100%) auto;
	padding: calc(70 / 670 * 100%) calc(35 / 670 * 100%) calc(20 / 670 * 100%);
}

.cast_message {
	overflow: hidden;
	border-radius: 30px;
	margin-bottom: calc(20 / 610 * 100%);
}

.btn_change {
	width: calc(240 / 670 * 100%);
	margin: 0 auto;
}


/*裏var*/
.cast_about li {
	width: calc(240 / 670 * 100%);
}

.cast_about li dl {
	border-radius: 1.3em;
	overflow: hidden;
	font-size: 1.6rem;
	line-height: 1.125;
	letter-spacing: -.05em;
	-webkit-box-shadow: 0 0 0 2px #FF00A5;
	box-shadow: 0 0 0 2px #FF00A5;
	z-index: 2;
}

.cast_about dt {
	padding: 1em 1em .5em;
	color: #fff;
	background-color: rgba(190, 50, 180, 0.9);
}

.cast_about dd {
	padding: .5em 1em 1em;
	color: #e811aa;
	background-color: rgba(255, 255, 255, 0.9);
}

.cast_box2 .cast_photo_wrap figcaption {
	width: 100%;
	position: relative;
	border-top: 4px solid #e811aa;
}

.cast_box2 .cast_photo_wrap figcaption {
	padding: calc(40 / 670 * 100%) calc(150 / 670 * 100%) calc(40 / 670 * 100%) calc(50 / 670 * 100%);
}

.cast_box2.change_catch .cast_photo_wrap figcaption {
	padding: calc(30 / 670 * 100%) calc(130 / 670 * 100%) calc(65 / 670 * 100%) calc(50 / 670 * 100%);
}

.cast_box2:not(.change_catch) .cast_box_inner {
	padding: calc(30 / 670 * 100%) calc(35 / 670 * 100%) calc(30 / 670 * 100%);
}

.cast_catch2 {
	color: #ff492d;
}

.cast_box2 .ttl_catch {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(225 / 380 * 100%);
	background: url(../images/cast/bg_catch.png) no-repeat center bottom/contain;
	margin: calc(-50 / 380 * 100%) 0 0 0;
	padding-bottom: .2em;
	font-size: 1.6rem;
	line-height: 1.125;
	text-align: center;
}


@media screen and (min-width: 768px) {
	.popup_area {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.popup_bg {
		cursor: pointer;
	}

	.popup_inner {
		-ms-flex-item-align: start;
		align-self: flex-start;
		/*
		width: calc(670 / 1400 * 100%);
		max-width: 670px;
*/
		width: calc(500 / 1400 * 100%);
		max-width: 500px;
		min-width: 400px;
		padding: 0;
		margin: calc(100 / 1400 * 100%) auto;
	}

	.popup_close {
		cursor: pointer;
		-webkit-transition: 0.3s ease;
		transition: 0.3s ease;
	}

	.popup_close::before,
	.popup_close::after {
		-webkit-transition: 0.3s ease;
		transition: 0.3s ease;
	}

	.popup_close:hover::before,
	.popup_close:hover::after {
		background-color: #fff;
	}

	.popup_details {
		padding: 0;
	}

	.cast_profile li::before,
	.cast_about li::before {
		padding-top: calc(25 / 1400 * 100vw);
	}

	.topLeft::before {
		margin: 0 calc(40 / 1400 * 100vw) calc(-24 / 1400 * 100vw) 0;
	}

	.topRight::before {
		margin: 0 0 calc(-24 / 1400 * 100vw) calc(40 / 1400 * 100vw);
	}

	.bottomLeft::before {
		margin: calc(-24 / 1400 * 100vw) calc(40 / 1400 * 100vw) 0 0;
	}

	.bottomRight::before {
		margin: calc(-24 / 1400 * 100vw) 0 0 calc(40 / 1400 * 100vw);
	}

	.leftSide_t::before,
	.leftSide_b::before {
		margin-right: calc(-15 / 1400 * 100vw);
	}

	.rightSide_t::before,
	.rightSide_b::before {
		margin-left: calc(-15 / 1400 * 100vw);
	}

	.cast_sns:hover {
		background-color: #000;
	}

	.cast_box2 .ttl_catch {
		margin-top: calc(-45 / 380 * 100%);
	}

	.btn_change {
		cursor: pointer;
		-webkit-transition: .3s ease;
		transition: .3s ease;
	}

	.btn_change:hover {
		opacity: .8;
	}

	.cast_profile li span {
		font-size: 1.2rem;
	}

	.cast_name {
		font-size: 2.7rem;
	}

	.cast_name2 {
		font-size: 1rem;
	}

	.cast_nickname {
		font-size: 1.6rem;
	}
	

	.cast_catch p {
		font-size: 1.4rem;
	}

	.cast_about li dl,
	.cast_box2 .ttl_catch {
		font-size: 1.2rem;
	}

}

@media screen and (min-width: 1400px) {
	.popup_inner {
		margin: 100px auto;
	}

	.popup_close {
		width: 56px;
	}

	.cast_profile li::before,
	.cast_about li::before {
		padding-top: 25px;
	}

	.topLeft::before {
		margin: 0 40px -24px 0;
	}

	.topRight::before {
		margin: 0 0 -24px 40px;
	}

	.bottomLeft::before {
		margin: -24px 40px 0 0;
	}

	.bottomRight::before {
		margin: -24px 0 0 40px;
	}

	.leftSide_t::before,
	.leftSide_b::before {
		margin-right: -15px;
	}

	.rightSide_t::before,
	.rightSide_b::before {
		margin-left: -15px;
	}
}



/* ********************************************************************
プロフィール：吹き出し位置
******************************************************************** */

/*人物中央*/
.cast_profile li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(70 / 670 * 100%);
}

.cast_profile li:nth-child(2) {
	margin: calc(120 / 670 * 100%) calc(20 / 670 * 100%) 0 0;
}

.cast_profile li:nth-child(3) {
	margin: calc(200 / 670 * 100%) 0 0 calc(20 / 670 * 100%);
}

.cast_profile li:nth-child(4) {
	margin: calc(370 / 670 * 100%) calc(20 / 670 * 100%) 0 0;
}

.cast_profile li:nth-child(5) {
	margin: calc(450 / 670 * 100%) calc(20 / 670 * 100%) 0 0;
}


/* ********************************************************************
裏面：吹き出し位置、キャッチフレーズの画像切り替え
******************************************************************** */

/*川田 裕美*/
#cast_id_01 .cast_about li:nth-child(1) {
	margin: calc(20 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#cast_id_01 .cast_about li:nth-child(2) {
	margin: calc(25 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#cast_id_01 .cast_about li:nth-child(3) {
	margin: calc(240 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#cast_id_01 .cast_about li:nth-child(4) {
	width: calc(240 / 670 * 100%);
	margin: calc(270 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#cast_id_01 .cast_about li:nth-child(5) {
	margin: calc(450 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#cast_id_01 .cast_about li:nth-child(6) {
	margin: calc(510 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#cast_id_01 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#cast_id_01 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*朝木 茉永*/
#peachs_id_01 .cast_about li:nth-child(1) {
	margin: calc(20 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_01 .cast_about li:nth-child(2) {
	margin: calc(80 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_01 .cast_about li:nth-child(3) {
	margin: calc(270 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_01 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_01 .cast_about li:nth-child(5) {
	margin: calc(470 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_01 .cast_about li:nth-child(6) {
	margin: calc(520 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_01 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_01 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*入矢 麻衣*/
#peachs_id_02 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_02.png);
}

#peachs_id_02 .cast_about li:nth-child(1) {
	margin: calc(20 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_02 .cast_about li:nth-child(2) {
	margin: calc(25 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_02 .cast_about li:nth-child(3) {
	margin: calc(240 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_02 .cast_about li:nth-child(4) {
	margin: calc(270 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_02 .cast_about li:nth-child(5) {
	margin: calc(450 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_02 .cast_about li:nth-child(6) {
	margin: calc(510 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_02 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_02 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

/*川上 愛*/
#peachs_id_03 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_03.png);
}

#peachs_id_03 .cast_about li {
	width: calc(420 / 670 * 100%);
}

#peachs_id_03 .cast_about li:nth-child(1) {
	margin: calc(20 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(2) {
	margin: calc(140 / 670 * 100%) calc(200 / 670 * 100%) 0 0;
    width: calc(180 / 670 * 100%);
}

#peachs_id_03 .cast_about li:nth-child(3) {
	margin: calc(245 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(4) {
	/* width: calc(260 / 670 * 100%); */
	margin: calc(370 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(5) {
	width: calc(240 / 670 * 100%);
	margin: calc(500 / 670 * 100%) calc(220 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(6) {
	width: calc(200 / 670 * 100%);
	margin: calc(500 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(7) {
	width: calc(500 / 670 * 100%);
	margin: calc(610 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_03 .cast_about li:nth-child(8) {
	width: calc(540 / 670 * 100%);
	margin: calc(740 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}


/*杉枝 真結*/
#peachs_id_04 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_04.png);
}

#peachs_id_04 .cast_about li {
	width: calc(420 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(1) {
	margin: calc(10 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(2) {
	margin: calc(110 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(3) {
	margin: calc(230 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(4) {
	width: calc(500 / 670 * 100%);
	margin: calc(365 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(5) {
	width: calc(280 / 670 * 100%);
	margin: calc(480 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(6) {
	width: calc(280 / 670 * 100%);
	margin: calc(480 / 670 * 100%) 0 0 calc(300 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(7) {
	width: 100%;
	margin: calc(600 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_04 .cast_about li:nth-child(8) {
	width: calc(600 / 670 * 100%);
	margin: calc(720 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}


/*武井 玲奈*/
#peachs_id_05 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_05.png);
}

#peachs_id_05 .cast_about li {
	width: calc(330 / 670 * 100%);
}

#peachs_id_05 .cast_about li:nth-child(1) {
	width: calc(420 / 670 * 100%);
	margin: calc(10 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(2) {
	margin: calc(135 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(3) {
	margin: calc(265 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(4) {
	width: calc(500 / 670 * 100%);
	margin: calc(390 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(5) {
	width: calc(220 / 670 * 100%);
    margin: calc(500 / 670 * 100%) calc(280 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(6) {
	width: calc(270 / 670 * 100%);
    margin: calc(500 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(7) {
	width: calc(330 / 670 * 100%);
	margin: calc(610 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_05 .cast_about li:nth-child(8) {
	width: calc(540 / 670 * 100%);
	margin: calc(720 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}


/*竹内 咲季*/
#peachs_id_06 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_06.png);
}

#peachs_id_06 .cast_about li {
	width: calc(330 / 670 * 100%);
}

#peachs_id_06 .cast_about li:nth-child(1) {
	margin: calc(45 / 670 * 100%) calc(160 / 670 * 100%) 0 0;
    width: calc(180 / 670 * 100%);
}

#peachs_id_06 .cast_about li:nth-child(2) {
	margin: calc(155 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_06 .cast_about li:nth-child(3) {
	margin: calc(280 / 670 * 100%) calc(80 / 670 * 100%) 0 0;
    width: calc(230 / 670 * 100%);
}

#peachs_id_06 .cast_about li:nth-child(4) {
	width: calc(440 / 670 * 100%);
    margin: calc(385 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_06 .cast_about li:nth-child(5) {
	width: calc(180 / 670 * 100%);
    margin: calc(490 / 670 * 100%) calc(200 / 670 * 100%) 0 0;
}

#peachs_id_06 .cast_about li:nth-child(6) {
	width: calc(180 / 670 * 100%);
    margin: calc(490 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_06 .cast_about li:nth-child(7) {
	width: calc(330 / 670 * 100%);
    margin: calc(600 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_06 .cast_about li:nth-child(8) {
	width: calc(400 / 670 * 100%);
    margin: calc(710 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}


/*中村 葵*/
#peachs_id_07 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_07.png);
}

#peachs_id_07 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_07 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_07 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_07 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_07 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_07 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_07 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_07 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*早坂 風梅*/
#peachs_id_08 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_08 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_08 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_08 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_08 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_08 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_08 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_08 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*林 穂乃花*/
#peachs_id_09 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_09.png);
}

#peachs_id_09 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_09 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_09 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_09 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_09 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_09 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_09 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_09 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*松山メアリ*/
#peachs_id_10 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_10.png);
}

#peachs_id_10 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_10 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_10 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_10 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_10 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_10 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_10 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_10 .cast_about li:nth-child(8) {
	margin: calc(700 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*緑川 静香*/
#peachs_id_11 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_11.png);
}

#peachs_id_11 .cast_about li {
	width: calc(330 / 670 * 100%);
}

#peachs_id_11 .cast_about li:nth-child(1) {
	width: calc(420 / 670 * 100%);
    margin: calc(40 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(2) {
	margin: calc(165 / 670 * 100%) calc(140 / 670 * 100%) 0 0;
    width: calc(180 / 670 * 100%);
}

#peachs_id_11 .cast_about li:nth-child(3) {
	margin: calc(270 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(4) {
	width: calc(550 / 670 * 100%);
    margin: calc(395 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(5) {
	width: calc(180 / 670 * 100%);
    margin: calc(520 / 670 * 100%) calc(230 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(6) {
	width: calc(210 / 670 * 100%);
    margin: calc(520 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(7) {
	width: calc(360 / 670 * 100%);
    margin: calc(625 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_11 .cast_about li:nth-child(8) {
	width: calc(330 / 670 * 100%);
    margin: calc(730 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}


/*森山 くるみ*/
#peachs_id_12 .cast_box2 .cast_catch::before {
	background-image: url(../images/cast/bg_catch_12.png);
}

#peachs_id_12 .cast_about li {
	width: calc(400 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(2) {
	margin: calc(150 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(3) {
	width: calc(410 / 670 * 100%);
    margin: calc(268 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(4) {
	width: calc(460 / 670 * 100%);
    margin: calc(385 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(5) {
	width: calc(230 / 670 * 100%);
    margin: calc(520 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(6) {
	width: calc(260 / 670 * 100%);
    margin: calc(520 / 670 * 100%) 0 0 calc(240 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(7) {
	width: calc(330 / 670 * 100%);
    margin: calc(655 / 670 * 100%) 0 0 calc(70 / 670 * 100%);
}

#peachs_id_12 .cast_about li:nth-child(8) {
	width: calc(500 / 670 * 100%);
    margin: calc(753 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}


/*山本 瑠香*/
#peachs_id_13 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_13 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_13 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_13 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_13 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_13 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_13 .cast_about li:nth-child(7) {
	margin: calc(675 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_13 .cast_about li:nth-child(8) {
	margin: calc(720 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*ローズ ありさ*/
#peachs_id_14 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_14 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_14 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_14 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_14 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_14 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_14 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_14 .cast_about li:nth-child(8) {
	margin: calc(670 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}


/*笑福亭喬明*/
#peachs_id_15 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_15 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_15 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_15 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_15 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_15 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_15 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_15 .cast_about li:nth-child(8) {
	margin: calc(670 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

/*大平萌笑*/
#peachs_id_16 .cast_about li:nth-child(1) {
	margin: calc(30 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_16 .cast_about li:nth-child(2) {
	margin: calc(90 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_16 .cast_about li:nth-child(3) {
	margin: calc(220 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_16 .cast_about li:nth-child(4) {
	margin: calc(300 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

#peachs_id_16 .cast_about li:nth-child(5) {
	margin: calc(440 / 670 * 100%) 0 0 calc(-20 / 670 * 100%);
}

#peachs_id_16 .cast_about li:nth-child(6) {
	margin: calc(500 / 670 * 100%) calc(-20 / 670 * 100%) 0 0;
}

#peachs_id_16 .cast_about li:nth-child(7) {
	margin: calc(650 / 670 * 100%) 0 0 calc(-40 / 670 * 100%);
}

#peachs_id_16 .cast_about li:nth-child(8) {
	margin: calc(670 / 670 * 100%) calc(-40 / 670 * 100%) 0 0;
}

