@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;700&family=Noto+Sans+JP:wght@400;700&family=Rosarivo&family=Zen+Old+Mincho&display=swap");

/* フェイドインアニメーション */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.fade-in {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: Helvetica, Arial, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Sans JP", sans-serif, "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  background-color: #1a1a1e;
}

:root {
  font-size: 16px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .pc-i {
    display: none;
  }
}

.sp-i {
  display: none;
}

@media (max-width: 768px) {
  .sp-i {
    display: inline-block;
  }
}

/*  rule-button
-----------------------------------*/
.rule-button {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #efeff0;
  cursor: pointer;
  font-weight: bold;
  position: fixed;
  top: 14px;
  left: 16px;
  background: none;
  border: none;
  z-index: 50;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (max-width: 768px) {
  .rule-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.rule-button::after {
  content: "→";
  color: #efeff0;
  display: inline-block;
  margin-left: 4px;
}

.rule-button.is-active::after {
  content: "←";
}

/*  rule-side
-----------------------------------*/
.rule-side {
  background: #121214;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 50px;
  left: 0;
  width: 280px;
  height: calc(100vh - 50px);
  padding: 40px 16px;
  z-index: 10;
  overflow-y: auto;
  -webkit-transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 820px) {
  .rule-side {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .rule-side {
    left: -100%;
    padding: 40px 16px 160px;
  }
}

.rule-side.is-active {
  left: 0;
  -webkit-transition: left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.rule-side-inner {
  border-top: 3px solid #29292d;
  margin-top: 24px;
  padding-top: 24px;
}

.rule-side-ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #efeff0;
}

.rule-side-list {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}

.rule-side-category {
  margin-top: 8px;
  line-height: 160%;
  color: #efeff0;
}

.rule-side-category h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  color: #efeff0;
}

.rule-side-category h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: normal;
  margin: 8px 0 0;
  line-height: 140%;
  color: #efeff0;
}

.rule-side-category a {
  color: #aaaab1;
  text-decoration: none;
  -webkit-transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .rule-side-category a:hover {
    color: #07aee5;
    text-shadow: 0 0 5px rgba(7, 174, 229, 0.5);
    -webkit-transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-side-category a.is-active {
  color: #07aee5;
  font-weight: bold;
}

.rule-side-item {
  list-style: none;
  line-height: 160%;
  padding: 0;
}

.rule-side-item li {
  margin-top: 8px;
  text-indent: 1rem;
}

.rule-side-item-child {
  list-style: none;
}

.rule-side-item-child li {
  text-indent: 0;
  padding-left: 2rem;
}

/*  rule-main
-----------------------------------*/
.rule-main {
  position: absolute;
  left: 280px;
  width: calc(100% - 280px);
  background-image: linear-gradient(rgba(7, 174, 229, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 174, 229, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

@media (max-width: 820px) {
  .rule-main {
    left: 240px;
    width: calc(100% - 240px);
  }
}

@media (max-width: 768px) {
  .rule-main {
    left: 0;
    width: 100%;
    margin-top: 24px;
    background-size: 20px 20px;
  }
}

.rule-main-inner {
  width: 100%;
  margin: 72px auto 0;
  padding: 0 4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 3px solid #29292d;
}

@media (max-width: 768px) {
  .rule-main-inner {
    width: 100%;
    margin: 56px auto 0;
    padding: 0 16px;
  }
}

.rule-main-inner.first {
  border-top: none;
}

.rule-main-section.bg-gray .rule-main-flex {
  margin-top: 24px !important;
}

.rule-main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  .rule-main-flex {
    display: block;
  }
}

.rule-main-flex dl {
  margin-top: 0;
}

.rule-main-flex-left {
  margin-right: 40px;
  margin-bottom: 24px;
}

@media (max-width: 1000px) {
  .rule-main-flex-left {
    margin-right: 0;
  }
}

.rule-main-flex-left .rule-main-img {
  margin-top: 0;
  width: 300px;
}

@media (max-width: 1000px) {
  .rule-main-flex-left .rule-main-img {
    width: 100%;
  }
}

.rule-main-flex-left .rule-main-map {
  width: 240px;
}

@media (max-width: 1000px) {
  .rule-main-flex-left .rule-main-map {
    width: 80%;
    margin: 0 auto;
  }
}

.rule-main-flex-right .rule-main-img {
  margin-top: 0;
  width: 350px;
}

@media (max-width: 1000px) {
  .rule-main-flex-right .rule-main-img {
    width: 100%;
  }
}

.rule-main-flex-right .rule-main-map {
  width: 240px;
}

@media (max-width: 1000px) {
  .rule-main-flex-right .rule-main-map {
    width: 80%;
    margin: 0 auto;
  }
}

.rule-main-flex-ttl {
  font-size: 20px;
  font-size: 1.25rem;
}

.rule-main-ttl {
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 160%;
  padding: 80px 0 32px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  word-break: break-all;
  color: #efeff0;
  text-shadow: 0 0 10px rgba(7, 174, 229, 0.5);
}

@media (max-width: 1000px) {
  .rule-main-ttl {
    font-size: 36px;
    font-size: 2.25rem;
    padding: 60px 0 24px;
  }
}

.rule-main-lead {
  margin: 0;
  padding: 0;
  line-height: 160%;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-head-1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: Helvetica, Arial, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Noto Sans JP", sans-serif;
  padding: 24px 0 24px 15px;
  margin-top: 80px;
  margin-bottom: 24px;
  word-break: break-all;
  color: #efeff0;
  border-bottom: 1px solid #07aee5;
  border-left: 5px solid #07aee5;
  background: linear-gradient(90deg, rgba(7, 174, 229, 0.1) 0%, transparent 100%);
}

.rule-main-head-1 rt {
  font-size: 0.1em;
}

.rule-main-head-1:first-letter {
  font-size: inherit;
  margin-right: 0;
  margin-top: 0;
  float: none;
  line-height: inherit;
}

.rule-main-head-2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 160%;
  margin: 0;
  padding: 56px 0 12px;
  word-break: break-all;
  color: #efeff0;
  display: flex;
  align-items: center;
}

.rule-main-head-2::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 28px;
  background-image: url(../../img/marker-sephirot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
  filter: drop-shadow(0 0 2px #07aee5);
}

.rule-main-head-3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 160%;
  margin: 0;
  padding: 48px 0 6px;
  word-break: break-all;
  color: #efeff0;
  text-decoration: underline;
  text-decoration-color: #aaaab1;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.rule-main-head {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
  padding: 56px 0 0;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-head span {
  background: #171717;
  color: #efeff0;
  margin-right: 2px;
  padding: 2px 4px;
}

.rule-main-subhead {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  padding: 48px 0 0;
  line-height: 160%;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-subhead-diamond {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  padding: 48px 0 0;
  line-height: 160%;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-subhead-diamond:before {
  content: "◆";
  margin-right: 4px;
}

.rule-main-txt {
  margin-top: 0px;
  line-height: 160%;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-txt a {
  color: #07aee5;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

@media (hover: hover) {
  .rule-main-txt a:hover {
    opacity: 1;
    color: #07aee5;
    text-shadow: 0 0 8px rgba(7, 174, 229, 0.8);
    -webkit-transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-img {
  margin-top: 16px;
}

.rule-main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rule-main-summary {
  margin-top: 16px;
}

.rule-main-summary img {
  width: 100%;
  max-width: 920px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rule-main-map {
  margin-top: 16px;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .rule-main-map:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rule-main-map-txt {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 8px;
  color: #aaaab1;
}

.rule-main-list {
  list-style: inside;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 100%;
  text-indent: -1rem;
  padding-left: 1rem;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-list li {
  margin-top: 8px;
}

.rule-main-list a {
  color: #07aee5;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

@media (hover: hover) {
  .rule-main-list a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .rule-main-table {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.rule-main-table.fixed {
  table-layout: fixed;
}

.rule-main-table th {
  border: 1px solid #07aee5;
  padding: 8px;
  text-align: center;
  background: #29292d;
  color: #efeff0;
  word-break: break-all;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.rule-main-table-short {
  width: 15%;
}

.rule-main-table-middle {
  width: 25%;
}

.rule-main-table-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  background: #171717 !important;
  color: #efeff0 !important;
}

.rule-main-table td {
  border: 1px solid #444;
  padding: 8px;
  line-height: 160%;
  word-break: break-all;
  background: rgba(255, 255, 255, 0.02);
}

.rule-main-table a {
  color: #07aee5;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

@media (hover: hover) {
  .rule-main-table a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-table a.sheet-link {
  font-size: 15px;
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rule-main-table a.sheet-link:after {
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
  content: "";
  background: url(../../img/common/icon-link-blue.svg) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.rule-main-table:before {
  content: "";
  display: block;
  padding-top: 32px;
}

.rule-main-note {
  background: #29292d;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 16px;
  padding: 24px;
}

.rule-main-note dt {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  line-height: 160%;
  font-weight: bold;
  word-break: break-all;
  color: #efeff0;
  margin-bottom: 6px;
}

.rule-main-note dd {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 160%;
  margin-top: 0px;
  word-break: break-all;
  color: #efeff0;
}

.rule-main-note a {
  color: #07aee5;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

@media (hover: hover) {
  .rule-main-note a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  margin: 100px 0;
}

.rule-main-pagenation a {
  font-size: 16px;
  font-size: 1rem;
  color: #171717;
  text-decoration: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .rule-main-pagenation a:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-pagenation span {
  color: #07aee5;
  font-weight: bold;
  margin: 0 8px;
}

.rule-main-prev.inactive {
  visibility: hidden;
}

.rule-main-next.inactive {
  visibility: hidden;
}

.rule-main-button a {
  font-size: 14px;
  font-size: 0.875rem;
  background: #171717;
  color: #efeff0;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  margin: 24px 0;
  padding: 10px 16px 8px;
  -webkit-transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .rule-main-button a:hover {
    background: #07aee5;
    -webkit-transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.rule-main-button a:after {
  font-size: 12px;
  font-size: 0.75rem;
  content: "";
  background: url(../../img/common/icon-link-white.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 22px;
  height: 22px;
  margin-left: 8px;
}

rt {
  font-size: 50%;
}

rt.head {
  font-size: 30%;
}

ruby[data-ruby] rt {
  display: none;
}

ruby[data-ruby] {
  position: relative;
  display: inline-block;
}

ruby[data-ruby]::after {
  content: attr(data-ruby);
  position: absolute;
  transform: translate(-50%, -1.7em);
  display: block;
  left: 50%;
  top: 0;
  white-space: nowrap;
  font-size: 44%;
  letter-spacing: 0;
}

/* Character Tool Button */
.rule-main-character-tool {
  margin-top: 16px;
  text-align: center;
}

.character-tool-btn {
  display: inline-block;
  border: 1px solid #aaaab1;
  color: #aaaab1 !important;
  background: transparent;
  padding: 8px 24px;
  cursor: pointer;
  transition: border 0.3s, color 0.3s;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: normal;
  font-family: inherit;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  vertical-align: middle;
}

.character-tool-btn:hover {
  border: 1px solid #07aee5;
  color: #07aee5 !important;
  text-decoration: none !important;
}

.character-tool-btn:visited {
  color: #aaaab1 !important;
  text-decoration: none !important;
}

.character-tool-btn:visited:hover {
  color: #07aee5 !important;
  text-decoration: none !important;
}

.character-tool-btn:focus {
  outline: none;
}

.character-tool-btn:active {
  outline: none;
}

@media (max-width: 768px) {
  .character-tool-btn {
    font-size: 12px;
    padding: 6px 20px;
  }
}

/* Biz Board Styles */
.biz-board {
  margin: 2rem 2rem 2rem 1rem;
  max-width: calc(100% - 3rem);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.biz-post {
  background: linear-gradient(135deg, rgba(7, 174, 229, 0.1) 0%, rgba(7, 174, 229, 0.05) 100%);
  border: 2px solid rgba(7, 174, 229, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(7, 174, 229, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.biz-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #07aee5, rgba(7, 174, 229, 0.5));
}

.biz-title {
  color: #07aee5;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(7, 174, 229, 0.3);
  border-bottom: 2px solid rgba(7, 174, 229, 0.3);
  padding-bottom: 0.5rem;
}

.biz-subtitle {
  color: #07aee5;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
  text-shadow: 0 0 8px rgba(7, 174, 229, 0.2);
  position: relative;
}

.biz-subtitle::before {
  content: "◆";
  color: #07aee5;
  margin-right: 0.5rem;
  font-size: 1.1em;
}

.biz-details {
  background: rgba(7, 174, 229, 0.05);
  border: 1px solid rgba(7, 174, 229, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.biz-details p {
  color: #efeff0;
  margin: 0.8rem 0;
  line-height: 1.6;
}

.biz-details strong {
  color: #07aee5;
  text-shadow: 0 0 5px rgba(7, 174, 229, 0.3);
}

.biz-content {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid rgba(7, 174, 229, 0.5);
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.biz-content p {
  color: #efeff0;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.biz-content p:last-child {
  margin-bottom: 0;
}

.biz-procedure {
  counter-reset: procedure-counter;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.biz-procedure li {
  counter-increment: procedure-counter;
  color: #efeff0;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.biz-procedure li:before {
  content: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩";
  content: counter(procedure-counter, decimal);
  position: absolute;
  left: 0;
  top: 0;
  color: #07aee5;
  font-weight: bold;
  min-width: 1.5rem;
}

.biz-procedure li:nth-child(1):before {
  content: "①";
}

.biz-procedure li:nth-child(2):before {
  content: "②";
}

.biz-procedure li:nth-child(3):before {
  content: "③";
}

.biz-procedure li:nth-child(4):before {
  content: "④";
}

.biz-procedure li:nth-child(5):before {
  content: "⑤";
}

.biz-procedure li:nth-child(6):before {
  content: "⑥";
}

.biz-procedure li:nth-child(7):before {
  content: "⑦";
}

.biz-procedure li:nth-child(8):before {
  content: "⑧";
}

.biz-procedure li:nth-child(9):before {
  content: "⑨";
}

.biz-procedure li:nth-child(10):before {
  content: "⑩";
}

.biz-procedure li:last-child {
  margin-bottom: 0;
}

/* biz-content内のリストスタイル */
.biz-content ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.biz-content li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  color: #efeff0;
  line-height: 1.6;
  position: relative;
}

.biz-content li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #07aee5;
  font-weight: bold;
}

.biz-content li:last-child {
  margin-bottom: 0;
}

.biz-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: rgba(7, 174, 229, 0.05);
  border: 1px solid rgba(7, 174, 229, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.biz-table caption {
  font-size: 1rem;
  font-weight: bold;
  color: #07aee5;
  text-align: center;
  padding: 0.75rem;
  background: rgba(7, 174, 229, 0.1);
  border-bottom: 1px solid rgba(7, 174, 229, 0.3);
  margin: 0;
}

.biz-table thead {
  background: linear-gradient(135deg, rgba(7, 174, 229, 0.2) 0%, rgba(7, 174, 229, 0.1) 100%);
}

.biz-table th {
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  color: #07aee5;
  border-bottom: 2px solid rgba(7, 174, 229, 0.3);
  border-right: 1px solid rgba(7, 174, 229, 0.3);
  text-shadow: 0 0 5px rgba(7, 174, 229, 0.3);
}

.biz-table th:last-child {
  border-right: none;
}

.biz-table td {
  padding: 0.5rem 1rem;
  text-align: center;
  color: #efeff0;
  border-bottom: 1px solid rgba(7, 174, 229, 0.2);
  border-right: 1px solid rgba(7, 174, 229, 0.2);
  line-height: 1.6;
}

.biz-table td:last-child {
  border-right: none;
}

.biz-table tbody tr:last-child td {
  border-bottom: none;
}

.biz-table tbody tr:hover {
  background: rgba(7, 174, 229, 0.1);
}

.biz-table tbody tr:nth-child(even) {
  background: rgba(7, 174, 229, 0.03);
}

.biz-table td:nth-child(2),
.biz-table td:nth-child(3) {
  text-align: left;
}

.biz-table-narrow {
  width: auto;
  max-width: 400px;
  margin: 1rem 0;
}

.biz-table.biz-table-narrow td {
  text-align: center !important;
}

.biz-table-narrow th:first-child,
.biz-table-narrow td:first-child {
  width: 120px;
  white-space: nowrap;
}

.biz-table-narrow th:nth-child(2),
.biz-table-narrow td:nth-child(2) {
  width: 100px;
  white-space: nowrap;
}

.biz-table-auto-width {
  width: auto;
  max-width: 100%;
  margin: 1rem 0;
}

.biz-table-auto-width th:first-child,
.biz-table-auto-width td:first-child {
  width: 80px;
  text-align: center;
}

.biz-table-auto-width th:nth-child(2),
.biz-table-auto-width td:nth-child(2) {
  width: auto;
  text-align: left;
  white-space: nowrap;
  min-width: 300px;
}

/* レスポンシブテーブル */
.biz-table-responsive {
  width: 100%;
  table-layout: auto;
}

/* テーブルラッパー */
.biz-content .biz-table-responsive {
  width: 100%;
}

.biz-table-responsive th:first-child,
.biz-table-responsive td:first-child {
  width: auto;
  min-width: 60px;
  text-align: center;
  white-space: nowrap;
}

.biz-table-responsive th:nth-child(2),
.biz-table-responsive td:nth-child(2) {
  width: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* 3列目以降の設定 */
.biz-table-responsive th:nth-child(n+3),
.biz-table-responsive td:nth-child(n+3) {
  width: auto;
  min-width: 120px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
}

.biz-table-responsive th:nth-child(2) {
  text-align: center;
}

.biz-table-responsive td:nth-child(2) {
  text-align: left;
}

/* タブレット用設定 */
@media (max-width: 1024px) and (min-width: 769px) {

  .biz-table-responsive th:first-child,
  .biz-table-responsive td:first-child {
    width: 20%;
    min-width: 90px;
    font-size: 0.9rem;
  }

  .biz-table-responsive th:nth-child(2),
  .biz-table-responsive td:nth-child(2) {
    width: 80%;
    font-size: 0.9rem;
    padding: 0.45rem 0.8rem;
  }

  .biz-table-responsive th:nth-child(n+3),
  .biz-table-responsive td:nth-child(n+3) {
    min-width: 100px;
    font-size: 0.9rem;
    padding: 0.45rem 0.6rem;
  }
}

@media (max-width: 768px) {

  .biz-table-auto-width th:nth-child(2),
  .biz-table-auto-width td:nth-child(2) {
    white-space: normal;
    min-width: auto;
  }

  .biz-table-responsive th:first-child,
  .biz-table-responsive td:first-child {
    width: 25%;
    min-width: 80px;
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }

  .biz-table-responsive th:nth-child(2),
  .biz-table-responsive td:nth-child(2) {
    width: 75%;
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .biz-table-responsive th:nth-child(n+3),
  .biz-table-responsive td:nth-child(n+3) {
    min-width: 80px;
    font-size: 0.8rem;
    padding: 0.4rem 0.4rem;
    line-height: 1.4;
  }

  .biz-table th:first-child,
  .biz-table td:first-child {
    width: 60px !important;
    padding: 0.5rem 0.25rem;
    font-size: 0.85rem;
  }

  .biz-table-narrow th:first-child,
  .biz-table-narrow td:first-child {
    width: 80px !important;
  }

  .biz-table-auto-width th:first-child,
  .biz-table-auto-width td:first-child {
    width: 50px !important;
  }
}

@media (max-width: 768px) {
  .biz-table-narrow {
    width: 80%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .biz-table {
    font-size: 0.9rem;
  }

  .biz-table th,
  .biz-table td {
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .biz-board {
    margin: 1rem 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .biz-post {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .biz-title {
    font-size: 1.3rem;
  }

  .biz-subtitle {
    font-size: 1.1rem;
  }

  .biz-details,
  .biz-content {
    padding: 1rem;
  }
}

/*# sourceMappingURL=game-contents.css.map */