@charset "utf-8";

.serif {
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
}

.ex {
	color: #95989a;
	font-size: 0.875em;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

.flex {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
}

.purple {
	color: #993366;
}

.mt1em {
	margin-top: 1em;
}

.mt2em {
	margin-top: 2em;
}

.mb1em {
	margin-bottom: 1em;
}

.mb2em {
	margin-bottom: 2em;
}

/*----------------------------------------------------
	見出し
----------------------------------------------------*/
.ttl01 {
	padding: 1.25em 0 0;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
	letter-spacing: 0.01em;
	text-align: center;
}

.ttl01.ib {
	text-align: left;
}

.ttl01.ib .fa {
	display: inline-block;
}

.ttl01 .fa {
	display: block;
	margin-right: 0.25em;
	font-size: 1.375em;
}

.ttl01 .en {
	margin-right: 0.25em;
	font-size: 1.5em;
}

.ttl01 .ja {
	font-size: 0.875em;
}

.ttl01 .ja:before {
	content: "－";
}

.ttl01 .ja:after {
	content: "－";
}

@media (max-width: 767px) {
	.ttl01 .fa {
		font-size: 1.25em;
	}

	.ttl01 .en {
		font-size: 1.25em;
	}

	.ttl01 .ja {
		font-size: 0.875em;
	}
}

.ttl02 {
	text-align: center;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.5em;
	letter-spacing: 0.01em;
	color: #ab0303;
}

.ttl02.s {
	font-size: 1.25em;
}

.ttl02.s:before {
	/*// margin-right: 0;*/
	/*// background: none;*/
	/*// font-family: FontAwesome;*/
	/*// content: "\f299";*/
}

.ttl02.s:after {
	margin: 0 0 0.75em;
	box-shadow: 0px 1px 1px 0 #ab0303;
}

.ttl02:before {
	/*display: inline-block;*/
	/*width: 1.5em;*/
	/*height: 1.5em;*/
	/*margin-right: 0.15em;*/
	/*background: url(../images/logo_ico.png) center center no-repeat;*/
	/*background-size: 100% 100%;*/
	/*content: "";*/
	/*vertical-align: middle;*/
}

.ttl02:after {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0.5em 0 1em;
	background-color: #fff;
	box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2);
	content: "";
}

@media (max-width: 767px) {
	.ttl02 {
		font-size: 1.125em;
	}
}
/*----------------------------------------------------
	レイアウト
----------------------------------------------------*/
section {
	padding: 2.5em 0;
}

section.gray {
	background-color: #dad6cc;
}

section:last-child {
	padding-bottom: 4em;
}

section.s {
	padding: 1.25em 0;
}

section.n {
	padding: 0;
}

@media (max-width: 767px) {
	section {
		padding: 2.5em 10px;
	}

	section.s {
		padding: 1.25em 10px;
	}
}

.box01 {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
}

