@charset "UTF-8";
/* CSS Document */


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

/*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/

/*--------------------------------------------------
共通設定(スマホ)
-----------------------------------------------------*/

/*body全体の初期スタイル調整*/
body {
	width: 100%;
  -webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}


/*--------------------------------------------------
全体レイアウト／背景設定（スマホ）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #f2f2f2;
	overflow:hidden;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: none;
  border-right: none;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width: 100%;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
下部固定ヘッダー（スマホ）
-----------------------------------------------------*/

.fix_menu_smartphone {
	margin: 1em 0;
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10000;
  }
  .fix_menu_smartphone img {
		padding: 0em 0;
    width: 100%;
		text-align: center;
  }
  .mmenu_center{
    background-color: #fff;
    width: 80%;
    padding: 0em 0;
  }



/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: none;
}
.top_image_in img {
  width: 100%;
}
/*--------------------------------------------------
セクション1
-----------------------------------------------------*/
.main_container {
	margin-top: 2em;
  background-color: #fff;
  padding: 0;
  text-align: center;
}

.main_container img {
  width: 100%;
}




/*--------------------------------------------------
セクション2(動画)
-----------------------------------------------------*/




/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #3173dc;
  padding: 1.5em 0.5em 0;
}

.scroll_btn {
  animation-name: fuwafuwa;
  /* fuwafuwaっていうアニメーションの名前*/
  animation-duration: 2s;
  /*アニメーションの時間設定*/
  animation-iteration-count: infinite;
  /*アニメーションの繰り返し設定*/
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0px);
  }

  /*X軸とY軸*/
  50% {
    -webkit-transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0px);
  }
}

.cta_causion {
  color: #fff;
  font-weight: bold;
  font-size: 0.8em;
  padding: 0.5em 1em 1em 1em;
  text-align: center;
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #3173dc;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.2em;
  color: #fff;
}
.footer a {
  color: #fff;
}



}
