@charset "UTF-8";
/*
html { 
  font-size: 62.5%;
} 

body{
  background: url(../images/common/img_bg.jpg) top center no-repeat;
  background-attachment: fixed;
  font-family:"メイリオ","ヒラギノ角ゴ Pro W3", "Osaka",  "ＭＳ Ｐゴシック", Arial, sans-serif;
  @include rem-font-size(12);
  color: $baseColor;
}*/
.wrapper {
  background-attachment: fixed;
  font-family: "メイリオ","ヒラギノ角ゴ Pro W3", "Osaka",  "ＭＳ Ｐゴシック", Arial, sans-serif;
  color: #333;
  padding: 30px 0 0 0;
}

.wrapper a img:hover {
  opacity: 0.85;
}

::selection {
  background: #FAD5D3;
}

::-moz-selection {
  background: #FAD5D3;
}

.txtPrimary {
  font-weight: bolder;
  font-size: 18px;
  font-size: 1.8rem;
  color: #E42C24;
}

.btn {
  text-decoration: none;
}
.btn:link {
  color: #333;
}
.btn:visited {
  color: #333;
}
.btn:hover {
  color: #E42C24;
}
.btn:active {
  color: #E42C24;
}
.btn span {
  content: "";
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: #333;
  text-indent: -9999px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top;
  position: relative;
}
.btn span::after {
  display: block;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-indent: -9999px;
  margin: 6px 0 0 4px;
  position: absolute;
  top: -2px;
}

