@charset "UTF-8";
/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
	position: relative;
	height: 100%;
  /* コンテナの高さ */
	width: 100%;
  /* コンテナの横幅 */
	overflow: hidden;
  /* コンテナからはみ出した要素を隠す */
}

/* 桜の花びらのスタイル */
.petal {
	position: absolute;
	background-color: #ffc0cb;
  /* 花びらの色 */
	border-radius: 150% 0 150% 0;
	-webkit-animation: animate-petal 10s linear;
	animation: animate-petal 10s linear;
}

.petal::after {
	content: "";
	position: absolute;
	top: -14%;
	left: -10%;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffc0cb;
	border-radius: 150% 0 150% 0;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

/* 花びらが降るアニメーション */
@-webkit-keyframes animate-petal {
	0% {
		top: 0;
		opacity: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		top: 100vh;
		-webkit-transform: rotate(3000deg);
		transform: rotate(3000deg);
	}
}

@keyframes animate-petal {
	0% {
		top: 0;
		opacity: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		top: 100vh;
		-webkit-transform: rotate(3000deg);
		transform: rotate(3000deg);
	}
}

.mainVisual {
	position: relative;
	min-width: 1240px;
	overflow: hidden;
	line-height: 0;
}

.mainVisual__img {
	width: 100%;
}

.headerNav {
	width: 100%;
	background: #FFFFFF;
	padding-top: 40px;
	text-align: center;
}

.headerNav .headerNav__title {
	font-size: 32px;
	font-weight: bold;
}

.headerNav__list {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	text-align: center;
	padding: 25px 0 25px;
	background: rgba(255, 255, 255, 0.8);
	z-index: 9;
}

.headerNav__list .listItem {
	display: inline-block;
	margin-right: 10px;
}

.headerNav__list .listItem:last-child {
	margin-right: 0;
}

.headerNav__list .listItem a {
	display: block;
	width: 190px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	color: #FFFFFF;
}

.headerNav__list .listItem.listItem--kanto {
	outline: 2px solid #FF6F98;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--kanto a {
	background-color: #FF6F98;
}

.headerNav__list .listItem.listItem--kanto a:hover {
	color: #FF6F98;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--kanto.current-area a {
	color: #FF6F98;
	background: #fff;
}

.headerNav__list .listItem.listItem--kansai {
	outline: 2px solid #4BCFEB;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--kansai a {
	background-color: #4BCFEB;
}

.headerNav__list .listItem.listItem--kansai a:hover {
	color: #4BCFEB;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--kansai.current-area a {
	color: #4BCFEB;
	background: #fff;
}

.headerNav__list .listItem.listItem--chubu {
	outline: 2px solid #BF5DD1;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--chubu a {
	background-color: #BF5DD1;
}

.headerNav__list .listItem.listItem--chubu a:hover {
	color: #BF5DD1;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--chubu.current-area a {
	color: #BF5DD1;
	background: #fff;
}

.headerNav__list .listItem.listItem--kyushu_okinawa {
	outline: 2px solid #F0733C;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--kyushu_okinawa a {
	background-color: #F0733C;
}

.headerNav__list .listItem.listItem--kyushu_okinawa a:hover {
	color: #F0733C;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--kyushu_okinawa.current-area a {
	color: #F0733C;
	background: #fff;
}

.headerNav__list .listItem.listItem--hokkaido_tohoku {
	outline: 2px solid #9DCB30;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--hokkaido_tohoku a {
	background-color: #9DCB30;
}

.headerNav__list .listItem.listItem--hokkaido_tohoku a:hover {
	color: #9DCB30;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--hokkaido_tohoku.current-area a {
	color: #9DCB30;
	background: #fff;
}

.headerNav__list .listItem.listItem--chugoku_shikoku {
	outline: 2px solid #30D0A2;
	outline-offset: -2px;
}

.headerNav__list .listItem.listItem--chugoku_shikoku a {
	background-color: #30D0A2;
}

.headerNav__list .listItem.listItem--chugoku_shikoku a:hover {
	color: #30D0A2;
	background-color: #fff;
}

.headerNav__list .listItem.listItem--chugoku_shikoku.current-area a {
	color: #30D0A2;
	background: #fff;
}

.secondaryVisual {
	display: block;
	width: 100%;
}

.g-wrapper {
	background: none;
}

.row-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}

