@charset "utf-8";
/* CSS Document */
/*HOME*/
.header img{
	width: 100%;
}
.header1{
	height: 80px;
	background:linear-gradient(to bottom, blue 0%, blue 2%, #ffffff 2%, #ffffff 100%);
}

/*indexスライドショー*/
.swiper-container{
	position: relative;
	overflow: hidden;
}
.swiper-wrapper img{
	width: 100%;
}
.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px!important;
  width: 54px;
  height: 5px;
  background: skyblue;
  opacity: 0.19;
}
.swiper-pagination-bullet-active {
  background: skyblue;
  opacity: 1;
}
@media screen and (max-width:768px) {
	#index-m{
		height:90px;
	}
}

/*コンセプト*/
#concept{
	margin-top: 1.5rem;
	padding: 1.5rem 3rem;
	background-color: #FFFFFF;
}
#concept h3{
	margin-bottom: 2.0rem;
	border-bottom: #737373 solid 1px;
}
#concept div{
}
.grad-wrap {
  position: relative;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 148px;
  margin: auto;
  padding: .5em 0;
  border-radius: 2px;
  background: blue;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.grad-trigger::after {
  content: "続きを読む"
}
.grad-trigger:hover {
  background: #fff;
  color: blue;
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 100px;
}
.grad-item p + p {
  margin-top: 1em;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.grad-trigger.is-show {
  bottom: -2em;
}
.grad-trigger.is-show::after {
  content: "閉じる"
}
.grad-trigger.is-show .fa {
  transform: rotate(180deg);
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}

@media screen and (max-width:768px) {
	#concept{
	}
}

/*本日の出勤*/
#today{
}
#today h3{
	margin-bottom: 2.0rem;
	border-bottom: rgba(172,41,86,1.00) solid 1px;
}
#today img{
	width: 100%;
}
#today p{
	text-align: center;
	border-top: rgba(172,41,86,1.00) solid 1px;
	border-bottom: rgba(172,41,86,1.00) solid 1px;
	padding: 1.0rem 0;
}
.staff{
	margin-bottom: 1.0rem;
}
.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;
	}
}

/*インスタグラム*/
.insta_btn{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 70px;/*高さ*/
  width: 95%;/*幅*/
	margin-left: 2.5%;
  text-align: center;/*中身を中央寄せ*/
  font-size: 20px;/*文字のサイズ*/
  line-height: 70px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}
.insta_btn:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta_btn:hover {
	color: #ffffff;
	
}
.insta_btn .fa-instagram{/*アイコン*/
  font-size: 32px;/*アイコンサイズ*/
  position: relative;
  top: 6px;/*アイコン位置の微調整*/
}
.insta_btn span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}
.insta_btn:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}