@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;
	--box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

* {
	overflow-wrap: break-word;
	box-sizing: border-box;
}

body {
	font-family: メイリオ, Meiryo, arial, sans-serif;
	font-size: 16px;
	color: #333;
}

video,img {
	vertical-align: top;
}

/*--------------------------
* font
*--------------------------*/
@font-face {
	font-family: 'ShinGoProB';
	src: url('../font/ShinGoPro/A-OTF-ShinGoPro-Bold_0.otf') format('truetype');
}

/*--------------------------
* header
*--------------------------*/
.header__head {
	font-size: 11px;
	background: var(--main-color);
	color: white;
	text-align: center;
	padding: 4px 0;
}

/*--------------------------
* nav
*--------------------------*/
.nav {
	background: var(--main-color005);
	border-bottom: 2px solid var(--main-color);
}
.nav__items {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	margin: 0 auto;
}
.nav__item {
	width: calc(100% / 6);
	height: 70px;
}
.nav__item__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--main-color_dark);
	text-decoration: none;
}
.nav__item__link__en {
	display: flex;
	align-items: center;
	font-family: var(--font-mincho);
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 6px;
}
.nav__item__link__en i {
	font-size: 15px;
	margin-right: 4px;
}
.nav__item__link__jp {
	font-size: 10px;
}
.nav__item__link__jp:before,
.nav__item__link__jp:after {
	content: '-';
}
.nav__item__link:hover {
	color: var(--main-color_light);
	text-shadow: 2px 2px 10px #fff,
				-2px 2px 10px #fff ,
				2px -2px 10px #fff ,
				-2px -2px 10px #fff;
}
/*
	.nav__item--top {
		width: 117px;
	}
	.nav__item--companion {
		width: 171px;
	}
	.nav__item--schedule {
		width: 144px;
	}
	.nav__item--system {
		width: 126px;
	}
	.nav__item--ranking {
		width: 143px;
	}
	.nav__item--blog {
		width: 155px;
	}
	.nav__item--recruit {
		width: 144px;
	}
*/

/*--------------------------
* kv
*--------------------------*/
.kv {
	height: 140px;
	background-image: url(../img/common/bg_header.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.kv__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}
.kv__logo__img {
	width: 242px;
}
.kv__info {
	text-align: right;
	font-family: var(--font-prata);
	color: var(--main-color_dark);
}
.kv__info__open,
.kv__info__tel, 
.kv__info__address {
	text-shadow: #ffffff 1px 1px 0, #ffffff -1px -1px 0,
	#ffffff -1px 1px 0, #ffffff 1px -1px 0,
	#ffffff 0px 1px 0, #ffffff  0 -1px 0,
	#ffffff -1px 0 0, #ffffff 1px 0 0
}
.kv__info__open {
	margin-bottom: 5px;
	font-size: 22px;
}
.kv__info__tel {
	margin: 0 -4px 5px 0;
	font-size: 36px;
}
.kv__info__tel--small {
	font-size: 22px;
}
.kv__info__address {
	font-size: 15px;
}

/*--------------------------
* pan
*--------------------------*/
.pan {
	width: 1000px;
	margin: -8px auto 10px;
}
.pan__items {
	display: flex;
}
.pan__item {
	position: relative;
	display: inline-block;
	padding: 4px 0;
	background: var(--main-color);
	color: white;
	font-size: 11px;
}
.pan__item:first-child:before {
	content: "◆";
	padding-left: 10px;
}
.pan__item:last-child {
	padding-right: 10px;
}
.pan__item:not(:last-child):after {
	content: ">";
	padding: 0 10px;
}
.pan__item:last-child:after {
	position: absolute;
	top: 0;
	right: -12px;
	content: "";
	display: block;
	width: 12px;
	height: 19px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--main-color);
}
.pan__link {
	color: white;
	text-decoration: underline;
}

/*--------------------------
* main
*--------------------------*/
.main {
	margin-bottom: 30px;
}
.main__wrap {
	width: 980px;
	margin: 0 auto;
}

/*--------------------------
* title 
*--------------------------*/
.title {
	margin-bottom: 10px;
	padding-bottom: 2px;
	border-bottom: 1px solid var(--main-color);
}
.title__text {
	padding: 0 0 5px 10px;
	border-bottom: 2px solid var(--main-color);
	font-size: 22px;
	color: var(--main-color);
}
.title__text--strong {
	display: inline-block;
	margin-left: 10px;
	padding: 6px 25px;
	color: white;
	background: var(--main-color);
	border-radius: 25px;
	line-height: 1;
}

/*--------------------------
* girls
*--------------------------*/
.girls__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.girls__items--col5 .girls__item {
	width: calc((100% - 40px) / 5);
}
.girls__link {
	display: block;
	height: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 2px;
	text-decoration: none;
	height: 100%;
}
.girls__tmb {
	position: relative;
	margin-bottom: 5px;
	aspect-ratio: 3/4;
	overflow: hidden;
}
.girls__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid var(--main-color);
}
.girls__name {
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
	text-align: center;
	color: var(--text-color);
	line-height: 1.3;
}
.girls__entryday {
	margin-bottom: 5px;
	color: var(--secondary-color);
	text-decoration: none;
	text-align: center;
}
.girls__name__text {
	max-width: 90px;
	display: -webkit-box;
	margin-right: 5px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-align: left;
	word-break: break-all;
}
.girls__name__text {
	max-width: 90px;
	display: -webkit-box;
	margin-right: 5px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-align: left;
	word-break: break-all;
}
.girls__size {
	font-size: 15px;
	text-align: center;
	color: var(--text-color);
}
.girls__notFound {
	text-align: center;
	padding: 80px 0;
}
.girls__worktime {
	margin-top: 5px;
	padding: 4px 0;
	background: var(--main-color);
	color: white;
	text-align: center;
	border-radius: 4px;
}
.girls__flg {
	position: absolute;
	inset: auto 63px 188px auto;
	width: 100%;
	padding: 5px 0;
	background: var(--main-color);
	font-size: 11px;
	font-family: var(--font-gothic);
	text-align: center;
	color: white;
	transform: rotate(-35deg);
}
.girls__diamond {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.girls__diamond__icon {
	width: 46px;
	height: auto;
}

/*--------------------------
* footer
*--------------------------*/
.footer__head {
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.footer__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 980px;
	margin: 0 auto;
	padding: 15px 0;
}
.footer__nav__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
}
.footer__nav__item {
	border-right: 1px solid #666;
}
.footer__nav__item:last-child {
	border-right: none;
}
.footer__nav__link {
	font-size: 13px;
	color: #666;
	text-decoration: none;
	margin: 0 15px;
}
.footer__logo {
	width: 133px;
	margin-right: 15px;
}
.footer__logo .footer__logo__img {
	display: block;
	width: 100%;
}
.footer__bottom {
	padding: 12px 0;
}
.footer__copy__text {
	font-size: 13px;
	text-align: center;
	color: var(--main-color);
	margin-bottom: 10px;
}
.footer__copy__text__link {
	color: var(--main-color);
}
.footer__copy__text__binbin {
	font-size: 12px;
	color: #111;
	text-align: center;
}
.footer__copy__text__binbin__link {
	color: #0984e3;
}

/* 工事中 */
.construction {
	padding: 100px 0;
}
.construction .construction_title {
	font-size: 36px;
	color: #777;
	text-align: center;
	margin-bottom: 20px;
}
.construction .construction_text {
	font-size: 16px;
	color: #777;
	text-align: center;
	line-height: 1.4;
}
