<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*=== ヘッダー ===*/
@media print, screen and (min-width: 769px) {
  .Header__head {
    display: flex;
    align-items: center;
    flex-shrink: inherit;
    margin-right: 40px;
  }
  .header-logo--head {
    width: 242px;
    height: 52px;
  }
  .header-txt {
    margin-left: 40px;
    font-size: 13px;
  }
  .header-txt a,
  .header-txt a:visited {
    color: #003399;
    text-decoration: underline;
  }
}
@media only screen and (max-width: 768px) {
  .Header {
    position: static;
    height: 87px;
  }
  .Header + * {
    padding-top: 0;
  }
  .Header__contents {
    padding: 0 10px 10px;
  }
  .header-logo--sp {
    display: block;
    width: 150px;
    height: 32px;
  }
}


/*=== ナビゲーション ===*/
.navigation {
  border-bottom: 2px solid #ec6c00;
}
.navigation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.navigation-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 830px;
}
.navigation-item {
  width: calc(100% / 3);
}
a.navigation-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  color: #232b35;
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
}
a.navigation-link:visited {
  color: #232b35;
}
a.navigation-link:hover {
  color: #ec6c00;
  text-decoration: none;
}
a.navigation-link span {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
a.navigation-link span::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ec6c00;
  border-right: 2px solid #ec6c00;
  transform: translateY(-50%) rotate(135deg);
}


/*=== 検索窓 ===*/
.navigation-search {
  width: 100%;
  max-width: 300px;
  margin-left: 30px;
}
.navigation-search_fieldset {
  display: flex;
  border: 1px solid #5f6b78;
  border-radius: 3px;
}
.navigation-search_txt {
  width: calc(100% - 120px);
  height: 40px;
  padding: 10px;
  border: none;
  background-color: #fff;
  border-radius: 3px;
  outline: none;
  flex-grow: 1;
}
.navigation-search_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 40px;
  border: none;
  outline: none;
  color: #fff;
  background-color: #5f6b78;
  border-radius: 0 1px 1px 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.navigation-search_submit::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  margin-right: 9px;
  background: url(/images/common/newtop/img/home_ic01.png) no-repeat 0 0;
  background-size: contain;
}