.box01.reverse {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.box01.reverse .pic {
	padding-right: 2%;
	padding-left: 0%;
}

.box01 .desc {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.box01 .pic {
	width: 40%;
	padding-left: 2%;
}

@media (max-width: 767px) {
	.box01 {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.box01.reverse {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.box01 .pic {
		width: 64%;
		margin: 0 auto;
		padding: 2% 0 0 0;
	}
}
/*----------------------------------------------------
	テーブル
----------------------------------------------------*/
.table01 {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
}

.table01 th {
	padding: 0.5em 0.5em;
	border: 1px solid #4f3d07;
	background-color: #d0c28c;
	font-weight: bold;
	white-space: nowrap;
}

.table01 td {
	padding: 0.5em 0.5em;
	border: 1px solid #4f3d07;
}

.table01 + .table01 {
	margin-top: 2.5em;
}

/*----------------------------------------------------
	レスポンシブ
----------------------------------------------------*/
.hide {
	display: none;
}

.pc {
	display: inline;
}

.pc.block {
	display: block;
}

.pc.inline-block {
	display: inline-block;
}

.pc_hide {
	display: none;
}

.pc_hide.block {
	display: none;
}

.pc_hide.inline-block {
	display: none;
}

.sp {
	display: none;
}

.sp.block {
	display: none;
}

.sp.inline-block {
	display: none;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
}

.clearfix:after {
	clear: both;
}

.container {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
}

.container.w720 {
	max-width: 720px;
}

@media (max-width: 767px) {
	.sp {
		display: inline;
	}

	.sp.block {
		display: block;
	}

	.sp.inline-block {
		display: inline-block;
	}

	.sp_hide {
		display: none;
	}

	.sp_hide.block {
		display: none;
	}

	.sp_hide.inline-block {
		display: none;
	}

	.pc {
		display: none;
	}

	.pc.block {
		display: none;
	}

	.pc.inline-block {
		display: none;
	}

	.pc_hide {
		display: inline;
	}

	.pc_hide.block {
		display: block;
	}

	.pc_hide.inline-block {
		display: inline-block;
	}
}

@media (max-width: 767px) {
	.container {
		position: relative;
		max-width: 100%;
		margin: 0 auto;
	}

	.container.w720 {
		max-width: 100%;
	}
}
/*----------------------------------------------------
	アニメーション
----------------------------------------------------*/
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		display: none;
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		display: none;
		opacity: 0;
	}
}
/*----------------------------------------------------
	ボタン
----------------------------------------------------*/
.btn01 {
	display: inline-block;
	padding: 0.5em 0.5em;
	transition: all .3s;
	border: 2px solid #4f3d07;
	background-color: #fff;
	text-align: center;
}

.btn01:hover {
	background-color: #4f3d07;
	color: #fff;
}

/*----------------------------------------------------
	セラピスト一覧
----------------------------------------------------*/
.mainTherapists {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
}
.mainTherapists:before,
.mainTherapists:after {
	display: block;
	content: '';
	width: 24%;
}
.mainTherapists:before {
	order: 1;
}
.mainTherapists .item {
	width: 24%;
	text-align: center;
	margin: 0.5em 0;
}

.mainTherapists .item .pic {
	position: relative;
}
.mainTherapists .item .pic img{
	width: 100%;
}
.mainTherapists .item .rank {
	position: absolute;
	left: 0;
	bottom: 0;
	pointer-events: none;
}
.mainTherapists .item .today {
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.mainTherapists .item .desc {
	text-align: center;
}

.mainTherapists .item .job {
	margin: 0.5em auto;
	max-width: 260px;
	display: flex;
	justify-content: center;
	padding: 0.1em 0.5em;
	background: #939192;
	text-align: center;
	color: #fff;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.mainTherapists .item .name {
	display: inline-block;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.25em;
	letter-spacing: 0.1em;
}

.mainTherapists .item .age {
	margin-right: 0.25em;
	color: #95989a;
	font-size: 0.75em;
}

.mainTherapists .item .star {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.mainTherapists .item .star img {
	width: initial;
}

.mainTherapists .item .spec {
	display: inline-block;
	padding: 0.25em 0;
	color: #95989a;
	font-size: 0.75em;
}

.mainTherapists .item .newface {
	display: inline-block;
	margin-left: 0.75em;
	padding: 0.125em 0.5em;
	background-image: linear-gradient(0deg, #a98035 0%, #eed959 100%);
	color: #fff;
	font-size: 0.75em;
	letter-spacing: 0.1em;
}

.mainTherapists .item .message {
	margin-top: 5px;
	font-size: 0.75em;
	color: #95989a;
}

.mainTherapists .item .more a {
	width: 100%;
	font-size: 0.875em;
}

.mainTherapists .item .worktime {
	color: #ff005a;
}

.mainTherapists .item .worktime + .message {
	height: 3em;
	font-size: 0.75em;
	overflow: hidden;
}

@media (max-width: 767px) {
	.mainTherapists .item {
		width: 100%;
		margin: 0.5em 0;
	}

	.mainTherapists .item .pic {
		margin: 0 auto 10px;
		max-width: 260px;
	}

	.mainTherapists .item .desc {;
	}

	.mainTherapists .item .name {
		display: inline-block;
		font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
		font-size: 1.00em;
		letter-spacing: 0.1em;
	}

	.mainTherapists .item .age {
		color: #95989a;
		font-size: 0.75em;
	}

	.mainTherapists .item .spec {
		display: block;
		padding: 0.25em 0;
		color: #95989a;
		font-size: 0.75em;
	}

	.mainTherapists .item .message {
		height: 3em;
		overflow: hidden;
	}

	.mainTherapists .item .more a {
		width: 100%;
		font-size: 0.875em;
	}
}
/*----------------------------------------------------
	トピックス
----------------------------------------------------*/
.topicsList .topics {
	position: relative;
	margin: 1.5em 0;
	padding: 0.5em;
	border: 8px solid #dfdfdf;
	background-color: rgba(255, 255, 255, 0.8);
}

.topicsList .date {
	display: inline-block;
	position: absolute;
	top: 1em;
	right: 1em;
	color: #95989a;
	font-size: 0.75em;
}

.topicsList .body {
	padding: 0.5em 0.5em;
}

@media (max-width: 767px) {
	.topicsList .date {
		display: block;
		position: static;
		text-align: right;
	}
}

.paginate ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 2em 0;
	-ms-flex-pack: center;
}

.paginate li {
	margin-left: -1px;
}

.paginate li a {
	display: inline-block;
	left: 2px;
	min-width: 2.25em;
	min-height: 2.25em;
	transition: all 0.3s;
	border: 1px solid #ae8537;
	background-color: #ffffff;
	line-height: 2.25;
	text-align: center;
}

.paginate li:first-child a {
	border-radius: 4px 0 0 4px;
}

.paginate li:last-child a {
	border-radius: 0 4px 4px 0;
}

.paginate li a:hover {
	background-color: #ae8537;
	color: #4f3d07;
}

.paginate li.active a {
	background-color: #ae8537;
	color: #4f3d07;
}

/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
.flex {
	-js-display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.aaa {
	-js-display: flex;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 2px;
}
