@charset "UTF-8";

/* 共通部分
------------------------------- */
html{
    font-size: 100%;
}
body{
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    line-height: 1.7;
    color: #432;
}
a{
    text-decoration: none;
}
img{
 display: block;
  width: 50%;
  max-width: 100%;
  margin: 0 auto;
}

.cta img {
  display: block;
  width: 40%;
  margin: 8px auto;
}

.img-wrap{
  position: relative;
}


@keyframes shine{
  from{ left:-120%; }
  to{ left:120%; }
}


.footer {
  margin-top: 80px;
  padding: 10px 0 15px;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-bottom: 12px;
}

.footer a {
  color: #666;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #999;
}


/* モバイル版
------------------------------- */
@media (max-width: 1024px) {
  img{
    width: 100%;}
	
  .cta img {
    width: 80%;
  }
}

@media screen and (max-width: 600px) {

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links span {
    display: none;
  }

}


/* アニメーション
------------------------------- */
.cta{
  position: relative;
  overflow: hidden;
}

.cta img{
  position: relative;
  z-index: 1;
}

.cta::before{
  content:"";
  position:absolute;
  top:-100%;
  left:-120%;
  width:8%;
  height:300%;
  z-index:2;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255,255,255,0.85) 50%,
    transparent 60%
  );
  animation: shine 2s infinite ease-in-out;
  pointer-events:none;
}

	
@keyframes shine{
  from{ left:-120%; }
  to{ left:120%; }
}

.cta img {
  transition: transform 0.2s ease;
}

.cta img:hover {
  transform: scale(1.05);
}