.row-container:last-of-type {
	margin-bottom: 0;
}

.first-rank-girl {
	position: relative;
	height: 592px;
	overflow-x: hidden;
}

.first-rank-girl__bg-img {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 100%;
	max-width: none;
	z-index: -1;
}

.first-rank-girl__contents-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 112px auto 0 auto;
	width: 980px;
}

.first-rank-girl__contents--entry-img {
	width: 400px;
	height: 400px;
	border: 5px solid;
	border-radius: 50%;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 12px #00000033;
	box-shadow: 0px 5px 12px #00000033;
	z-index: 2;
}

.first-rank-girl__contents--entry-img :hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.first-rank-girl__contents--entry-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.first-rank-girl__contents--entry-img--kanto {
	border-color: #FF6F98;
}

.first-rank-girl__contents--entry-img--kansai {
	border-color: #4BCFEB;
}

.first-rank-girl__contents--entry-img--chubu {
	border-color: #BF5DD1;
}

.first-rank-girl__contents--entry-img--kyushu_okinawa {
	border-color: #F0733C;
}

.first-rank-girl__contents--entry-img--hokkaido_tohoku {
	border-color: #9DCB30;
}

.first-rank-girl__contents--entry-img--chugoku_shikoku {
	border-color: #30D0A2;
}

.first-rank-girl__contents--right .girls-info {
	width: 500px;
	background: #FFFFFF;
	margin-top: 60px;
	padding: 19px 26px;
	border: solid 5px;
	border-radius: 16px;
	-webkit-box-shadow: 0px 3px 6px #00000029;
	box-shadow: 0px 3px 6px #00000029;
}

.first-rank-girl__contents--right .girls-info--kanto {
	border-color: #FF6F98;
}

.first-rank-girl__contents--right .girls-info--kansai {
	border-color: #4BCFEB;
}

.first-rank-girl__contents--right .girls-info--chubu {
	border-color: #BF5DD1;
}

.first-rank-girl__contents--right .girls-info--kyushu_okinawa {
	border-color: #F0733C;
}

.first-rank-girl__contents--right .girls-info--hokkaido_tohoku {
	border-color: #9DCB30;
}

.first-rank-girl__contents--right .girls-info--chugoku_shikoku {
	border-color: #30D0A2;
}

