@charset "utf-8";

/*---------------------
common
---------------------*/
* {
  margin: 0;
  padding: 0;
  word-break: normal;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Mplus 1p", "ArialMT", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  color: #fff;
  background: #fff;
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  overflow-x: hidden !important;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 2.0rem;
  }
}
dl, ul, ol {
  list-style-type: none;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
table th, table td {
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  padding: 10px;
}
img {
  width: 100%;
  border: 0;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}
a:focus, a:active, input:focus {
  outline: none;
}
a, img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/***************************************/
/*	main
=======================================*/
  .container{
    width: 100%;
  }
  @media screen and (min-width: 769px) {
    .container{
      width: 1000px;
      margin: 0 auto;
    }
  }

#video-area{
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: -1;/*最背面に設定*/
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
  background-image: url('../img/movie1.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
}
  @media screen and (min-width: 769px) {
    #video-area{
      width: 1000px;
		height: 100%;
    }
  }

  .step{
    background: url(../img/step_bg.jpg);
    background-size: cover;
  }
  .cta02{
    background: url("../img/cta02.png");
    background-repeat: no-repeat;
    background-size:cover;
    background-position:50%;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 65%;
  }
  .cta02 .btn{
    width: 100%;
    padding: 0 5%;
    position: absolute;
    bottom: 5%;
    left: 50%;
	font-size: 1rem;
	color: #5A5A5A;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .btn img{
    animation: key1 .5s ease infinite alternate;
  }
  @keyframes key1{
    0% {transform: translateY(0px);}
    100% {transform: translateY(-15px);}
  }

  .footer{
    background: #6f6254;
    text-align: left;
  }
  .footer li a{
    display: block;
    padding: 20px;
    color: #fff;
    cursor: pointer;
  }
  .footer li{
    border-bottom: 1px solid #fff;
  }
  .footer small{
    padding: 20px;
	font-size: 1.2rem;
    text-align: center;
    display: block;
  }
	
/***************************************/
/*	画像アニメーション
=======================================*/
.slider-container {
	position: relative; /* コンテナ内でスライド位置を相対的に設定 */
	width: 100%; /* コンテナ幅を100%に */
	overflow: hidden; /* スライドがコンテナ外に出ないように非表示 */
}