@charset "utf-8";

html, body, div,p,img,ul,li{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font-family:"メイリオ", Meiryo,"Hiragino Kaku Gothic Pro",  Osaka,"ヒラギノ角ゴ Pro W3",  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	vertical-align:bottom;
	background-color:transparent;
	list-style:none;
}

html,body {height:100%;}

body {
	line-height:1.48;
	font-size:14px;
	text-align:center;
	color:#444;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	text-decoration: underline;
	color: #00437C;
}
/* header
----------------------------------------------------*/
header{
    background:#00437C;/*ヘッダー背景色*/
    height:40px;
    position:relative;
}
header h1{
    text-align:center;
    color:#fff;/*ヘッダー文字色*/
    margin:0px;
    font-size:14px;
    line-height:40px;
}

/* Fixed position */
#lptop-padding {
	padding-top: 40px;
}

#fixed-top {
	position: fixed;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 4;
}

/* wrapper
----------------------------------------------------*/
#wrapper {
	width:100%;
	padding: 0 0;
	padding-bottom: 20px;
	text-align:center;
}

#content {
	line-height: 0;
}

#content img {
	width: 100%;
	height: auto;
}


/* ---------------------- movie ---------------------- */

.movieSP01, .animationSP, .movieSP02 {
  position: relative;
}

.movieBg01 {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
}

.movie01 {
  position: absolute;
  z-index: 2;
  bottom: 34%;
  left: 4%;
  width: 92%;
}

.movieCover01 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}

.animeSP {
  position: absolute;
  top: 14.5%;
  left: 3%;
}

.movieCover02 {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}

.movieSP02 ul {
  z-index: 1;	
  width: 42%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  top: 29%;
  left: 4.5%;
}

.movieSP02 li {
  padding-bottom: 13%;
}
.movie02 {
  width: 100%;
}
/* ---------------------- button ---------------------- */

.purenacle_btn_sp {
	background-color: #fff;
	padding-bottom: 2%;
}

.onebtn_cv {
  display: block;
  animation: fluffyY 1s infinite ease-out;/*ボタン動き*/
}

/*ボタンアニメーションキーフレーム*/
@keyframes fluffyY {
 0% {
transform:translateY(7px);
}
 50% {
transform:translateY(-7px);
}
 100% {
transform:translateY(7px);
}
}

/* ------------------------ FV直下ボタン（特別対応） ------------------------ */
.oneBtn {
  padding-top: 3%;
  padding-bottom: 4%;
  background-color: #fff;
}

.oneBtn a {
  display: block;
  text-align: center;
}

.onlybtn {
  animation: fluffyY 1s ease infinite; /*ボタン動き*/
  width: 95%;
  margin-left: 2.5%;
}

/*ボタンアニメーションキーフレーム*/
@keyframes fluffyY {
  0% {
    transform: translateY(7px);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(7px);
  }
}

/* ------------------------ offer contents ------------------------ */

.kiraha_cv_sp {
  position: relative;
}

.cvBtnSP {
  position: absolute;
  right: 7%;
  top: 71.5%;
  width: 50%;
  animation: animScale 2s infinite ease-out; /*ボタン動き*/
}

/*ボタンアニメーションキーフレーム*/
@keyframes animScale {
  0% {
    transform: scale(0.9, 0.9);
  } /*(Xよこ,Yたて)サイズは%で表示*/
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0.9, 0.9);
  }
}