.first-rank-girl__contents--right .girls-info .girl-name {
	font-size: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.first-rank-girl__contents--right .girls-info .shop-name {
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.first-rank-girl__contents--right .girls-info .business-type-label {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 3px 5px;
	border-radius: 3px;
	color: #FFFFFF;
	font-size: 14px;
	margin-right: 10px;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--delihel {
	background-color: #69A7FC;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--hotehel {
	background-color: #9E81FF;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--health {
	background-color: #FFB95A;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--pinksalon {
	background-color: #FF81A8;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--soap {
	background-color: #71D3FF;
}

.first-rank-girl__contents--right .girls-info .business-type-label.label--fuzoku-esthe {
	background-color: #17AC7E;
}

.first-rank-girl__contents--right .girls-info .shop-area {
	font-size: 14px;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 45px;
	height: 45px;
	margin-right: 10px;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size span {
	font-size: 34px;
	color: #FFFFFF;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--kanto {
	background-color: #FF6F98;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--kansai {
	background-color: #4BCFEB;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--chubu {
	background-color: #BF5DD1;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--kyushu_okinawa {
	background-color: #F0733C;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--hokkaido_tohoku {
	background-color: #9DCB30;
}

.first-rank-girl__contents--right .girls-info .bust-cup-size--chugoku_shikoku {
	background-color: #30D0A2;
}

.first-rank-girl__contents--right .girls-info .girl-detail {
	font-size: 16px;
}

.first-rank-girl__contents--right .girls-info .link-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 210px;
	height: 38px;
	color: #FFFFFF;
	font-size: 15px;
	border-radius: 5px;
	margin-top: 5px;
}

.first-rank-girl__contents--right .girls-info .link-button:first-of-type {
	margin-right: auto;
}

.first-rank-girl__contents--right .girls-info .link-button--kanto {
	background-color: #FF6F98;
}

.first-rank-girl__contents--right .girls-info .link-button--kansai {
	background-color: #4BCFEB;
}

.first-rank-girl__contents--right .girls-info .link-button--chubu {
	background-color: #BF5DD1;
}

.first-rank-girl__contents--right .girls-info .link-button--kyushu_okinawa {
	background-color: #F0733C;
}

.first-rank-girl__contents--right .girls-info .link-button--hokkaido_tohoku {
	background-color: #9DCB30;
}

.first-rank-girl__contents--right .girls-info .link-button--chugoku_shikoku {
	background-color: #30D0A2;
}

.first-rank-girl__contents--right .to-area-result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 460px;
	height: 70px;
	font-size: 19px;
	font-weight: bold;
	background: #FFFFFF;
	border: solid 2px;
	border-radius: 70px;
	margin: 30px auto 0;
	-webkit-box-shadow: 0px 4px 16px #00000029;
	box-shadow: 0px 4px 16px #00000029;
}

.first-rank-girl__contents--right .to-area-result--kanto {
	color: #FF6F98;
	border-color: #FF6F98;
}

.first-rank-girl__contents--right .to-area-result--kansai {
	color: #4BCFEB;
	border-color: #4BCFEB;
}

.first-rank-girl__contents--right .to-area-result--chubu {
	color: #BF5DD1;
	border-color: #BF5DD1;
}

.first-rank-girl__contents--right .to-area-result--kyushu_okinawa {
	color: #F0733C;
	border-color: #F0733C;
}

.first-rank-girl__contents--right .to-area-result--hokkaido_tohoku {
	color: #9DCB30;
	border-color: #9DCB30;
}

.first-rank-girl__contents--right .to-area-result--chugoku_shikoku {
	color: #30D0A2;
	border-color: #30D0A2;
}

.to-area-result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 460px;
	height: 70px;
	font-size: 19px;
	font-weight: bold;
	background: #FFFFFF;
	border: solid 2px;
	border-radius: 70px;
	margin: 455px auto 0;
	-webkit-box-shadow: 0px 4px 16px #00000029;
	box-shadow: 0px 4px 16px #00000029;
}

.to-area-result--kanto {
	color: #FF6F98;
	border-color: #FF6F98;
}

.to-area-result--kansai {
	color: #4BCFEB;
	border-color: #4BCFEB;
}

.to-area-result--chubu {
	color: #BF5DD1;
	border-color: #BF5DD1;
}

.to-area-result--kyushu_okinawa {
	color: #F0733C;
	border-color: #F0733C;
}

.to-area-result--hokkaido_tohoku {
	color: #9DCB30;
	border-color: #9DCB30;
}

.to-area-result--chugoku_shikoku {
	color: #30D0A2;
	border-color: #30D0A2;
}

@media screen and (max-width: 1500px) {
	.row-container {
		margin-bottom: 0.3rem;
	}

	.first-rank-girl {
		height: 30.83vw;
		min-height: 418px;
	}

	.first-rank-girl__contents-container {
		margin: 5.2rem auto 0 auto;
		width: 52%;
		min-width: 690px;
	}

	.first-rank-girl__contents--entry-img {
		width: 19.4rem;
		height: 19.4rem;
	}

	.first-rank-girl__contents--right .girls-info {
		width: 23.5rem;
		margin-top: 2.8rem;
		padding: 0.9rem 1.2rem;
		border: solid 0.3rem;
		border-radius: 1rem;
	}

	.first-rank-girl__contents--right .girls-info--kanto {
		border-color: #FF6F98;
	}

	.first-rank-girl__contents--right .girls-info--kansai {
		border-color: #4BCFEB;
	}

	.first-rank-girl__contents--right .girls-info--chubu {
		border-color: #BF5DD1;
	}

	.first-rank-girl__contents--right .girls-info--kyushu_okinawa {
		border-color: #F0733C;
	}

	.first-rank-girl__contents--right .girls-info--hokkaido_tohoku {
		border-color: #9DCB30;
	}

	.first-rank-girl__contents--right .girls-info--chugoku_shikoku {
		border-color: #30D0A2;
	}

	.first-rank-girl__contents--right .girls-info .girl-name {
		font-size: 1.4rem;
		margin-bottom: 0.3rem;
	}

	.first-rank-girl__contents--right .girls-info .shop-name {
		font-size: 0.9rem;
		margin-bottom: 0.3rem;
	}

	.first-rank-girl__contents--right .girls-info .business-type-label {
		padding: 0.1rem 0.3rem;
		border-radius: 0.2rem;
		font-size: 0.6rem;
		margin-right: 0.4rem;
	}

	.first-rank-girl__contents--right .girls-info .shop-area {
		font-size: 0.9rem;
	}

	.first-rank-girl__contents--right .girls-info .bust-cup-size {
		width: 2.1rem;
		height: 2.1rem;
		margin-right: 0.6rem;
	}

	.first-rank-girl__contents--right .girls-info .bust-cup-size span {
		font-size: 1.5rem;
	}

	.first-rank-girl__contents--right .girls-info .girl-detail {
		font-size: 1rem;
	}

	.first-rank-girl__contents--right .girls-info .link-button {
		width: 9.8rem;
		height: 1.8rem;
		font-size: 0.9rem;
		border-radius: 0.4rem;
		margin-top: 0.4rem;
	}

	.first-rank-girl__contents--right .to-area-result {
		width: 21.8rem;
		height: 3.5rem;
		font-size: 1rem;
		background: #FFFFFF;
		border-radius: 4.6rem;
		margin: 1.6rem auto 0;
	}

	.to-area-result {
		width: 21.8rem;
		height: 3.5rem;
		font-size: 1rem;
		border-radius: 3.5rem;
		margin: 335px auto 0;
	}
}

.second-and-below-girls-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 1200px;
	margin: 50px auto;
}

