@charset "utf-8";
/*
 * CSSのルール
 * # フォントサイズ
 * ## html：10px = 62.5% = 1rem (古いiPhone 9px) body：1.4rem (= 14px / 古いiPhone 12.6px)
 */
/* --------------------------------------------------
 * reset
 * Bootstrap Reboot v5.0.2
-------------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

/* html */
html {
	font-size: 10px;
}
@media(min-width:1025px) {
	html {
		font-size: 62.5%;
	}
}/* rootのフォントサイズを10pxに。これで1rem=10pxになる */
@media(max-width:320px) {
	html {
		font-size: 9px;
	}
}/* 古いiPhoneはrootのフォントサイズを9pxに */
body {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: #fff;
}
ul, ol {
    list-style-type: none;
	margin: 0;
	padding: 0;
}
dl, dd {
	margin: 0;
}
img {
    max-width: 100%;
}
a {
	text-decoration: none;
}

/* --------------------------------------------------
 * common
 *
-------------------------------------------------- */
.wrapper {
	background-image: linear-gradient(0deg, #101, #261b21);
}
.content_width {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
}
@media(min-width:1080px) {
	.content_width {
		width: 90%;
	}
}
/* header */
.header {
    background: #261b21;
}
.header_inner {
	background: url(/img/common/header_bg-pattern.png) repeat left top;
}
.header_top {
	background: #261b21;
}
.header_top_inner a {
	color: #fff;
}
.header_top_inner, .header_content_inner {
	max-width: 1000px;
}
.header_title {
    float: left;
    margin: 0;
    padding-top: 0.4rem;
    font-weight: normal;
    font-size: 1.2rem;
}
.header_time {
    float: right;
    list-style-type: none;
    margin: 0;
    font-weight: bold;
}
.header_time li {
    display: inline-block;
}
.header_left {
	float: left;
	max-width: calc(50% + 114px);
}
.header_right {
	float: right;
}
@media(min-width:768px) {
	.header_left {
		min-width: 340px;
		max-width: auto;
	}
	.header_time {
		padding-top: 0.2rem;
        padding-bottom: 0.2rem;
	}
}
.logo {
    float: left;
    width: 200px;
    max-width: calc(100% - 130px);
    margin-bottom: 0.4rem;
	padding-top: 0.6rem;
}
.is-fixed .logo {
	width: 150px;
	margin-top: 2px;
}
/*検索*/
.search {
	float: right;
	padding-top: 2px;
}
.searchBtnBig {
	display: block;
	width: 114px;
	margin-bottom: 0.8rem;
	margin-top: 0.8rem;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}
.search_font {
	position: absolute;
	top: 0;
	display: block;
	width: 80px;
	padding: 6px 8px 6px 10px;
	border: 2px solid #ab9353;
	border-radius: 4px 0 0 4px;
	line-height: 20px;
}
.searchIcon {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 0 4px 4px 0;
	background: #ab9353;
	font-size: 0;
	color: #fff;
	vertical-align: middle;
	text-align: center;
}
.searchIcon>* {
	margin: 0;
	padding: 2px;
	font-size: 20px;
	line-height: 32px;
	vertical-align: middle;
}
.searchmenu {
	position: absolute;
	z-index: 10;
	left: 2vw;
	top: 10.4rem;
	width: 750px;
	max-width: 96vw;
	background: #212;
	border: 1px solid #ab9353;
	border-radius: 1px;
	padding: 2.4rem;
	color: #fff;
	display: none;
	box-shadow: 1px 1px 4px rgba(0,0,0,.3);
}
.searchmenu form {
	max-height: calc(100vh - 15.4rem);
	overflow-y: auto;
}
.is-fixed .searchmenu {
	top: 5.6rem;
}
.searchmenu:before {
	content: "";
	position: absolute;
	top: -9px;
	right: 50%;
	z-index: 2;
	border: 5px solid transparent;
	border-bottom: 5px solid #212;
}
.searchmenu:after {
	content: "";
	position: absolute;
	top: -12px;
	right: 50%;
	z-index: 1;
	transform: translateX(1px);
	border: 6px solid transparent;
	border-bottom: 6px solid #ab9353;
}
.searchmenu form>ul>li:last-child {
	display: block;
	margin-top: 2rem;
}
@media(min-width:768px) {
	.logo {
		max-width: 100%;
		/* height: 68px; */
	}
	.logo img {
		height: 100%;
	}
	.searchmenu {
		top: 88px;
		left: 50%;
		transform: translateX(-50%);
	}
	.is-fixed .searchmenu {
		top: 6.4rem;
	}
	.searchmenu:before {
		left: 38%;
		right: auto;
	}
	.searchmenu:after {
		left: 38%;
		right: auto;
		transform: translateX(-1px);
	}
}
@media(min-width:1024px) {
	.searchmenu:before {
		left: 15.4rem;
	}
	.searchmenu:after {
		left: 15.4rem;
	}
}
.searchmenu li, .searchmenu dt, .searchmenu dd {
	display: inline-block;
}
.searchmenu li {
	margin-right: 2rem;
	margin-bottom: 1rem;
}
.searchmenu dl {
	margin-bottom: 0;
}
.searchmenu dt {
	margin-right: 1rem;
}
.searchmenu dd {
	margin-bottom: 0;
}
#smenu {
	display: none;
}
#smenu:checked ~ .searchmenu {
	display: block;
}
.smenu-close {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -50;
	width: 100%;
	height: 100%;
	display: none;
}
#smenu:checked ~ .smenu-close {
	z-index: 1;
	display: block;
}
#smenu:checked ~ .smenu-close:hover {
	cursor: pointer
}
.search_check:checked ~ .btn_gray {
	color: #fff;
	background-color: #ab9353;
	border-color: #ab9353;
	-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.search_btn.btn_gray {
	border: 1px solid #ab9353;
	border-radius: 4px;
	padding: 0 4px;
}
.search_btn.btn_blue:hover {
	background-color: #e6e6e6;
	border-color: #00a0e9;
}
.search_text {
	border: 1px solid #ab9353;
	border-radius: 4px;
	width: 6em;
	padding-left: 6px;
	margin-right: 4px;
	margin-left: 4px;
	background: #212;
	color: #fff;
}
dd .search_text:first-child {
	margin-left: 0;
}
.search_select {
	border: 1px solid #ab9353;
	border-radius: 4px;
	padding: 2px 0 2px 6px;
	margin: 4px 4px 0;
	background: #212;
	color: #fff;
}
/* gNav */
.gNav {
	float: right;
	display: inline-block;
	list-style-type: none;
	margin-bottom: 0;
	padding-top: 0.2rem;
}
.vis_large {
	text-align: center;
	font-size: 1.2rem;
}
.vis_large+li {
	margin-left: 2rem;
}
.vis_large>a {
	color: #333;
}
.vis_large a:hover {
	text-decoration: none;
}
.gNav_icon {
	display: block;
	height: 3.2rem;
	vertical-align: bottom;
	font-size: 2.4rem;
	color: #00a0e9;
}
#nav-open .gNav_icon {
	color: #fff;
}
/*ハンバーガーメニュー*/
#nav-drawer {
	position: relative;
}
#nav-open {
	/* margin-top: 1.2rem; */
	cursor: pointer;
}
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	opacity: 0;
	transition: .3s ease-in-out;
	cursor: pointer;
}
#nav-close:after {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 3.6rem;
	line-height: 3.6rem;
