/*
Theme Name: WING-AFFINGER5 Child
Template: affinger5
Description: ver20180831以上対応
Version: 20180831
*/



/*media Queries スマートフォンとタブレットサイズ（959px以下）で適応したいCSS - スマホ・タブレット
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 959px) {


	/*-- ここまで --*/
}
	
/*media Queries タブレットサイズ（600px～959px）のみで適応したいCSS -タブレットのみ
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) and (max-width: 959px) {


	/*-- ここまで --*/
}	
	
/*media Queries タブレット（600px）以上で適応したいCSS -タブレット・PC
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) {


	/*-- ここまで --*/
}

/*media Queries PCサイズ（960px）以上で適応したいCSS - PCのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (min-width: 960px) {


	/*-- ここまで --*/
}

/*media Queries スマホサイズ（599px）以下で適応したいCSS - スマホのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (max-width: 599px) {

	
	/*-- ここまで --*/
}

/* 購入者ログ */

#emc-sc-order_history {
  height: 295px;
  border: 1px solid #777;
  margin: 0 1px 20px 1px;
}

#emc-sc-order_history p {
  margin: 0;
  margin-bottom: 4px;
}

#emc-sc-order_history h5 {
  margin: 0;
  font-weight: normal;
}

#emc-sc-order_history .ureyuki {
  height: 30px;
  padding: 5px;
  text-align: center;
  background-color: #6a6a6a;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

#emc-sc-order_history

#sidebar {
  color: #afb0b1;
  background: FFF000;
  float: left;
  margin: 0;
  width: 100%;
  background-color: #fff;
}

#emc-sc-order_history #sidebar ul {
  margin: 0;
  padding: 0;
  position: relative;
}

#emc-sc-order_history #sidebar li {
  margin: 0;
  padding: 0;
  height: 85px;
  overflow: hidden;
  list-style: none;
}

#emc-sc-order_history #sidebar li:before {
  content: "";
}

#emc-sc-order_history .data {
  border: 1px solid #777;
  height: 82px;
  padding: 5px;
  margin: 5px;
  background-color: #fff;
}

#emc-sc-order_history #sidebar li h5 {
  color: #666;
  font-size: 9pt;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

#emc-sc-order_history .money {
  font-size: 11pt;
  color: #ed0a17;
  font-weight: bold;
  padding: 0 5px;
  word-break: normal;
}

#emc-sc-order_history #sidebar li img {
  float: left;
  margin-right: 5px;
}

#emc-sc-order_history #sidebar li .info {
  color: #999;
  font-size: 8pt;
  margin-top: 0;
  text-align: center;
  line-height: 1.4;
}

#emc-sc-order_history #sidebar .spyWrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

#emc-sc-order_history a img {
  border: 0;
}

#emc-sc-order_history .left-icon-fa-desktop {
  float: left;
  font-size: 30px;
  margin: 3px 3px 0 3px;
}

#emc-sc-order_history .left-icon-fa-mobile {
  float: left;
  font-size: 40px;
  margin: 0 9px 0 10px;
}
/* 購入者ログ ここまで */

/* タイマーデザイン */
.timer{
	display:block;
	width:100%;
	background-color: black;
	color:red;
	text-align:center;
}
/* タイマーデザイン ここまで */

/* ぷるるんボタン */
/*左矢印+ボタン波形 ---------------------------------------------------------*/
.arr_wave{
	/*overflow:hidden;*/
}
.arr_wave a{
	position: relative;
	width: 100%;
	max-width: 400px;
	display: block;
	height: 140px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom:10px;
}
/*ﾎﾞﾀﾝ(波形)---------------------------------------------------------*/
.arr_wave a .btn_wave{
	position: absolute;
	left: 50%;
	bottom: 10px;
	/*width: 300px;*/
	/*height: 131px;*/
	max-width: 100%;
    height: auto;
	margin-left: -150px;
	z-index: 1;
	
	animation-name: btn_wave;
	animation-duration: 3s;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
	animation-direction: normal;
	
	-webkit-animation-name: btn_wave;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	
	-moz-animation-name: btn_wave;
	-moz-animation-duration: 3s;
	-moz-animation-timing-function: ease-in;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: normal;
}
@keyframes btn_wave {
	0% {transform: skewX(10deg);}
	7% {transform: skewX(-8deg);}
	14% {transform: skewX(6deg);}
	21% {transform: skewX(-5deg);}
	28% {transform: skewX(4deg);}
	35% {transform: skewX(-3deg);}
	42% {transform: skewX(2deg);}
	49% {transform: skewX(0deg);}
	100% {transform: skewX(0deg);}
	
}
@-webkit-keyframes btn_wave {
	0% {-webkit-transform: skewX(10deg);}
	7% {-webkit-transform: skewX(-8deg);}
	14% {-webkit-transform: skewX(6deg);}
	21% {-webkit-transform: skewX(-5deg);}
	28% {-webkit-transform: skewX(4deg);}
	35% {-webkit-transform: skewX(-3deg);}
	42% {-webkit-transform: skewX(2deg);}
	49% {-webkit-transform: skewX(0deg);}
	100% {-webkit-transform: skewX(0deg);}
}
@-moz-keyframes btn_wave {
	0% {-moz-transform: skewX(10deg);}
	7% {-moz-transform: skewX(-8deg);}
	14% {-moz-transform: skewX(6deg);}
	21% {-moz-transform: skewX(-5deg);}
	28% {-moz-transform: skewX(4deg);}
	35% {-moz-transform: skewX(-3deg);}
	42% {-moz-transform: skewX(2deg);}
	48% {-moz-transform: skewX(0deg);}
	100% {-moz-transform: skewX(0deg);}
}

