@charset "utf-8";
/* CSS Document */



/*== ボタン共通設定 */

.button{
	margin: 0;
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    padding: 10px 30px;
    text-align: center;
	font-size: 1.1rem;
    outline: none;
	max-width: 320px;
	background-color: #3a5da2;
    /*アニメーションの指定*/   
    transition: ease .2s;
	-webkit-text-size-adjust:100%;
}


.button_l{
	margin: 0;
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    padding: 10px 30px;
    text-align: center;
	font-size: 1.1rem;
    outline: none;
	width: 280px;
	background-color: #3a5da2;
    /*アニメーションの指定*/   
    transition: ease .2s;
	-webkit-text-size-adjust:100%;
}

/*ボタン内spanの形状*/
.button span,.button_l span{
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#FFFFFF;
}

.button:hover span,.button_l:hover span{
  color:#fff;
	text-decoration: underline;
	text-decoration-color: #FFFFFF;
}


.buyButton{
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}	


/*----------ボタン色変化----------*/

.bgskew_smpred::before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -150%;
    /*色や形状*/
  background: #b10020;
  width: 120%;
  height: 110%;
  transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew_smpred:hover::before {
  animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
  100% {
    left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
  }
}


/*-----オプション------*/
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: solid 1px #333333;/* ボーダーの色と太さ */
	background-color: #ffffff;
    padding: 15px 8px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	max-width: 500px;
	border-radius: 15px;
	margin: 0 auto;
}

.btn.bgcenterout{
   	border: 1px solid #fff;/* ボーダーの色と太さ */
    padding: 8px 40px;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#f231815;
	font-weight: 400;
}

.btn:hover span{
	color:#fff;
}

.btn.bgcenterout span{
	color:#fff;
}

.btn.bgcenterout:hover span{
	color:#ffffff;
}

/*== 中央から横全体 */
.bgcenterx:before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
    /*色や形状*/
	background: rgba(212,133,135,1.00);
	width: 100%;
	height: 100%;
    /*アニメーション*/
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
}

/*hoverした際の形状*/
.bgcenterx:hover:before{
	transform:scale(1, 1);
}


/*== 中央から外 */
.bgcenterout:before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
    /*色や形状*/
	background: #A11735;
	width: 100%;
	height: 100%;
    /*アニメーション*/
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 0);
	transform-origin:center;
}

/*hoverした際の形状*/
.bgcenterout:hover:before{
	transform:scale(1, 1);
}

/*== 角丸ボタン gy ==*/

.btn_sq01{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: none;
	background-color: #E1E1E1;
    padding: 15px 15px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	max-width: 240px;
	width: 100%;
	border-radius: 10px;
}

/*ボタン内spanの形状*/
.btn_sq01 span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#f231815;
	font-weight: 400;
}

.btn_sq01:hover span{
	color:#fff;
}

/*== 角丸ボタン pk ==*/

.btn_sq02{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: none;
	background-color: #FFC4C4;
    padding: 0;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	max-width: 240px;
	width: 90%;
	height: 30px;
	border-radius: 15px;
}

/*ボタン内spanの形状*/
.btn_sq02 span{
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#f231815;
	font-weight: 300;
	font-size: 0.9rem;
	margin-top: -2px 0 0 0;
}

.btn_sq02:hover span{
	color:#fff;
}


/*== 丸ボタン共通設定 */
.btn_round{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: none;
	background-color: #E1E1E1;
    padding: 17px 3px 0 0;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	font-size: 1.3em;
	width: 61px;
	height: 60px;
	vertical-align: middle;
	border-radius: 50%;
}


/*ボタン内spanの形状*/
.btn_round span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFFFFF;
	font-weight: 300;
	padding: 2px 0 0 0;
}


@media only screen and (max-width: 550px) {
.btn_round{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: none;
	background-color: #E1E1E1;
    padding: 5px 8px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	width: 41px;
	height: 38px;
	vertical-align: middle;
	border-radius: 50%;
}
	
	/*ボタン内spanの形状*/
.btn_round span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFFFFF;
	font-weight: 300;
	padding: 0;
	font-size: 1rem;
}
}


.btn_round:hover span{
	color:#fff;
}

