@charset "utf-8";
/*////////////////////////////////////////////////////////

common

////////////////////////////////////////////////////////*/
section {
  margin-bottom: 20px;
}
aside {
  padding: 0 10px 20px;
}
/* 汎用box
------------------------- */
.flex-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-box.col2 {
  padding: 5px 10px;
  justify-content: space-between;
}
.flex-box.col2 > div:nth-child(1) {
  width: 28%;
}
.flex-box.col2 > div:nth-child(2) {
  width: 68%;
  text-align: left;
}
.flex-pack {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex-wrap: wrap;
}
.box {
  position: relative;
  clear: both;
}
/* 注釈 */
.box_notice {
  width: 92%;
  margin: 10px auto 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 12px;
}
/* 【削除禁止】display
------------------------- */
/*----- 新規2日間出し分け -----*/
.new_member_off, .new_member_on {
  display: none;
}
.new_member-0 .new_member_off, .new_member-1 .new_member_on {
  display: block;
}
/*----- 従量未購入出し分け -----*/
.unpaido_off, .unpaido_on, .new_member-0 .unpaido_off, .new_member-0 .unpaido_on {
  display: none;
}
/*----- COIPO以外 新規2日間出し分け -----*/
.join_member_off, .join_member_on {
  display: none;
  position: relative;
}
.join_member-0 .join_member_off, .join_member-1 .join_member_on {
  display: block;
}
.unpaido-0 .unpaido_off, .unpaido-1 .unpaido_on {
  display: block;
}
/*----- バナー出し分け -----*/
.bnr .open-0, .bnr .close-1 {
  display: none;
}
.bnr.open-0, .bnr.open-2 {
  display: none;
}
.bnr {
  margin: 0 auto 20px;
  padding: 0 10px;
}
.bnr li {
  margin: 5px 0 10px;
}
.bnr li:first-child {
  margin-top: 0;
}
.bnr li:last-child {
  margin-bottom: 0;
}
.bnr a {
  display: inline-block;
  position: relative;
}
.bnrlink-0 a {
  pointer-events: none;
}
.bnrlink-1 .tit_sub01,
.bnrlink-2 {
  display: none;
}
/* comingsoon用 */
.bnrlink2-2{
	display: none;
}
.bnrlink2-0 a{
	pointer-events: none;
}
.bnrlink2-0 a:before{
	content: "";
	background: rgba(1,17,29,.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}
.bnrlink2-0 a:after{
	content: "";
	background: url(../images/bnr/comingsoon.png) no-repeat top;
	background-size: 100%;
	width: 115px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
} 

/*----- docomo出し分け -----*/
.disp-docomo .common, .disp-common .docomo {
  display: none;
}
.disp-docomo .docomo, .disp-common .common {
  display: block;
}
/*----- 注釈出し分け -----*/
.notice-0 {
  display: none;
}
/* animation
------------------------- */
.tenmetsu {
  -webkit-animation: tenmetsu 1.2s ease-in-out infinite alternate;
  -moz-animation: tenmetsu 1.2s ease-in-out infinite alternate;
  animation: tenmetsu 1.2s ease-in-out infinite alternate;
}
@-webkit-keyframes tenmetsu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes tenmetsu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tenmetsu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.float {
  -webkit-animation: float 2.5s ease-in-out infinite alternate;
  animation: float 2.5s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
  position: relative;
  z-index: 2;
}
@-webkit-keyframes float {
  0% {
    transform: translate3d(0, -3px, 0)
  }
  50% {
    transform: translate3d(0, 3px, 0)
  }
  100% {
    transform: translate3d(0, -3px, 0)
  }
}
@keyframes float {
  0% {
    transform: translate3d(0, -3px, 0)
  }
  50% {
    transform: translate3d(0, 3px, 0)
  }
  100% {
    transform: translate3d(0, -3px, 0)
  }
}
/*////////////////////////////////////////////////////////

共通パーツ

////////////////////////////////////////////////////////*/
/* list_menu
------------------------- */
/*----- デフォルト -----*/
.list_menu {
  padding: 8px 8px 10px;
  position: relative;
  background: #ffbad1;
}
.list_menu + .list_menu {
  margin-top: -1px; /* 線消し用 */
  padding-top: 5px;
}
.list_menu li {
  position: relative;
  text-align: left;
  font-weight: bold;
  color: #000;
  background: #fff;
}
.list_menu li:first-child {
  border-radius: 3px 3px 0 0;
}
.list_menu li:last-child {
  border-radius: 0 0 3px 3px;
}
.list_menu li:only-child {
  border-radius: 3px;
}
.list_menu li:not(:last-child) {
  border-bottom: 1px solid #b4b4b4;
}
.list_menu li a {
  padding: 10px 20px 10px 15px;
}
.list_menu a {
  display: block;
  position: relative;
  line-height: 1.4;
  text-decoration: none;
  color: #000;
}
.list_menu a:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #1f1f1f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}
.list_menu .tit_sub {
  height: auto;
  margin: 0 0 4px;
  padding: 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-shadow: 0 0 3px #c80059, 0 0 5px #c80059;
  font-family: "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 17px;
  background: #cf348f;
}
/* red */
.list_menu.red {
  background: #ff9989;
}
.red .tit_sub, .red .btn_more a {
  background: #cc1b00;
}
.red .tit_sub {
  text-shadow: 0 0 3px #f82d0e, 0 0 5px #f82d0e;
}
/* purple */
.list_menu.purple {
  background: #cea4dd;
}
.purple .tit_sub, .purple .btn_more a {
  background: #4c1f64;
}
.purple .tit_sub {
  text-shadow: 0 0 3px #9b00c8, 0 0 5px #9b00c8;
}
/* yellow */
.list_menu.yellow {
  background: #fbc597;
}
.yellow .tit_sub, .yellow .btn_more a {
  background: #df4f00;
}
.yellow .tit_sub {
  text-shadow: 0 0 3px #e77b2b, 0 0 5px #e77b2b;
}
/* blue */
.list_menu.blue {
  background: #cea4dd;
}
.blue .tit_sub, .blue .btn_more a {
  background: #4c1f64;
}
.blue .tit_sub {
  text-shadow: 0 0 3px #9b00c8, 0 0 5px #9b00c8;
}
/* もっと見る */
.btn_more {
  margin: 7px 0 0;
  text-align: right;
}
.btn_more a {
  display: inline-block;
  padding: 0 18px 0 15px;
  border-radius: 20px;
  line-height: 22px;
  font-size: 11px;
  color: #fff;
  background: #cf348f;
}
.btn_more a:after {
  transform: translateY(-55%) scale(.9, .9);
  border-color: transparent transparent transparent #fff !important;
}
/*----- 新着 -----*/
.list_menu.new {
  margin: 0 !important;
  padding: 0 10px 10px;
  border: 0 !important;
  background: #fffcce;
}
.list_menu.new li {
  border: 1px solid #800002;
  border-top: 4px solid #800002;
  border-bottom: 4px solid #800002;
  border-radius: 0;
  background: #fbf8f8;
}
.list_menu.new li.new {
  margin: 0 -10px 10px !important;
  border: 0;
  background: url("../images/menulist/new/new/bg_menu_top.jpg") no-repeat top, url("../images/menulist/new/new/bg_menu_btm.jpg") no-repeat bottom, url("../images/menulist/new/new/bg_menu_mid.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.new li:not(:last-child) {
  margin: 0 0 5px;
}
.list_menu.new li a {
  min-height: 93px;
  padding: 0 5px 8px;
}
.list_menu.new li.new a {
  padding: 37px 15px 42px;
}
.list_menu.new a:after {
  content: none;
}
.btn_more_img {
  margin: 5px 0 0;
  text-align: right;
}
.btn_more_img a {
  display: inline-block;
  width: 160px;
}
.btn_more_img a:after {
  content: none;
}
/* ppv icon */
.icon-ppv {
  display: flex;
  align-items: center;
  margin: 0 -5px 5px;
  padding: 4px 5px;
  font-size: 13px;
  border-bottom: 1px solid #800002;
}
.icon-ppv .days {
  order: 2;
}
.icon-ppv:before, .icon-ppv:after {
  content: '';
  order: 1;
}
.icon-ppv:before {
  width: 54px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/icon/icon-ppv.png) no-repeat center;
  background-size: 100%;
}
.icon-ppv:after {
  width: 25px;
  height: 16px;
  margin-right: 8px;
}
.icon-ppv.one:after {
  width: 14px;
  background: url(../images/icon/icon-person.png) no-repeat 2px;
  background-size: 24px;
}
.icon-ppv.two:after {
  background: url(../images/icon/icon-person.png) no-repeat center;
  background-size: 100%;
}
li.new .icon-ppv:before {
  width: 102px;
  background: url(../images/icon/icon-new.png) no-repeat left center, url(../images/icon/icon-ppv.png) no-repeat right center;
  background-size: 43px, 55px;
}
li.new .icon-ppv.one:after {
  background: url(../images/icon/icon-person.png) no-repeat 2px;
  background-size: 24px;
}
li.new .icon-ppv.two:after {
  background: url(../images/icon/icon-person.png) no-repeat center;
  background-size: 100%;
}
/*----- ランキング -----*/
.list_menu.ranking {
  padding: 0;
  background: none;
}
.list_menu.ranking li {
  padding: 10px;
}
.list_menu.ranking li:nth-child(1) {
  background: #ffda0e;
}
.list_menu.ranking li:nth-child(2) {
  background: #e9f8f9;
}
.list_menu.ranking li:nth-child(3) {
  background: #ffe6ba;
}
.list_menu.ranking li:nth-child(4) {
  background: #f1ffe4;
}
.list_menu.ranking li:nth-child(5) {
  background: #c6e4ac;
}
.list_menu.ranking li a {
  padding: 0 5px 10px;
  border: 1px solid #800002;
  border-top: 4px solid #800002;
  border-bottom: 4px solid #800002;
  border-radius: 0;
  background: #fbf8f8;
}
.list_menu.ranking .rankingicon {
  display: block;
  width: 120px;
  margin: 0 auto 5px;
}
.list_menu.ranking .text-right {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: bold;
  color: #ff0000;
}
/*----- weekend -----*/
.list_menu.weekend {
  box-shadow: 0 0 3px #9861e6 inset, 0 0 3px #9861e6 inset;
  background: url("../images/pay/loop/weekend/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.weekend li {
  border: 0;
  border-radius: 0;
  text-align: center;
  background: url("../images/pay/loop/weekend/bg_menu.png") no-repeat;
  background-size: 100%;
}
.list_menu.weekend li:nth-child(1) {
  margin: 0 0 8px;
}
.list_menu.weekend li a {
  width: 300px;
  display: table-cell;
  vertical-align: middle;
  height: 80px;
}
/*----- メニュー更新 -----*/
.list_menu.update {
  box-shadow: 0 0 3px #d18aa2 inset, 0 0 3px #d18aa2 inset;
  background: url("../images/pay/update/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
.update .btn_more a {
  padding: 0 25px 0 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #1f1f1f;
  background: #fff;
}
.update .btn_more a:after {
  border-color: transparent transparent transparent #000 !important;
}
/*----- ppv -----*/
.ppv_top .list_menu:not(.new) {
  padding: 8px 20px 50px;
}
.ppv_top .list_menu:not(.new) li {
  background: none;
}
.ppv_top .list_menu:not(.new) li:not(:last-child) {
  border-bottom: 1px solid #e60012;
}
.ppv_top .list_menu:not(.new) li a {
  padding: 10px 0;
}
.ppv_top .list_menu li a:after {
  content: none;
}
.list_menu.love {
  background: url("../images/ppv/bg_top01.jpg") no-repeat top, url("../images/ppv/bg_btm01.jpg") no-repeat center bottom -1px, url("../images/ppv/bg_mid01.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.fukuzatsu {
  background: url("../images/ppv/bg_top02.jpg") no-repeat top, url("../images/ppv/bg_btm02.jpg") no-repeat center bottom -1px, url("../images/ppv/bg_mid02.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.kekkon {
  background: url("../images/ppv/bg_top03.jpg") no-repeat top, url("../images/ppv/bg_btm03.jpg") no-repeat center bottom -1px, url("../images/ppv/bg_mid03.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.jinsei {
  background: url("../images/ppv/bg_top04.jpg") no-repeat top, url("../images/ppv/bg_btm04.jpg") no-repeat center bottom -1px, url("../images/ppv/bg_mid04.jpg") repeat-y;
  background-size: 100%;
}
/*----- loopD -----*/
.list_menu.loopD {
  margin: -1px 0 !important;
  padding: 0 10px;
  border: 0 !important;
  background: url("../images/menulist/loopD/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
.list_menu.loopD li {
  width: 100%;
  display: table;
  border-radius: 0;
  background: url("../images/menulist/loopD/bg_menu.png") no-repeat;
  background-size: 100%;
}
.list_menu.loopD li:not(:last-child) {
  margin: 0 0 4px;
}
.list_menu.loopD a {
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  padding: 0 30px 0 15px;
  text-decoration: underline;
  color: #900a23;
}
.list_menu.loopD a:after {
  content: none;
}
/*----- チュートリアル -----*/
.list_menu.tutorial li a:after {
  transform: translateY(-50%) rotate(90deg);
}
/*----- deli -----*/
.list_menu.deli, .list_menu.deli li {
  border-radius: 0;
  background: none;
}
.list_menu.deli li a {
  padding: 10px 15px 10px 8px;
}
/*----- nolink -----*/
.list_menu li.nolink {
  padding: 10px 20px 10px 15px;
  position: relative;
  overflow: hidden;
  color: #555;
  background: #ddd;
}
.list_menu li.nolink a {
  opacity: .85;
  padding: 0 0 5px !important;
  pointer-events: none;
}
.list_menu li.nolink .ppvtitle {
  color: #333;
  text-decoration: none;
}
.list_menu li.nolink .ppvtitle font {
  color: brown;
}
.list_menu li.nolink[class*="label"]:after {
  display: inline-block;
  min-width: 155px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: absolute;
  top: 5px;
  left: -45px;
  z-index: 1;
  transform: rotate(-17deg);
  line-height: 17px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #000033;
  background: #ffff0a;
}
.list_menu li.nolink.label5:after {
  content: '500円OFF';
}
.list_menu li.nolink.label10:after {
  content: '1000円OFF';
}
/* 特別鑑定ボタン
------------------------- */
/* 画像 */
.btn_ppv {
  width: 85%;
  margin: 15px auto;
}
/* 背景テキスト */
.btn_ppvmenu {
  padding: 5px 5px 10px 0;
  background: #e77b9f;
}
.btn_ppvmenu a {
  display: table-cell;
  vertical-align: middle;
  width: 320px;
  height: 120px;
  padding: 8px 33px 0 25px;
  line-height: 1.4;
  text-decoration: underline;
  font-weight: bold;
  font-size: 13px;
  color: #000;
  background: url("../images/btn/bg_ppv.png") no-repeat center;
  background-size: 100%;
}
.btn_ppvmenu span {
  font-size: 1.05em;
  color: red;
}
.btn_ppvmenu li:not(:first-child) {
  margin-top: 5px;
}
.btn_ppvmenu.red {
  background: #ff5f46;
}
.btn_ppvmenu.violet {
  background: #ae00ff;
}
.btn_ppvmenu.purple {
  background: #ad68c6;
}
.btn_ppvmenu.blue {
  background: #32bacd;
}
/* ラベル
------------------------- */
.obi {
  display: block;
  padding: 0 35px 0 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  transform: rotate(-35deg);
  line-height: 17px;
  font-weight: bold;
  font-size: 10px;
  font-style: italic;
  color: #d30000;
  position: absolute;
  top: 4px;
  left: -32px;
  background: #FFE900;
}
.obi.one {
  color: #007e6a;
}
/* lead
------------------------- */
.lead {
  text-align: left;
  position: relative;
}
/* popup
------------------------- */
.box_notice_popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  text-align: left;
  background: rgba(0, 0, 0, .5);
}
.box_notice_popup .inner {
  width: 250px;
  margin: auto;
  padding: 10px 15px;
  border: 2px solid #cead6f;
  border-radius: 5px;
  position: relative;
  top: 50%;
  transform: translateY(-55%);
  overflow-y: scroll;
  color: #444;
  background: #fff;
}
.box_notice_popup .btn-close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 100;
  cursor: pointer;
  background: url(../images/coipo/icon-close.png) no-repeat;
  background-size: 100%;
}
.box_notice_cap {
  padding: 0 0 5px;
  border-bottom: 1px solid #fa91ba;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
}
.box_notice_popup dt {
  padding: 8px 0 3px;
  font-size: 12px;
  font-weight: bold;
}
.box_notice_popup li {
  margin: 0 0 3px;
  font-size: 11px;
}
.box_notice_popup .icon_share {
  width: 15px;
  margin: 0 1px;
  vertical-align: -3px;
}
/*////////////////////////////////////////////////////////

無料TOP

////////////////////////////////////////////////////////*/
[class*="free_top"] {
  padding: 0 0 40px;
}
[class*="free_top"] section, [class*="free_top"] p {
  margin-bottom: 0;
}
[class*="free_top"] .main_obi {
  padding: 5px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  background: #ff0066;
}
[class*="free_top"] .main_obi span {
  color: yellow;
}
#footer-space.pink {
  background-color: #ffebfc;
  margin-top: -25px;
}
/*----- 無料占いbtn -----*/
.box_ff {
  height: 220px;
  padding: 65px 8px 0 0;
  background: url("../images/free/bg_free.jpg") no-repeat;
  background-size: 100%;
}
.btn_free {
  margin: auto;
  justify-content: space-between;
}
.btn_free li {
  width: 49.5%;
  height: 100%;
}
.btn_free li:nth-child(2) {
  animation-delay: .5s;
}
.btn_free a {
  display: block;
  height: 100%;
  width: 100%;
}
.btn_free .fade_in2.active {
  animation-delay: .5s;
}
/* 会員登録btn */
.btn-regist {
  margin: 15px auto;
  position: relative;
  z-index: 1;
}
.btn-regist a {
  display: block;
  width: 80%;
  height: 100px;
  margin: auto;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/btn/btn_regist.png) no-repeat center;
  background-size: 100%;
}
.btn-regist02 {
  width: 90%;
  margin: 0 auto;
}
/*----- menu -----*/
[class*="free_"] .btn_more a {
  padding: 0;
  pointer-events: none;
  border: 0;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: none;
}
[class*="free_"] .blue .btn_more a {
  color: #0367b4;
}
[class*="free_"] .btn_more a:after {
  content: none;
}
/*----- 特典 -----*/
.otoku {
  position: relative;
}
.otoku .menu_link {
  height: 35px;
  top: 270px;
}
/*////////////////////////////////////////////////////////

free fortune

////////////////////////////////////////////////////////*/
.free_index p {
  margin-bottom: 0;
}
.ff_fuki {
  margin: 0 0 -10px;
  padding: 0 20px;
}
.ff_tit {
  position: relative;
  z-index: 1;
}
.ff_tit h2 {
  width: 100%;
  position: absolute;
  bottom: 33px;
  line-height: 1.2;
  font-size: 13px;
  font-family: "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-weight: bold;
  color: #370a09;
}
/*----- 限定ラベル -----*/
.free_fortune {
  overflow: hidden;
  position: relative;
}
.free_fortune [class^="label-"] {
  display: inline-block;
  padding: 4px 90px 4px 15px;
  position: absolute;
  left: -17px;
  top: 3px;
  z-index: 2;
  transform: rotate(-20deg);
  line-height: 1.2;
  text-align: left;
  font-size: 10px;
  font-weight: bold;
  color: red;
  background: yellow;
}
.free_fortune .label-0 {
  display: none !important;
}
/*----- form -----*/
.form_wrap {
  margin: -1px 0 0; /*線消し*/
  padding: 0 25px 50px;
  background: url("../images/free/bg_btm.jpg") no-repeat center bottom -1px, url("../images/free/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
[class^="ff_name"] {
  width: 98%;
  margin: 0 auto 12px;
}
.ff_name2 {
  width: 100%;
}
.form_wrap > .flex-box:not(.select_wrap) {
  justify-content: space-between;
}
.form_wrap > .flex-box dl {
  display: flex;
  align-items: center;
  width: 49%;
}
.form_wrap dt {
  flex-shrink: 0;
  width: 25%;
  height: 100%;
  margin: 0 2px 0 0;
  padding: 0 4px 0 2px;
  border-radius: 3px;
  line-height: 30px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  background: #da0000;
}
.form_wrap input[type="text"], .form_wrap select {
  width: 100%;
  height: 30px;
  margin: 0;
  border: 1px solid #a0a0a0;
  line-height: 1.4;
  font-size: 13px;
  font-weight: bold;
}
.form_wrap input[type="text"] {
  padding: 0 7px;
}
.form_wrap select {
  width: 55px;
  padding: 0 8px 0 5px;
  background: url(../images/icon/arrow_select.png) no-repeat 94% center #fff;
  background-size: 7px;
}
.free_compulsion .form_wrap {
  background: url(../images/pr/compulsion/bg_btm.jpg) no-repeat center bottom -1px, url(../images/pr/compulsion/bg_mid.jpg) repeat-y;
  background-size: 100%;
}
/* 注意文言 */
.form_wrap .att {
  margin: 7px 0 12px;
  line-height: 1;
  font-size: 10px;
  color: #1a0202;
}
.form_wrap .error-message {
  padding-bottom: 5px;
}
/* 性別 */
.select_wrap {
  flex-wrap: nowrap;
}
.select_wrap:not(:last-child) {
  margin: 0 0 15px;
}
.select_wrap dt {
  width: 60px;
  letter-spacing: 1px;
}
/* 生年月日 */
.select_wrap.birthday dt {
  letter-spacing: 0;
}
.select_wrap [name='birthmonth'], .select_wrap [name='birthday'], .select_wrap [name='birthmonth2'], .select_wrap [name='birthday2'] {
  width: 40px;
}
.select_wrap span {
  padding: 12px 2px 0 2px;
  float: left;
  font-weight: bold;
  font-size: 10px;
  color: #000;
}
/* 占うボタン */
.btn_wrap {
  width: 230px;
  height: 50px;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
}
/*////////////////////////////////////////////////////////

月額TOP

////////////////////////////////////////////////////////*/
/*----- menu_link -----*/
.menu_link {
  width: 92%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
}
.menu_link li {
  background: none;
}
.menu_link a {
  display: block;
  height: 100%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
/*----- メインメニュー -----*/
.main_visual .box_teller .serif {
  box-shadow: none;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
  background: none;
}
.main_visual .box_teller .serif:after {
  content: none;
}
.menu .main_visual .box_teller {
  min-height: 170px;
  margin: 0 0 5px;
  padding: 15px 0 0 23px;
  background: url("../images/menu/teller.jpg") no-repeat;
  background-size: 100%;
}
.btn_today {
  display: block;
  margin: 5px 0 0;
}
.today {
  height: 25px;
  line-height: 26px;
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  background: #933030;
  background-size: 100%;
}
.box_menu {
  height: 320px;
  padding: 12px 15px 0;
  background: url(../images/menu/bg_box_menu.jpg) no-repeat;
  background-size: 100%;
}
.box_menu li {
  height: 38px;
  margin: 0 0 6px;
}
.box_menu li:not(.w-100) {
  width: 50%;
}
.box_menu li:nth-last-child(-n+2) {
  margin: 0;
  height: 42px;
}
.box_menu li a {
  display: block;
  height: 100%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
/* 更新バッジ */
.box_menu .icon-1:after {
  content: "";
  position: absolute;
  z-index: 1;
}
.box_menu .icon-1:after {
  width: 20px;
  height: 20px;
  top: -5px;
  right: -4px;
  background: url(../images/icon/icon-mark.png) no-repeat;
  background-size: 100%;
}
/* 検索 */
.box_search {
  padding: 8px 15px 10px;
  background: #a60000;
}
.pulldown_menu {
  position: relative;
}
.pulldown_menu select {
  width: 100%;
  height: 34px;
  padding: 0 22px 0 10px;
  line-height: 30px;
  font-size: 13px;
  background: #fff;
}
.pulldown_menu:after {
  content: "\025bc";
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #2b2b2b;
}
.box_search_btn {
  width: 67px;
  height: 35px;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: 1px;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/pay/btn_search.png) no-repeat;
  background-size: 100%;
}
.fortune_search {
  margin: 50px auto 30px;
}
.fortuneSearch .fortune_search {
  margin: 0 auto 30px;
}
/*----- teller -----*/
.menu .box_teller {
  margin: 0;
}
/*----- menu -----*/
.btn_att {
  height: 65px;
  margin: 0 auto 8px;
  background: url("../images/btn/btn_att.png") no-repeat;
  background-size: 100%;
}
.btn_att a {
  display: block;
  height: 100%;
  padding: 10px 25px 0 30px;
  font-size: 15px;
  color: #fff;
}
.menu000 .menu_link {
  top: 165px;
}
.menu000 .menu_link li {
  width: 50%;
  height: 65px;
}
.menu006 .serif {
  width: 152px;
  text-align: left;
  font-weight: bold;
  font-size: 12px;
  color: #480808;
  position: absolute;
  top: 65px;
  left: 30px;
}
.menu008 .box_teller {
  min-height: 180px;
  background: url("../images/menu/008/teller.jpg") no-repeat;
  background-size: 100%;
}
.menu014 .menu_link {
  top: 155px;
}
.menu014 .menu_link li {
  width: 50%;
  height: 65px;
}
.tokuten .menu_link {
  top: 80px;
}
.tokuten .menu_link li {
  width: 60%;
  height: 100px;
  margin-left: 40%;
}
.midnight-0 .open, .midnight-1 .close {
  display: none;
}
.midnight-1 .open {
  display: block;
}
.midnight-0 .count {
  width: 100%;
  line-height: 2;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #fff600;
  font-size: 20px;
  font-weight: bold;
  color: #fff600;
  position: absolute;
  top: 47px;
  left: 0;
}
/*////////////////////////////////////////////////////////

有料TOP

////////////////////////////////////////////////////////*/
.pay_top p {
  margin-bottom: 0;
}
/*----- mv -----*/
.pay_top .main_visual {
  margin: 0 0 -1px;
  padding: 0 0 10px;
  background: #cc3814;
}
.pay_top .main_visual .box_teller {
  min-height: 155px;
  margin-bottom: 10px;
  padding: 10px 15px 0 0;
  background: url("../images/pay/teller.jpg") no-repeat;
  background-size: 100%;
}
/*----- レコメンドbigバナー -----*/
.reco_banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1002;
  width: 100%;
  height: 120vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.pay_top .reco-1 {
  display: block;
}
.pay_top .reco-0 {
  display: none;
}
.reco_bigbnr {
  width: 92%;
  margin: 10px auto 0;
  padding: 0 0 0;
  position: relative;
  border-radius: 5px;
  border: 2px solid #ab8449;
  background: #fafafa;
  min-height: 290px;
}
.reco_bigbnr img {
  border-radius: 3px 3px 0 0;
}
.btn_reco_close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 2000;
  cursor: pointer;
  background: url(../tpl/conce_sys/big_banner/sys/images/icon_close.png) no-repeat;
  background-size: 100%;
}
/*--- 新メニュー ---*/
[class*="new_notice"] {
  display: none;
  width: 300px;
  margin: 5px auto 0;
}
.new_notice-1 {
  display: block;
}
/*--- popupsetting(ホーム画面追加設定アイコン) ---*/
.btn_popupsetting {
  display: none;
  width: 60px;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 5px;
  transform: translateX(-125px);
  z-index: 101;
  cursor: pointer;
}
.btn_popupsetting a {
  display: block;
}
/* close */
.btn_popupsetting_close {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/popupsetting/btn_close.png") no-repeat;
  background-size: 100%;
}
/*--- 緊急メッセージ THEATER ---*/
.emergency_mes {
  width: 300px;
  height: 72px;
  margin: auto;
  position: relative;
  background: url("../images/pay/notice/bg_emergency.png") no-repeat center;
  background-size: 100%;
}
.emergency_mes a {
  display: table-cell;
  width: 300px;
  height: 72px;
  padding: 26px 40px 0;
  vertical-align: middle;
  line-height: 1.25;
  text-decoration: underline;
  font-family: "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
/*.emergency_mes.icon-1:after {
  content: "";
  width: 15px;
  height: 15px;
  margin: auto;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 2;
  -webkit-animation: tenmetsu 1s ease-in-out infinite alternate;
  -moz-animation: tenmetsu 1s ease-in-out infinite alternate;
  animation: tenmetsu 1s ease-in-out infinite alternate;
  background: url(../images/icon/icon-mark.png) no-repeat;
  background-size: 100%;
}*/
/*--- ランダム訴求1 RANDOM_WEEK_VIEW ---*/
[class^="random_week_view"] {
  width: 300px;
  margin: 0 auto;
  border-radius: 5px;
  background: #fff;
}
[class^="random_week_view"] a {
  display: block;
  height: 100%;
  padding: 8px 15px 8px 8px;
  position: relative;
  font-weight: bold;
  color: #000;
}
[class^="random_week_view"] a:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #1f1f1f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}
.random_week_view-1 {
  box-shadow: 0 0 5px inset #eef616;
  border: 1px solid #817619;
}
.random_week_view-2 {
  box-shadow: 0 0 5px inset #f36bff;
  border: 1px solid #570871;
}
.random_week_view-3 {
  box-shadow: 0 0 5px inset #16f6b4;
  border: 1px solid #007c57;
}
/*--- ランダム訴求2 RANDOM_WEEK_TEXT ---*/
[class^="random_week_text"] {
  width: 300px;
  margin: 10px auto 0;
  border-radius: 5px;
  background: #fff;
}
[class^="random_week_text"] a {
  display: block;
  padding: 8px 15px 8px 8px;
  position: relative;
  font-weight: bold;
  color: #000;
}
[class^="random_week_text"] a:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #1f1f1f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}
.random_week_text-1 {
  box-shadow: 0 0 5px inset #eef616;
  border: 1px solid #817619;
}
.random_week_text-2 {
  box-shadow: 0 0 5px inset #f36bff;
  border: 1px solid #570871;
}
.random_week_text-3 {
  box-shadow: 0 0 5px inset #16f6b4;
  border: 1px solid #007c57;
}
/*----- 特殊小見出しランダム訴求 -----*/
[id^="randam_disp"] [class^="open-"] {
  display: none;
  position: relative;
}
[id^="randam_disp"] [class^="open-"] .serif, [id^="randam_disp"] [class^="open-"] a {
  position: absolute;
}
[id^="randam_disp"] [class^="open-"] .serif {
  width: 160px;
  top: 45px;
  left: 33px;
  line-height: 1.4;
  text-align: left;
  font-family: "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-weight: bold;
  color: #1a1a1a;
}
[id^="randam_disp"] [class^="open-"] a {
  display: block;
  width: 100%;
  height: 100px;
  left: 0;
}
.randam_open-1 .open-1, .randam_open-2 .open-2, .randam_open-3 .open-3, .randam_open-4 .open-4, .randam_open-5 .open-5 {
  display: block !important;
}
.randam_open-1 a {
  bottom: 45px;
}
.randam_open-2 a {
  bottom: 50px;
}
.randam_open-3 a {
  bottom: 25px;
}
.randam_open-4 a {
  bottom: 85px;
}
.randam_open-5 a {
  bottom: 45px;
}
/*----- 2ボタン -----*/
.btn_info_ppv {
  padding: 15px 20px 38px;
  position: relative;
  background: url("../images/pay/btm.jpg") no-repeat bottom #870c1e;
  background-size: 100%;
}
.btn_info_ppv ul {
  width: 280px;
  position: absolute;
  top: 15px;
  left: 20px;
}
.btn_info_ppv li {
  width: 50%;
  height: 45px;
}
.btn_info_ppv li a {
  display: block;
  width: 100%;
  height: 100%;
}
.pay_top .btn_notice.icon-1:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
  background: url(../images/icon/icon-mark.png) no-repeat;
  background-size: 100%;
  -webkit-animation: tenmetsu 1s ease-in-out infinite alternate;
  -moz-animation: tenmetsu 1s ease-in-out infinite alternate;
  animation: tenmetsu 1s ease-in-out infinite alternate;
}
/*----- 無料占いの続き -----*/
.btn_free_more {
  height: 70px;
  cursor: pointer;
  background: url("../images/btn/btn_free_more.png") no-repeat center bottom #cc3814;
  background-size: 96%;
}
.box_free_more {
  display: none;
  margin: 0;
  border-bottom: 1px solid #f0e485;
  background: #c63613;
}
.box_free_more.opn {
  display: block;
}
/* タブ */
.tab li {
  cursor: pointer;
}
.box_free_more .tab {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  height: 52px;
  margin: 0 0 -1px;
  background: url("../images/pay/freemore/tab1.jpg") no-repeat;
  background-size: 100%;
}
.box_free_more .tab.on2 {
  background: url("../images/pay/freemore/tab2.jpg") no-repeat;
  background-size: 100%;
}
/* パネル */
[class^="panel"] {
  display: none;
  position: relative;
}
[class^="panel"].active {
  display: block;
}
.panel1 {
  background: #fffcce;
}
.panel2 {
  padding: 0 0 20px;
  background: #fffeee;
}
.panel3 {
  padding: 0 0 5px;
  background: #fff664;
}
.box_free_more .panel {
  padding: 15px 15px 20px;
}
.box_free_more .panel:nth-child(1) {
  background: #aa0e36;
}
.box_free_more .panel:nth-child(2) {
  background: #752796;
}
.box_free_more .panel li {
  margin: 0 0 7px;
  padding-left: 18px;
  text-align: left;
  line-height: 1.2;
  background: url("../images/icon/01.png") no-repeat left 1px;
  background-size: 15px;
}
.box_free_more .panel a {
  font-weight: bold;
  font-size: 13px;
  color: #fff;
}
.box_free_more .panel .icon_ppv {
  padding-left: 50px;
  font-weight: bold;
  background: url("../images/icon/icon-ppv.png") no-repeat left 1px;
  background-size: 45px;
}
.box_free_more .panel .icon_ppv a {
  color: #fcff00;
}
/*----- タブメニュー -----*/
.sec_tab_menu {
  margin: 0;
}
/* tab */
.tab_menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  height: 58px;
  margin: 0 0 -1px;
  background: url("../images/pay/tab/tab1.jpg") no-repeat;
  background-size: 100%;
}
.tab_menu.on1 {
  background: url("../images/pay/tab/tab1.jpg") no-repeat;
  background-size: 100%;
}
.tab_menu.on2 {
  background: url("../images/pay/tab/tab2.jpg") no-repeat;
  background-size: 100%;
}
.tab_menu.on3 {
  background: url("../images/pay/tab/tab3.jpg") no-repeat;
  background-size: 100%;
}
.tab_menu li {
  width: 31%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.tab_menu li.active {
  width: 35%;
}
.tab_menu li.icon-1:after {
  content: '';
  width: 45px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/pay/tab/icon-new.png") no-repeat;
  background-size: 100%;
}
/* item */
.tab_menu_item {
  background: #cc3814;
}
.tab_menu_item .bnr {
  padding: 0 10px;
  background: none;
}
.tab_menu_item li a:after {
  content: none;
}
.tab_menu_item .bnr {
  margin: 0 0 5px;
}
/*----- レコメンド -----*/
.sec_auto_segment_ppv {
  margin: 0 0 5px;
  padding: 0 0 45px;
  background: url("../images/pay/deli/bg_top.jpg") no-repeat top, url("../images/pay/deli/bg_btm.jpg") no-repeat bottom, url("../images/pay/deli/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
.tit_deli {
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  padding: 41px 116px 100px 25px;
  font-family: "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 14px;
  font-weight: bold;
}
.deli2-read {
  display: none;
}
/*----- weekend -----*/
.weekend h2 {
  margin: 0 0 10px;
}
.weekend .obi {
  width: 45px;
  height: 18px;
  padding: 0;
  top: -4px;
  left: -4px;
  transform: rotate(0deg);
  box-shadow: 0 0 3px rgba(255, 255, 255, .7) inset;
  border-radius: 3px;
  text-align: center;
  line-height: 18px;
  font-style: normal;
  color: #fff;
}
.weekend .obi.one {
  background: #0a7d15;
}
.weekend .obi.two {
  background: #c92777;
}
/*----- メニュー更新 -----*/
.update h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #393247;
  background: url("../images/pay/update/title.png") no-repeat;
  background-size: 100%;
}
.update h2 span {
  color: #ff007e;
}
/*----- 12月バナー -----*/
.bnr_dec{
  position: relative;
}
.bnr_dec .menu_link{
  top: 85px;
}
.bnr_dec .menu_link li{
  width: 50%;
  height: 210px;
  margin: 0;
}
/*----- nextopen -----*/
.text_nextopen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 30px;
  margin: 3px auto;
  font-size: 18px;
  font-weight: bold;
  color: #ff2400;
  background: url("../images/pay/nextopen/nextopen.png") no-repeat bottom;
  background-size: 100%;
}
.text_nextopen span {
  display: none;
}
.nextopen-0 .close, .nextopen-1 .open {
  display: block;
}
.nextopen-0 .close {
  font-size: 20px;
}
.nextopen-0 a {
  pointer-events: none;
}
/*----- 滞在特典 -----*/
.box_special {
  color: #000033;
}
.box_special .inner {
  padding: 15px;
  background: #ededed;
}
.box_special .text-bold {
  padding: 5px 0;
  line-height: 1.3;
}
.box_special ul {
  padding: 5px 0 20px;
}
.box_special li:not(:last-child) {
  margin: 0 0 15px;
  padding: 0 0 20px;
  background: url("../images/line/02.png") no-repeat bottom;
  background-size: 100%;
}
.box_special h3 {
  font-size: 13px;
  font-weight: bold;
}
.box_special .float {
  margin: 0 auto -5px;
}
.btn-pre-link {
  display: block;
  width: 260px;
  margin: auto;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}
/* おすすめサイト */
.promotion {
  position: relative;
}
.promotion .inner {
  padding: 10px;
  position: relative;
  z-index: 1;
}
.promotion li {
  margin-top: 10px;
}
.promotion .officialLink {
  padding: 0 10px;
}
.box_recc .inner {
  margin: 5px 5px 0;
  padding: 0 20px 25px;
  border: 1px solid #d8a5f6;
  border-radius: 7px;
  background: #714d71;
}
/*----- 2ヵ月目継続特典 -----*/
.box_nextmonth {
  margin: 0 0 10px;
  position: relative;
}
.text_nextmonth {
  position: absolute;
  right: 227px;
  bottom: 7px;
  font-weight: bold;
  font-size: 23px;
}
.open-0 .btn-yudo {
  display: none;
}
/*占いの日際
再リニューアルBNRの帯*/
.pay_top .return_sale_belt {
  padding: 8px;
  color: red;
  text-align: center;
  background: yellow;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -0.6px;
  border-bottom: 3px solid #000;
}

/* popup
------------------------- */
.box_notice_popup {
  display: none;
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  text-align: left;
  background: rgba(0, 0, 0, .5);
}
.box_notice_popup.open-1 {
  display: block;
}
.box_notice_popup .inner,
.box_notice_popup .bnr {
  margin: auto;
	padding: 10px 15px;
  position: relative;
  top: 50%;
  transform: translateY(-55%);
  overflow-y: scroll;
}
.box_notice_popup .bnr {
	width: 280px;
}

/*////////////////////////////////////////////////////////

お知らせ・プレゼントBOX

////////////////////////////////////////////////////////*/
.notice .list_menu dt {
  margin-bottom: 7px;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
  font-size: 12px;
}
.notice .icon_1 {
  background: url(../images/icon/icon-mark.png) no-repeat right top;
  background-size: 15px;
}
/*////////////////////////////////////////////////////////

menulist / menu.do

////////////////////////////////////////////////////////*/
/*----- common -----*/
.menuList .title, .menudo .title {
  min-height: 90px;
  background: url("../images/bar/pink_long.jpg") no-repeat;
  background-size: 100%;
}
.menuList .title, .menudo.index .title {
  margin: 0;
}
.menuList .title {
  flex-direction: column;
  margin: 0;
}
.menuList .title span {
  font-size: 1.3em;
}
.menuList .lead {
  padding: 0 10px 10px;
}
.menudo .lead {
  padding: 10px;
}
.menudo .tit_sub + .lead {
  padding-top: 0;
}
.menudo .serif a {
  font-size: 1.1em;
  color: #f00;
}
.menudo .icon-hart {
  margin-top: 50px;
}
[class^="yudo_img"] {
  width: 90%;
  position: relative;
  z-index: -1;
}
.yudo_img {
  margin: 0 auto -40px;
}
.yudo_img2 {
  margin: -20px auto 0;
}
.yudo_img + [class^="btn-color-"] {
  width: 80%;
}
/*----- 占者画像 -----*/
.result-picture {
  width: 90px;
  float: left;
  margin: 0 8px 0 0;
}
.result-picture.right {
  float: right;
  margin: 0 0 0 8px;
}
.result-picture.right img {
  transform: scale(-1, 1);
}
/*----- yudo -----*/
[class*="box_yudo"] {
  position: relative;
}
[class*="box_yudo"] ul {
  width: 90%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  font-weight: bold;
}
/* 8 */
.box_yudo08 ul {
  width: 60%;
  top: 5px;
  left: 10px;
  right: auto;
}
.box_yudo08 li:nth-child(2) {
  margin: 20px 0 20px 40px;
}
/* 9 */
.box_yudo09 ul {
  top: 8px;
}
.box_yudo09 li {
  height: 70px;
}
.box_yudo09 li:nth-child(2) {
  margin: 185px 0 20px 40px;
}
/* 10 */
.box_yudo10 ul {
  width: 98%;
  top: 8px;
}
.box_yudo10 li {
  height: 60px;
  margin-right: 100px;
}
.box_yudo10 li:nth-child(2) {
  margin: 70px 0 25px 105px;
}
.box_yudo10 li:last-child {
  height: 110px;
  margin: auto;
}
/* 11 */
.box_yudo11 {
  padding: 10px 15px;
  overflow: hidden;
}
.box_yudo11 img {
  width: 40%;
  float: right;
}
.box_yudo11 p:nth-of-type(1) {
  padding: 30px 0 20px;
}
/* 11_2 */
.box_yudo11_2 {
  height: 250px;
}
.box_yudo11_2 {
  margin: 0 0 15px;
  background: url("../images/yudo/11_2.png") no-repeat left bottom;
  background-size: 45%;
}
.box_yudo11_2 ul {
  position: relative;
  top: 0;
}
.box_yudo11_2 li {
  margin: 0 auto 10px;
}
.intro4 .box_yudo11_2 li:nth-child(1), .box_yudo11_2 li:nth-child(2), .box_yudo11_2 li:nth-child(3) {
  margin-left: 45%;
}
.intro4 .box_yudo11_2 {
  height: 220px;
}
/* 13 */
.box_yudo13 {
  height: 200px;
}
.box_yudo13 {
  margin: 20px 0 25px;
  background: url("../images/yudo/13.jpg") no-repeat center;
  background-size: 100%;
}
.box_yudo13 ul {
  position: relative;
  top: 0;
}
.box_yudo13 li {
  margin: 0 0 10px 40%;
}
.box_yudo13 li:nth-child(2), .box_yudo13 li:nth-child(3) {
  margin-left: 30%;
}
.box_yudo13 li:nth-child(4) {
  margin: 0 auto;
}
.box_yudo13 li:not(:last-child) a {
  font-size: 14px;
}
/* 14 */
.box_yudo14 {
  margin: 0 0 20px;
}
.box_yudo14 ul {
  width: 70%;
  top: 12px;
  left: 0;
  right: auto;
}
.box_yudo14 li {
  height: 85px;
}
/* 15 */
.yudo15 .list_menu.new {
  padding: 0;
}
.yudo15 .list_menu.new li {
  margin: 0 !important;
}
/* urgent_message2 */
.box_yudo_um2 {
  margin: 0 0 20px;
  background: url("../images/yudo/um2.jpg") no-repeat center;
  background-size: 100%;
}
.box_yudo_um2 li:nth-child(2) {
  margin-left: 40%;
}
.box_yudo_um2 li:nth-child(4) {
  margin-left: 30%;
}
/*////////////////////////////////////////////////////////

従量TOP

////////////////////////////////////////////////////////*/
.ppvnavi {
  align-items: flex-start;
  height: 113px;
  margin: 0 0 15px;
  padding: 0 15px;
  background: url(../images/ppv/bg_btn.jpg) no-repeat;
  background-size: 100%;
}
.ppvnavi li {
  width: 50%;
  height: 37px;
}
.ppvnavi a {
  display: block;
  height: 100%;
}
.ppvnavi li:last-child {
  width: 100%;
  height: 30px;
}
.ppvicon, .ppvtitle {
  display: table-cell;
  vertical-align: middle;
}
.ppvicon {
  width: 21%;
  padding: 0 7px 0 0;
}
.ppvtitle {
  text-decoration: underline;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  color: #000;
}
.ppv_top .price {
  margin: 5px 0 0;
  text-align: right;
  font-size: 12px;
  font-weight: normal;
  color: #000;
}
/* history */
.box_history .list-menu01 a span, .ppvhistory .list-menu01 a span {
  display: block;
  text-align: right;
  font-size: 11px;
  margin-right: 5px;
}
/*////////////////////////////////////////////////////////

ppv.do

////////////////////////////////////////////////////////*/
/*----- confirm -----*/
.ppvdo .box_pre a {
  display: block;
  text-align: center;
  font-weight: bold;
  color: yellow;
}
.ppv_price {
  padding: 20px 0 0;
  text-shadow: 0 1px 1px #010101;
  font-size: 16px;
}
.ppvdo .subtitle {
  font-size: 12px;
}
.ppvdo .list-menu {
  margin: 5px auto 20px;
}
.ppvdo .tit_sub01 {
  margin: 20px 0 10px;
}
/* アイコン */
.icon-person {
  width: 100%;
  margin: 5px 0 0 auto;
  padding: 0 8px;
  text-align: right;
  font-weight: bold;
  font-size: 11px;
  color: #676767;
}
.icon-person p {
  display: inline-block;
}
.icon-person .icon {
  color: #fff;
}
.icon-person.一人用 .icon {
  padding: 5px 0 5px 15px;
  background: url(../images/icon/icon-person.png) no-repeat -9px;
  background-size: 9px;
}
.menu_title .icon-person.一人用 .icon {
  background: url(../images/icon/icon-person.png) no-repeat -9px;
  background-size: 17px;
  color: #000;
}
.icon-person.二人用 .icon {
  padding: 5px 0 5px 23px;
  background: url(../images/icon/icon-person.png) no-repeat left;
  background-size: 16px;
}
.menu_title .icon-person.二人用 .icon {
  background: url(../images/icon/icon-person.png) no-repeat 0;
  background-size: 17px;
  color: #000;
}
/* menu_list */
.menu_list {
  margin: 0 auto 20px;
  padding: 30px 20px;
  background: url("../images/menulist/yudo/bg_top.jpg") no-repeat top, url("../images/menulist/yudo/bg_btm.jpg") no-repeat center bottom -1px, url("../images/menulist/yudo/bg_mid.jpg") repeat-y;
  background-size: 100%;
}
.menu_list .list_wrap {
  padding: 10px 5px 0;
}
.menu_list li {
  margin: 0 0 8px;
  padding: 0 0 0 24px;
  line-height: 1.4;
  text-align: left;
  font-size: 13px;
}
.menu_list li:last-child {
  margin-bottom: 0;
}
.menu_list .ic_com_indent {
  display: flex;
  margin: -4px 0 10px;
  font-weight: bold;
  font-size: 0.85em;
}
.ic_com_indent + .ic_com_indent {
  margin-top: -7px;
}
.ic_com_indent:before {
  content: '∟';
  margin: -2px 3px 0 0;
  font-size: 0.8em;
}
.menu_list .icon01 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: bold;
  background: url(../images/icon/01.png) no-repeat -1px top;
  background-size: 20px;
}
.menu_list .icon02 {
  background: url(../images/icon/02.png) no-repeat 1px 1px;
  background-size: 16px;
}
.menu_list .icon03 {
  background: url(../images/icon/03.png) no-repeat 2px 3px;
  background-size: 14px;
}
.menu_list .icon04 {
  background: url(../images/icon/00.png) no-repeat 1px 1px;
  background-size: 16px;
}
.menu_list [class^="ic_com"], .menu_list [class^="ic_com"] a, .menu_list .icon01 a {
  color: #fff;
}
.menu_list .icon02, .menu_list .icon02 a, .menu_list .icon04, .menu_list .icon04 a {
  font-size: 13px;
  font-weight: bold;
}
.menu_list .icon02, .menu_list .icon02 a {
  color: #a8ff00;
}
.menu_list .icon03, .menu_list .icon03 a {
  color: #fff6c0;
}
.menu_list .icon04, .menu_list .icon04 a {
  color: yellow;
}
/* パック用文言エリア */
.ppvdo.confirm .text_pack {
  display: block;
  margin: 10px 10px 30px;
  padding: 10px 15px;
  border: 1px solid #ba8787;
  border-radius: 7px;
  text-align: left;
  font-size: 13px;
  background: #fff;
  color: #000;
}
.ppvdo.confirm .text_pack font {
  color: #f92771;
  font-weight: bold;
}
/* 承諾事項 */
.box_approval {
  padding: 0 0 30px;
  text-align: left;
  font-size: 12px;
  color: #000;
  background: rgba(255, 255, 255, 1);
}
.box_approval #approval {
  margin-bottom: 15px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: #675e71;
}
.box_approval li {
  margin-bottom: 5px;
}
.box_approval a {
  color: #f92771;
  font-weight: bold;
}
.box_approval .text-canter {
  text-align: center;
}
/*////////////////////////////////////////////////////////

LOOPD

////////////////////////////////////////////////////////*/
.loopD .tenmetsu {
  width: 160px;
  margin: auto;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
}
.loopD .text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 58%;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 5px #fff;
  font-size: 17px;
  font-weight: bold;
  color: #000033;
}
.loopD .box_teller {
  min-height: 150px;
  margin: 0;
  padding: 0 13px;
  background: url("../images/pay/loop/D/teller.jpg") no-repeat;
  background-size: 100%;
}
/*////////////////////////////////////////////////////////

占者紹介

////////////////////////////////////////////////////////*/
.tellerProfile {
  margin: 0 0 30px;
}
.tellerProfile .lead {
  padding: 0 15px 10px;
  text-align: left;
  font-size: 13px;
}
.tellerProfile dt {
  padding: 10px 0 3px 3px;
  font-weight: bold;
  color: #fceb9d;
}
.tellerProfile dl li {
  margin: 0 0 3px;
  font-size: 12px;
}
.tellerProfile .tit_sub {
  height: 47px;
  margin: 10px 0 0;
}
/*////////////////////////////////////////////////////////

mypage

////////////////////////////////////////////////////////*/
/* メニュー */
.list-icon li.tutorial {
  background: url(../images/mypage/icon01.png) no-repeat 10px center;
  background-size: 30px;
}
.list-icon li.history {
  background: url(../images/mypage/icon02.png) no-repeat 10px center;
  background-size: 30px;
}
.list-icon li.bookmark {
  background: url(../images/mypage/icon03.png) no-repeat 10px center;
  background-size: 30px;
}
.list-icon li.stamp {
  background: url(../images/mypage/icon04.png) no-repeat 10px center;
  background-size: 30px;
}
.list-icon a {
  padding-left: 45px;
}
#pref {
  margin-bottom: 30px
}
#pref .btn-menu {
  margin: 15px auto;
}
/* プレミアムコード */
.mypage .box_special {
  text-align: left;
}
.mypage .box_special h3 {
  margin: 0 0 10px;
  height: 40px;
  background: #8805fa;
}
.mypage .box_special a {
  font-weight: bold;
  color: deeppink;
}
/*////////////////////////////////////////////////////////

bookmark

////////////////////////////////////////////////////////*/
.bookmark p {
  padding: 0 10px;
}
.bookmark .list-menu02 {
  margin-bottom: 30px;
  text-align: left;
}
.bookmark .list-menu02 li {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: #fff;
}
.bookmark .list-menu02 a {
  width: 100%;
  margin: auto;
  padding: 10px 20px 10px 10px;
}
.bookmark input[type="checkbox"] {
  display: none;
}
.bookmark input[type="checkbox"] + label {
  flex-shrink: 0;
  position: static;
}
/*////////////////////////////////////////////////////////

tutorial

////////////////////////////////////////////////////////*/
.tutorial p {
  margin-bottom: 0;
}
.tutorial .box_txt {
  padding: 13px 13px 55px 13px;
  text-align: left;
  font-size: 13px;
}
.site_cap {
  margin: 0 20px 40px 20px;
  position: relative;
}
.site_cap span {
  display: inline-block;
  position: absolute;
  bottom: -18px;
  width: 105px;
}
#link01 .site_cap span {
  left: 65px;
}
#link02 .site_cap span {
  left: 123px;
}
#link03 .site_cap span {
  left: 9px;
}
#link04 .site_cap span {
  left: 178px;
}
/*////////////////////////////////////////////////////////

unregist

////////////////////////////////////////////////////////*/
/*----- index -----*/
.box_unregist_notice p {
  padding: 0 10px;
  text-align: left;
}
.box_unregist_notice .icon-hart {
  width: 12px !important;
  margin: 0 5px 0 0;
}
/*----- done -----*/
.unregist .list-icon .line_me {
  background: url(../images/common/icon-line.png) no-repeat 8px center;
  background-size: 33px;
}
.unregist .list-icon .uranavi {
  background: url(../images/common/icon-navi.png) no-repeat 8px center;
  background-size: 33px;
}
.unregist .list-icon .mag {
  background: url(../images/common/icon-mag.png) no-repeat 8px center;
  background-size: 33px;
}
.unregist .list-icon .kantei {
  background: url(../images/common/icon-kantei.png) no-repeat 8px center;
  background-size: 33px;
}
.unregist .list-icon a {
  padding-left: 50px;
}
.unregist .list-icon span {
  font-size: 0.9em;
}
/*////////////////////////////////////////////////////////

プレゼントキャンペーン

////////////////////////////////////////////////////////*/
.present_entry .menu_title {
  justify-content: center;
  margin: 0 0 10px;
  text-align: center;
}
.present_entry .detail {
  padding: 0 10px;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.present_entry .detail dt {
  margin: 20px 0 5px;
  padding-left: 25px;
  font-weight: bold;
  font-size: 13px;
  background: url(../images/icon/02.png) no-repeat left;
  background-size: 18px;
}
.present_entry .txt_notice {
  margin: 0;
  padding: 0 0 5px 10px;
  text-indent: -11px;
  font-size: 11px;
}
.present_entry .box_notice li:not(:last-child) {
  margin: 0 0 5px;
}
.present_banner {
  margin: 5px 0 15px;
  padding: 0 10px;
}
.present_banner.open-0, .present_banner.open-2, .present_banner02.open-0, .present_banner02.open-2 {
  display: none;
}
.present_banner.open-1, .present_banner02.open-1 {
  display: block;
}
.present_entry h2 span {
  font-size: 13px;
}
.present_entry .box_flow {
  background: #fff;
}
.present_entry .box_flow .inner {
  padding: 20px 0;
}
.present_entry .tit {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin: 0 0 0 0;
  padding: 10px 10px 10px 30px;
  font: bold;
  color: #666;
  background: #ccc;
  border-top: #ccc solid 1px;
  border-right: #999 solid 1px;
  border-bottom: #999 solid 1px;
  border-left: #ccc solid 1px;
  text-shadow: 1px 1px 0 rgb(255 255 255);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 50%) inset;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(220, 220, 220, 1.0)), color-stop(0.25, rgba(240, 240, 240, 1.0)), color-stop(0.30, rgba(235, 235, 235, 1.0)), color-stop(0.36, rgba(240, 240, 240, 1.0)), color-stop(0.50, rgba(235, 235, 235, 1.0)), color-stop(0.80, rgba(215, 215, 215, 1.0)), to(rgba(210, 210, 210, 1.0)));
  background-image: -webkit-linear-gradient(top, rgba(220, 220, 220, 1.0), rgba(240, 240, 240, 1.0) 25%, rgba(235, 235, 235, 1.0) 30%, rgba(240, 240, 240, 1.0) 36%, rgba(235, 235, 235, 1.0) 50%, rgba(215, 215, 215, 1.0) 80%, rgba(210, 210, 210, 1.0));
  background-image: -moz-linear-gradient(top, rgba(220, 220, 220, 1.0), rgba(240, 240, 240, 1.0) 25%, rgba(235, 235, 235, 1.0) 30%, rgba(240, 240, 240, 1.0) 36%, rgba(235, 235, 235, 1.0) 50%, rgba(215, 215, 215, 1.0) 80%, rgba(210, 210, 210, 1.0));
  background-image: -o-linear-gradient(top, rgba(220, 220, 220, 1.0), rgba(240, 240, 240, 1.0) 25%, rgba(235, 235, 235, 1.0) 30%, rgba(240, 240, 240, 1.0) 36%, rgba(235, 235, 235, 1.0) 50%, rgba(215, 215, 215, 1.0) 80%, rgba(210, 210, 210, 1.0));
  background-image: linear-gradient(to bottom, rgba(220, 220, 220, 1.0), rgba(240, 240, 240, 1.0) 25%, rgba(235, 235, 235, 1.0) 30%, rgba(240, 240, 240, 1.0) 36%, rgba(235, 235, 235, 1.0) 50%, rgba(215, 215, 215, 1.0) 80%, rgba(210, 210, 210, 1.0));
}
.present_entry .tit:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 15px;
  width: 0;
  height: 100%;
  border-left: #ccc solid 1px;
}
.present_entry .tit:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 16px;
  width: 0;
  height: 100%;
  border-right: #eee solid 1px;
}
.present_entry .na {
  width: 94%;
  margin: 0 auto;
  font-size: 13px;
  font-weight: bold;
  color: #592b30;
  letter-spacing: 0;
  border: 1px solid #f49b7a;
  border-radius: 6px;
  text-decoration: none;
  padding: 15px 25px;
  background-color: #f5b5a0;
  line-height: 1.4;
  text-align: left;
}
.present_entry .box_flow img {
  width: 32px !important;
}
.present_entry .entry_require {
  line-height: 1.4;
  text-align: left;
  font-size: 13px;
  margin: 0 7px 20px 7px;
  font-weight: bold;
}
.present_entry .entry_require span {
  font-size: 12px;
  font-weight: normal;
}
.present_entry .entry_kome {
  text-align: left;
  font-size: 11px;
  padding: 12px 10px 15px 10px;
  background: #6921a0;
  margin-bottom: 0;
  color: #fff;
}
.present_entry .entry_arrow {
  text-align: center;
  margin: 10px auto;
  width: 32px;
}
.present_entry .box_t {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  font-size: 80%;
  line-height: 1.4;
}
.box-entry {
  background: #fff;
  color: #333631;
  text-align: left;
}
.present_entry form {
  width: 90% !important;
  margin: 20px auto 0 auto;
}
.box-entry .pink {
  color: #ff0066;
}
.box-entry label.label_txt {
  border-bottom: dotted 1px #ff0066;
  border-left: solid 3px #ff0066;
  padding: 5px;
  width: 90%;
  margin: 0 10px 10px 10px;
  display: block;
  font-weight: bold;
  line-height: 1;
  font-size: 13px;
}
.input-layout {
  width: 88%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 5px;
  margin-left: 10px;
  margin-bottom: 15px;
}
.box-entry .title3 {
  color: hsl(0, 50%, 50%);
  padding-left: 5px;
  border-left: 10px solid hsl(0, 50%, 50%);
  text-align: left;
  font-weight: bold;
  font-size: 13px;
}
.box-entry .box_t2 {
  width: 100%;
  margin: 10px auto 5px auto;
  font-size: 80%;
  line-height: 1.4;
}
.box-entry .privacy {
  background: #f5b5a0;
  padding: 10px;
  font-size: 80%;
  line-height: 1.4;
  margin-bottom: 15px;
}
.box-entry .dou {
  text-align: center;
  padding: 10px;
  font-weight: bold;
}
.box-entry .dou input {
  width: 18px;
  height: 18px;
  position: relative;
  top: 5px;
  -webkit-appearance: auto;
}
#disableButton {
  margin: auto;
  width: 100%;
  height: 80px;
  border: 0 !important;
  background: url(../images/pay/present_entry/btn01.png) no-repeat center;
  background-size: 90%;
  background-position: 50%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 15px;
}
.present_entry .bg_box {
  background: #fff;
  font-size: 24px;
  padding: 20px 0 35px 0;
  color: red;
  font-weight: bold;
}
.present_entry .bg_box span {
  display: block;
  border-radius: 3px;
  border: 2px solid #fd0807;
  padding: 15px 0;
  margin: 0 20px;
}
.present_entry p.des {
  margin-right: auto;
  margin-left: auto;
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 0 0 0;
  width: 88%;
  margin-bottom: 0;
}
.present_entry p.des span {
  font-size: 87%;
  display: block;
  padding: 8px;
  background: #f5b5a0;
  border-radius: 4px;
  margin-top: 5px;
}
.present_entry .confirm_entry {
  text-align: center;
  margin: 20px 0 0 0;
  padding-bottom: 15px;
}
.present_entry .confirm_entry input {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #7f7f7f;
  background: #efefef;
  color: #2c2c2c;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
}
.present_entry .txt_entry_mail {
  padding: 0 18px;
}
.present_entry .fin_txt {
  padding: 10px;
}
.present_entry .entry_title_box {
  padding: 15px 0 20px 0;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 20px;
  background: url(../images/line/01.png) no-repeat left bottom #663399;
  background-size: 100% auto;
  text-shadow: 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0, 0 0 6px #8537f0;
}
.present_entry .entry_title_box span {
  color: #f6f200;
}
.present_entry .c_txt {
  background: url(../images/line/02.png) no-repeat left bottom, url(../images/line/02.png) no-repeat left top #7d47a7;
  background-size: 100% auto;
  font-weight: bold;
  padding: 20px 0;
  margin-bottom: 15px;
  font-size: 15px;
}
.present_entry .kome {
  margin: 0 13px 20px 13px;
  font-weight: normal;
}
.present_entry .kome li {
  padding-left: 1em;
  text-indent: -1em;
}
/*////////////////////////////////////////////////////////

キャンペーン施策

////////////////////////////////////////////////////////*/
.pay_top .campaign.open-1 {
  display: block;
}
.pay_top .campaign.open-0, .pay_top .campaign.open-2 {
  display: none;
}
.pay_top .campaign {
  color: #000;
  border: 7px solid red;
  padding: 15px;
  background-color: #fff;
  margin: 25px 10px 25px;
  border-radius: 20px;
}
.pay_top .campaign p {
  font-size: 15px;
}
.pay_top .campaign p a {
  color: red;
}
.pre_campaign {
  word-break: break-all;
}
.pre_campaign .title_bg {
  background: #e8e8f0;
  padding: 15px;
  font-size: 17px;
  font-weight: bold;
}
.pre_campaign .title_bg span {
  color: red;
}
.pre_campaign .text {
  margin: 15px 15px 25px;
  text-align: left;
  font-size: 12px;
}
.pre_campaign .text.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.pre_campaign .text-cam {
  margin: 15px 15px 25px;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
}
.pre_campaign .box_ticket_menu {
  width: 95%;
  margin: 0 auto;
}
.pre_campaign .box_ticket_menu li {
  padding: 10px 5px;
}
.campaign_tokuten {
  margin: 0 8px 25px 8px;
}
.campaign_tokuten dt {
  text-align: left;
  background: #8117e1;
  font-weight: bold;
  padding: 5px 5px 5px 7px;
  margin-bottom: 15px;
  color: #fff;
}
.campaign .ticket_use .inner_box {
  position: relative;
}
.campaign .ticket_use .inner_box input[type="reset"].btn_cancel {
  position: absolute;
  top: 5px;
  right: 5px;
}
.site-btn a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  padding: 15px 0;
  border-radius: 20px;
  margin: 0 10px;
  line-height: 1.4;
  font-weight: bold;
  border: 2px solid #ecca7d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #f6eba6));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #f6eba6 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f6eba6 100%);
  color: #000;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.site-btn.l a {
  font-size: 19px;
}
.campaign .em {
  background: #e117b5;
  color: #fff;
  margin: 0 15px;
  font-weight: bold;
  padding: 8px 0;
  line-height: 1;
  font-size: 16px;
}
.kaikin.open-1 .before, .kaikin.open-0 .after {
  display: none;
}
.kaikin.open-1 .after, .kaikin.open-0 .before {
  display: block;
}
.cam-step {
  margin-bottom: 30px;
}
.cam-step h3 {
  text-align: left;
  background: #8117e1;
  font-weight: bold;
  padding: 5px 5px 5px 7px;
  margin-bottom: 10px;
  color: #fff;
}
.cam-step p.txt {
  font-weight: bold;
  padding: 0 5px;
}
.cam-step p.txt.text-left {
  padding: 0 5px 0 10px;
}
.campaign.index img {
  width: 100%;
}
.download {
  width: 150px;
  margin: 0 auto;
}
/*////////////////////////////////////////////////////////

割引キャンペーンsale

////////////////////////////////////////////////////////*/
.sale-box.disp-0, .sale-box.disp-2, .sale-anchor.disp-0, .sale-anchor.disp-2 {
	display: none;
}
.sale-box.disp-1, .sale-anchor.disp-1 {
	display: block;
}
.sale-box .sale-tit {
	line-height: 1;
	padding: 8px 0;
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 16px;
	color: #fff;
	background: yellow;
	color: #ff4b1b;
}
.sale-box .sale-here {
	font-size: 17px;
	font-weight: bold;
	background: #9576e7;
	padding: 30px 0;
	margin-bottom: 5px;
}
.sale-box .sale-here a {
	color: #ffff00!important;
}
.sale-site {
	background: red;
	color: #ffff00;
	padding: 7px 0;
	font-weight: bold;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #ffff00;
	border-bottom: 1px solid #ffff00;
}
.sale-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 0;
  padding: 10px 5px;
  background: 
    radial-gradient(#c7c7c7 22%, transparent 22%) 0 0 / 6px 6px,
    radial-gradient(#c7c7c7 22%, #f2f2f2 22%) 3px 3px / 6px 6px;  
}
.sale-box li {
  width: 153px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 0 0 rgba(0,0,0,0.1);
  background: #fff;
  box-sizing: border-box;
  padding: 10px;
}
.sale-box li p {
  font-weight: bold;
  font-size: 11px;
  margin: 0;
}
.sale-box li p:nth-child(1) {
  margin-bottom: 6px;
}
.sale-box li p:nth-child(2) {
  position: relative;
  margin: 0 76px 5px 0;
}
/* 1カラム表示 */
.sale-box li.one-column {
  width: 310px;
}
.sale-box li.one-column p {
  font-size: 13px;
}
.sale-box li.one-column p:nth-child(2) {
  margin: 0 236px 5px 0;
}
.sale-box li p:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 2px;
  width: 26px;
  height: 15px;
}
.sale-box li p:nth-child(2).two::before {
  background: url(../images/icon/icon-person.png) top / 100% no-repeat;
}
.sale-box li p:nth-child(2).one::before {
  background: url(../images/icon/icon-person.png) top / 100% no-repeat;
  background-position: -13px
}
.sale-box li a {
	display: block;
	color: #000;
	text-align: left;
	line-height: 1.4;
  width: 100%;
  height: 100%;
}
.sale-em {
	color: #f00;
	font-weight: bold;
	font-size: 15px;
}
.sale-menu {
	text-decoration: underline;
}
.sale-box .open-0, .sale-box .open-2 {
	display: none;
}
.sale-box .open-1 {
	display: block;
}
.sale-box .open-1.time-0, 
.sale-box .open-1.time-2{
	display: none;
}
.sale-box .open-1.time-1{
	display: block;
}
/*タイマー*/
.sale-wrap {
	position: relative;
	/* min-height: 225px; */
	padding-bottom: 1px;
  background: #333;
}
.sale-box .sale_box-count {
  background: url(../images/pay/bg_count2.png) no-repeat top;
  background-size: 100% auto;
	width: 300px;
	height: 40px;
	line-height: 40px;
	color: red;
	margin: 0 auto;
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
}

