@charset "UTF-8";

:root {
	--font-prata: 'Prata', serif;
	--font-gothic: "ShinGoProB";
	--font-mincho: 'Kozuka Mincho Pro', 'Kozuka Mincho Std', '小塚明朝 Pro R', '小塚明朝 Std R';
	--font-awesome: 'Font Awesome 6 Free';
	--main-color: rgba(0,10,213,1.0); /* #000ad5 */
	--main-color09: rgba(0,10,213,0.9);
	--main-color08: rgba(0,10,213,0.8);
	--main-color07: rgba(0,10,213,0.7);
	--main-color06: rgba(0,10,213,0.6);
	--main-color05: rgba(0,10,213,0.5);
	--main-color04: rgba(0,10,213,0.4);
	--main-color03: rgba(0,10,213,0.3);
	--main-color02: rgba(0,10,213,0.2);
	--main-color01: rgba(0,10,213,0.1);
	--main-color005: rgba(0,10,213,0.05);
	--main-color_light: rgba(47,57,252); /* #2f39fc */
	--main-color_dark: rgba(0,7,129,1.0); /* #000781 */
	--secondary-color: rgba(239,0,80,1.0);	/* #ef0050 */
	--text-color: #333;
	--font-notoserif: 'Noto Serif JP', serif;
	--font-awesome: 'Font Awesome 6 Free'
}
* {
	box-sizing: border-box;
}

body {
	font-size: 4.267vw;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	color: #333;
}

video,img {
	vertical-align: top;
}

.hidden {
	overflow: hidden;
}

.js_ajustMargin {
	margin-top: -10.1vw;
}

/*--------------------------
* header
*--------------------------*/
.header__menu {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 9998;
	background: white;
	padding: 1.333vw;
	border-bottom: 2px solid var(--main-color_dark);
}
.header__head {
	background: var(--main-color);
	padding: 1.333vw 0;
}
.header__head {
	font-size: 2.667vw;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.header__logo__img {
	width: 27.733vw;
}
.header__menu__wrap {
	display: flex;
	align-items: center;
	width: 100%;
}
.header__nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100vmax;
	background: white;
	transform: translateX(-100%);
	z-index: 1;
	border-right: 1px solid var(--main-color);
}
.header__nav.active {
	transform: translateX(-100%);
}
.header__nav__item {
	height: 10.4vw;
	background: linear-gradient(#fefefe,#efefef);
}
.header__nav__link {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 2.667vw;
	text-decoration: none;
	color: var(--main-color_dark);
	font-size: 3.2vw;
}
.header__nav__text {
	display: flex;
	align-items: center;
}
.header__nav__text:before {
	content: "";
	display: block;
	background-size: cover;
	background-position: center;
}
.header__nav__text--top:before {
	width: 4.5333vw;
	height: 3.6vw;
	margin-right: 1.7333vw;
	background-image: url('../img/common/menu_top.png');
}
.header__nav__text--schedule:before {
	width: 3.4667vw;
	height: 3.6vw;
	margin-right: 2.2667vw;
	background-image: url('../img/common/menu_schedule.png');
}
.header__nav__text--system:before {
	width: 3.6vw;
	height: 3.6vw;
	margin-right: 2.1333vw;
	background-image: url('../img/common/menu_system.png');
}
.header__nav__text--newface:before {
	width: 3.6vw;
	height: 3.6vw;
	margin-right: 2.1333vw;
	background-image: url('../img/common/menu_newface.png');
}
.header__nav__text--girlslist:before {
	width: 3.8667vw;
	height: 3.6vw;
	margin-right: 2vw;
	background-image: url('../img/common/menu_girlslist.png');
}
.header__nav__text--ranking:before {
	width: 3.7333vw;
	height: 3.0667vw;
	margin-right: 2.2667vw;
	background-image: url('../img/common/menu_rank.png');
}
.header__nav__text--contact:before {
	width: 4.4vw;
	height: 3.0667vw;
	margin-right: 1.7333vw;
	background-image: url('../img/common/menu_contact.png');
}
.header__nav__text--blog:before {
	width: 3.4667vw;
	height: 3.6vw;
	margin-right: 2.2667vw;
	background-image: url('../img/common/menu_blog.png');
}
.header__nav__text--movie:before {
	width: 4.4vw;
	height: 3.0667vw;
	margin-right: 1.7333vw;
	background-image: url('../img/common/menu_movie.png');
}
.header__nav__text--recruit:before {
	width: 4.1333vw;
	height: 3.3333vw;
	margin-right: 1.7333vw;
	background-image: url('../img/common/menu_recruit.png');
}
.header__nav__link:after {
	content: "";
	display: block;
	margin-left: auto;
	width: 5.333vw;
	height: 5.333vw;
	border-radius: 50%;
	background: var(--main-color_dark);
}
.header__nav__link:before {
	position: absolute;
	right: 4.267vw;
	content: "\f054";
	font-family: var(--font-awesome);
	font-weight: 600;
	color: white;
}
.header__info {
	flex: 1;
	min-width: 0;
	font-size: 2.667vw;
	text-align: right;
}
.header__info__title {
	margin-bottom: 1.333vw;
}
.header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 13.333vw;
	height: 13.333vw;
	margin-left: 1.333vw;
	border-radius: 5px;
	background: var(--main-color);
}
.header__hamburger__title {
	margin-top: 1.333vw;
	color: white;
	font-size: 2.667vw;
	text-align: center;
	font-family: var(--font-notoserif);
	font-weight: 700;
}
.header__hamburger__btn {
	display: flex;
	gap: 1.333vw;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.header__hamburger__btn span {
	display: block;
	width: 9.333vw;
	height: 1.067vw;
	background: #eee;
	border-radius: 2px;
}

/*--------------------------
* wrap 
*--------------------------*/
.wrap {
	position: relative;
	transition: transform .5s ease;
}
.wrap.active {
	transform: translateX(70%);
}
.overlay.active {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.4);
	z-index: 9999;
}

