/* Add here all your CSS customizations */
.owl-carousel .owl-item img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
.owl-carousel .owl-item:hover img {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
}

.ls-pc {
	display: block !important;
}
.ls-sp {
	display: none !important;
}
a.text-l { font-size: 1.15em !important}
.youtube {
	width: 100%;
	height: 430px;
}
.icon-new {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	display: block;
	position: absolute;
	top: 0;
	right: 10px;
	z-index: 3;
	background: #f7465b;
	color: #fff;
	animation: fuwafuwa 1.5s infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.icon-new span {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 0.75;
	color: #fff;
	text-align: center;
}
.portfolio-item .item-info-text {
	border: 1px solid #fff;
	width: 120px;
	margin: 0 auto;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
}
.portfolio-item .item-info-text-over {
	display: none;
}
.info-box {
    border-bottom: 1px solid #636363;
}
.info-box-4 .info-box-title {
    margin-bottom: 1rem;
    font-size: 1.5em;
    font-weight: 500;
	color: #f1f1f1;
	line-height: 1.8;
}
.info-box a {
    color: #f7465b;
	display: block;
	padding:1rem 0;
    font-size: 1.15em;
}

.img-banner {
    width: 400px;
}

.aword-wrapp {
    width: 100%;
	position: absolute;
	bottom: 50px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-content: center;
    flex-wrap: wrap;
	-moz-transform: translateX(-50%) !important;
	-ms-transform: translateX(-50%) !important;
	-webkit-transform: translateX(-50%) !important;
	transform: translateX(-50%) !important;
}
.aword-wrapp img {
	height: 110px;
	margin: 0 0.5rem;
}

.news-box {
	width: auto;
	padding: 30px;
	border:1px solid #f7465b;
}

@media (max-width: 768px) {
	.ls-pc {
		display: none !important;
	}
	.ls-sp {
		display: block !important;
	}
	.youtube {
		width: 100%;
		height: 400px;
	}
	.portfolio-item .item-info-text-over {
		display: inline-block;
		border: 1px solid #f7465b;
		width: 120px;
		height: 30px;
		line-height: 30px;
		border-radius: 15px;
		position: absolute;
		bottom: 20px;
		left: 35%;
		font-size: 14px;
		text-align: center;
	}
  .img-banner {
      width: 100%;
  }
	.aword-wrapp {
        bottom: 60px;
        width: 98%;
        margin: 0 auto;
	}
	.aword-wrapp img {
		width: auto;
		height: 45px;
	}
	.scroll-down-arrow {
    bottom: 10px;
	}
	.mainmenu {
		/*width: 100%;
		display: flex;
		flex-wrap: wrap;*/
        display: none;
	}
	/*.mainmenu .btn {
		position: relative;
		margin: 0 2px 2px;
		padding: 8px 20px;
	}*/
}

/* オーバーレイ 初期状態 */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
/* オーバーレイ 表示アニメーション */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8;
}
/* オーバーレイ 非表示アニメーション */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* コンテンツ 初期状態 */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
/* コンテンツ 表示アニメーション */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* コンテンツ 非表示アニメーション */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}