.second-and-below {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 590px;
	height: 312px;
	border: 5px solid;
	border-radius: 16px;
	padding: 35px 30px;
	margin-bottom: 20px;
}

.second-and-below:nth-last-of-type(-n+2) {
	margin-bottom: 0px;
}

.second-and-below--kanto {
	border-color: #FF6F98;
}

.second-and-below--kansai {
	border-color: #4BCFEB;
}

.second-and-below--chubu {
	border-color: #BF5DD1;
}

.second-and-below--kyushu_okinawa {
	border-color: #F0733C;
}

.second-and-below--hokkaido_tohoku {
	border-color: #9DCB30;
}

.second-and-below--chugoku_shikoku {
	border-color: #30D0A2;
}

.second-and-below__entry-img {
	display: block;
	width: 230px;
	height: 230px;
	border: 3px solid;
	border-radius: 50%;
	overflow: hidden;
	-webkit-box-shadow: 0px 5px 12px #00000033;
	box-shadow: 0px 5px 12px #00000033;
	z-index: 2;
}

.second-and-below__entry-img :hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.second-and-below__entry-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.second-and-below__entry-img--kanto {
	border-color: #FF6F98;
}

.second-and-below__entry-img--kansai {
	border-color: #4BCFEB;
}

.second-and-below__entry-img--chubu {
	border-color: #BF5DD1;
}

.second-and-below__entry-img--kyushu_okinawa {
	border-color: #F0733C;
}

.second-and-below__entry-img--hokkaido_tohoku {
	border-color: #9DCB30;
}

.second-and-below__entry-img--chugoku_shikoku {
	border-color: #30D0A2;
}

.second-and-below__right-contents {
	width: 50%;
	margin-left: 30px;
}

.second-and-below__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: -15px 0 10px 0;
	position: relative;
}

.second-and-below__heading--main {
	font-size: 24px;
	letter-spacing: 1.2px;
}

.second-and-below__heading--main span {
	font-size: 20px;
	letter-spacing: 1px;
}

.second-and-below__heading--rank--kanto {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--kanto b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--kanto::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #FF6F98;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--rank--kansai {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--kansai b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--kansai::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #4BCFEB;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--rank--chubu {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--chubu b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--chubu::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #BF5DD1;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--rank--kyushu_okinawa {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--kyushu_okinawa b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--kyushu_okinawa::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #F0733C;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--rank--hokkaido_tohoku {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--hokkaido_tohoku b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--hokkaido_tohoku::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #9DCB30;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--rank--chugoku_shikoku {
	position: relative;
	font: normal normal normal 30px/50px Impact;
	letter-spacing: 3px;
}