.btnHeader {
  font-weight: bolder;
  font-size: 11px;
  font-size: 1.1rem;
  text-decoration: none;
}
.btnHeader:hover {
  color: #999;
}
.btnHeader span {
  background: none;
  margin-right: 0;
}
.btnHeader span::after {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.btnDark {
  font-weight: bolder;
  font-size: 12px;
  font-size: 1.2rem;
}
.btnDark:hover {
  color: #FFF;
}
.btnDark span {
  background: #FFBF00;
}
.btnDark span::after {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

a.btnDark {
  color: #FFBF00;
}

.btnList {
  width: 130px;
  padding: 10px 0 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: #fff;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}

.btnTab {
  width: 400px;
  padding: 10px 0 10px 15px;
  border-top: 4px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  display: block;
  text-align: left;
  margin: 0 auto;
  box-sizing: border-box;
  cursor: pointer;
}
.btnTab:hover, .btnTab.current {
  border-top: 4px solid #E42C24;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  color: #E42C24;
}

.btnPrimary span {
  background: #E42C24;
}

.btnNormal:hover {
  color: #999;
}

.btnSub {
  width: 200px;
  height: 70px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  display: block;
}

.btnBig {
  width: 500px;
}

.btnMid {
  width: 300px;
}

.btnResp {
  width: 100%;
}

.btnRow {
  width: 410px;
}

.btnMovie {
  width: 260px;
}

.btnProducts {
  width: 260px;
}

/*.title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
  @include rem-font-size(18);
  font-weight: bolder;
  text-indent: -1em;
  padding-left: 1em;
  
  &::before {
    content: "";
    border-left: 6px solid $accentColor;
    margin-right: 10px;
  }
}

.titSub {
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
  @include rem-font-size(11);
  font-weight: bolder;
  
  
  &::before {
    content: "";
    border-left: 5px solid $accentColor;
    margin-right: 4px;
  }
}
.list {
  padding-left:1em;
  position:relative;
  @include rem-font-size(14);

  &::before {
    content:"・";
	position:absolute;
	left:0;
  }
}
*/
.wrapperInner {
  width: 990px;
  min-width: 990px;
  margin: 0px auto 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.mainCol {
  width: 840px;
  margin: 0 auto;
}

.cntCol {
  margin-bottom: 40px;
}
.cntCol:last-child {
  margin-bottom: 0;
}

.cntCol h3 {
  margin-top: -3px;
  text-indent: -9999px;
  height: 55px;
}

.cntCol_tit {
  border-top: 3px solid #CCC;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 25px;
}

.cntCol_tit li:first-child {
  margin-right: auto;
}

.cntCol_tit li:nth-child(2n) {
  border-top: 3px solid #E42C24;
  margin-top: -3px;
}

.cntCol_tit li a {
  margin-top: 12px;
}

.cntCol_listBox {
  width: 195px;
  margin-right: 20px;
}
.cntCol_listBox img {
  width: 195px;
}
.cntCol_listBox:nth-child(4n) {
  margin-right: 0;
}
.cntCol_listBox .sales {
  margin-top: 5px;
}
.cntCol_listBox .sales span {
  color: #E42C24;
  font-weight: bolder;
}

.cntCol_list dt {
  font-size: 11px;
  font-size: 1.1rem;
  color: #E42C24;
  padding-top: 10px;
}
.cntCol_list dt:first-child {
  padding-top: 0;
}
.cntCol_list dt.icoGhost {
  background: url(../images/common/ico_ghost.png) center left no-repeat;
  background-size: contain;
}
.cntCol_list dt.icoExaid {
  background: url(../images/common/ico_exaid.png) center left no-repeat;
  background-size: contain;
}

li.cntCol_listTxt {
  overflow-y: auto;
  max-height: 250px;
}

.cntCol_listTxt dt {
  border-top: 1px dashed #ccc;
}
.cntCol_listTxt dt:first-child {
  border-top: none;
}

.cntCol_list dd {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 20px;
}

.cntCol_listTxt dd {
  margin: 0 0 10px;
}

.twCol {
  overflow: hidden;
}

.itemBox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.titTopics {
  background: url(../images/common/tit_topics.png) top left no-repeat;
  width: 180px;
}

.titProducts {
  background: url(../images/common/tit_products.png) top left no-repeat;
  width: 232px;
}

.titPb {
  background: url(../images/common/tit_pb.png) top left no-repeat;
  width: 328px;
}

.titMovie {
  background: url(../images/common/tit_movie.png) top left no-repeat;
  width: 166px;
}

.titNews {
  background: url(../images/common/tit_news.png) top left no-repeat;
  width: 160px;
}

.titNotice {
  background: url(../images/common/tit_notice.png) top left no-repeat;
  width: 186px;
}

.titLink {
  background: url(../images/common/tit_link.png) top left no-repeat;
  width: 148px;
}

.titSitemap {
  background: url(../images/common/tit_sitemap.png) top left no-repeat;
  width: 196px;
}

.titFaq {
  background: url(../images/common/tit_faq.png) top left no-repeat;
  width: 178px;
}

.titContact {
  background: url(../images/common/tit_contact.png) top left no-repeat;
  width: 220px;
}

.titSearch {
  background: url(../images/common/tit_search.png) top left no-repeat;
  width: 188px;
}

.titResign {
  background: url(../images/common/tit_resign.png) top left no-repeat;
  width: 180px;
}

.titCampaign {
  background: url(../images/common/tit_campign.png) top left no-repeat;
  width: 230px;
}

.titMypage {
  background: url(../images/common/tit_mypage.png) top left no-repeat;
  width: 189px;
}

.titSystem {
  background: url(../images/common/tit_system.png) top left no-repeat;
  width: 241px;
}

.titCampaign {
  background: url(../images/common/tit_campaign.png) top left no-repeat;
  width: 230px;
}

.titMember {
  background: url(../images/common/tit_member.png) top left no-repeat;
  width: 387px;
}

.titItems {
  background: url(../images/common/tit_items.png) top left no-repeat;
  width: 475px;
}

.titItem-fb {
  background: url(../images/common/tit_item-fb.png) top left no-repeat;
  width: 547px;
}

.titRegist {
  background: url(../images/common/tit_regist.png) top left no-repeat;
  width: 234px;
}

.icoStatus {
  margin-right: 7px;
  padding: 2px 8px 0;
  display: inline-block;
  border-radius: 100px;
  font-weight: bolder;
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
}
.icoStatus a {
  color: #fff;
  text-decoration: none;
}

.icoTopics, .icotopics,
.icoProducts, .icoproducts {
  background: #5267fa;
}

.icoCampaign, .icocampaign {
  background: #9d33df;
}

.icoMovie, .icomovie {
  background: #59b200;
}

.icoEvent, .icoevent {
  background: #ff9326;
}

.icoExaid, .icoexaid {
  background: #e40153;
}

.icoSeries, .icoseries {
  background: #333;
}

.icoGhost, .icoghost {
  background: #F47A00;
}

.icoNew, .iconew {
  background: #E42C24;
}

.icoDate {
  color: #E42C24;
  margin-right: 7px;
}

.icoCsm, .icocsm {
  background: #9E9E9E;
}

.icoBlog, .icoblog {
  background: #777777;
}

.icoBuild, .icobuild {
  background: #E00109;
}

.icoOther, .icoother,
.icoOther_cate, .icoother_cate {
  background: #d80000;
}

.icoRdw, .icordw,
.icoAmazons, .icoamazons,
.icoWizard, .icowizard,
.icoOoo, .icoooo,
.icoKuuga, .icokuuga,
.icoDecade, .icodecade,
.icoDrive, .icodrive,
.icoR555, .icor555,
.icoGaim, .icogaim,
.icoDen-o, .icoden-o {
  background: #59b200;
}

.btnCol {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.btnCol li:nth-child(2n+1) {
  margin-right: 20px;
}

.btnMulti {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  margin-bottom: 50px;
}
.btnMulti li {
  margin-bottom: 10px;
}

.tab {
  border-bottom: 1px solid #ccc;
}

/*-- [ガシャット図鑑終了告知ボタン] --*/
.gashatExits {
  width: 26em;
  margin: 0 auto;
  padding-bottom: 1%;
  text-align: center;
  font-weight: bold;
  color: #E42C24;
}

.itemsExits {
  margin: 0 0 2em 0;
}

a.btnExits {
  font-weight: bolder;
  font-size: 19px;
  font-size: 1.9rem;
  color: #E42C24;
  width: 580px;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: #fff;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
}
a.btnExits:hover {
  color: #333;
}
a.btnExits .exits {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

.btns {
  text-decoration: none;
}
.btns .icons {
  content: "";
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: #E42C24;
  text-indent: -9999px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top;
  position: relative;
}
.btns .icons::after {
  display: block;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-indent: -9999px;
  margin: 6px 0 0 4px;
  position: absolute;
  top: -2px;
}
.btns .iEx {
  margin-top: 5px;
}

@media only screen and (max-width: 640px) {
  /*
  body {
    background: none;
  }*/
  .wrapper {
    padding: 0;
  }

  .btnList {
    width: 100% !important;
    padding: 2vw;
    font-size: 13px;
    font-size: 1.3rem;
  }

  .btnLink {
    background-size: 17% !important;
    padding-left: 25% !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .wrapperInner {
    width: 100%;
    min-width: 100%;
    margin-top: 0px;
    -webkit-flex-direction: initial;
    -moz-flex-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .mainCol {
    width: 90%;
    margin: 0 auto;
  }

  .cntCol {
    margin-bottom: 15px;
  }

  .cntCol h3 {
    height: 45px;
  }
  .cntCol h3.titProducts {
    max-width: 170px;
  }

  .cntCol_tit {
    margin-bottom: 15px;
  }
  .cntCol_tit:first-child {
    margin-top: 15px;
  }
  .cntCol_tit li {
    display: block;
  }
  .cntCol_tit li:first-child {
    width: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .cntCol_tit li:nth-child(2n) {
    padding-top: 8px;
    width: 110px;
  }
  .cntCol_tit li:nth-child(2n) .btnList {
    width: 110px !important;
    margin-top: 0 !important;
    padding: 8px 0 8px 10px;
  }

  .cntCol_list dt {
    background-position: top !important;
  }

  .cntCol_listBox {
    width: 48%;
    margin-right: 4%;
  }
  .cntCol_listBox img {
    width: 100%;
    height: auto;
  }
  .cntCol_listBox:nth-child(2n) {
    margin-right: 0;
  }

  .cntCol_btn li a {
    text-align: center;
    display: block;
  }

  .titItems {
    width: 100%;
    height: auto;
    background-size: contain;
  }

  .btnTab {
    border-bottom: 1px solid #ccc;
    padding: 5px 0 5px 10px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
  }
  .btnTab:hover, .btnTab.current {
    border-top: 1px solid #ccc;
    border-bottom: 4px solid #E42C24;
    margin-bottom: 0px;
    background: #eee;
    position: relative;
    z-index: 1;
  }

  .btnMovie {
    width: 100%;
  }

  .titTopics, .titProducts, .titPb, .titMovie, .titNews, .titNotice, .titLink, .titSitemap, .titFaq, .titContact, .titSearch, .titResign, .titCampaign, .titMypage, .titSystem, .titCampaign, .titMember, .titItems, .titItem-fb, .titRegist, .titTwitter, .titContents, .titSeries {
    width: auto;
    height: 15vw;
    background-size: contain;
  }

  .btnCol li {
    margin-right: 0px;
    width: 100%;
    margin: -1px 0 0 0;
    box-sizing: border-box;
  }
  .btnCol li:nth-child(2n+1) {
    margin-right: 0px;
  }
  .btnCol li a {
    width: 100%;
  }

  .tab {
    border-bottom: none;
  }

  /*-- [ガシャット図鑑終了告知ボタン] --*/
  .gashatExits {
    font-size: 13px;
    font-size: 1.3rem;
    width: 100%;
    margin: 0 auto;
  }

  a.btnExits {
    width: 100% !important;
    padding: 2vw;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