.sale-box .sale_box-count .sale-menu font {
	font-size: 14px;
}

.sale-box .sale_box-count .inner {
	text-align: center;
	/*color: #fa3011;*/
	font-size: 16px;
	font-weight: bold;
}

.sale-box .sale_box-count .inner span#sale_countdown,.sale-box .sale_box-count .inner span#sale_countdown2,
.sale-box .sale_box-count .inner span#sale_countdown3,.sale-box .sale_box-count .inner span#sale_countdown4{
	color: #000;
}

.sale-box .sale_box-count.switch-0 .second,.sale-box .sale_box-count.switch-1 .first{
	display: none;
}

/* 800番台 */
.ppv_num_check.disp-0 {
	display: none;
}
.ppv_num_check.disp-1 {
	display: none;
}

/* 占いの日クーポン */
.sale_coupon_box {
  border: 10px solid #c00; /* フレームの色（クリスマスらしい赤） */
  border-radius: 10px;
	margin: 10px 10px 20px;
  padding: 10px; 
  background: #00953f;
  position: relative;
}

.sale_coupon_box:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 5px solid #c00;
  z-index: 1;
}

.sale_coupon_box:after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff; 
  border: 5px solid #c00;
  z-index: 1;
}

.sale_coupon_box h4{
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.sale_coupon_box p.text{
	color: red;
	font-size: 16px;
	font-weight: bold;
	text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.sale_coupon_box p.period{
	color: yellow;
	font-size: 13px;
	margin: 5px 0 10px;
}
.sale_coupon_box form {
	width: 90%;
	margin: 0 auto;
	position: relative;
	margin-top: 1px;
}
.sale_coupon_box input {
	width: 100%;
	border: 1px solid #977c0f;
	background-color: #fff;
	color: #350000;
	padding: 5px;
	text-align: center;
	border-radius: 5px;
	box-sizing: border-box;
}
.sale_coupon_box input.use_btn {
	width: 65px;
	min-height: 18px;
	padding: 0;
	display: block;
	background: url(../images/pay/stamp/stamprally/btn_get.png) no-repeat;
	background-size: 100%;
	border: none;
	position: absolute;
	top: 5px;
	right: 15px;
}


/*////////////////////////////////////////////////////////

相互送客

////////////////////////////////////////////////////////*/
.banner_mutual {
  margin-bottom: 30px;
}
.banner_mutual.open-0, .banner_mutual.open-2 {
  display: none;
}
.banner_mutual.open-1 {
  display: block;
}
.banner_mutual .txt {
  font-weight: bold;
  font-size: 13px;
}
.banner_mutual .txt span {
  font-size: 16px;
}