@charset "UTF-8";
/*====================================================================

  リセット

====================================================================*/
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, ins, kbd, q, samp,small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, figcaption, figure, footer, header, hgroup,menu, nav, section, summary,time, mark, audio, video {
    margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content:'';content:none;
}
table {border-collapse:collapse;border-spacing:0;}
input, select {vertical-align:middle;}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {line-height: 150%;}
body {line-height:150%;}
img {vertical-align: bottom;max-width: 100%;height: auto;display: block;margin: 0 auto;}
a {margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
caption, th, td {font-weight: normal;}
strong {font-weight:normal;}

/*====================================================================

  設定

====================================================================*/
html,body {
	color:#666666;
	font-family: Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	background: #FFFFFF;
}

a:link {color:#F14B94; text-decoration:none;}
a:visited {color:#F14B94; text-decoration:none;}
a:hover {color:#F14B94; text-decoration:none}

a:hover img {
	opacity: 0.8 ;
	filter: alpha(opacity=80) ;	
	-ms-filter: "alpha(opacity=80)";
	}
a img {
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
}
a {-webkit-transition: 0.4s ;transition: 0.4s ;}
p {line-height:180%;}
i {	padding: 0 0.5rem;}

.f_l {float:left;}
.f_r {float:right;}
.clear {clear:both}
.clear_fix:before, .clear_fix:after {content: " ";display: table;}
.clear_fix:after {clear: both;}
.clear_fix {*zoom: 1;}


/* ==================================================================================================================

 共通CSS

================================================================================================================== */

html {font-size: 62.5%;}
body {font-size:1.5rem;}

html {
	background: #F6F6F6;
}
body {
	max-width: 620px;
	margin: 0 auto;
	background: #FFF;
	border-right: 1px solid #FFF;
	border-left: 1px solid #FFF;
}
small {
	background: #71A5C4;
	color: #FFF;
	text-align: center;
	display: block;
	padding: 0.5em;
	letter-spacing: 0.05em;
	font-size: 1.3rem;
}
iframe {
	vertical-align: bottom;
}
.bound2__btnArea {
}
.boundImg__link {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.boundImg__link .boundImg {
  width: 100%;
  height: auto;
  /*バウンドのアニメーション設定。
  1番目の値はアニメーション名、2番目の値はアニメーションの開始から終了までの時間（2s=2秒)、3番目の値は変化の度合い、4番目の値は繰り返しの回数（infinite=無限）*/
  animation: bound2Btn 2s ease infinite;
}
/*アニメーションの詳細設定*/
@keyframes bound2Btn {
  0% {
    /*Y軸方向の移動距離*/
    transform: translateY(0);
  }
  15% {
    transform: translateY(-30px);
  }
  30% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/*ボタン設定*/
.btn {
	padding: 0 20px 30px 20px;
	margin-top: -40px;
}
.auraBtn {
	position: relative;
	width: 90%;
	margin: 3em auto;
}

/*ボタンが広がるアニメーション（1番目）*/
.auraBtn:before {
	animation: auraBtn 2s ease-out infinite
}

/*ボタンが広がるアニメーション（2番目）*/
.auraBtn:after {
 animation: auraBtn 2s ease-out 1s infinite
}

.auraBtn:before,
.auraBtn:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100vh;
	background: #32ca5b;
	transform: translate3d(0, 0, 0);
}

.auraBtn a {
	color: #fff;
	font-size: 1.7rem;
	font-weight: 600;
	display: block;
	padding: 25px 0;
	border-radius: 100vh;
	text-align: center;
	text-decoration: none;
	background: #32ca5b;
	position: relative;
	z-index: 1;
}

@keyframes auraBtn {

  /*アニメーション初期（0秒の時）*/
  0% {
    /*拡大率　（1=100％）*/
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    /*透明度（0=透明、1=不透明）*/
    opacity: 1
  }

  /*1.8秒時*/
  90% {
    /*透明度*/
    opacity: .1
  }

  /*アニメーション最後（2秒時）*/
  to {
    /*拡大率　1番目の値はX軸、2番目の値はY軸*/
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    /*透明度*/
    opacity: 0
  }
}

.auraBtn.red a {
  background: #ff5555;
}

.auraBtn.red:before,
.auraBtn.red:after {
  background: #ffaaae;
  border: 1px solid #ff999e;
}

.auraBtn.orange a {
  background: #FF9700;
}

.auraBtn.orange:before,
.auraBtn.orange:after {
  background: #ffc580;
  border: 1px solid #f9ac58;
}

/* ========================================
　920px以下 
========================================= */

@media screen and (max-width: 920px) {
	body {
		max-width: 100%;
		width: 100%;
	}
	img {
		width: 100%;
	}
	small {
		letter-spacing: 0;
		font-size: 1.2rem;
	}
}