.second-and-below__heading--rank--chugoku_shikoku b {
	font: normal normal normal 40px/50px Impact;
}

.second-and-below__heading--rank--chugoku_shikoku::before {
	position: absolute;
	display: inline-block;
	content: '';
	width: 2px;
	height: 50%;
	background: #30D0A2;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.second-and-below__heading--kanto {
	color: #FF6F98;
}

.second-and-below__heading--kanto::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #FF6F98;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--kansai {
	color: #4BCFEB;
}

.second-and-below__heading--kansai::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #4BCFEB;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--chubu {
	color: #BF5DD1;
}

.second-and-below__heading--chubu::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #BF5DD1;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--kyushu_okinawa {
	color: #F0733C;
}

.second-and-below__heading--kyushu_okinawa::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #F0733C;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--hokkaido_tohoku {
	color: #9DCB30;
}

.second-and-below__heading--hokkaido_tohoku::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #9DCB30;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--chugoku_shikoku {
	color: #30D0A2;
}

.second-and-below__heading--chugoku_shikoku::after {
	position: absolute;
	display: block;
	content: '';
	width: 110%;
	height: 2px;
	background: #30D0A2;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.second-and-below__heading--hokkaido_tohoku .second-and-below__heading--main, .second-and-below__heading--kyushu_okinawa .second-and-below__heading--main, .second-and-below__heading--chugoku_shikoku .second-and-below__heading--main {
	font-size: 21px;
}

.second-and-below__heading--hokkaido_tohoku .second-and-below__heading--main span, .second-and-below__heading--kyushu_okinawa .second-and-below__heading--main span, .second-and-below__heading--chugoku_shikoku .second-and-below__heading--main span {
	font-size: 16px;
}

.second-and-below__heading--hokkaido_tohoku .second-and-below__heading--rank--hokkaido_tohoku, .second-and-below__heading--kyushu_okinawa .second-and-below__heading--rank--hokkaido_tohoku, .second-and-below__heading--chugoku_shikoku .second-and-below__heading--rank--hokkaido_tohoku {
	font: normal normal normal 20px/35px Impact;
}

.second-and-below__heading--hokkaido_tohoku .second-and-below__heading--rank--hokkaido_tohoku b, .second-and-below__heading--kyushu_okinawa .second-and-below__heading--rank--hokkaido_tohoku b, .second-and-below__heading--chugoku_shikoku .second-and-below__heading--rank--hokkaido_tohoku b {
	font: normal normal normal 30px/40px Impact;
}

