@charset "utf-8";
/* CSS Document */
/*システム*/
body{
	background: url("../img/therapist/header_img.jpg") top center no-repeat;
}
.header img{
	width: 100%;
}
.header1{
	height: 80px;
}

.profile{
	margin: 0 1.0rem 3.0rem;
}
.profile p{
	margin-bottom: 0;
}
.profile img{
	width: 100%;
}

h4 {
	font-size: 22px;
	border-bottom: #0E0B53 solid 1px;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}
h4 span {
	display: flex;
	align-items: center;
	color: #498ee0;
	font-size: 16px;
}
h4 span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 40px;
	height: 1px;
	background-color: #498ee0;
}
h4 i{
	margin-right: 0.5rem;
}

.contents{
	margin: 0 1.0rem 3.0rem;
	font-size: 0.9rem;
}

/*スライドショー*/
.swiper-container{
	position: relative;
	overflow: hidden;
}
.swiper-wrapper img{
	width: 100%;
}
.slide{
  margin: 0.5rem auto;
  padding: 0.2rem;
  max-width: 100%;
  border: 2px solid #eee;
  box-sizing: border-box;
}
.slide__item{
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
	/* メイン画像縦横中央に配置 */
.slide__item img{
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
	/* 画像の比率4対3に指定 2対1の場合は50%にします */
.slide__item:after,
.slide-thumbs__item:after{
  display: block;
  padding-top: 100%;
  content: '';
}
.slide-thumbs{
  width: 100%;
  padding: 0.2rem 0 0;
  box-sizing: border-box;
}
.slide-thumbs__item{
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.slide-thumbs__item.swiper-slide{
  opacity: 0.5;
}
.slide-thumbs__item.swiper-slide-thumb-active{
  opacity: 1;
}
	/* サムネイル画像画像縦横中央に配置 */
.slide-thumbs__item img{
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*プロフィール項目*/
.name{
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0.5rem 0 0 0.5rem;
}
.data{
	padding: 0.5rem 0 0.5rem 1.0rem;
	margin-bottom: 1.0rem;
	border-bottom: #00014D solid 1px;
}
.data span{
	margin-right: 1.0rem;
}
h6{
	font-size: 1.2rem;
	border-bottom: #0E0B53 solid 1px;
	padding-bottom: 0.5rem;
}
h6 i{
	margin-right: 0.5rem;
}
.intro{
	font-family: 'Noto Sans JP', sans-serif;
}
.self{
	font-family: 'Zen Kurenaido','Noto Sans JP', sans-serif;
}

	/*スケジュール*/
.schlist{
	margin: 0.5rem 0 3.0rem;
	display: block;
}
.schlist:after {
	content: "";
	display: block;
	clear: both;
}
.schlist:before {
	content: "";
	display: block;
	clear: both;
}
.days{
	width: 7rem;
	margin: 0.2rem 0;
	padding: 0;
	background-color: white;
	text-align: center;
	float: left;
}
.days div{
	width: 100%;
	height: 1.8rem;
	padding-top: 0.2rem;
	border: #4E56D9 solid 1px;
}
.days div.sat{
	background-color: aliceblue;
}
.days div.sun{
	background-color: lavenderblush;
}
.days div.time{
	border-top: none;
}
.days div.time span.dayoff{
	color: red;
}

/* セラピスト一覧 */
.therapist{
	margin: 0 1.0rem 3.0rem;
}
.therapist p{
	margin-bottom: 0;
}
.therapist img{
	width: 100%;
}
.staff{
	margin-bottom: 1.0rem;
}
.thum{
	position: relative;
	width: 100%;
}
.thum:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.thum img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
}
.card{
	background-color: transparent;
	height: 100%;
	text-align: center;
	color: #000000;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0.1rem;
}
.card-img-top {
	max-width: 100%;
	flex-shrink:0;
 }
.card-body{
	padding: 1.0rem 0 0.2rem;
}
.worktime{
	background-color: #8A9AB3;
	margin: 1.0rem 0 0;
	color: #ffffff;
}
.worktime i{
	margin-right: 0.5rem;
}
@media screen and (max-width:768px) {
	.staff{
		margin: 0;
		padding: 0.3rem;
	}
	.card-body{
		padding: 0.5rem;
		margin: 0;
	}
	.card-text{
		font-size: 12px;
	}
}