/*=== メインエリア ===*/
.main {
  padding-bottom: 60px;
}
.main-inner {
  padding-bottom: 75px;
  margin: 0 auto 60px;
  background-color: #fff;
}
.main-container {
  margin: 0 auto;
}
.main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px 40px;
}
.main-column {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-side {
  flex: 1;
  width: 100%;
  min-width: 300px;
  max-width: 300px;
  margin-left: 30px;
}
.main-area {
  padding: 35px 20px 40px;
  border-radius: 16px;
  background-color: #faf8f0;
}


/*=== 見出し / テキスト ===*/
.main-ttl,
.main-subttl {
  position: relative;
  font-size: 26px;
  text-align: center;
  line-height: 1.4;
}
.main-ttl span,
.main-subttl span {
  display: inline-block;
  position: relative;
}
.main-ttl span::before,
.main-subttl span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.main-ttl_label {
  top: -3px;
  width: 65px;
  height: 25px;
  margin-right: 10px;
  padding: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  background-color: #ec6c00;
}
.main-subttl {
  font-size: 16px;
}
.main-lead {
  margin-top: 15px;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}


/*=== ゲームパネル ===*/
.gamePanel {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.gamePanel-item {
  width: 100%;
  max-width: 200px;
  margin-right: 15px;
}
.gamePanel-item:last-child {
  margin-right: 0;
}
a.gamePanel-link {
  display: block;
  height: 100%;
  color: #232323;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s;
}
a.gamePanel-link:visited {
  color: #232323;
}
a.gamePanel-link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.gamePanel-thumb {
  position: relative;
}
.type-new .gamePanel-thumb::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 28%;
  background: url(/game/images/game_ic_016.png) no-repeat 50% / 100% auto;
}
.gamePanel-inner {
  padding: 14px 10px;
}
.gamePanel-ttl {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.4;
}
.gamePanel-txt {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.75;
}


/*=== ゲーム一覧 ===*/
.game .main-ttl span {
  padding-left: 48px;
}
.game .main-ttl span::before {
  top: -2px;
  width: 36px;
  height: 36px;
  background-image: url(/game/images/game_ic_007.png);
}


/*=== ゲーム一覧 カテゴリ ===*/
.category {
  display: flex;
  margin-top: 25px;
}
.category-item {
  width: calc(100% / 9);
}
.category-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 12px 0 10px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  color: #232323;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  background: -webkit-linear-gradient(top, #e7e7e7 0%,#ffffff 50%,#e6e6e6 100%);
  background: linear-gradient(to bottom, #e7e7e7 0%,#ffffff 50%,#e6e6e6 100%);
}
.category-item:first-child a {
  border-left: 1px solid #ddd;
}
.category-item a.app {
  color: #ec7e21;
}
.category-item.active a {
  border-color: transparent;
  color: #fff;
  background: -webkit-linear-gradient(top, #ec7e21 0%,#e6700c 50%,#e26700 100%);
  background: linear-gradient(to bottom, #ec7e21 0%,#e6700c 50%,#e26700 100%);
  pointer-events: none;
}
.category-item.active a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  border: 10px solid transparent;
  border-top: 10px solid #e26700;
  transform: translateX(-50%);
}
.category-item a:hover {
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s;
}


/*=== ゲーム一覧 リスト ===*/
.game-inner {
  margin-top: 20px;
}
.game-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -24px;
}
.game-item {
  width: calc((100% - (24px * 8)) / 8);
  margin-top: 20px;
  margin-right: 24px;
}
.game-item a {
  display: block;
  text-decoration: none;
}
.game-item a:hover {
  text-decoration: none;
}
.game-cont {
  position: relative;
}
.type-new .game-cont::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 38%;
  background: url(/game/images/game_ic_016.png) no-repeat 50% / 100% auto;
}
.game-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s;
}
.game-item a:hover .game-txt {
  opacity: 1;
}
.game-ttl {
  margin-top: 6px;
  color: #232323;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}


/*=== バナー ===*/
.bnrarea {
  margin: 20px 0;
  background-color: #faf8f0;
}
.bnrarea .main-section {
  padding: 20px;
}
.bnrarea-list {
  display: flex;
  justify-content: center;
  margin-right: -25px;
}
.bnrarea-item {
  margin-right: 25px;
}
.bnrarea-item a:hover {
  opacity: 0.7;
  transition: opacity 0.2s;
}


@media screen and (max-width: 1024px) {
  .category-item a {
    font-size: 13px;
  }
  .game-list {
    margin-right: -15px;
  }
  .game-item {
    width: calc((100% - (15px * 8)) / 8);
    margin-right: 15px;
  }
  .game-txt {
    padding: 5px;
    font-size: 12px;
  }
}


@media screen and (max-width: 768px) {
  /*=== ナビゲーション ===*/
  .navigation {
    margin-top: 20px;
    border-bottom: none;
  }
  .navigation-inner {
    display: block;
    padding: 0 10px;
  }
  .navigation-list {
    max-width: 100%;
  }
  .navigation-item:not(:last-child) {
    border-right: 2px solid #ddd;
  }
  a.navigation-link {
    padding: 10px 0 16px;
    font-weight: normal;
    font-size: 13px;
    background: -webkit-linear-gradient(top, #e7e7e7 0%,#ffffff 50%,#e6e6e6 100%);
    background: linear-gradient(to bottom, #e7e7e7 0%,#ffffff 50%,#e6e6e6 100%);
  }
  a.navigation-link span {
    padding-right: 0;
  }
  a.navigation-link span::after {
    display: block;
    position: absolute;
    top: auto;
    bottom: -9px;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(135deg);
  }
  /*=== 検索窓 ===*/
  .navigation-search {
    display: none;
  }
  /*=== リード ===*/
  .lead {
    padding: 0 10px;
    font-size: 13px;
    text-align: center;
  }
  /*=== メインエリア ===*/
  .main {
    padding: 0;
  }
  .main-inner {
    margin: 0 auto;
    padding-bottom: 110px;
  }
  .main-section {
    padding: 30px 10px 20px;
  }
  .main-column {
    display: block;
    padding: 0;
  }
  .main-side {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .main-area {
    padding: 30px 10px 20px;
    border-radius: 0;
  }
  /*=== 見出し / テキスト ===*/
  .main-ttl,
  .main-subttl {
    font-size: 15px;
  }
  .main-ttl_label {
    top: -1px;
    width: 36px;
    height: 17px;
    padding: 3px;
    font-size: 12px;
  }
  .main-lead {
    margin-top: 10px;
    font-size: 13px;
  }
  /*=== ゲームパネル ===*/
  .gamePanel {
    max-width: 680px;
    margin: 15px auto 0;
  }
  .gamePanel-item {
    margin-right: 10px;
  }
  .type-new .gamePanel-thumb::before {
    width: 28%;
    height: 28%;
  }
  .gamePanel-inner {
    padding: 8px 6px;
  }
  .gamePanel-ttl {
    font-size: 14px;
  }
  .gamePanel-txt {
    font-size: 11px;
  }
  /*=== ゲーム一覧 ===*/
  .game .main-ttl span {
    padding-left: 28px;
  }
  .game .main-ttl span::before {
    top: -1px;
    width: 21px;
    height: 21px;
  }
  /*=== ゲーム一覧 カテゴリ ===*/
  .category {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .category-item:nth-child(-n+4) {
    width: calc(100% / 4);
  }
  .category-item:nth-child(n+5) {
    width: calc(100% / 5);
  }
  .category-item a {
    padding: 7px 0 9px;
    border-width: 2px;
    font-size: 10px;
  }
  .category-item:first-child a {
    border-left: none;
  }
  .category-item:nth-child(-n+4) a {
    border-top-color: transparent;
  }
  .category-item:nth-child(4) a,
  .category-item:last-child a {
    border-right: none;
  }
  .category-item.active a::after {
    content: none;
  }
  /*=== ゲーム一覧 リスト ===*/
  .game-inner {
    max-width: 526px;
    margin: 10px auto 0;
  }
  .game-list {
    margin-right: -10px;
  }
  .game-item {
    width: calc((100% - (10px * 4)) / 4);
    margin-top: 12px;
    margin-right: 10px;
  }
  .type-new .game-cont::before {
    width: 43%;
    height: 35%;
    background-image: url(/game/images/game_ic_017.png);
  }
  .game-ttl,.game-txt {
    display: none;
  }
  /*=== バナー ===*/
  .bnrarea {
    margin: 20px 0 40px;
  }
  .bnrarea .main-section {
    padding: 10px;
  }
  .bnrarea-list {
    margin-right: -10px;
  }
  .bnrarea-item {
    margin-right: 10px;
  }
}
</pre></body></html>