@charset "UTF-8";
/*
*	CyberAgent, Inc.
*/
/*
* variable
*	size (html font size = 62.5% ≒ 10px)
*/
/*
* function
*/
/*
* reset
*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
audio,
video,
img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

/*
* general
*/
* {
  word-break: break-all;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-x: hidden;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  font-family: sans-serif;
}

body {
  height: 100%;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.4;
  background: #fff;
}

a {
  text-decoration: none;
  color: #333;
}

i,
b {
  font-weight: normal;
  font-style: normal;
}

/*
* monitor size
*/
body > .wrapper {
  margin: 0 auto;
  width: 700px;
  padding-top: 45px;
  background-image: url("../img/bg.png");
  -webkit-background-size: 30px auto;
  -moz-background-size: 30px auto;
  background-size: 30px auto;
}

@media screen and (max-width: 900px) {
  body > .wrapper {
    width: 480px;
  }
}
@media screen and (max-width: 480px) {
  body > .wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  body > .wrapper {
    width: 320px;
  }
}
/*
* class: common element
*/
.thumbnail {
  display: inline-block;
  height: 76px;
  width: 76px;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: AmebaSymbols;
  font-size: 0;
  line-height: 0;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.pictframe {
  width: 69px;
  height: 69px;
  border: 4px solid #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px 1px #999;
  -moz-box-shadow: 0 0 2px 1px #999;
  box-shadow: 0 0 2px 1px #999;
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  min-height: 24px;
  padding: 3px 10px 5px;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 2px 2px #aaa;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}

.btn.arrow::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.primary {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #55c40d), color-stop(100%, #3bab09));
  background: -webkit-linear-gradient(#55c40d, #55c40d 0, #3bab09 100%);
  background: linear-gradient(#55c40d, #55c40d 0%, #3bab09 100%);
  color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.2);
}

.btn.primary a {
  color: #fff;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
}

.btn.secondary {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f7f7f7), color-stop(100%, #e1e1e1));
  background: -webkit-linear-gradient(#f7f7f7, #f7f7f7 0, #e1e1e1 100%);
  background: linear-gradient(#f7f7f7, #f7f7f7 0%, #e1e1e1 100%);
  box-shadow: 0 1px 1px #e0e0e0 inset;
  border: solid 1px #bbb;
}

.btn.secondary a {
  color: #666;
  text-shadow: 0 1px 0 #fff;
}

.btn.pigg {
  padding: 4px 0px;
  background: #f36;
  border: solid 3px #ff85a3;
  box-shadow: 1px 1px 1px #999;
  margin-top: 15px;
  padding-right: 8px;
  padding-left: 8px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.btn.pigg.arrow::after {
  right: 4px;
  width: 9px;
  height: 12px;
  margin-top: -6px;
  border: 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  transform: rotate(0);
  background-image: url("../img/common/icon_arrow_pigg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 4px 6px;
}

.btn.pigg img {
  max-width: 271px;
  vertical-align: bottom;
}

.btn.tap {
  border: solid 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px #fff;
  background: -moz-linear-gradient(top, #3cac09, #55c40d);
  background: -webkit-gradient(linear, left top, left bottom, from(#3cac09), to(#55c40d));
}

.btn.tap.pigg {
  background: #f9c;
  border: solid 3px #f9c;
  box-shadow: none;
}

.btn.tap.secondary {
  border: solid 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px #fff;
  background: -moz-linear-gradient(top, #c1c1c1, #d7d7d7);
  background: -webkit-gradient(linear, left top, left bottom, from(#c1c1c1), to(#d7d7d7));
}

.btn.tap a {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

.icon_click {
  position: relative;
  display: block;
  height: 15px;
  width: 43px;
  background: #c00;
  border: 2px solid #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 2px #aaa;
  -moz-box-shadow: 0 1px 2px #aaa;
  box-shadow: 0 1px 2px #aaa;
  font-family: sans-serif;
  font-weight: bold;
}

.icon_click::after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: 'CLICK';
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-shadow: none;
  line-height: 1;
}

.icon_click::before {
  position: absolute;
  top: 50%;
  right: 3px;
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon_click::hover {
  margin-top: -2px;
}

.icon_click span {
  line-height: 34px;
  font-size: 1rem;
}

.icon_click_2 {
  display: block;
  position: absolute;
  height: 35px;
  width: 35px;
  background-size: 35px 35px;
  background-image: url("../img/common/icon_click_go.png");
  background-position: 0 0;
  background-repeat: no-repeat;
}

.icon_click_2::hover {
  margin-top: -2px;
}

.icon_click_banner {
  position: relative;
}

.icon_click_banner a::before,
.icon_click_banner a::after {
  display: block;
  position: absolute;
  z-index: 10;
  color: #fff;
  font-family: sans-serif;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.icon_click_banner a::after {
  content: '';
  bottom: 13px;
  right: 13px;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 1rem;
  line-height: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon_click_banner a::before {
  content: 'CLICK';
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 6px;
  right: 6px;
  height: 22px;
  width: 64px;
  padding-left: 4px;
  border: solid 2px #fff;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dddddd), color-stop(100%, #aaaaaa));
  background: -webkit-linear-gradient(#dddddd, #dddddd 0, #aaaaaa 100%);
  background: linear-gradient(#dddddd, #dddddd 0%, #aaaaaa 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
}

/*
* tit
*/
.section_h1 {
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-box-align: justify;
  -moz-box-align: justify;
  box-align: justify;
  flex-pack: justify;
  box-sizing: border-box;
  padding: 2px 7px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background-color: #f7f7f4;
  color: #888;
  font-weight: bold;
  text-shadow: 0 1px 0 #fff;
  font-size: 2.2rem;
}

.section_h1 + .category_title {
  border-top: 0;
}

.section_h1 + .body {
  padding: 10px 10px 0;
}

.category_title {
  padding: 3px 8px 2px;
  margin-bottom: 10px;
  border-top: 1px dotted #ddd;
  border-bottom: 1px dotted #ddd;
  background: #eee;
  color: #888;
  font-size: 1.6rem;
}

/*
* icon
*/
@font-face {
  font-family: "AmebaSymbols";
  src: url("../../../common/font/ameba_symbols.woff") format("woff"), url("../../../common/font/ameba_symbols.ttf") format("truetype"), url("../../../common/font/ameba_symbols.svg#webfont") format("svg");
}

.icon {
  padding-right: 5px;
  color: #888;
  font-size: 15px;
  vertical-align: -0.15em;
  line-height: 1;
  display: inline-block;
  font-family: 'AmebaSymbols';
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
}

.icon.n::after {
  content: 'n';
}

.icon.alert::after {
  content: ';';
}

/*
* etc
*/
.dn {
  display: none;
}

.nt {
  text-indent: -9999px;
  font-size: 0;
}

/*
* class: layout
*/
[class*='data_column'] {
  letter-spacing: -0.4em;
}

[class*='data_column'] li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  letter-spacing: normal;
}

[class*='data_column'] li article {
  position: relative;
}

.data_column_2 li {
  width: 50%;
}

.data_column_2 li .title {
  padding: 12px 0 4px;
  letter-spacing: -0.1em;
  color: #eb1d33;
  font-size: 1.4rem;
  line-height: 1;
}

.data_column_2 li .body .wrap {
  position: relative;
  display: inline-block;
}

.data_column_2 li .body .wrap .icon_click {
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -2px;
}

.data_column_2 li .text {
  padding: 6px 14px 6px;
  line-height: 1.4em;
  font-size: 1.1rem;
  color: #333;
}

.data_column_3 {
  position: relative;
}

.data_column_3 li {
  width: 33.33%;
}

.data_column_3 li .title {
  padding: 12px 2px 4px;
  letter-spacing: -0.1em;
  color: #eb1d33;
  font-size: 1.4rem;
  line-height: 1;
  min-height: 2.8rem;
}

.data_column_3 li .body .wrap {
  position: relative;
  display: inline-block;
}

.data_column_3 li .body .wrap .icon_click {
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -2px;
}

.data_column_3 li .text {
  padding: 6px 2px 6px;
  line-height: 1.4em;
  font-size: 1.1rem;
  color: #333;
}

/*
* id strucure, each setting
*/
.global_header {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box !important;
  display: box;
  -webkit-box-align: top;
  box-align: top;
  height: 44px;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(100%, #e6e4e4));
  background: -webkit-linear-gradient(top, white 0, #e6e4e4 100%);
  background: linear-gradient(top, #ffffff 0%, #e6e4e4 100%);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 500;
}

.global_header .header_item.header_title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  box-ordinal-group: 2;
  flex-order: 2;
  border-right: solid 1px #c6c6c2;
  border-left: solid 1px #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 5px 0 !important;
  text-align: center;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.global_header .ci {
  display: block;
  height: 18px;
  width: 85px;
  background-position: 0 0;
  margin: 0 auto;
  overflow: hidden;
  background-image: url("../img/common/ameba_logo.png");
  background-size: 85px 18px;
  background-repeat: no-repeat;
  text-indent: 100%;
}

.global_header a {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 8px;
  padding: 2px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

.global_header a.tap {
  background-color: #e9f0f7;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.header {
  position: relative;
}

.header .body {
  padding: 0 10px 10px;
}

.header .body .inner {
  padding: 4px 7px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #f4ead1;
  font-size: 10px;
  color: #522a1a;
  text-align: center;
}

.header .body .inner h3 {
  display: inline-block;
  font-weight: normal;
}

.header .body .inner h3::after {
  content: ":";
}

.header .body .inner p {
  display: inline-block;
}

.header .body .inner p a {
  color: #5885a7;
  text-decoration: underline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.header .body .inner p a.tap {
  background-color: #e9f0f7;
  text-decoration: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.header .body .inner .margin_left {
  margin-left: 10px;
}

article:first-of-type a {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.games {
  padding-bottom: 14px;
}

.games h2 {
  height: 21px;
  margin-top: 7px;
  padding-left: 10px;
  background: url("../img/games_genre_sprite.png") 0 0 no-repeat;
  -webkit-background-size: 158px auto;
  -moz-background-size: 158px auto;
  background-size: 158px auto;
}

.games h2.pigg {
  background-position: 0 0;
}

.games h2.new {
  background-position: 0 -21px;
}

.games h2.female {
  background-position: 0 -42px;
}

.games .body {
  padding: 7px 16px 0;
}

.games .body li {
  position: relative;
  padding: 6px 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.games .body a.tap::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.2;
  z-index: 30;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.games .body h1.tit {
  min-height: 32px;
  font-size: 1.2rem;
  padding-bottom: 4px;
  color: #f36;
}

.games .body .list_img {
  position: relative;
  font-size: 0;
}

.games .body .list_img button {
  position: absolute;
  padding: 3px 0 3px 8px;
  bottom: -4px;
  right: 2.5%;
  width: 48px;
  margin: 0;
  padding: 3px 6px;
  border-width: 2px;
  line-height: 0;
  min-height: 0;
  text-align: left;
  z-index: 70;
}

.games .body .list_main {
  margin-top: 13px;
}

.games .body .list_main .text {
  font-size: 1rem;
  padding: 0;
}

.conditions {
  padding-bottom: 19px;
}

.conditions .body {
  padding: 17px 10px 0 13px;
}

.conditions .body button {
  margin-top: 15px;
  padding-right: 8px;
  padding-left: 8px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.conditions .body button img {
  max-width: 271px;
  vertical-align: bottom;
}

.gotoList .body {
  padding: 0 10px 17px 13px;
}

.gotoList .body a {
  position: relative;
}

.gotoList .body a.tap::after {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 10;
}

.clearFix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.clearFix {
    display: inline-block;
    min-height: 1%;
}

* html .clearFix {
    height: 1%;
}

.clearFix {
    display: block;
}