/*	background: rgba(0,0,0,.75);*/
	border-radius: 0 0 0 8px;
	color: #fff;
	font-size: 3.6rem;
	content: "×";
}
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;/*最大幅（調整してください）*/
	height: 100%;
	background: #261b21;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておくX*/
	padding-top: 3vw;
	font-size: 1.4rem;
	text-align: center;
}
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: 1;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）X*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.dNav {
	margin-top: 3vw;
	border-top: 1px solid #000;
}
.dNav li a {
	display: block;
	padding: 1rem 0 1rem 1.6rem;
	border-bottom: 1px solid #000;
	position: relative;
	overflow: hidden;
	text-align: left;
	transform: translate3d(0,0,0);
	transition: .4s;
	color: #fff;
}
.dNav li:hover a, .dNav li:active a, .dNav li:focus a {
	background: #970000;
	font-weight: bold;
}
.dNav li a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle,#000 10%,transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10,10);
	opacity: 0;
	transition: transform .5s,opacity 1s;
}
.dNav li a:active:after {
	transform: scale(0,0);
	opacity: .2;
	transition: 0s;
}
.dNav li a span {
	margin-right: 2px;
}
/* menu */
.menu-bar {
	margin: 0;
    border-top: 1px solid #a7893e;
    background: #a7893e;
	background-image: linear-gradient( 0deg, rgb(183,150,113) 0%, rgb(188,162,113) 30%, rgb(255,243,220) 70%, rgb(176,141,104) 100%);
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2), inset 0px  0px 3px 1px rgba(255, 255, 255, 0.8);
}
.menu-bar-inner {
    display: flex;
    width: 1000px;
	max-width: 100%;
    margin: 0 auto;
	border-left: 1px solid #212;
	border-right: 1px solid #101;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menubar__item {
	border-left: 1px solid #101;
	border-right: 1px solid #212;
	flex-grow: 1;
	text-align: center;
}
.menubar-item_a {
	display: block;
	padding: 1rem 0;
    color: #58471f;
	text-shadow: 0 0 3px #fff;
	text-decoration: none;
	font-weight: bold;
}
@media (max-width:767px) {
	.menu-bar {
		display: none;
	}
}
/* main */
.mainContents {
	padding-top: 4rem;
    border-top: 1px solid #a7893e;
}
/* footer */
.footer {
}
.footer_inner {
	padding-top: 2rem;
	background: #101;
}
.footer_banner {
	padding-bottom: 2rem;
	list-style-type: none;
	font-size: 0;
	position: relative;
}
.footer_banner li {
/*	display: inline-block;*/
	width: auto;
/*	padding: 0 1rem;*/
	text-align: center;
}
.footer_banner li a, .footer_banner li .block {
	display: block;
	width: 100%;
	height: 0;
	padding: 50% 0;
	background: #f5f5f5;
	position: relative;
	overflow: hidden;
}
.footer_banner li img {
	transform: translateY(-50%);
}
@media(min-width:1025px) {
	.footer_banner li img {
		width: 190px;
		height: 190px;
	}
}
@media(max-width:767px) {
	.footer_banner li img {
		width: 150px;
		height: 150px;
	}
}

