/*PC用*/

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

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

.TopImageTextArea_jp{
  font-size: 40px;
  line-height: 1.6;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,.25);
  font-weight: bold;
}

.TopImageTextArea_en{
	color: #fff;
	font-size: 25px;
	margin: 35px auto;
	text-shadow: 0 0 6px rgba(0,0,0,.25);
	font-weight: bold;
}


/* CTA：テキスト直下に自然配置（下へ暴走しない） */
.TopImageCtaBtn{
  pointer-events: auto;       /* ボタンだけクリック可能に戻す */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:90px auto 0;
  min-width: 320px;
  height: 58px;
  padding: 0 28px;

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

  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;
}

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

.TopImageCtaBtn:active{ transform: translateY(0); }

.TopImageCtaBtn:focus-visible{
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 3px;
}


.photoObject{
  width: 100%;
  height: 840px;
  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{ 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); }
