@charset "utf-8";
/*=======================================
共通
========================================*/
.tenmetsu {
	-webkit-animation: blink_text 1.0s ease-in-out infinite alternate;
	-moz-animation: blink_text 1.0s ease-in-out infinite alternate;
	animation: blink_text 1.0s ease-in-out infinite alternate;
	font-weight: bold;
	display: inline-block;
}
@-webkit-keyframes blink_text {
 0% {
 opacity:1;
}
 100% {
 opacity:0.2;
}
}
@-moz-keyframes blink_text {
 0% {
 opacity:1;
}
 100% {
 opacity:0.2;
}
}
@keyframes blink_text {
 0% {
 opacity:1;
}
 100% {
 opacity:0.2;
}
}
.tenmetsu02 {
	-webkit-animation: blink_img 1s ease-in-out infinite alternate;
	-moz-animation: blink_img 1s ease-in-out infinite alternate;
	animation: blink_img 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink_img {
 0% {
 opacity:1;
}
 100% {
 opacity:0.5;
}
}
@-moz-keyframes blink_img {
 0% {
 opacity:1;
}
 100% {
 opacity:0.5;
}
}
@keyframes blink_img {
 0% {
 opacity:1;
}
 100% {
 opacity:0.5;
}
}
/* テキストカラー */
.txt_pink {
	text-shadow: 1px 1px 1px #ff0066, -1px 1px 1px #ff0066, 1px -1px 1px #ff0066, -1px -1px 1px #ff0066, 1px 1px 1px #ff0066, -1px 1px 1px #ff0066;
}
.txt_purpule {
	text-shadow: 1px 1px 1px #a500ab, -1px 1px 1px #a500ab, 1px -1px 1px #a500ab, -1px -1px 1px #a500ab, 1px 1px 1px #a500ab, -1px 1px 1px #a500ab;
}
.txt_white {
	text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff, -1px -1px 1px #ffffff, 1px 1px 1px #ffffff, -1px 1px 1px #ffffff;
}
.txt_red_g {
	text-shadow: #cc0000 1px 1px 15px, #cc0000 -1px -1px 15px, #cc0000 1px 1px 15px, #cc0000 -1px -1px 15px, #cc0000 1px 1px 15px, #cc0000 -1px -1px 15px;
}
/* カラム */
.decobtn-colom1, .decobtn-colom2, .decobtn-colom3, .decobtn-colom4 {
	width: 95%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}
.decobtn-colom1 li, .decobtn-colom2 li, .decobtn-colom3 li, .decobtn-colom4 li {
	display: block;
	float: left;
}
.decobtn-colom2 li:nth-child(2n), .decobtn-colom3 li:nth-child(3n), .decobtn-colom4 li:nth-child(4n) {
	float: right;
}
.decobtn-colom1 li {
	width: 100%;
}
.decobtn-colom2 li {
	width: 50%;
}
.decobtn-colom3 li {
	width: 33.3%;
}
.decobtn-colom4 li {
	width: 25%;
}
.decobtn-colom1 li a, .decobtn-colom2 li a, .decobtn-colom3 li a, .decobtn-colom4 li a {
	display: block;
	text-align: center;
	position: relative;
	padding: 1.5px;
	margin: 3px;
	color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	line-height: 120%;
	font-size: 12px;
	text-decoration: none;
	background-image: -moz-linear-gradient(top, rgba(255,249,201,1) 0%, rgba(112,82,33,1) 5%, rgba(255,249,201,1) 50%, rgba(112,82,33,1) 100%);
	background-image: -webkit-linear-gradient(top, rgba(255,249,201,1) 0%, rgba(112,82,33,1) 5%, rgba(255,249,201,1) 50%, rgba(112,82,33,1) 100%);
	box-shadow: 0 2px 3px rgba(0,0,0,0.50);
}
.decobtn-colom1 li a span, .decobtn-colom2 li a span, .decobtn-colom3 li a span, .decobtn-colom4 li a span {
	display: block;
	padding: 12px 0;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: #000;
}
.decobtn-colom1:after, .decobtn-colom2:after, .decobtn-colom3:after, .decobtn-colom4:after {
	content: "";
	display: block;
	clear: both;
}
/* 装飾ボタン */
.decobtn-colom1 .btn-green {
	background-image: -moz-linear-gradient(top, rgba(0,47,41,1) 0%, rgba(14,108,94,1) 50%, rgba(0,47,41,1) 100%);
	background-image: -webkit-linear-gradient(top, rgba(0,47,41,1) 0%, rgba(14,108,94,1) 50%, rgba(0,47,41,1) 100%);
	-webkit-box-shadow: 0 0 10px #249d8d inset, 0 0 10px #249d8d inset;
	box-shadow: 0 0 10px #249d8d inset, 0 0 10px #249d8d inset;
}
.decobtn-colom1 .btn-red {
	background-image: -moz-linear-gradient(top, rgba(196,13,65,1) 0%, rgba(102,10,36,1) 100%);
	background-image: -webkit-linear-gradient(top, rgba(196,13,65,1) 0%, rgba(102,10,36,1) 100%);
	background-image: linear-gradient(to bottom, rgba(196,13,65,1) 0%, rgba(102,10,36,1) 100%);
}
.decobtn-colom1 .btn-violet {
	background-image: -moz-linear-gradient(top, rgba(135,13,196,1) 0%, rgba(39,10,102,1) 100%);
	background-image: -webkit-linear-gradient(top, rgba(135,13,196,1) 0%, rgba(39,10,102,1) 100%);
	background-image: linear-gradient(to bottom, rgba(135,13,196,1) 0%, rgba(39,10,102,1) 100%);
}
.add-icon .decobtn-colom1 li a, .add-icon .btn-colom2 li a {
	position: relative;
	overflow: hidden;
}
.icon-new {
	display: block;
	width: 70px;
	padding: 2px 30px 2px 0 !important;
	color: #DD0C10;
	text-shadow: none !important;
	background-color: #e7ef17 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	text-shadow: none;
	font-weight: bold;
	font-size: 0.9em;
	position: absolute;
	top: 0px;
	left: -16px;
	-webkit-transform: rotate(-21deg);
	-moz-transform: rotate(-21deg);
	transform: rotate(-21deg);
}
.btn-regist {
	margin: 0 auto;
	text-align: center;
}
.btn-regist a {
	display: block;
	width: 53%;
	margin: 0 auto;
	padding: 15px 0;
	/*background: url(../images/free/btn_regist.png) no-repeat center;*/
	background-image: url(../images/common/btn.png);
	background-repeat: no-repeat;
	background-position: -412px -60px;
	-webkit-background-size: 390%;
	background-size: 390%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
/*.btn-regist a:active {
	background-position: 0 -63px;
}*/
.btn-ppv {
	margin: 0 auto;
	text-align: center;
}
.btn-ppv a {
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 25px 0;
	background: url(../images/pay/btn_ppv.png) no-repeat center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.line_h_l {
	line-height: 1.5;
}
/*=======================================
無料TOP
========================================*/
#free #container {
	padding-top: 0;
}
.main_visual {
	margin-bottom: -17px;
	position: relative;
}
.main_visual h1 {
	width: 100%;
	min-height: 352px;
	background: url(../images/free/main.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.main_visual .car_model {
	padding: 30px 0;
}
.main_visual .car_model .inner {
	position: relative;
}
.main_visual .car_model img {
	width: 75%;
	margin: 0 auto;
}
.main_visual .car_model .inner:before {
	content: "";
	position: absolute;
	top: -31px;
	left: 5px;
	width: 70px;
	min-height: 50px;
	background: url(../images/free/car_model_fuki01.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	z-index: 3;
}
.main_visual .car_model .inner:after {
	content: "";
	position: absolute;
	top: 58px;
	right: 10px;
	width: 110px;
	min-height: 30px;
	background: url(../images/free/car_model_fuki02.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	z-index: 3;
}
.main_visual .car_model .fuki {
	width: 82%;
	margin: 0 auto 20px auto;
}
.main_visual .car_model .fuki p {
	background: url(../images/pay/midnight_bg_mid.png) repeat-y left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 0 21px;
	text-align: center;
}
.main_visual .car_model .fuki:before {
	background: url(../images/pay/midnight_bg_top.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	top: -15px;
	min-height: 20px;
}
.main_visual .car_model .fuki:after {
	background: url(../images/pay/midnight_bg_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	bottom: -30px;
	min-height: 38px;
}
.media p {
	margin-bottom: 0;
}
.media .media_img01 {
	background: url(../images/free/media_img01.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 368px;
}
.media .media_img02 {
	background: url(../images/free/media_img02.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 724px;
	position: relative;
}
.media .media_img02 a {
	display: block;
	width: 114px;
	min-height: 28px;
	position: absolute;
	top: 360px;
	right: 11px;
	/*background: #000;*/
	border-radius: 12px;
}
.btn_free_fortune {
	margin-bottom: 10px;
}
.btn_free_fortune p.lead {
	width: 90%;
	margin: 0 auto;
}
.btn_free_fortune ul {
	overflow: hidden;
}
.btn_free_fortune li {
	float: left;
	width: 50%;
}
.btn_sprite a {
	display: block;
	background-image: url(../images/common/btn.png);
	background-repeat: no-repeat;
	min-height: 98px;
}
.btn_free_fortune li:nth-child(1) a {
	background-position: 0px -16px;
	-webkit-background-size: 399%;
	background-size: 399%;
}
.btn_free_fortune li:nth-child(2) a {
	background-position: -159px -16px;
	-webkit-background-size: 399%;
	background-size: 399%;
}
.movie_box {
	position: relative;
	background: url("../images/free/anime_film_bg.png") no-repeat 0 0;
	min-height: 338px;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.movie_box .inner {
	width: 100%;
	height: 208px;
	position: relative;
	top: 63px;
	background: url("../images/free/anime_film.png") repeat-x 0 0;
	-webkit-background-size: 100% auto;
	background-size: auto 100%;
	animation: anime_film 37s linear infinite;
}
 @keyframes anime_film {
 from {
background-position: 0 0;
}
 to {
background-position: -3164px 0;
}
}
.movie_box .inner img {
	width: 90%;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 45px;
}
.tsunagi01 .lead {
	background: url(../images/free/bg_teller01.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 196px;
	margin-bottom: 10px;
}
.tsunagi01 .lead .fuki {
	width: 205px;
	top: 43px;
	margin-right: 8px;
}
.tsunagi01 .lead .fuki p {
	font-size: 12px;
	padding: 5px 10px 5px 18px;
	position: relative;
}
.tsunagi01 .lead .fuki p:before {
	content: "";
	position: absolute;
	left: -24px;
	top: -37px;
	background: url(../images/free/icon_fuki01.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 77px;
	min-height: 44px;
}
.tsunagi01 .lead .fuki p:after {
	content: "";
	position: absolute;
	right: 0px;
	bottom: -61px;
	background: url(../images/free/icon_car.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 135px;
	min-height: 64px;
}
.tsunagi01 .lead .fuki:after {
	bottom: -24px;
	min-height: 45px;
}
/* 無料鑑定 */
.free_fortune_box .lead {
	background: url(../images/free/form_lead_bg.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 343px;
	margin-bottom: -35px;
}
.free_fortune_box.two .lead {
	background: url(../images/free/form_lead02_bg.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 346px;
	margin-bottom: -65px;
}
.free_fortune_box .lead .txt {
	margin: 0 30px 5px 30px;
	padding-top: 15px;
}
.free_fortune_box.two .lead .txt {
	margin: 0 40px 5px 40px;
}
.free_fortune_box .lead .inner {
	min-height: 200px;
	background: url(../images/free/bg_teller02.png) no-repeat right center;
	-webkit-background-size: 52% auto;
	background-size: 52% auto;
	position: relative;
}
.free_fortune_box.two .lead .inner {
	min-height: 221px;
	background: url(../images/free/bg_teller03.png) no-repeat right center;
	-webkit-background-size: 52% auto;
	background-size: 52% auto;
}
.free_fortune_box .lead .inner .fuki {
	position: relative;
	width: 165px;
	margin: 0 0 0 10px;
	top: 46px;
}
.free_fortune_box .lead .inner .fuki p span {
	color: #ff0036;
}
.free_fortune_box .lead .inner .fuki p:before {
	content: "";
	position: absolute;
	left: 0px;
	top: -50px;
	background: url(../images/free/icon_fuki02.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 80px;
	min-height: 46px;
}
.free_fortune_box.two .lead .inner .fuki p:before {
	background: url(../images/free/icon_fuki03.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.free_fortune_box h2 {
	background: url(../images/free/form_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 96px;
}
.free_form {
	background-image: url(../images/free/form_bg_top.jpg), url(../images/free/form_bg_btm.jpg), url(../images/free/form_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	position: relative;
	padding: 30px 15px 35px 15px;
}
.free_form .form_txt {
	margin: 0 25px 10px 25px;
}
.label_name {
	overflow: hidden;
	margin: 0 10px 5px 10px;
}
.label_name li {
	float: left;
	width: 50%;
	text-align: left;
}
.free_form label {
	color: #000;
	font-weight: bold;
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
}
.free_form input[type="text"] {
	width: 64%;
	margin: 0 auto;
	padding: 5px 5px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 13px;
	line-height: 1;
	border: 1px solid #9a9a9a;
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1) inset;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1) inset;
}
.free_form select {
	width: 20%;
	margin: 0 auto;
	padding: 8px 7px;
	outline: none;
	background: url(../images/pay/icon_arrow03.png) no-repeat 90% 54% #fff;
	-webkit-background-size: 10px;
	background-size: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 13px;
	line-height: 1;
	border: 1px solid #9a9a9a;
	-webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1) inset;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1) inset;
}
.free_form .caption {
	font-size: 8px;
	color: #000000;
	text-align: left;
	margin: 0 2px 15px 2px;
	padding-left: 5em;
	text-indent: -5em;
	line-height: 1.3;
}
.free_form .caption span {
	color: #db0000;
}
.birth_box .label_birth {
	font-size: 10px !important;
	line-height: 1.2;
	text-align: left;
	margin-left: 0px !important;
}
.birth_box .label_birth span {
	color: #db0000;
	font-weight: normal;
}
.birth_box label {
	margin-left: 4px;
	margin-right: -1px;
	font-size: 14px;
}
.free_form select[name="birthmonth"], .free_form select[name="birthday"], .free_form select[name="birthmonth2"], .free_form select[name="birthday2"] {
	width: 18%;
}
.free_form .btn_sprite {
	display: block;
	background-image: url(../images/common/btn.png);
	background-repeat: no-repeat;
	-webkit-appearance: none;
	appearance: none;
	background-position: -26px -200px;
	-webkit-background-size: 240%;
	background-size: 240%;
	min-height: 77px;
	background-color: transparent;
	width: 90%;
	margin: 0 auto 15px auto;
	box-sizing: border-box;
	padding: 0;
}
.car_img {
	margin: 0 35px;
}
/* TOPページ共通（無料TOP調整用） */
.free_box .teller01 {
	margin-bottom: -15px;
}
.free_box .teller01 .fuki p {
	padding: 13px 21px 13px 21px;
}
.makimono.free_box .lead .fuki p {
	padding: 25px 16px 25px 23px;
}
/*=======================================
有料TOP
========================================*/

/* 共通吹き出し */
.fuki {
	position: relative;
	width: 160px;
	margin: 0 7px 0 auto;
}
.fuki:before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	background: url(../images/common/bg_fuki_top.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: inline-block;
	min-height: 30px;
	z-index: 1;
}
.fuki.fuki_l:before {
	background: url(../images/common/bg_fuki02_top.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	top: -28px;
	min-height: 29px;
}
.fuki.fuki_l.noshadow:before {
	background: url(../images/common/bg_fuki03_top.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	top: -28px;
	min-height: 29px;
}
.fuki:after {
	content: '';
	position: absolute;
	bottom: -21px;
	left: 0;
	width: 100%;
	background: url(../images/common/bg_fuki_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: inline-block;
	min-height: 36px;
	z-index: 1;
}
.fuki.fuki_l:after {
	background: url(../images/common/bg_fuki02_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	bottom: -30px;
	min-height: 45px;
}
.fuki.fuki_l.noshadow:after {
	background: url(../images/common/bg_fuki03_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	bottom: -30px;
	min-height: 45px;
}
.fuki p {
	position: relative;
	background: url(../images/common/bg_fuki_mid.png) repeat-y left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 7px 21px 15px 21px;
	z-index: 2;
	font-size: 14px;
	color: #000;
	text-align: left;
	margin-bottom: 0;
}
.fuki.fuki_l p {
	background: url(../images/common/bg_fuki02_mid.png) repeat-y left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 0px 16px 0px 16px;
}
.fuki.fuki_l.noshadow p {
	background: url(../images/common/bg_fuki03_mid.png) repeat-y left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 0px 16px 0px 16px;
}
.fuki p a {
	color: #cc0000;
}
/* 共通BOX */
.c_inner {
	background: #9e1e1b;
	padding: 2px 0;
}
.c_inner .list {
	margin: 0 2px;
}
.c_inner .ichiran {
	text-align: right;
	position: relative;
	margin: 0 5px 0 0;
}
.c_inner .inner_btm {
	position: relative;
	padding: 13px 0;
}
.c_inner .inner_btm:before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	background: url(../images/pay/box_list_line.jpg) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	min-height: 3px;
}
.c_inner .inner_btm:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	background: url(../images/pay/box_list_line.jpg) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	min-height: 4px;
}
.c_inner .ichiran a {
	display: inline-block;
	background: #b08c10;
	color: #fff;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	padding: 3px 7px 3px 15px;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
}
/* 今日の運勢 */
.today {
	padding: 10px 0;
	background: #920000;
	line-height: 1;
	font-size: 20px;
	margin-bottom: 0;
}
.upper_lead {
	background: url(../images/pay/car01.png) no-repeat 97% center;
	-webkit-background-size: 40% auto;
	background-size: 40% auto;
	padding: 20px 7px 10px 7px;
}
.upper_lead p {
	width: 170px;
	text-align: left;
	font-size: 13px;
}
.today_lead {
	background-image: url(../images/pay/today_bg_top.jpg), url(../images/pay/today_bg_btm.jpg);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	position: relative;
	padding: 20px 0 14px 0;
}
.today_lead h2 {
	background: url(../images/caption/daily.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 51px;
}
.today_lead .inner {
	background: url(../images/pay/today_bg.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 195px;
}
.today_lead .inner .fuki {
	top: 42px;
	width: 180px;
}
.today_lead .inner .fuki p {
	padding: 0px 20px 0px 20px;
}
.today_lead .inner .fuki:before {
	top: -20px;
	min-height: 30px;
}
.today_lead .inner .fuki:after {
	bottom: -21px;
	min-height: 42px;
}
/* 大切なお知らせ */
.info {
	margin: 0 10px;
}
.info .time {
	display: block;
	background: #ff0066;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #FFF;
	padding: 10px 10px;
	text-decoration: none;
	line-height: 1.3;
}
.info .time span {
	display: inline-block;
	text-decoration: underline;
	font-size: 18px;
}
.info .banner {
	position: relative;
	background: url(../images/pay/banner.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 24px 0 20px 9px;
	display: block;
	text-decoration: none;
	color: #630;
	text-align: left;
	font-weight: bold;
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
	display: block;
}
.info .banner:before {
	content: "";
	position: absolute;
	top: -8px;
	left: 6px;
	width: 55px;
	min-height: 19px;
	background: url(../images/pay/icon_new.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	-webkit-animation: blink_text 1.0s ease-in-out infinite alternate;
	-moz-animation: blink_text 1.0s ease-in-out infinite alternate;
	animation: blink_text 1.0s ease-in-out infinite alternate;
}
.info .banner .t_pink {
	color: #ff0066;
}
/* 原宿の父の毎日占い */
.box_list h2 {
	background: url(../images/pay/box_list_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 58px;
}
.box_list ul {
	display: table;
	width: 100%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 2px;
}
.box_list li {
	width: 50%;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}
.box_list li.border {
	border-right: 1px solid #9e1e1b;
}
.box_list li a {
	display: block;
	padding: 10px 8px;
	text-decoration: none;
	color: #663300;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.4;
	font-size: 14px;
	background: #ece6d2;
	font-weight: bold;
}
.box_list li a:after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 12px;
	margin-top: -7px;
	background: url(../images/pay/icon_arrow.png) right center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	right: 7px;
}
/* 繋ぎ１ */
.free_here {
	margin: 0 20px;
}
.free_here li {
	margin-bottom: 10px;
}
.free_here a {
	display: block;
	background: #ece6d2;
	text-decoration: none;
	-webkit-border-radius: 15px;
	border-radius: 20px;
	padding: 10px 0;
	font-size: 15px;
	border: 2px solid #fff;
}
.free_here li:nth-child(1) a {
	color: #9900cc;
}
.free_here li:nth-child(2) a {
	color: #006699;
}
.free_here li:nth-child(3) a {
	color: #ff0066;
}
/* 新着情報 */
.news h2 {
	background: url(../images/pay/news_tit.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 72px;
}
.news .list a {
	display: block;
	background: #ece6d2;
	text-align: left;
	padding: 10px 23px 10px 10px;
	position: relative;
	margin-bottom: 2px;
	text-decoration: none;
}
.news .list a:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 15px;
	margin-top: -7px;
	background: url(../images/pay/icon_arrow.png) right center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	right: 4px;
}
.news .list dt {
	color: #c40000;
	font-weight: bold;
}
.news .list dd, .news a {
	color: #391c00;
}
/* unspecified */
.unspecified {
	margin: 0 10px;
}
.unspecified .unspecified_new a {
	display: block;
	background: #ece6d2;
	border: 2px solid #fff;
	-webkit-border-radius: 10px;
	border-radius: 5px;
	color: #663300;
	padding: 12px 10px;
	text-decoration: none;
	/*font-weight: bold;*/
	position: relative;
	font-size: 14px;
}
.unspecified .unspecified_new a:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 3px;
	width: 53px;
	min-height: 19px;
	background: url(../images/pay/icon_new.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.unspecified .unspecified_next {
	background-image: url(../images/pay/unspecified_bg_top.jpg), url(../images/pay/unspecified_bg_btm.jpg), url(../images/pay/unspecified_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	position: relative;
	padding: 20px 5px 20px 5px;
}
.unspecified .unspecified_next .inner {
	margin: 0 15px;
}
.unspecified .unspecified_next .txt-small {
	color: #FFF;
	background: #ff0000;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	padding: 5px 0;
	line-height: 1;
	width: 60%;
	margin: 0 auto 8px auto;
	letter-spacing: 3px;
}
.unspecified .unspecified_next .txt {
	color: #592c00;
	font-size: 16px;
	font-weight: bold;
	background: url(../images/pay/unspecified_line.png) repeat-x left bottom;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 0 0 7px 0;
	margin-bottom: 7px;
}
.unspecified .unspecified_next .txt-detail {
	color: #333300;
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 13px;
}
/* プレゼント */
.senja_present .inner {
	min-height: 95px;
	background: url(../images/pay/senja_present_bg.png) no-repeat right center;
	-webkit-background-size: 50% auto;
	background-size: 50% auto;
	position: relative;
	padding: 87px 0 0 0;
}
.senja_present .fuki {
	margin: 0 0 0 9px;
	top: -40px;
	width: 175px;
}
.senja_present .fuki.fuki_l:before {
	top: -21px;
	min-height: 22px;
}
.present_list {
	background-image: url(../images/pay/senja_present_bg_top.png);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	padding: 20px 0px 20px 0px;
}
.present_list .inner02 {
	background: url(../images/pay/senja_present_bg_mid.png) repeat-y;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 10px 0 25px 0;
	position: relative;
}
.present_list .inner02:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	background: url(../images/pay/box_list_line.jpg) no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	min-height: 4px;
}
.present_list h2 {
	min-height: 70px;
}
.present_list .list ul {
	background: url(../images/pay/box_list_line.jpg) repeat left bottom;
	background-size: 100%;
	-webkit-background-size: 100%;
	padding: 3px 0 1px 0;
}
.present_list .list li {
	margin-bottom: 3px;
}
.present_list .list a {
	display: block;
	background: #ece6d2;
	color: #592c00;
	text-decoration: none;
	padding: 15px 30px 15px 90px;
	text-align: left;
	position: relative;
	pointer-events: none;
}
.present_list .list a:before {
	content: "";
	display: inline-block;
	width: 77px;
	min-height: 35px;
	margin-top: -17px;
	background: url(../images/pay/senja_present_icon.png) left center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	left: 4px;
}
.present_list .list a:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 15px;
	margin-top: -7px;
	background: url(../images/pay/icon_arrow.png) right center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	right: 8px;
}
.senja_present.yokuzitsu .inner02 {
	padding-top: 3px;
}
.senja_present.yokuzitsu .kome_txt {
	display: none;
}
.senja_present.yokuzitsu .present_list .list a {
	padding: 10px 30px 10px 15px;
	pointer-events: auto;
}
.senja_present .present_list .list a span, .senja_present .present_list .list a dt {
	color: #cc0000;
	font-size: 12px;
	font-weight: bold;
}
.senja_present.yokuzitsu .present_list .list a:before {
	display: none;
}
.kanntei_btn {
	overflow: hidden;
	margin: 0 0 0 3px;
}
.kanntei_btn li {
	float: left;
	width: 30%;
	margin: 0 5px 5px 5px;
}
.kanntei_btn a {
	width: 100%;
	display: inline-block;
	min-height: 95px;
}
.kanntei_btn li:nth-child(1) a {
	background: url(../images/pay/kanntei_btn01.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.kanntei_btn li:nth-child(2) a {
	background: url(../images/pay/kanntei_btn02.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.kanntei_btn li:nth-child(3) a {
	background: url(../images/pay/kanntei_btn03.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.kanntei_btn li:nth-child(4) {
	margin-left: 58px;
}
.kanntei_btn li:nth-child(4) a {
	background: url(../images/pay/kanntei_btn04.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.kanntei_btn li:nth-child(5) a {
	background: url(../images/pay/kanntei_btn05.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.w_btn {
	margin: 0 10px;
}
.w_btn li {
	margin-bottom: 5px;
}
.w_btn a {
	display: block;
	background: #ece6d2;
	border: 2px solid #fff;
	-webkit-border-radius: 10px;
	border-radius: 5px;
	color: #663300;
	padding: 15px 27px 15px 15px;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	text-align: left;
}
.w_btn a:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 15px;
	margin-top: -7px;
	background: url(../images/pay/icon_arrow02.png) right center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	right: 8px;
}
.w_btn a span {
	color: #cc0000;
}
.kantei_file h4 {
	width: 80%;
	margin: 0 auto 5px auto;
	background: url(../images/pay/kantei_tit.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	min-height: 35px;
}
.teller01 {
	background: url(../images/pay/teller01.png) no-repeat left bottom;
	background-size: 47% auto;
	-webkit-background-size: 47% auto;
	min-height: 180px;
	position: relative;/*margin-bottom: -15px;*/
}
.teller01 .fuki {
	width: 175px;
	top: 40px;
	margin-right: 10px;
}
.teller01 .fuki:before {
	background: url(../images/pay/bg_fuki_top.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	top: -13px;
	min-height: 14px;
}
.teller01 .fuki p {
	background: url(../images/pay/bg_fuki_mid.png) repeat-y left top;
	-webkit-background-size: 100%;
	background-size: 100%;
	color: #fff;
	padding: 7px 15px 9px 20px;
	line-height: 1.7;
}
.teller01 .fuki:after {
	background: url(../images/pay/bg_fuki_btm.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	bottom: -14px;
	min-height: 15px;
}
.box_link {
	background-image: url(../images/pay/link_bg_top.png), url(../images/pay/box_list_line.jpg);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	position: relative;
	padding: 36px 0 4px 0;
}
.box_link.sono02 {
	background-image: url(../images/pay/link_bg_top02.png), url(../images/pay/box_list_line.jpg);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
}
.box_link .inner {
	background-image: url(../images/pay/link_bg_mid.png);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center top;
	padding-bottom: 12px;
}
.box_link h3 {
	width: 80%;
	margin: 0 auto 15px auto;
	min-height: 30px;
	position: relative;
	top: 10px;
}
.box_link.sono01 h3 {
	background: url(../images/pay/link_tit01.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.box_link.sono02 h3 {
	background: url(../images/pay/link_tit02.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.list_box {
	background: url(../images/pay/box_list_line.jpg) repeat left bottom;
	background-size: 100%;
	-webkit-background-size: 100%;
	padding: 3px 0 1px 0;
	margin-bottom: 12px;
}
.list_box li {
	margin-bottom: 2px;
}
.list_box a {
	display: block;
	background: #ece6d2;
	color: #592c00;
	text-decoration: none;
	padding: 13px 30px 13px 10px;
	text-align: left;
	position: relative;
}
.list_box a:after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 15px;
	margin-top: -7px;
	background: url(../images/pay/icon_arrow.png) right center no-repeat;
	background-size: 100%;
	-webkit-background-size: 100%;
	position: absolute;
	top: 50%;
	right: 8px;
}
.list_ichiran {
	text-align: right;
	position: relative;
	margin: 0 5px 0 0;
}
.list_ichiran a {
	display: inline-block;
	background: #b08c10;
	color: #fff;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	padding: 3px 7px 3px 15px;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
}
.box_link.dengon {
	background-image: url(../images/pay/box_list_line.jpg);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	padding: 0px 0 4px 0;
}
/* おすすめメニュー */
.osusume_menu {
	background-image: url(../images/pay/osusume_menu_bg_top.png), url(../images/pay/osusume_menu_bg_btm.png);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	position: relative;
	padding: 36px 0 21px 0;
}
.osusume_menu .inner {
	background-image: url(../images/pay/osusume_menu_bg_mid.png);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center top;
	padding-bottom: 12px;
	padding-top: 15px;
}
.osusume_menu h3 {
	background: url(../images/pay/osusume_menu_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 90%;
	margin: 0 auto 10px auto;
	min-height: 36px;
}
.osusume_menu .loopA dt {
	color: #cc0000;
	font-weight: bold;
}
.bg_paper .list_box {
	background-image: url(../images/pay/bg_paper_top.jpg), url(../images/pay/bg_paper_btm.jpg), url(../images/pay/bg_paper_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	position: relative;
	padding: 10px 5px 10px 5px;
}
.bg_paper .list_box .loopA a, .bg_paper .list_box li {
	background: url(../images/pay/unspecified_line.png) repeat-x left bottom;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.bg_paper .list_box .loopA a:last-child, .bg_paper .list_box li:last-child {
	background: none;
}
.bg_paper .list_box a {
	background: none;
	color: #000;
}
.bg_paper .list_box a span {
	color: #cc0000;
	font-weight: bold;
}
.bg_paper .list_box a:after {
	background: url(../images/pay/icon_arrow02.png) right center no-repeat;
}
.unmei h3 {
	background: url(../images/pay/unmei_subtit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 85%;
	margin: 0 auto 18px auto;
	min-height: 32px;
}
.unmei .box_link.dengon .inner {
	padding-bottom: 12px;
}
.btn-ppv_to {
	width: 83%;
	margin: 0 auto;
}
.btn-ppv_to a {
	display: block;
	background: url(../images/pay/btn_ppv_to.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 80px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
.unki_yohou .lead {
	background: url(../images/pay/unki_yohou_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 250px;
}
.unki_yohou .lead h2 {
	min-height: 70px;
}
.unki_yohou .fuki.fuki_l.noshadow:before {
	top: -22px;
}
.unki_yohou .lead .box_serifu {
	top: 30px;
	position: relative;
	width: 160px;
	margin: 0 10px 0 auto;
}
.unki_yohou .lead .box_serifu .inner {
	margin-bottom: 27px;
}
.unki_yohou .lead .box_serifu .txt_kome {
	font-size: 13px;
	text-align: left;
	width: 130px;
	margin: 0 auto;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.4;
}
.pay_form {
	background-image: url(../images/pay/unki_yohou_bg_top.jpg), url(../images/pay/unki_yohou_bg_btm.jpg), url(../images/pay/unki_yohou_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	position: relative;
	padding: 40px 5px 10px 5px;
}

.form-box .pay_form {
	padding: 25px 5px 25px 5px;
  box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.form-box.mirai-form {
	padding-bottom: 0;
}

.pay_form form {
	background: url(../images/pay/unki_yohou_bg_moyou.png) no-repeat center bottom;
	-webkit-background-size: 95% auto;
	background-size: 95% auto;
}
.pay_form .form_txt {
	color: #cc0000;
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: bold;
}
.pay_form label {
	color: #000;
	font-weight: bold;
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 -1px 0 4px;
	padding: 0;
	background: none;
}
.pay_form select {
	width: 20%;
	margin: 0 auto;
	padding: 8px 7px;
	outline: none;
	background: url(../images/pay/icon_arrow03.png) no-repeat 90% 54% #fff;
	-webkit-background-size: 10px;
	background-size: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
}
.pay_form select[name="birthyear"] {
	width: 22%;
}
.pay_form select[name="id"] {
	width: 83%;
	background: url(../images/pay/icon_arrow03.png) no-repeat 95% 54% #fff;
	-webkit-background-size: 10px;
	background-size: 10px;
}
.pay_form input {
	padding: 0;
	border: none;
	margin-bottom: 15px;
}
.dummy_btn {
	margin: 0 35px 15px 35px;
}
.nayami01 h3 {
	background: url(../images/pay/unki_yohou_subtit01.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 32px;
}
.nayami02 h3 {
	background: url(../images/pay/unki_yohou_subtit02.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 32px;
}
.makimono .lead {
	background: url(../images/pay/makimono_lead.png) no-repeat;
	-webkit-background-size: 53% auto;
	background-size: 53% auto;
	min-height: 194px;
	margin-bottom: -19px;
}
.makimono .lead .fuki {
	top: 43px;
	margin-right: 12px;
}
.makimono .lead .fuki p {
	padding: 13px 16px 13px 23px;
	position: relative;
}
.makimono .lead .fuki p:before {
	content: "";
	position: absolute;
	right: -5px;
	top: -47px;
	background: url(../images/pay/makimono_fuki.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 77px;
	min-height: 54px;
}
.makimono .inner02 {
	background: url(../images/pay/makimono_bg.jpg) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 165px;
	position: relative;
	margin-bottom: 60px;
}
.makimono .inner02 ul {
	margin: 0 20px;
	padding: 10px 0;
}
.makimono .inner02 li {
	display: inline-block;
	width: 32%;
}
.makimono .inner02:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -30px;
	background: url(../images/pay/makimono_tit_bg_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 30px;
	width: 100%;
}

.form-box .makimono .inner02 input {
	border: 0px;
	width:90px;
	height:160px;
	background: url(../images/pay/makimono.png) left top no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	margin-bottom: 0;
}

.form-box.makimono_box {
	padding-bottom: 0;
}


.nayami03 h3 {
	background: url(../images/pay/makimono_subtit01.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 34px;
}
.nayami04 h3 {
	background: url(../images/pay/makimono_subtit02.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 30px;
}
.nayami05 h3 {
	background: url(../images/pay/makimono_subtit03.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 35px;
}
.box_link.dengon.nayami01, .box_link.dengon.nayami02, .box_link.dengon.nayami03, .box_link.dengon.nayami04, .box_link.dengon.nayami05, .box_link.dengon.real {
	background-image: url(../images/pay/box_list_line.jpg), url(../images/pay/box_list_line.jpg);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat;
	background-position: center bottom, center top;
	padding: 4px 0;
}
.box_link.nayami03 .inner, .box_link.nayami04 .inner, .box_link.nayami05 .inner {
	background-image: url(../images/pay/link_bg02_mid.jpg);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.makimono .ppv-box {
	background-image: url(../images/ppv/bg_top.jpg), url(../images/pay/ppv_bg_btm.jpg), url(../images/ppv/bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	padding: 0 0 15px 0;
}
.makimono .ppv-box ul {
	padding: 15px 0 0px 0;
}
.two_mirai h3 {
	background: url(../images/pay/two_mirai_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 70%;
	margin: 0 auto 18px auto;
	min-height: 50px;
}
.btn_anohito {
	width: 80%;
	margin: 0 auto;
}
.btn_anohito a {
	display: block;
	background: url(../images/pay/btn_anohito.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 62px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
/* midnight */
.midnight .box_inner {
	background: url(../images/pay/midnight_bg.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 50px 0 90px 0;
}
.midnight.open .box_inner {
	background: url(../images/pay/midnight_bg_open.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 30px 0 1px 0;
}
.midnight h2 {
	background: url(../images/pay/midnight_tit.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 90%;
	margin: 0 auto 45px auto;
	min-height: 64px;
}
.midnight.open h2 {
	background: url(../images/pay/midnight_tit02.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	width: 90%;
	margin: 0 auto 67px auto;
	min-height: 90px;
}
.midnight .txt {
	background: #cc3333;
	color: #fff;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	line-height: 1;
	padding: 7px 0;
	width: 65%;
	margin: 0 auto;
	font-size: 16px;
	margin-bottom: 15px;
	text-align: center;
}
.midnight .ato {
	font-size: 20px;
	text-shadow: 0px 4px 5px #000;
}
.midnight .ato span {
	font-size: 32px;
	font-weight: bold;
}
.midnight .list_box a {
	color: #FFF;
	background: #000;
	padding: 20px 30px 20px 60px;
	pointer-events: none;
}
.midnight .list_ichiran a {
	pointer-events: none;
	padding: 3px 15px 3px 15px;
}
.midnight .list_box a:before {
	content: "";
	display: inline-block;
	width: 35px;
	min-height: 49px;
	margin-top: -24px;
	background: url(../images/pay/icon_key.png) left center no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	position: absolute;
	top: 50%;
	left: 10px;
}
.midnight .list_box a:after {
	background: url(../images/pay/icon_arrow04.png) right center no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.midnight .inner {
	background-image: url(../images/pay/link_bg03_mid.png);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.midnight .box_inner .fuki {
	width: 82%;
	margin: 0 auto;
}
.midnight .box_inner .fuki p {
	background: url(../images/pay/midnight_bg_mid.png) repeat-y left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 0 21px;
}
.midnight .box_inner .fuki:before {
	background: url(../images/pay/midnight_bg_top.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	top: -17px;
	min-height: 20px;
}
.midnight .box_inner .fuki:after {
	background: url(../images/pay/midnight_bg_btm.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	bottom: -34px;
	min-height: 38px;
}
.midnight.open .contents {
	padding: 117px 10px 20px 10px;
}
.midnight.open .midnight_txt {
	font-size: 17px;
	margin-bottom: 0;
	color: #fff000;
	text-shadow: 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 10px rgba(255,204,0,0.3);
	line-height: 1.4;
	text-align: center;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;*/
	font-family: 'Sawarabi Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
/* 会員様特典 */
.tokuten {
	margin-bottom: 100px;
}
.tokuten h2 {
	background: url(../images/pay/tokuten_tit.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 120px;
}
.tokuten .inner {
	position: relative;
}
.tokuten .inner:after {
	content: "";
	position: absolute;
	bottom: -70px;
	left: 0;
	width: 100%;
	min-height: 70px;
	background: url(../images/pay/tokuten_bg_btm.jpg) left bottom no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
/*=======================================
従量TOP(PPV)
========================================*/
.ppv_teller {
	background: url(../images/ppv/senja.png) no-repeat right center;
	-webkit-background-size: 48% auto;
	background-size: 48% auto;
	min-height: 165px;
}
.ppv_teller p {
	width: 165px;
	text-align: left;
	font-size: 17px;
	padding: 21px 0 10px 5px;
	line-height: 1.6;
	margin: 0 0 0 5px;
}
.btn-nav {
	overflow: hidden;
}
.btn-nav li {
	width: 32%;
	text-align: center;
	float: left;
	margin: 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-nav li a {
	display: block;
	width: 100%;
	padding: 15px 0;
	font-size: 16px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-decoration: none;
	background: #f8c928;
	background: -moz-linear-gradient(top, #d37609 0%, #f8c928 12%, #ffffff 50%, #f8c928 88%, #d37609 100%);
	background: -webkit-linear-gradient(top, #d37609 0%, #f8c928 12%, #ffffff 50%, #f8c928 88%, #d37609 100%);
	background: linear-gradient(to bottom, #d37609 0%, #f8c928 12%, #ffffff 50%, #f8c928 88%, #d37609 100%);
}
.btn-nav li:nth-child(1) a {
	color: #d10027;
	padding: 24px 0 25px 0;
}
.btn-nav li:nth-child(2) a {
	color: #7100b9;
}
.btn-nav li:nth-child(3) a {
	color: #005196;
	padding: 24px 0 25px 0;
}
.ppv_top .btn_history {
	width: 120px;
	margin: 0 3px 0px auto;
}
.ppv_top .btn_history a {
	display: block;
	color: #000;
	background: #f0eedb;
	text-decoration: none;
	width: 100%;
	padding: 8px 0;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
}
.ppv_top .btn_history a span {
	display: inline-block;
	background: url(../images/icon/arrow_bra.png) no-repeat right center;
	-webkit-background-size: 23px auto;
	background-size: 23px auto;
	padding-right: 23px;
	position: relative;
	left: 5px;
}
.ppv-box {
	padding: 0 0 30px 0;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 15px;
}
.ppv-box {
	background-image: url(../images/ppv/bg_top.jpg), url(../images/ppv/bg_btm.jpg), url(../images/ppv/bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
}
/*=======================================
ppv.do
========================================*/
/* ppvdoConf */
.flame-menulist {
	margin: 0 0 10px;
	background: url(../images/pay/bg_mid01.jpg) repeat-y;
	background-size: 100%;
}
.flame-menulist li {
	padding: 15px 30px;
	text-align: left;
	font-size: 15px;
	color: #1a0000;
	background: url(../images/pay/bg_top01.png) no-repeat top, url(../images/pay/bg_btm01.png) no-repeat bottom;
	background-size: 100%, 100%;
}
.flame-menulist a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #1a0000;
}
.ppvdoConf .form-box .form-btn input {
	margin-bottom: 10px !important;
}
.box_item .lead {
	color: #000;
}
.ppv_noice {
	font-size: 11px;
	color: #FFF;
	background: #990033;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 10px;
	text-align: left;
}
/*=======================================
LOOP
========================================*/
.loop_d .link0 .teller_box01 {
	min-height: 170px;
	background: url(../images/loop/link0_img01.png) no-repeat right center;
	-webkit-background-size: 55% auto;
	background-size: 55% auto;
}
.loop_d .link0 .teller_box01 p {
	width: 150px;
	text-align: left;
	padding: 35px 0 0 15px;
	line-height: 1.6;
}
.loop_d .link0 .box_link .inner {
	background-image: url(../images/loop/bg.png);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
}
.loop_d .box_link.dengon {
	background-image: url(../images/pay/box_list_line.jpg), url(../images/pay/box_list_line.jpg);
	background-size: 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat;
	background-position: center bottom, center top;
	padding: 4px 0;
}
.loop_d .link0 .box_link h3 {
	background: url(../images/loop/link0_img04.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 80%;
	margin: 0 auto 18px auto;
	min-height: 51px;
}
.loop_d .link1 .teller_box01 {
	min-height: 160px;
	background: url(../images/loop/link1_img01.png) no-repeat left center;
	-webkit-background-size: 53% auto;
	background-size: 53% auto;
}
.loop_d .link1 .teller_box01 p {
	width: 150px;
	text-align: left;
	padding: 25px 10px 0 0px;
	line-height: 1.6;
	margin: 0 0 0 auto;
}
.loop_d .link1 .box_link .inner {
	background-image: url(../images/pay/link_bg02_mid.jpg);
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	padding-top: 15px;
}
.loop_d .link2 .box_link h3 {
	background: url(../images/loop/link2_img01.png) no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	width: 80%;
	margin: 0 auto 18px auto;
	min-height: 58px;
}

/*=======================================
result_guide用
========================================*/
/*.result_guide {
	padding-bottom: 20px;
}*/
.result_guide .box_teller {
	padding: 20px 0;
	min-height: 150px;
}
.result_guide.rg100 .box_teller {
	padding: 0;
}
.result_guide.rg100 .box_teller .serif {
	top: 30px;
}

.result_guide.rg104 {
	overflow: hidden;
}

.result_guide .teller {
	display: inline-block;
	width: 50%;
}
.result_guide .serif.right {
	margin-left: 43%;
}
.result_guide .box {
	position: relative;
}
/*100、101*/
.rg100 .txt01, .rg101 .txt01 {
	line-height: 23px;
	font-size: 16px;
}
.rg100 .rg_img, .rg101 .rg_img {
	width: 40%;
	margin: 0 auto 20px;
}
.result_guide .ppvicon a {
	padding: 3px 30px 3px 10px;
}
.result_guide .ppvicon span {
	display: inline-block;
	width: 50px;
	margin-right: 5px;
	vertical-align: -15px;
}
/*103*/
.rg103 .txt01 {
	margin-bottom: -20px;
	line-height: 30px;
	font-size: 20px;
	transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-webkit-transform: rotate(5deg);
	position: relative;
	z-index: 1;
}
.rg103 .link1 {
	position: relative;
}
.rg103 .link1 .txt02 {
	position: absolute;
	top: 50px;
	left: 30px;
}
.rg103 .link1 .txt02 li {
	width: 45%;
	line-height: 50px;
	float: left;
	text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507, 0 0 10px #591507;
	font-size: 20px;
}
.rg103 .link1 .txt02 li:nth-child(2) {
	transform: rotate(-7deg);
	-moz-transform: rotate(-7deg);
	-webkit-transform: rotate(-7deg);
}
.rg103 .link1 .txt02 li:nth-child(4) {
	font-size: 22px;
	transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
/*104*/
.rg104 .komi_keyword {
	padding: 25px 20px 10px 20px;
	transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	background: none;
}
.rg104 .btn-color01 {
	margin-bottom: -30px;
	position: relative;
	z-index: 1;
}
.rg104 .btn-color04 {
	width: auto;
	margin: 0 20px 30px 0;
	float: right;
}

.rg104 .komi_keyword .keyword_box .keyword_txt01 {
	width: 155px;
	left: 30px;
	font-size: 15px;
}

/*200*/
.rg200 .box ul {
	position: absolute;
	top: 10px;
	left: 30px;
}
.rg200 .box li:nth-child(1) {
	text-align: left;
	transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
.rg200 .box li:nth-child(2) {
	padding-top: 80px;
	padding-left: 80px;
	transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-webkit-transform: rotate(5deg);
}
/*201*/
.rg201 .bnr {
	width: 80%;
	margin: 0 auto -20px;
	transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
/*202*/
.rg202 .box {
	width: 80%;
	margin: 0 auto;
}
.rg202 .box p {
	transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
}
.rg202 .btn-color02 {
	width: 85%;
	margin-top: -50px;
}
/*204*/
.rg204 .box p {
	transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	line-height: 90px;
	font-size: 20px;
	position: absolute;
	top: 20px;
	left: 5px;
}
/*=======================================
占者、占術
========================================*/
.senja_info {
	padding: 0 0 34px;
	background: url(../images/info/bg_btm.jpg) no-repeat bottom;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	margin-bottom: 20px;
}
.senja_info .inner {
	background: url(../images/info/bg_inner_top.jpg) no-repeat top, url(../images/info/bg_inner_btm.jpg) no-repeat bottom, url(../images/info/bg_inner_mid.jpg) repeat-y;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 15px 25px 30px 28px;
}
#senjutsu_wrap .inner {
	padding-top: 30px;
}
.senja_info .inner p {
	margin-bottom: 0;
	color: #002259;
	text-align: left;
}
.senja_info .inner .senja_img {
	width: 94%;
	margin: 0 auto 15px auto;
}

/*=======================================
menu.do配下
========================================*/
.komi_box .senja {
	width: 100px;
}
.dengon_box .m_txt {
	font-size: 21px;
	color: #fff000;
	text-shadow: 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 10px rgba(255,204,0,0.3);
	line-height: 1.4;
	margin-bottom: 10px;
	letter-spacing: 2px;
}
.dengon_box .inner {
	background-image: url(../images/other/dengon_bg_top.jpg), url(../images/other/dengon_bg_btm.jpg), url(../images/other/dengon_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	position: relative;
	padding: 40px 30px 40px 32px;
}
.dengon_box .inner p, .makimono_box .inner p {
	color: #592c00;
	text-align: left;
	margin-bottom: 0;
}
.makimono_box .ppv-box p {
	color: #592c00;
	padding: 13px 20px;
	font-size: 16px;
	text-align: center;
	margin-bottom: 0;
}
.makimono_box .inner {
	background-image: url(../images/other/makimono_bg_top.jpg), url(../images/other/makimono_bg_btm.jpg), url(../images/other/makimono_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center 101%, center top;
	position: relative;
	padding: 87px 35px 60px 40px;
}

.makimono_sendan_btn {
	border: 0px;
	width:204px;
	height:55px;
	background: url(../img/submit.jpg) left top no-repeat;
}

.message {
	padding-bottom: 20px;
}
.message .box_item {
	background: url(../images/pay/bg_msg_top.jpg) no-repeat top, url(../images/pay/bg_msg_btm.jpg) no-repeat bottom, url(../images/pay/bg_msg_mid.jpg) repeat-y;
	background-size: 100%;
}
.message .box_item .box_inner {
	padding: 30px 30px 50px;
	position: relative;
}
.message .box_item .lead {
	line-height: 23px;
	text-shadow: 0 0 1px rgba(49,13,2,0.8), 0 1px 1px rgba(0,0,0,0.3);
	text-align: left;
	font-family: 'Sawarabi Mincho', serif;
	color: #310d02;
}
.message .box_item .lead span {
	display: block;
	padding-bottom: 10px;
}
.message .text-large {
	line-height: 25px;
}
.message .bnr {
	width: 70%;
	margin: 0 auto 20px;
}
.message .bnr02 {
	width: 40%;
	margin: 0 auto 20px;
}
/*=======================================
メニューリスト
========================================*/
.menulist_intro {
	padding: 10px 0 20px;
}
.menulist_intro .btn-colom1, .menulist_intro .btn-colom2, .menulist_intro .btn-colom3 {
	width: 90%;
}
.menulist_intro .c_btn {
	width: 50%;
	margin: 0 auto;
}
/*=======================================
天祐のみの2ヶ月目施策改修
========================================*/
.pre_txt_tenyu {
	line-height: 1.3;
	font-weight: bold;
	text-shadow: 0 0 4px yellow, 0 0 4px yellow, 0 0 4px yellow, 0 0 10px yellow, 0 0 10px yellow;
}
/*=======================================
天祐のみのプレゼント施策改修
========================================*/
.pay_top .premium_anchor {
	margin-top: 80px;
	position: relative;
}
.pay_top .premium_anchor:before {
	content: "入会でお得！";
	position: absolute;
	top: -10px;
	left: -9px;
	display: block;
	color: #ebff00;
	background: red;
	padding: 5px 8px 5px 12px;
	z-index: 100;
	-webkit-transform: rotate(-6deg);
	transform: rotate(-6deg);
}
.pay_top .premium_anchor:after {
	content: "その他、対象サイトで使える豪華特典も満載！";
	position: absolute;
	top: -70px;
	width: 100%;
	padding: 0 45px;
	display: block;
	color: #ffff00;
	font-size: 17px;
	line-height: 1.4;
	/*text-shadow: 0 0 4px yellow, 0 0 4px yellow, 0 0 4px yellow, 0 0 10px yellow, 0 0 10px yellow;*/
	box-sizing: border-box;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;*/
	font-family: 'Sawarabi Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	text-shadow: 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 5px rgba(255,204,0,0.3), 0 0 10px rgba(255,204,0,0.3);
}
/*=======================================
天祐のみのチケット施策改修
========================================*/
.pay_top .box_ticket {
	position: relative;
}
.pay_top .box_ticket:before {
	content: "メニュー購入でお得！";
	position: absolute;
	top: -15px;
	left: -7px;
	display: block;
	color: #ebff00;
	background: red;
	padding: 5px 8px 5px 12px;
	z-index: 100;
	-webkit-transform: rotate(-4deg);
	transform: rotate(-4deg);
}
/*======================================
月額
========================================*/
.monthly_kantei {
	background: url(../images/other/bg_kantei.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 240px;
	overflow: hidden;
	font-family: 'Sawarabi Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
.monthly_kantei ul {
	display: table;
	padding: 39px 30px 16px 50px;
}
.monthly_kantei li {
	width: 33%;
	display: table-cell;
}
.monthly_kantei li {
	padding: 0 4px;
}
.monthly_kantei li dt {
	background: #046082;
	margin-bottom: 12px;
	padding: 3px 0;
}
.monthly_kantei p {
	color: #000;
	font-size: 16px;
	margin-bottom: 0;
	padding: 3px 40px 0 60px;
	text-align: center;
}
.monthly_box .inner {
	overflow: hidden;
}
.monthly_box .senja_img {
	width: 50%;
	float: left;
	margin: 0;
}

.monthly_box .senja_img02 {
	width: 50%;
	float: right;
	margin: 0;
}

.monthly_box p.txt {
	padding: 33px 25px 0px 25px;
	text-align: left;
	color: #fff;
}

.mirai_yoho .today {
	position: relative;
	text-align: left;
	padding: 13px 20px;
	font-size: 30px;
	letter-spacing: 2px;
}

.mirai_yoho .today:before {
	content: "";
	position: absolute;
	top: 4px;
	right: 13px;
	width: 50px;
	min-height: 63px;
	background: url(../images/other/mirai_yoho_icon.png) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

.mirai_yoho .monthly_box p.txt {
	padding: 15px 10px 0px 10px;
}

.mirai_yoho_memo {
	background: url(../images/other/mirai_yoho_bg_memo.png) no-repeat;
	background-size: 100% auto;
	-webkit-background-size: 100% auto;
	min-height: 245px;
	margin-bottom: 15px;
}

.mirai_yoho_memo .inner {
	padding: 44px 70px 20px 38px;
}

.mirai_yoho_memo dl {
	display: table;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
	margin-bottom: 26px;
	font-family: 'Sawarabi Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.mirai_yoho_memo dt {
	display: table-cell;
	width: 45px;
	text-align: center;
}

.mirai_yoho_memo dd {
	display: table-cell;
}

/*----- loopE -----*/
.loopE {
	min-height: 330px;
	margin-bottom: 20px;
	padding: 15px 0 0;
	background: url(../images/line/waku01.jpg) no-repeat top, url(../images/line/waku01.jpg) no-repeat bottom, url(../images/pay/bg_7days_mid.jpg) repeat-y;
	background-size: 100%;
}
.txt_loopE {
	margin: 0 10px;
	padding: 5px 10px;
	font-size: 14px;
	color: #fff;
	border-radius: 8px;
	background: #cf0010;
}
.loopE .menu_title a {
	text-decoration: none;
}
.loopE .menu_title h2 {
	font-size: 12px;
}
.loopE .menu_title .price {
	clear: both;
	text-align: right;
	font-size: 12px;
	font-weight: bold;
	color: #cf0010;
}
.link0 .bx-wrapper .bx-pager {
	bottom: -15px;
}
.loopE .rec {
	padding: 10px;
}
.loopE .rec li {
	margin-top: 10px;
}
.loopE .rec a {
	text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
	color: #fff;
}
.loopE .ppv-box {
	background-image: url(../images/ppv/bg_top.jpg), url(../images/pay/ppv_bg_btm.jpg), url(../images/ppv/bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	padding: 0 0 15px 0;
	margin-bottom: 5px;
}
.loopE .ppv-box ul {
	padding: 15px 0 0px 0;
}
.loopE .ppv-box ul li a .ppv-menu {
	text-decoration: none;
}

/*=======================================
個別機能（100回書き込み）
========================================*/
.forgive_box h2.adjust {
	margin-bottom: -10px;
}
.forgive_box .box_inner a {
	color: #cc0000;
	font-size: 18px;
	text-decoration: underline;
	display: inline-block;
	margin: 10px auto 0 auto;
	text-align: center;
	width: inherit;
}
.forgive_box .senja_serif02 .senja_advice {
	width: 195px;
}
.forgive_box .senja_serif02 .senja_advice:after {
	bottom: -21px;
}
.forgive_box .senja_serif02 .senja_advice .box_inner {
	z-index: 2;
}
.forgive_box .senja_serif02 .senja_advice .box_inner p {
	padding-bottom: 1px;
	padding: 20px 20px 0px 20px;
}

.forgive_box #forgive {
	margin: 0 10px;
}

.forgive_box #forgive .inner {
	background-image: url(../images/forgive/form_bg_top.jpg), url(../images/forgive/form_bg_btm.jpg), url(../images/forgive/form_bg_mid.jpg);
	background-size: 100% auto, 100% auto, 100% auto;
	-webkit-background-size: 100% auto, 100% auto, 100% auto;
	background-repeat: no-repeat, no-repeat, repeat-y;
	background-position: center top, center bottom, center top;
	padding: 37px 0 18px 0;
	margin-bottom: 15px;
}

.forgive_box #forgive textarea {
	height: 110px;
	border: none;
	padding: 10px;
	box-sizing: border-box;
	font-size: 13px;
}

.btn_noice {
	line-height: 1.8;
	font-size: 14px;
}

#btn_omairi {
 cursor: pointer;
  display: block;
  width: 170px;
  height: 45px;
  border: none;
  text-indent: -9999px;
  background: url(../images/forgive/btn.png) no-repeat 0 0;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  margin: 0 auto;
}

.sanpai_num {
	font-size: 18px;
	margin-bottom: 7px;
}
.sanpai_num span {
	display: inline-block;
	margin-left: 5px;
}
.sanpai_num img.kazu {
	width: 25px !important;
	vertical-align: middle !important;
	margin-right: 2px;
}

.sanpai_num img.kai {
	width: 20px !important;
	vertical-align: bottom !important;
}

.forgive_box h3.subtitle {
	background: none !important;
	padding: 0px 0px 5px 0px;
}

.forgive_box .fl-l {
	float: left;
}

.forgive_box .form-box {
	padding-bottom: 30px;
}

.forgive_box .subtitle.naiyo {
	background: url(../images/icon/03.png) no-repeat left 9px;
	-webkit-background-size: 20px auto;
	background-size: 20px auto;
	padding: 10px 0px 6px 16px;
}

.forgive_box .list-caution li {
	font-size: 13px;
}

.forgive_box #forgive .inner02 {
	border: 1px #a78624 dashed;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 15px 0 13px 0;
	background: rgba(0,0,0,0.5);
}

.forgive_box .box_ichiran {
	border: 1px #a78624 dashed;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 15px 10px 15px 10px;
	background: rgba(0,0,0,0.5);
	margin: 0 10px;
}
.forgive_box .box_ichiran p {
	margin-bottom: 0;
}

.forgive_box .box_ichiran h3 {
	margin-bottom: 12px;
	padding-bottom: 12px;
	color: #ffea00;
	font-size: 1.3em;
	font-weight: bold;
	border-bottom: 1px solid #ffea00;
}

.forgive_box .box_ichiran dl {
	font-size: 14px;
	margin-bottom: 10px;
}

.forgive_box .lead_txt {
	background: url(../images/result/free/senja01.png) no-repeat;
	-webkit-background-size: 50% auto;
	background-size: 50% auto;
	min-height: 180px;
	margin-bottom: 10px;
}

.forgive_box .lead_txt .fuki {
	width: 170px;
	top: 30px;
	margin-right: 10px;
}
.forgive_box .lead_txt .fuki p {
	padding: 0px 16px 0px 20px;
	position: relative;
}

.forgive_box .lead_txt .fuki:after {
	bottom: -22px;
	min-height: 42px;
}

.forgive_box .box_item {
	margin: 0 10px;
}

.forgive_box .error-message {
	margin-bottom: 0;
}

.forgive_box .comp_box {
	background: url(../images/forgive/comp_img.jpg) no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	min-height: 418px;
	margin: 0 10px 20px 10px;
	position: relative;
}
.forgive_box .comp_box p {
	margin-bottom: 0;
	font-size: 13px;
	color: #000;
	letter-spacing: 1px;
	position: absolute;
	line-height: 1;
	font-family: 'Sawarabi Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.forgive_box .comp_box p.txt_name {
	top: 147px;
	left: 44px;
}

.forgive_box .comp_box p.txt_days {
	bottom: 89px;
	right: 40px;
	font-size: 16px;
	letter-spacing: 0;
}

.forgive_box .comp_box p.txt_comment {
	top: 176px;
	left: 41px;
	line-height: 2.3;
	width: 225px;
	font-size: 14px;
	text-align: left;
}

.forgive_box .icon_stamp {
	width: 70px;
	min-height: 70px;
	position: absolute;
	right: 32px;
	bottom: 107px;
}

.img_hikari {
	-webkit-animation-name: img_hikari;
	-webkit-animation-duration: 1.2s;
	-webkit-animation-iteration-count: 3;
	animation-name: img_hikari;
	animation-duration: 1.2s;
	animation-iteration-count: 3;
}

@-webkit-keyframes img_hikari {
	50% { box-shadow: 0 0px 10px 10px #ebc840, 0 0px 2px 1px #efdd0a inset;}
}

@keyframes img_hikari {
	50% { box-shadow: 0 0px 10px 10px #ebc840, 0 0px 2px 1px #efdd0a inset;}
}



/*=======================================
prページ
========================================*/
.link_none {
	pointer-events: none;
}
a.link_none:after {
	display: none !important;
}


/*=======================================
myinfoアンケート部分
========================================*/
.qa_disp-0 {
	display: none;
}
.qa_disp-1 {
	display: block;
}
.form-box .questionnaire_box {
	margin-bottom:15px;
}
.form-box .questionnaire_box .form-title {
	margin-bottom: 10px;
}
.form-box .questionnaire_box label {
	display: block;
	margin: 0 30px 10px 0;
	font-size: 13px;
	padding: 7px 25px 7px 15px;
}
.form-box .questionnaire_box .questionnaire_list {
	display: none;
}

.form-box .questionnaire_box .questionnaire_list.selected {
	display: block;
}
.form-box .questionnaire_box #qa_result {
	display: none;
	background: rgba(153, 51, 51,0.5);
	padding: 15px;
	font-size: 15px;
	border-top: 2px solid #c09822;
	border-bottom: 2px solid #c09822;
	line-height: 1.5;
	color: #fff;
}
.form-box .questionnaire_box #qa_result span {
	display: inline-block;
	color: #fbe703;
}
.form-box .questionnaire_box #qa_result.selected {
	display:block;
}
.form-box .questionnaire_box .form-title {
	font-weight: normal;
	font-size: 95%;
}
.form-box .questionnaire_box input {
	margin-bottom: 0;
	position: relative;
	top: 2px;
}
.form-box .questionnaire_box input[type="radio"] {
	display: none;
}

.form-box .question_noice {
	padding: 10px;
	margin: 15px 0 15px 0;
	font-size: 12px;
	border: 2px solid #c09822;
	line-height: 1.7;
	color: #fff;
	border-radius: 3px;
	background: rgba(101,79,33,0.5);
}
.form-box .question_noice.dis_none {
	display:none;
}
.form-box #qa_result {
	background: rgba(153, 51, 51,0.5);
	padding: 10px;
	font-size: 13px;
	border-top: 1px solid #bfa569;
	border-bottom: 1px solid #bfa569;
}
.form-box #textarea_open {
	padding: 10px;
	width: 270px;
	resize: vertical;
	overflow: auto;
	height: 75px;
	font-size: 12px;
	box-sizing: border-box;
}

/*=======================================
初月0円キャンペーンページ
========================================*/
.zero_campaign_lead {
	background: #ffde00;
	padding: 10px 10px 10px 10px;
	margin-bottom: 25px;
}
.zero_campaign_box .zero_campaign_lead {
	box-shadow: 0 0 1px 0px #000 inset;
}
.zero_campaign_lead .txt01 {
	color: #0000ff;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 5px;
}

.zero_campaign_lead .txt02 {
	color: #000;
	font-weight: bold;
	font-size: 16px;
}

.zero_campaign_lead .cam_btn {
	margin: 0 40px 8px 40px;
}
.zero_campaign_lead .cam_btn a {
	display: block;
	background: #ff0000;
	padding: 10px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	text-decoration: none;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
}

.zero_campaign_box {
	background: #FFF;
	color: #000;
	text-align: left;
	margin: 10px 10px;
	padding: 0px 0 5px 0;
}
.zero_campaign_box .midashi {
	margin-bottom: 5px;
	color: #810001;
	font-weight: bold;
	font-size: 16px;
	padding: 0 10px;
}
.zero_campaign_box .text-green {
	padding: 0 10px;
}
.zero_campaign_box ul {
	margin-bottom: 20px;
	padding: 0 10px;
}
.zero_campaign_box li {
	margin-bottom: 5px;
	font-size: 13px;
}

.zero_campaign_box .text-blue02 {
	color: #0000f9 !important;
	line-height: 1.4;
}