/*矢印(左)---------------------------------------------------------*/
.arr_wave a .btn_arr{
	position: absolute;
	z-index: 2;
	width:80px;
	height:80px;
	top: 50%;
	margin-top:-40px;
	
	animation-name: btn_arr;
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction:alternate;
	
	-webkit-animation-name: btn_arr;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction:alternate;
	
	-moz-animation-name: btn_arr;
	-moz-animation-duration: 0.6s;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction:alternate;
}
@keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
@-webkit-keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
@-moz-keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
/* ぷるるんボタン ここまで */

/* 文字点滅 */
.blinking{
	color:red;
    -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.cdt{
	text-align:center;
	background-color:black;
	color:red;
}

strong{
	color:blue;
}

/************************************
** テーブル アプリ
************************************/
#app-table{
    text-align:center;
}
#app-table th{
	background-color: #FEA79E;
    color: white;
	font-size: 14px;
    line-height: 20px;
	font-weight:bolder;
    border:2px solid white;
}
#app-table td{
	background-color: #FEF7F7;
	border:2px solid white;
	font-size: 14px;
    line-height: 20px;
	vertical-align: middle !important;
}

/*基本のフォントサイズ*/
p, /* テキスト */
.st-kaiwa-hukidashi, /* ふきだし */
.st-kaiwa-hukidashi2, /* ふきだし */
.yellowbox, /* 黄色ボックス */
.graybox, /* グレーボックス */
.redbox, /* 薄赤ボックス */
#topnews .clearfix dd p, /* 一覧文字 */
.post ul li, /* ulリスト */
.post ol li, /* olリスト */
#comments #respond, /* コメント */
#comments h4, /* コメントタイトル */
.post h5, /* H5 */
.post h6 /* H6 */
 {
	font-size: 16px !important;
	line-height: 30px !important;
}

/*ボタンアニメーション*/
.animate73,.a-option73,.a-btnsub73 {
	-webkit-animation-timing-function: ease-in;
	-moz-animation-timing-function: ease-in;
	-o-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
a.a-btn {
	position:relative;
	display:inline-block;
	margin:auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a.a-btn img {
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
img.a-main {
	width:100%;
	position:relative;
	z-index: 54;
}
a.shover:hover * {
	animation-name:none!important;
}
@-moz-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@-o-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@-webkit-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
.animate73{
	-webkit-animation-name: animate73;
	-moz-animation-name: animate73;
	-o-animation-name: animate73;animation-name: animate73;
}

.a-btn73{
	padding-left:0%!important;
}
.a-option73{
	top:0%!important;
}
a-option73{
	width:20%!important;
}
.a-btn73{
	max-width:100%!important;
}
.animate73,.a-btnsub73,.a-option73{
	animation-duration:2s!important;
	-webkit-animation-duration:2s;
	-ms-animation-duration:2s;
	-moz-animation-duration:2s!important;
}
/*ボタンアニメーション ここまで*/

/*固定ページのタイトル・余白を非表示*/
#st-page .entry-title:not(.st-css-no2) {
    display: none;
}
/*固定ページのタイトル・余白を非表示 ここまで*/

.review{
    box-sizing: border-box;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px 12px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    border: 1px solid #ccc !important;
    box-shadow: 3px 3px #ffc7d3;
}

/*注釈文字の色調整*/
.komozi{
	color: #999999 !important;
	font-size: 8pt !important;
}

/*pangle アンケートLP*/
.komozi{
	font-size: 10px !important;
	color:#808080 !important;
}
.rankstlink-r2 p a{
padding: 18px !important;
font-size: 22px !important;
}
/* チェックボックス03 */
input[type=checkbox] {
    display: none;
}
.checkbox03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox03::after {
    border-right: 6px solid #FF0066;
    border-bottom: 3px solid #FF0066;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}