.second-and-below__girls-info--girl-name {
	font-size: 22px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.second-and-below__girls-info--shop-name {
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.second-and-below__girls-info .business-type-label {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 3px 5px;
	border-radius: 3px;
	color: #FFFFFF;
	font-size: 14px;
	margin-right: 10px;
}

.second-and-below__girls-info .business-type-label.label--delihel {
	background-color: #69A7FC;
}

.second-and-below__girls-info .business-type-label.label--hotehel {
	background-color: #9E81FF;
}

.second-and-below__girls-info .business-type-label.label--health {
	background-color: #FFB95A;
}

.second-and-below__girls-info .business-type-label.label--pinksalon {
	background-color: #FF81A8;
}

.second-and-below__girls-info .business-type-label.label--soap {
	background-color: #71D3FF;
}

.second-and-below__girls-info .business-type-label.label--fuzoku-esthe {
	background-color: #17AC7E;
}

.second-and-below__girls-info .shop-area {
	font-size: 14px;
}

.second-and-below .link-button-container {
	margin-top: 20px;
}

.second-and-below .link-button-container .link-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 240px;
	height: 32px;
	color: #FFFFFF;
	font-size: 12px;
	border-radius: 2px;
	margin-top: 5px;
}

.second-and-below .link-button-container .link-button:first-of-type {
	margin-top: 0;
}

.second-and-below .link-button-container .link-button--kanto {
	background-color: #FF6F98;
}

.second-and-below .link-button-container .link-button--kansai {
	background-color: #4BCFEB;
}

.second-and-below .link-button-container .link-button--chubu {
	background-color: #BF5DD1;
}

.second-and-below .link-button-container .link-button--kyushu_okinawa {
	background-color: #F0733C;
}

.second-and-below .link-button-container .link-button--hokkaido_tohoku {
	background-color: #9DCB30;
}

.second-and-below .link-button-container .link-button--chugoku_shikoku {
	background-color: #30D0A2;
}

.entry-girls {
	padding-top: 40px;
}

.entry-girls .title-area {
	font-size: 44px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 44px;
	margin-bottom: 50px;
}

.entry-girls .title-area span {
	font-size: 35px;
}

.entry-girls .title-area.title-area--kanto {
	color: #FF6F98;
}

.entry-girls .title-area.title-area--kansai {
	color: #4BCFEB;
}

.entry-girls .title-area.title-area--chubu {
	color: #BF5DD1;
}

.entry-girls .title-area.title-area--kyushu_okinawa {
	color: #F0733C;
}

.entry-girls .title-area.title-area--hokkaido_tohoku {
	color: #9DCB30;
}

.entry-girls .title-area.title-area--chugoku_shikoku {
	color: #30D0A2;
}

.girlsList-wrapper {
	margin: 0 auto;
	width: 1240px;
}

.girlsList {
	margin-bottom: 24px;
	padding: 16px 16px 6px 16px;
	overflow: hidden;
	text-align: left;
}

.girlsList .listItem {
	margin-bottom: 10px;
	width: 20%;
	float: left;
	position: relative;
}

.girlsList .listItem .girls-card {
	position: relative;
	display: block;
	width: 100%;
}

.girlsList .listItem .girls-card::before {
	content: "";
	display: block;
	padding-top: 133.33333%;
	z-index: -1;
}

.girlsList .listItem .girls-card .entry-img-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.girlsList .listItem .girls-card .entry-img-wrapper .entry-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.girlsList .listItem .girls-card .girlsDetail {
	padding: 0 10px;
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
}

.girlsList .listItem .girls-card .girlsDetail .girlsName {
	margin: 8px 0 2px;
	font-size: 16px;
	font-weight: bold;
	vertical-align: top;
}

.girlsList .listItem .girls-card .girlsDetail .girlsName .ellipsis {
	max-width: 220px;
}

.girlsList .listItem .girls-card .girlsDetail .girlsName .ellipsis--existsLabel {
	max-width: 150px;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 3px 5px;
	float: right;
	margin-top: -6px;
	border-radius: 3px;
	font-size: 11px;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--delihel {
	background-color: #69A7FC;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--hotehel {
	background-color: #9E81FF;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--health {
	background-color: #FFB95A;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--pinksalon {
	background-color: #FF81A8;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--soap {
	background-color: #71D3FF;
}

.girlsList .listItem .girls-card .girlsDetail .business-type-label.label--fuzoku-esthe {
	background-color: #17AC7E;
}

.girlsList .listItem .girls-card .girlsDetail .shop-name {
	font-size: 12px;
}

.girlsList .listItem .girls-card .girlsDetail .shop-name .ellipsis {
	max-width: 220px;
}

.girlsList .listItem .girl-introductory-movie-modal-open {
	position: absolute;
	bottom: 88px;
	left: 8px;
	display: inline-block;
	width: 110px;
	height: 32px;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	background-image: url("/assets/img/user/pc/queen/season1/douga_btn.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.girlsList .listItem .girl-introductory-movie-modal-open:hover {
	background-image: url("/assets/img/user/pc/queen/season1/dougawomiru_btn.svg");
}

.buttonList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 30px;
	text-align: center;
}

.buttonList span {
	font-size: 13px;
	line-height: 30px;
}

.buttonList__voteButton {
	width: 50%;
	background: #F3F3F3;
	cursor: pointer;
}

.buttonList__voteButton:hover.kanto {
	background-color: #FFE9F1;
}

.buttonList__voteButton:hover.kanto span {
	color: #FF6F98;
}

.buttonList__voteButton:hover.kansai {
	background-color: #EBFBFF;
}

.buttonList__voteButton:hover.kansai span {
	color: #4BCFEB;
}

.buttonList__voteButton:hover.chubu {
	background-color: #FDF2FF;
}

.buttonList__voteButton:hover.chubu span {
	color: #BF5DD1;
}

.buttonList__voteButton:hover.kyushu_okinawa {
	background-color: #FFF2EC;
}

.buttonList__voteButton:hover.kyushu_okinawa span {
	color: #F0733C;
}

.buttonList__voteButton:hover.hokkaido_tohoku {
	background-color: #FAFFEE;
}

.buttonList__voteButton:hover.hokkaido_tohoku span {
	color: #9DCB30;
}

.buttonList__voteButton:hover.chugoku_shikoku {
	background-color: #ECFFFA;
}

.buttonList__voteButton:hover.chugoku_shikoku span {
	color: #30D0A2;
}

.buttonList__voteButton.voted {
	cursor: default;
}

.buttonList__voteButton.voted.kanto {
	background-color: #FFE9F1;
}

.buttonList__voteButton.voted.kanto span {
	color: #FF6F98;
}

.buttonList__voteButton.voted.kansai {
	background-color: #EBFBFF;
}

.buttonList__voteButton.voted.kansai span {
	color: #4BCFEB;
}

.buttonList__voteButton.voted.chubu {
	background-color: #FDF2FF;
}

.buttonList__voteButton.voted.chubu span {
	color: #BF5DD1;
}

.buttonList__voteButton.voted.kyushu_okinawa {
	background-color: #FFF2EC;
}

.buttonList__voteButton.voted.kyushu_okinawa span {
	color: #F0733C;
}

.buttonList__voteButton.voted.hokkaido_tohoku {
	background-color: #FAFFEE;
}

.buttonList__voteButton.voted.hokkaido_tohoku span {
	color: #9DCB30;
}

.buttonList__voteButton.voted.chugoku_shikoku {
	background-color: #ECFFFA;
}

.buttonList__voteButton.voted.chugoku_shikoku span {
	color: #30D0A2;
}

.buttonList__voteButton--end {
	width: 50%;
	background-color: #EBEBEB;
	cursor: default;
}

.buttonList__keepButton {
	width: 50%;
	cursor: pointer;
	color: #fff;
	background: #555;
}

.buttonList__keepButton:hover.kanto {
	background: #FF6F98;
}

.buttonList__keepButton:hover.kansai {
	background: #4BCFEB;
}

.buttonList__keepButton:hover.chubu {
	background: #BF5DD1;
}

.buttonList__keepButton:hover.kyushu_okinawa {
	background: #F0733C;
}

.buttonList__keepButton:hover.hokkaido_tohoku {
	background: #9DCB30;
}

.buttonList__keepButton:hover.chugoku_shikoku {
	background: #30D0A2;
}

.buttonList__keepButton.kept.kanto {
	background: #FF6F98;
}

.buttonList__keepButton.kept.kansai {
	background: #4BCFEB;
}

.buttonList__keepButton.kept.chubu {
	background: #BF5DD1;
}

.buttonList__keepButton.kept.kyushu_okinawa {
	background: #F0733C;
}

.buttonList__keepButton.kept.hokkaido_tohoku {
	background: #9DCB30;
}

.buttonList__keepButton.kept.chugoku_shikoku {
	background: #30D0A2;
}

.recruit-bnr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ECECEC 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 3px 6px #00000008;
	box-shadow: 0px 3px 6px #00000008;
	height: 200px;
	width: 100%;
}

.e-yoyaku-bnr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #ECECEC 0% 0% no-repeat padding-box;
	-webkit-box-shadow: 0px 3px 6px #00000008;
	box-shadow: 0px 3px 6px #00000008;
	height: 200px;
	width: 100%;
}