.footer_group {
	padding: 1rem 0 2rem;
}
.footer_group h2 {
	text-align: center;
}
@media(max-width:360px) {
	.footer_group h2 {
		letter-spacing: -1px;
	}
}
.footer_group_banner {
	text-align: center;
}
.footer_group_banner img {
	max-width: 100%;
}

.footer_bottom {
	background: #261b21;
}
.footerNav {
	position: relative;
	padding-bottom: 9rem;
}
.footer_content {
	padding: 2.4rem 0 0;
	color: #fff;
	font-size: 0;
}
.footer_content dt {
	display: inline-block;
	margin-right: 25%;
	margin-bottom: 1.6rem;
	text-align: right;
	vertical-align: top;
	font-size: 2rem;
	letter-spacing: 0.25em;
}
.footer_content dd {
	display: inline-block;
	min-width: 32%;
	margin: 0 -2.4rem 0 2rem;
	padding: 0 0 3px;
	font-size: 1.4rem;
	vertical-align: top;
}
.footer_content ul {
	list-style-type: none;
	border-left: 3px dotted #fff;
}
.footer_content li {
	padding-bottom: 1.6rem;
	padding-left: 2.4rem;
}
.footer_content li a {
	color: #fff;
	letter-spacing: 0.3em;
	transition: 0.3s;
	text-decoration: none;
}
.footer_content li a:hover, .footer_content li a:active, .footer_content li a:focus {
	letter-spacing: 0.6em;
}
.footer_logo {
	position: relative;
	margin-bottom: -2.1rem;
	padding: 1.6rem 1.6rem 0;
}
.footer_logo a {
	display: block;
	width: 150px;
}
.footer_copy {
	margin: 0;
	padding: 0.5rem 0;
	text-align: center;
}
.footer_copy a {
	color: #fff;
}
@media(min-width:768px) and (max-width:979px) {
	.footer_content dt {
		display: block;
		text-align: left;
	}
}
@media(min-width:768px) {
	.footer_content dt {
		margin-right: 0;
	}
	.footer_content li {
		padding-right: 2rem;
	}
}
@media(min-width:1024px) {
	.footer_content dt {
		width: 16%;
	}
	.footer_content dd {
		width: 28%;
		min-width: auto;
	}
	.footer_logo {
		width: 16%;
		height: 98px;
	}
	.footer_logo a {
		position: absolute;
		right: 1.6rem;
	}
	.footerNav {
		padding-bottom: 0;
	}
}
/* フロートボタン */
.float {
	opacity: 0;
	position: fixed;
	z-index: 5;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	transition: 0.5s;
	transform:translate3d(0, 0, 0); /*iOSのtransformバグ対応*/
}
.is-fixed .float {
	opacity: 1;
}
.float-btn {
	position: fixed;
	right: 4px;
	bottom: 63px;
	width: 56px;
}
.iphone .float-btn {
	bottom: 77px;
	font-size: 54px;
}
.float-btn li {
	opacity: 0.9;
	width: 100%;
	margin-bottom: 4px;
	animation: fadeout 0.5s;
	pointer-events: none;
}
.float_phone {
	font-size: 3rem;
}
.float_top {
	font-size: 3rem;
}
.float_phone a, .float_top a {
	color: #212;
}
.is-fixed .float_phone, .is-fixed .float_top {
	line-height: 54px;
	border: 1px solid #101;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.75);
	text-align: center;
	animation: fadein 0.5s;
	pointer-events: all;
}
.is-fixed .float_phone, .float_phone {
	animation-duration: 0.8s;
}
@keyframes fadein {
	0%   { opacity: 0;   transform: translateY(12px); }
	100% { opacity: 0.9; transform: translateY(0); }
}
@keyframes fadeout {
	0%   { opacity: 0.9; transform: translateY(0); }
	100% { opacity: 0;   transform: translateY(12px); }
}
.float-link {
	width: calc(100% - 58px);
	max-width: 480px;
	padding: 4px;
	transform: translateY(100%);
	transition: .5s;
}
.is-fixed .float-link {
	transform: translateY(0px);
}
.float-link li {
	padding: 0.4rem 0.8rem;
	background-color: rgba(171,147,83,0.8);
	border: 1px solid #ab9353;
	border-radius: 5px;
	font-size: 1.6rem;
}
.float-link li a {
	color: #fff;
}
.float-menu {
	font-size: 0;
	transform: translateY(100%);
	transition: .5s;
}
.is-fixed .float-menu {
	transform: translateY(0px);
}
.float-menu li {
	display: inline-block;
	width: 20%;
	font-size: 1.2rem;
}
.float-menu li a, .float-menu li label {
	display: block;
	background: rgba(255,255,255,0.8);
	padding: 5px 0;
	border: 1px solid #ab9353;
	border-top-width: 2px;
	border-bottom: none;
	text-align: center;
	color: #101;
}
.float-menu li a span, .float-menu li label span {
	width: 62px;
	max-width: 98%;
	font-size: 2.4rem;
}
@media(min-width:1025px) {
	.float_phone, .float-menu, .float-link {
		display: none;
	}
	.float-btn {
		right: 12px;
		bottom: 24px;
		width: 70px;
	}
	.is-fixed .float_top {
		line-height: 68px;
	}
}
/* box */
.list {
	display: flex;
	margin-bottom: -3rem;
	margin-left: -2%;
	font-size: 0;
	flex-wrap: wrap;
}
.list_box {
	display: inline-block;
	width: 48%;
	margin-bottom: 3rem;
	margin-left: 2%;
	padding-bottom: 0.4rem;
	background: #101;
	font-size: 1.4rem;
	position: relative;
}
.box_img {
	height: 0;
	padding-bottom: calc(100% * 4 / 3);
	overflow: hidden;
}
.box_img img {
	width: 100%;
	height: auto;
}
.box_note {
	padding: 0.4rem;
	text-align: center;
}
.note_name {
	font-weight: bold;
	font-size: 2rem;
}
.note_latency, .note_realtime {
	font-size: 2rem;
	font-weight: bold;
	color: #d30a1d;
}
.note_realtime {
	font-size: 1.6rem;
	margin: 0 0 2px;
	padding: 2px 0;
	border-top: 1px solid #261b21;
	border-bottom: 1px solid #261b21;
}
.note_time {
	min-height: 1.5em;
	font-weight: bold;
	font-size: 1.6rem;
}
.note_comment {
	padding: 0.8rem 1rem 0;
	text-align: left;
}
.status_new:before, .status_new:after, .statusNew:before, .statusNew:after {
	display: block;
	position: absolute;
	top: -5px;
	right: -5px;
}
.status_new:before, .statusNew:before {
	height: 0;
	padding: 12.5%;
	border-radius: 50%;
	background: #d30a1d;/*f264a5*/
	content: "";
}
.status_new:after, .statusNew:after {
	width: 25%;
	margin-top: 12.5%;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	font-size: 1.6rem;
	text-align: center;
	content: "NEW";
	transform: translateY(-50%);
}
.status_today:before, .status_today:after {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	transform: rotateZ(35deg) translateX(2.6rem) translateY(-0.8rem);
}
.status_today:before {
	height: 0;
	padding: 0.9rem 5rem;
	background: #ffa01f;
	content: "";
}
.status_today:after {
	width: 10rem;
	margin-top: 0.1rem;
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
	text-align: center;
	content: "本日出勤";
}
.level_star .box_img:before {
    position: absolute;
    top: 4px;
    height: 2rem;
    padding: 0 8px 0 4px;
    border-radius: 0 1rem 1rem 0;
    background: rgba(11, 0, 11, .75);
    content: "★特別指名料金";
}
.note_cource {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.cource_icon {
	width: 48%;
	margin-top: 2px;
	border: 1px solid #d8d6cf;
	border-radius: 3px;
	background-image: linear-gradient(0deg, #cccccc, #eeeeee);
}
.cource_id1.cource_ok {
	background-image: linear-gradient(0deg, #d40050, #f55f96);
}
.cource_id2.cource_ok {
	background-image: linear-gradient(0deg, #0004d4, #5f5ff5);
}
.cource_id3.cource_ok {
	background-image: linear-gradient(0deg, #be5001, #f89524);
}
.cource_id4.cource_ok {
	background-image: linear-gradient(0deg, #007800, #4ba614);
}
@media(max-width:320px) {
	.status_new:after, .statusNew:after {
		font-size: 1.2rem;
	}
}
@media(min-width:768px) {
	.list_box {
		width: 31.3%;
	}
}
@media(min-width:415px) {
	.status_new:after, .statusNew:after {
		font-size: 1.8rem;
	}
}
@media(min-width:1025px) {
	.list_box {
		width: 23%;
		padding: 0 0 1.4rem;/**/
	}
	.box_note {
		padding: 0.4rem 0 0;/**/
	}
	.status_new:after, .statusNew:after {
		font-size: 1.6vw;
	}
	.status_today:before, .status_today:after {
		transform: rotateZ(35deg) translateX(2.35rem) translateY(-0.9rem);
	}
	.status_today:before {
		padding: 1.2rem 6rem;
	}
	.status_today:after {
		width: 11rem;
		margin-top: 0.6rem;
		font-size: 1.6rem;
	}
}
/* --------------------------------------------------
 * slider
 * swiper
-------------------------------------------------- */
.swiper-button-next, .swiper-button-prev {
	z-index: 2;
	width: 40px;
	height: 40px;
	margin-top: 0;
	background: transparent;
	transform: translateY(-30px);
}
.swiper-button-next {
	right: 5px;
}
.swiper-button-prev {
	left: 5px;
}
.swiper-button-next:before, .swiper-button-prev:before {
	display: block;
	border-radius: 20px;
	background: #333;
	color: #fff;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	opacity: .1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'FontAwesome';
}
.swiper-button-next:hover:before, .swiper-button-prev:hover:before, .swiper-button-next:focus:before, .swiper-button-prev:focus:before {
	opacity: .75;
}
.swiper-button-next:before {
	content: "\f105";
}
.swiper-button-prev:before {
	content: "\f104";
}

/* class */
.cf:after {
	content: "";
	clear: both;
	display: table;
}
.dp-n {
	display: none;
}
.dp-ib {
	display: inline-block;
}
.fc-red {
	color: #f03;
}

/* size */
@media(min-width:768px) {/*スマホ(iPad未満)のみ表示*/
	.size_usp {
		display: none !important;
	}
}@media(max-width:767px) {/*タブレットとPC(iPad以上)で表示*/
	.size_mspp {
		display: none !important;
	}
}
@media (max-width:999px) {
    .vis_pc {
        display: none;
    }
}
@media (min-width:1000px) {
    .vis_sp {
        display: none;
    }
}