.overlay {
	display: none;
}

/*--------------------------
* title
*--------------------------*/
.title {
	position: relative;
	display: flex;
	align-items: center;
	height: 10.667vw;
	font-family: var(--font-notoserif);
	font-weight: 600;
	color: white;
	background: linear-gradient(var(--main-color07) , var(--main-color));
}
.title:after {
	position: absolute;
	bottom: 1.067vw;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: white;
}
.title__text {
	padding: 0 2.667vw;
	font-size: 6.4vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	line-height: 1.3;
}
.title__text__sb {
	font-size: 4.267vw;
}
.title__text__sb:before {
	content: "-";
}
.title__text__sb:after {
	content: "-";
}

/*--------------------------
* girls
*--------------------------*/
.girlsSide__desc {
	padding: 2.6667vw 1.3333vw;
	font-size: 4.2667vw;
	line-height: 1.2;
	border-bottom: 1px solid #ccc;
}
.girlsSide__item .girlsSide__info__ranking {
	position: relative;
	width: 40vw;
	padding: 1.067vw 1.067vw 1.067vw 7.467vw;
	color: var(--main-color_dark);
	border-radius: 15px;
}
.girlsSide__item .fa-crown {
	position: absolute;
	top: 41%;
	left: 1.067vw;
	transform: translateY(-50%);
	font-size: 5.333vw;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.girlsSide__item--1 .girlsSide__info__ranking {
	background: #FFF2DB;
}
.girlsSide__item--1 .girlsSide__info__ranking .fa-crown {
	color: #FDC44F;
}
.girlsSide__item--2 .girlsSide__info__ranking {
	background: #ECEDEF;
}
.girlsSide__item--2 .girlsSide__info__ranking .fa-crown {
	color: #CCD0D5;
}
.girlsSide__item--3 .girlsSide__info__ranking {
	background: #EBE8DE;
}
.girlsSide__item--3 .girlsSide__info__ranking .fa-crown {
	color: #A18E5B;
}
.girlsSide__item--4 .girlsSide__info__ranking {
	background: #FDE8E5;
}
.girlsSide__item--4 .girlsSide__info__ranking .fa-crown {
	color: #F58E7D;
}
.girlsSide__item--5 .girlsSide__info__ranking {
	background: #DEF2EA;
}
.girlsSide__item--5 .girlsSide__info__ranking .fa-crown {
	color: #79D1B0;
}
.girlsSide__link {
	display: flex;
	align-items: center;
	padding: 2.667vw;
	background: linear-gradient(0deg, #f7f7f7 0%, #ffffff 50%);
	border-bottom: 1px solid #ccc;
	text-decoration: none;
}
.girlsSide__tmb {
	width: 21.3333vw;
	min-width: 21.3333vw;
	aspect-ratio: 3/4;
	overflow: hidden;
}
.girlsSide__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.girlsSide__info {
	display: flex;
	flex-direction: column;
	gap: 2.667vw;
	margin-left: 2.667vw;
	flex: 1;
}
.girlsSide__info__name {
	color: var(--main-color_dark);
	font-size: 5.067vw;
	font-weight: bold;
	word-break: break-all;
}
.girlsSide__info__size {
	color: var(--main-color_dark);
	font-weight: bold;
}
.girlsSide__info__enter {
	color: var(--main-color);
	font-weight: bold;
}
.girlsSide__more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	width: 6.667vw;
	height: 6.667vw;
	color: white;
	background: var(--main-color_dark);
	border-radius: 50%;
	font-size: 3.2vw;
}
.girlsSide__todayWork {
	color: #FF0000;
}
.girlsSide__notFound {
	text-align: center;
	padding: 21.333vw 0;
}

/*--------------------------
* girlslist
*--------------------------*/
.girlslist__items {
	display: flex;
	gap: 0.533vw;
	padding: 1.333vw 1.333vw 5.333vw;
	flex-wrap: wrap;
}
.girlslist__item {
	width: calc((100% - 1.067vw) / 3);
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 0 8px 3px var(--main-color005) inset
}
.girlslist__link {
	display: block;
	padding: 2.667vw 0.533vw;
	text-decoration: none;
}
.girlslist__tmb {
	position: relative;
	margin-bottom: 5px;
	aspect-ratio: 3/4;
	overflow: hidden;
}
.girlslist__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.girlslist__name {
	margin-bottom: 1.333vw;
	font-size: 3.2vw;
	text-align: center;
	color: var(--text-color);
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.girlslist__size {
	font-size: 2.667vw;
	font-weight: bold;
	color: var(--text-color);
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.girlslist__worktime {
	margin-top: 1.333vw;
	color: white;
	padding: 0.533vw 1.067vw;
	background: var(--main-color_dark);
	font-size: 2.6667vw;
	text-align: center;
	border-radius: 2px;
}
.girlslist__notFound {
	padding: 21.333vw 0;
	text-align: center;
}
.girlslist__flg {
	position: absolute;
	padding: 0.533vw 0;
	top: 1.867vw;
	left: -10.667vw;
	color: white;
	font-size: 3.2vw;
	font-weight: bold;
	width: 100%;
	text-align: center;
	background: var(--main-color_dark);
	transform: rotate(317deg);
	z-index: 1;
}
.girlslist__diamond {
	position: absolute;
	right: 1.333vw;
	bottom: calc(1.333vw / 2);
}
.girlslist__diamond__icon {
	width: 9.6vw;
	height: auto;
}


/*--------------------------
* footer
*--------------------------*/
footer {
	margin-top: 23vw;
}
.footFixedMenu {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 18vw;
	background: rgba(0,0,0,0.5);
	padding: 2.667vw;
	z-index: 9999;
}
.footFixedMenu__items {
	display: flex;
	justify-content: space-between;
	gap: 2.667vw;
}
.footFixedMenu__item {
	width: calc(100% / 2);
}
.footFixedMenu__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 13vw;
	background: white;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	border: 3px solid #555;
	border-radius: 10px;
}
.footFixedMenu__item:first-child .footFixedMenu__link {
	color: #486eb5;
}
.footFixedMenu__item:last-child .footFixedMenu__link {
	color: #b5486e;
}
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14vw;
	font-size: 2.8vw;
	background: var(--main-color01);
}
.footerNav__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	flex-wrap: wrap;
	gap: 1.333vw;
	padding: 1.333vw;
}
.footerNav__link {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 3.2vw 1.333vw;
	text-decoration: none;
	border: 1px solid var(--main-color);
	border-radius: 3px;
	box-shadow: 0 0 8px 3px var(--main-color005) inset;
	color: var(--main-color_dark);
}
.footerNav__link:after {
	content: "\f054";
	font-family: var(--font-awesome);
	font-weight: 600;
}

/* 工事中 */
.construction {
	padding: 25vw 0;
}
.construction .construction_title {
	font-size: 7vw;
	color: #777;
	text-align: center;
	margin-bottom: 3vw;
}
.construction .construction_text {
	font-size: 3.75vw;
	color: #777;
	text-align: center;
	line-height: 1.4;
}
