@charset "utf-8";
.sp-only {
  display: none !important;
}
.inner {
  width: min(96%, 1200px);
  margin: auto;
}
body {
  margin: 60px 0 0;
}
#navTrigger {
  display: none;
}
@media all and (max-width:1024px) {
  #navTrigger {
    display: block;
  }
}
@media all and (max-width:1024px) {
  main {
    font-size: 1.5625vw;
  }
}
/* == parts ============================================== */
.title_base.type--center {
  text-align: center;
}
.title_base .en {
  color: #c4a747;
  font-weight: 700;
  font-size: 125%;
  line-height: 1;
  margin: 0 0 .5em;
}
.title_base .jp {
  font-size: 200%;
}
.title_page {
  text-align: center;
}
.title_page .en {
  color: #c4a747;
  font-weight: 700;
  font-size: 125%;
  line-height: 1;
  margin: 0 0 .5em;
}
.title_page .jp {
  font-size: 200%;
}
/**/
.title_line {
  font-size: 150%;
  border-bottom: solid 2px #c4a747;
  padding: .3em 0;
}
/**/
.title_border {
  font-size: 135%;
  border-left: solid 4px #c4a747;
  padding: 0 0 0 .5em;
}
/**/
.btn_base a {
  display: inline-block;
  padding: 1em 2.5em 1em 1em;
  border: solid 1px #333;
  font-size: 112.5%;
  font-weight: 700;
  position: relative;
  box-shadow: 0 5px .3em 1px #efefef;
  box-sizing: border-box;
  min-width: 14em;
  transition: color .3s;
  background: #fff;
}
.btn_base a:not([target="_blank"])::before {
  content: '';
  width: .7em;
  height: .7em;
  box-sizing: border-box;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  z-index: 5;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotateZ(45deg);
  transition: border-color .3s;
}
.btn_base a[target="_blank"]::before {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url("../img/icon_blank.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 5;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: background-image .3s;
}
.btn_base a::after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(51, 65, 85, 1);
  transition: all .3s;
}
.btn_base a:hover {
  color: #efefef;
}
.btn_base a:hover::before {
  border-color: #efefef;
}
.btn_base a[target="_blank"]:hover::before {
  background-image: url("../img/icon_blank--on.svg");
}
.btn_base a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.btn_base a span {
  display: block;
  position: relative;
  z-index: 5;
}
a.text_link {
  color: rgba(0, 58, 108, 1);
  transition: opacity .2s;
  font-weight: 700;
  text-decoration: underline;
}
a.text_link:hover {
  opacity: .7;
}
/* == header ============================================== */
header {
  background-color: rgba(51, 65, 85, 1);
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 16px !important;
}
body.admin-bar header {
  top: 32px;
}
header .h_inner {
  display: flex;
  align-items: center;
  width: min(98%, 1200px);
  margin: auto;
}
header .h_logo a {
  display: block;
  overflow: hidden;
  background-image: url("../img/logo.webp");
  background-size: 2em auto;
  background-position: left center;
  padding: .975em 0 .975em 2.5em;
  background-repeat: no-repeat;
  color: #efefef;
  font-weight: 700;
}
@media all and (min-width:1025px) {
  header .h_inner nav {
    margin: 0 0 0 auto;
  }
  .list_hNav {
    display: flex;
  }
  .list_hNav li {
    height: 3.75em;
    display: flex;
    align-items: center;
  }
  .list_hNav > li > a {
    display: flex;
    height: 100%;
    padding: 0 1em;
    align-items: center;
    color: #efefef;
    font-size: 87.5%;
    font-weight: 700;
    position: relative;
  }
  .list_hNav > li > a::before {
    content: '';
    width: .5em;
    height: .5em;
    border-radius: 50%;
    background: #efefef;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: .8em;
    transition: all .3s;
    transform: scale(0);
  }
  .list_hNav > li > a:hover::before, .list_hNav > li.active > a::before {
    transform: scale(1);
  }
}
@media all and (max-width:1024px) {
  #navTrigger {
    position: absolute;
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2.5em;
    height: 2.5em;
    border: solid 1px #efefef;
    border-radius: .2em;
  }
  #navTrigger span {
    position: absolute;
    width: 60%;
    height: 1px;
    background: #efefef;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: transform .5s, opacity .3s;
  }
  #navTrigger span:nth-child(1) {
    top: -14px;
  }
  #navTrigger span:nth-child(3) {
    bottom: -14px;
  }
  body.nav--open #navTrigger span:nth-child(1) {
    transform: translateY(7px) rotateZ(35deg);
  }
  body.nav--open #navTrigger span:nth-child(2) {
    opacity: 0;
  }
  body.nav--open #navTrigger span:nth-child(3) {
    transform: translateY(-7px) rotateZ(-35deg);
  }
  header .h_inner nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    transition: opacity .5s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  body.nav--open header .h_inner nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .list_hNav {
    background: rgba(51, 65, 85, 1);
  }
  .list_hNav li {
    border-top: solid 1px #efefef;
  }
  .list_hNav > li > a {
    display: block;
    padding: 1em;
    align-items: center;
    color: #efefef;
    font-size: 114.3%;
    font-weight: 700;
    position: relative;
  }
  .list_hNav > li > a::before {
    content: '';
    width: .8em;
    height: .8em;
    box-sizing: border-box;
    border-top: solid 2px #efefef;
    border-right: solid 2px #efefef;
    position: absolute;
    right: 1.5em;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotateZ(45deg);
  }
  .list_hNav > li.active > a {
    background: #c4a747;
  }
}
/* == footer ============================================== */
footer {
  background-color: rgba(51, 65, 85, 1);
  color: #efefef;
  padding: 2em 0;
}
.list_fNavSmall {
  display: flex;
  justify-content: center;
  gap: 0 1em;
}
.list_fNavSmall > li a {
  display: block;
  padding: 1em;
  font-size: 87.5%;
  text-decoration: underline;
  transition: opacity .3s;
}
.list_fNavSmall > li a:hover {
  opacity: .7;
}
footer .copyright {
  font-size: 75%;
  text-align: center;
  padding: 2em 0 0;
}
/* == frontpage ==============================================*/
.block_frontTop {
  background: url(../img/bg.webp);
  background-size: cover;
  background-position: center;
}
.block_frontTop .area_title {
  height: calc(100vh - 60px);
  background-color: rgba(0, 0, 0, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.block_frontTop .area_title::before {
  content: '';
  width: 2em;
  height: 2em;
  box-sizing: border-box;
  border-top: solid 3px#c4a747;
  border-right: solid 3px#c4a747;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 3em;
  left: 0;
  margin: auto;
  transform: rotateZ(135deg);
}
.block_frontTop .area_title .titleBox {
  z-index: 5;
  position: relative;
}
.block_frontTop .area_title .frontTop_title {
  text-align: center;
  color: #c4a747;
  margin: 0 0 2em;
  background: url(../img/logo.webp);
  background-size: 5em auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 6em 0 0;
  position: relative;
}
.block_frontTop .area_title .frontTop_title .jp {
  font-size: 250%;
}
.block_frontTop .area_title .frontTop_lead {
  text-align: center;
  color: #efefef;
  font-size: 125%;
  line-height: 2;
}
/* == ABOUT
============================================== */
.block_about .area_front {
  padding: 6em 0 3em;
  background: url("../img/cloud01.webp");
  background-repeat: no-repeat;
  background-size: 20em auto;
  background-position: left top 5em;
}
.block_about .area_front .about_lead {
  text-align: center;
  margin: 1.5em 0 0;
  line-height: 2;
  font-size: 112.5%;
}
.block_about .area_front .about_lead p + p {
  margin: 1em 0 0;
}
.block_about .area_front .about_img {
  margin: 3em 0 0;
}
.block_about .area_front .btn_base {
  margin: 3em 0 0;
  text-align: center;
}
/* == RULE
============================================== */
.block_rule .area_front {
  padding: 6em 0;
  background: url("../img/cloud02.webp");
  background-repeat: no-repeat;
  background-size: 15em auto;
  background-position: right top 5em;
}
.block_rule .area_front .rule_lead {
  margin: 1.5em 0 0;
  line-height: 2;
  font-size: 112.5%;
}
.block_rule .area_front .rule_lead p + p {
  margin: 1em 0 0;
}
.block_rule .area_front .rule_img {
  margin: 3em 0 0;
}
.block_rule .area_front .btn_base {
  margin: 3em 0 0;
  text-align: center;
}
/*-----*/
.block_rule .area_desc {
  padding: 3em 0;
}
.block_rule .area_desc .desc_text {
  margin: 2em 0;
  line-height: 2;
}
.block_rule .area_desc blockquote {
  margin: 0;
}
.block_rule .area_desc .desc_text .right {
  text-align: right;
  font-size: 87.5%;
}
.block_rule .area_desc .rule_set {
  padding: 3em 0 0;
}
.block_rule .area_desc .rule_set + .rule_set {
  margin: 3em 0 0;
  border-top: dashed 3px #efefef;
}
.list_dl {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 4%;
  margin: 2em 0;
}
.list_dl > li {
  background: #efefef;
  box-sizing: border-box;
  padding: 1em;
  border-radius: .5em;
  width: 48%;
}
.list_dl > li dl dt {
  font-size: 112.5%;
  font-weight: 700;
  margin: 0 0 .5em;
  padding: 0 0 .5em 0;
  border-bottom: 2px solid #fff;
}
.block_rule .area_desc .rule_manege {
  margin: 4em 0 0;
}
.block_rule .area_desc .manege_image {
  margin: 1.5em 0 0;
}
.list_ruleManege {
  margin: 2em 0;
  counter-reset: my-section-counter;
}
.list_ruleManege > li {
  box-sizing: border-box;
  border: 2px solid #efefef;
  padding: 1em 1em 1em 2.8em;
  border-radius: .5em;
  position: relative;
  counter-increment: my-section-counter;
}
.list_ruleManege > li + li {
  margin: 1em 0 0;
}
.list_ruleManege > li::before {
  content: counter(my-section-counter)",";
  position: absolute;
  left: 1em;
  top: 1em;
}
.list_ruleManege .imageFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0 0;
}
.list_ruleManege .imageFlex img {
  width: calc(48% - 2em);
  display: block;
}
.list_ruleManege .imageFlex span {
  width: 3em;
  display: block;
  text-align: center;
  font-weight: 700;
}
.parts_gameIntro {
  padding: 6em 0;
  background: #efefef;
}
.parts_gameIntro .game_desc {
  text-align: center;
  line-height: 2;
  margin: 1.5em 0 0;
}
.parts_gameIntro .game_img {
  width: 520px;
  margin: 2em auto 0;
  pointer-events: none;
}
.parts_gameIntro .btn_base {
  margin: 3em auto 0;
  text-align: center;
}
/**/

.block_rule .area_desc .rule_set .sikou_tensu{
  padding: 1em 0 3em;
  
}
.block_rule .area_desc .rule_set .table_sikou{
  width: min(90%,800px);
  border:solid 1px #000;
  margin: 1em 0 0;
  text-align: center; 
}
.table_sikou th{
  padding: 1em;
    border:solid 1px #000;
}
.table_sikou td{
  padding: 1em;
    border:solid 1px #000;
}
/* == DOWNLOADS
============================================== */
.block_download .area_front {
  padding: 6em 0;
  background-color: rgba(51, 65, 85, .1);
}
.block_download .area_front .download_lead {
  margin: 1.5em 0 0;
  line-height: 2;
  font-size: 112.5%;
}
.block_download .area_front .downloadFlex {
  display: flex;
  justify-content: space-between;
  margin: 2em 0 0;
}
.block_download .area_front .downloadBox {
  width: 48.334%;
  box-sizing: border-box;
  background: #fff;
  padding: 1.875em;
  text-align: center;
}
.block_download .area_front .downloadBox .download_name {
  border-bottom: solid 2px #efefef;
  font-size: 150%;
  padding: 0 0 .4em;
}
.block_download .area_front .downloadBox .download_image {
  box-shadow: 0 0 .5em 1px #efefef;
  pointer-events: none;
}
.block_download .area_front .downloadBox .download_desc {
  margin: 1em 0;
}
.block_download .area_front .btn_base {
  margin: 2em 0 0;
  text-align: center;
}
/**/
.block_download .area_downloadSummary {
  padding: 3em 0;
}
.block_download .area_downloadSummary .downloadSummary_lead {
  margin: 1.5em 0 0;
}
.list_downloadSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 5%;
  margin: 2em auto 0;
  width: 90%;
}
.list_downloadSummary > li {
  box-sizing: border-box;
  padding: 1em;
  border: solid 2px #efefef;
  width: 47.5%;
}
.list_downloadSummary > li figcaption {
  text-align: center;
  margin: 1em 0 2em;
  line-height: 1.5;
  min-height: 4.5em;
}
.list_downloadSummary > li figcaption strong {
  font-size: 125%;
}
.list_downloadSummary > li .btn_base {
  margin: 0 auto 2em;
  text-align: center;
}
/* == NEWS
============================================== */
.block_news .area_front {
  padding: 6em 0 10em;
  background: url("../img/cloud03.webp");
  background-repeat: no-repeat;
  background-position: bottom 4em center;
  background-size: 50em auto;
}
.list_newsSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 3em 5%;
  margin: 3em 0 0;
}
.list_newsSummary > li {
  width: 30%;
}
.list_newsSummary > li > a {
  display: block;
}
.list_newsSummary > li .newsSummary_thumb {
  position: relative;
  height: 0;
  padding: 50% 0 0;
  overflow: hidden;
}
.list_newsSummary > li .newsSummary_thumb::before {
  content: '';
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: solid 2px #efefef;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  pointer-events: none;
}
.list_newsSummary > li .newsSummary_thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}
.list_newsSummary > li .newsSummary_textBox {
  padding: 1em 0;
}
.list_newsSummary > li .newsSummary_info {
  font-size: 87.5%;
  margin: 0 0 1em;
  display: flex;
  justify-content: space-between;
}
.list_newsSummary > li .newsSummary_info .category {
  display: inline-block;
  padding: 0 1em;
  border-radius: 5em;
  background: rgba(51, 65, 85, 1);
  color: #efefef;
  font-weight: 700;
}
.list_newsSummary > li .newsSummary_title {
  font-weight: 700;
  line-height: 1.5;
  transition: color .5s;
}
.block_news .area_front .btn_base {
  margin: 3em auto 0;
  text-align: center;
}
.list_newsSummary > li > a:hover .newsSummary_thumb img {
  transform: scale(1.05);
}
.list_newsSummary > li > a:hover .newsSummary_title {
  color: #c4a747;
}
/**/
.block_news .area_newsSummary {
  padding: 3em 0;
}
/* == CONTACT
============================================== */
.parts_contactLinks {
  color: #efefef;
}
.parts_contactLinks .contactLinks_title {
  text-align: center;
}
.parts_contactLinks .contactLinks_title a {
  display: block;
  font-size: 250%;
  box-sizing: border-box;
  padding: 2em 0;
  background: rgba(0, 58, 108, 1);
  transition: all .3s;
}
.parts_contactLinks .contactLinks_title a:hover {
  background: rgba(0, 58, 108, .8);
}
.block_contact .area_form {
  padding: 6em 0;
}
.block_contact .area_form .wpcf7 {
  width: min(96%, 600px);
  margin: auto;
}
.list_form > li + li {
  margin: 1.5em 0 0;
}
.list_form .formLabel {
  font-size: 112.5%;
  font-weight: 700;
}
.list_form > li input[type="text"], .list_form > li input[type="email"], .list_form > li textarea {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: solid 2px #999;
  padding: .8em;
  border-radius: .3em;
  box-sizing: border-box;
}
.block_contact .area_form .wpcf7-list-item {
  margin: 0;
}
.block_contact .area_confirm {
  margin: 1em 0;
  text-align: center;
}
.block_contact .area_submit {
  margin: 2em 0 0;
  text-align: center;
}
.block_contact .area_submit input[type="submit"] {
  width: 300px;
  -webkit-appearance: none;
  appearance: none;
  color: #fff;
  background: rgba(51, 65, 85, 1);
  border-radius: 5em;
  padding: 1em 0;
  font-size: 16px;
  margin: auto;
  font-weight: 700;
  transition: opacity .3s;
}
.block_contact .area_submit input[type="submit"]:hover {
  opacity: .7;
}
.block_contact .wpcf7-spinner {
  display: none;
}
.block_contact .policy_link {
  margin: 1em 0 0;
}
/* ==================================== 
under
====================================*/
.block_pageTitle {
  padding: 5em 0;
  background: rgba(196, 167, 71, .1);
}
.block_pageBase {
  padding: 5em 0;
}
.block_pageBase h2 {
  font-size: 125%;
  margin: 2em auto .5em;
}
.block_pageBase ul {
  margin: .5em 0;
}
.block_pageBase ul > li {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.block_pageBase ul > li::before {
  content: "・";
}
.block_pageBase a {
  color: rgba(0, 58, 108, 1);
  transition: opacity .2s;
  font-weight: 700;
  text-decoration: underline;
}
.block_pageBase a:hover {
  opacity: .7;
}
.company-info {
  width: min(96%, 800px);
  margin: auto;
}
.company-info .info-table {
  width: 100%;
  box-sizing: border-box;
}
.company-info .info-table tr {
  border-bottom: solid 1px #efefef;
}
.company-info .info-table th {
  width: 30%;
  padding: 1em;
  box-sizing: border-box;
  vertical-align: top;
}
.company-info .info-table td {
  width: 70%;
  padding: 1em;
  box-sizing: border-box;
  vertical-align: top;
}
/* ==================================== 
single
====================================*/
.block_single {
  padding: 5em 0;
}
.block_single .inner {
  width: min(96%, 900px);
}
.block_pageBase .related-sites {
  margin: 0;
}
.block_pageBase .related-sites > li {
  text-indent: 0;
  padding: 0;
}
.block_pageBase .related-sites > li + li {
  margin: 1em 0 0;
}