.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.content-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.close-btn, .more-btn {
  padding-bottom: 2%!important;

  display: block;
  width: 100%;
  padding: 80px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(246,244,239, 0) 0%,
    rgba(246,244,239, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(246,244,239, 0) 0%,
    rgba(246,244,239, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(246,244,239, 0) 0%,
    rgba(246,244,239, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr='#00F6F4EF',
      endColorstr='#F6F4EF',
      GradientType=0
    );
}
.close-btn {
  background: none;
}
.slide-up {
  height: 150px;
  padding-bottom: 0;
  overflow: hidden;
}
.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}
.more-btn p {
  display: inline-block;
  color: #fff!important;
  cursor: pointer;
  background: #C8AF75;
  padding: 5px 20px;
  width: 80%;
  border-radius: 20px;
}
.close-btn {
  padding:0;
}
.close-btn p {
  background: #aaa;
}

.container-linenup {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.container-linenup .item-list {
    width: 30%;
    padding: 2% 5%;
	max-width: 300px;
}
.container-linenup .item-list p {
    margin-top: 15px;
    text-align: center;
	color: #505050;
}
.container-linenup .item-list p.-text {
    font-size: 30px!important;
}

@media only screen and (max-width: 767px) {
	.container-linenup .item-list {
	    width: 50%;
	    padding: 5% 6%;
	}

	.container-linenup .item-list p.-text {
	    font-size: 28px!important;
	}
}
/*=================================
.TOPページ H2アニメーション
=================================*/
.ec-secHeading .ec-secHeading__en {
    display: inline-flex;
}



/*** 下から登場するアニメーション ***/
@keyframes updown-anim{
  0%{
    transform: translateY(110%); /*表示範囲外から*/
  }
  100%{
    transform: translateY(0); /*通常の位置へ*/
  }
}

/*** アニメーションさせる要素 ***/
.updown{
  display: flex;
  overflow: hidden;
}
.updown span{
  transform: translateY(110%); /*下（範囲外）に隠しておく*/
  display: block; /*ブロック要素に変更*/
}

/*** スクロールで画面に入った場合 ***/
.updown.active span{
  animation: 0.35s updown-anim linear forwards; /*一度だけのアニメーション（終了時点で固定）*/
}

/*** 各文字のアニメーション遅延時間 ***/
.updown span:nth-child(1) {
  animation-delay: 0s;
}
.updown span:nth-child(2) {
  animation-delay: 0.05s;
}
.updown span:nth-child(3) {
  animation-delay: 0.1s;
}
.updown span:nth-child(4) {
  animation-delay: 0.15s;
}
.updown span:nth-child(5) {
  animation-delay: 0.2s;
}
.updown span:nth-child(6) {
  animation-delay: 0.25s;
}
.updown span:nth-child(7) {
  animation-delay: 0.3s;
}
.updown span:nth-child(8) {
  animation-delay: 0.35s;
}
.updown span:nth-child(9) {
  animation-delay: 0.4s;
}
.updown span:nth-child(10) {
  animation-delay: 0.45s;
}
.updown span:nth-child(11) {
  animation-delay: 0.5s;
}
.updown span:nth-child(12) {
  animation-delay: 0.55s;
}
.updown span:nth-child(13) {
  animation-delay: 0.6s;
}
.updown span:nth-child(14) {
  animation-delay: 0.65s;
}
.updown span:nth-child(15) {
  animation-delay: 0.7s;
}
.updown span:nth-child(16) {
  animation-delay: 0.75s;
}


/*** 装飾用 ***/
.updown{
}


.t-container p.japanise{
    font-family: Helvetica!important;
	position: absolute;
	top: 22%;
	left: 9%;
    font-size: 18px;
	color:#fff;
	margin:0;
	text-aline:center;
}	



@media only screen and (max-width: 767px) {
	.t-container p.japanise{
		position: absolute;
		top: 25%;
		left: 0;
		font-size: 14px!important;
		color:#fff;
		margin:0;
	    width: 100%;
        text-align: center;
	}	
}



.outservice a.ec-shopCollectionBtn {
    margin: 0 auto;
}