.sns-share {
	width: 550px;
	margin: 30px auto;
}

.sns-share__heading {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 1.76px;
	text-align: center;
}

.sns-share__heading span {
	color: #F8116F;
}

.sns-share__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 75%;
	margin: 20px auto 0 auto;
}

.girl-modal-back {
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.girl-modal-back .girl-modal-box {
	width: 1000px;
	height: 100%;
	margin: auto;
	position: relative;
}

.girl-modal-back .girl-modal-box .girl-modal-slide {
	width: 720px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal {
	background: #fff;
	height: 500px;
	border-radius: 1rem;
	padding: 50px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents {
	height: 340px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-movie {
	float: left;
	width: 340px;
	height: 340px;
	margin: 0;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-movie video {
	width: 100%;
	height: 340px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-movie:after {
	width: 100px;
	height: 100px;
	content: "";
	position: absolute;
	top: 180px;
	left: 180px;
	z-index: 10;
	background: url(https://d1n0u9i3ossclx.cloudfront.net/devsystemfiles.ranking-deli.jp/assets/img/user/pc/missekichika/movie_play.svg) 0 0 no-repeat;
	opacity: 0.7;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-movie.play-movie::after {
	background: none;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info {
	position: relative;
	float: right;
	width: 250px;
	height: 340px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .event-logo {
	position: relative;
	height: 100px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .event-logo img {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	max-height: 120px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 20px;
	font-size: 22px;
	height: 29px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--kanto a {
	color: #FF6F98;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--kansai a {
	color: #4BCFEB;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--chubu a {
	color: #BF5DD1;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--kyushu_okinawa a {
	color: #F0733C;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--hokkaido_tohoku a {
	color: #9DCB30;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-name--chugoku_shikoku a {
	color: #30D0A2;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-shop-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 5px;
	font-size: 14px;
	height: 39px;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-shop-name:hover {
	opacity: 0.7;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-member-info {
	position: relative;
	width: 200px;
	height: 20px;
	line-height: 20px;
	background: #E10000;
	color: #fdedb5;
	border-radius: 1rem;
	font-size: 14px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: bold;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-member-info a {
	color: #fdedb5;
	text-decoration: underline;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-member-info a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-member-info:after {
	position: absolute;
	content: '';
	display: block;
	margin-left: 25%;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid #E10000;
	width: 7px;
	z-index: 1;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area {
	position: absolute;
	bottom: 0;
	height: 30px;
	width: 100%;
	color: #fff;
	line-height: 30px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--kanto {
	background-color: #FF6F98;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--kansai {
	background-color: #4BCFEB;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--chubu {
	background-color: #BF5DD1;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--kyushu_okinawa {
	background-color: #F0733C;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--hokkaido_tohoku {
	background-color: #9DCB30;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-contents .girl-info .girl-modal-area--chugoku_shikoku {
	background-color: #30D0A2;
}

.girl-modal-back .girl-modal-box .girl-modal-slide .swiper-wrapper .girl-modal .girl-uri {
	display: block;
	background: #000;
	margin-top: 20px;
	height: 50px;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 13px;
	line-height: 50px;
}

.girl-modal-back .girl-modal-box .girl-modal-close {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	color: #fff;
	font-size: 50px;
	margin: -265px 0 0 0;
	width: 800px;
	text-align: right;
}

.girl-modal-back .girl-modal-box .girl-modal-close .modal-close-btn {
	color: #fff;
}

.girl-modal-back .girl-modal-box .swiper-button-next, .girl-modal-back .girl-modal-box .swiper-button-prev {
	background: none;
}

.fixed-menesth-btn {
	display: none;
	position: fixed;
	cursor: pointer;
	top: 92px;
	left: 14rem;
	z-index: 10;
}

.fixed-menesth-btn img {
	width: 150px;
}

@media screen and (max-width: 1950px) {
	.fixed-menesth-btn {
		left: 10rem;
	}
}

@media screen and (max-width: 1840px) {
	.fixed-menesth-btn {
		left: 6rem;
	}
}

@media screen and (max-width: 1710px) {
	.fixed-menesth-btn {
		left: 2rem;
	}
}

.to-top-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 460px;
	height: 70px;
	border-radius: 70px;
	margin: 0px auto 50px auto;
	color: #FFFFFF;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: 1.9px;
	-webkit-box-shadow: 0px 4px 16px #00000029;
	box-shadow: 0px 4px 16px #00000029;
	background-color: #FF588B;
}
