/*SP用*/ 

.TopHero{
	position: relative;
	width: 100%;
	height: 580px;
	overflow: hidden;
}

.TopImageTextArea{
	width: 100%;
	margin: 0 auto;
	padding: 0;      /* 上余白で位置を作る（安定） */
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	top:50%;
	z-index: 10;
}

.TopImageTextArea_jp{
	color: #fff;
	text-align: center;
	margin: auto;
	font-weight: bold;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
	font-size: 19px;
	line-height: 1.6;

}

.TopImageTextArea_en{
	color: #fff;
	font-size: 18px;
	text-align: center;
	width: 95%;
	margin:25px auto 0;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
	line-height: 2;
	writing-mode: horizontal-tb;

}

.TopImageCtaBtn{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:50px auto 0;
  min-width: 90%;
  height: 54px;
  padding: 0 26px;

  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .06em;
  font-size:16px;

  color: #fff;
  background: rgba(60,160,220,.95);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-sizing: border-box;
}

.TopImageCtaBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.30);
  background: rgba(60,160,220,1);
}

.photoObject {
	width: 100%;
	height: 580px;
	position: relative;
	z-index: 1;
}
.photoObject div {
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	transition-timing-function: ease-in-out;
}
.photoObject div span {
	background-position: center center;
	background-size: cover;
	transition-timing-function: ease-in;
}
.photoObject div,
.photoObject div span {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}


.photoObject div.s1,
.photoObject div.e2 {
	opacity: 0;
	background: #FFF;
}
.photoObject div.s2,
.photoObject div.e1 {
	opacity: 1;
	background: #FFF;
}

div.photoObject span.anime_in_zoomin {
	transform: scale(1.0);
}
.photoObject span.anime_out_zoomin {
	transform: scale(1.1);
}

.photoObject span.anime_in_zoomout {
	transform: scale(1.1);
}
.photoObject span.anime_out_zoomout {
	transform: scale(1.0);
}
.photoObject span.anime_in_grayscale_zoomin {
	filter: grayscale(100%);
	transform: scale(1.2);
}
.photoObject span.anime_out_grayscale_zoomin {
	filter: grayscale(0%);
	transform: scale(1.15);
}

/* =========================
   SP用（安定版）
   ========================= */

.photoObject{
  width: 100%;
  height: 580px;
  position: relative;
  z-index: 1;
}

.photoObject div{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition-timing-function: ease-in-out;
}
.photoObject div span{
  background-position: center center;
  background-size: cover;
  transition-timing-function: ease-in;
}
.photoObject div,
.photoObject div span{
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photoObject div.s1,
.photoObject div.e2{ opacity: 0; background: #FFF; }
.photoObject div.s2,
.photoObject div.e1{ opacity: 1; background: #FFF; }

div.photoObject span.anime_in_zoomin{ transform: scale(1.0); }
.photoObject span.anime_out_zoomin{ transform: scale(1.1); }
.photoObject span.anime_in_zoomout{ transform: scale(1.1); }
.photoObject span.anime_out_zoomout{ tran
