@charset "UTF-8";
:root {
  --colorpie_red: #c92c1f;
  --colorpie_blue: #3794da;
  --colorpie_white: #e6b02d;
  --colorpie_black: #755098;
  --colorpie_green: #68a250;
  --colorpie_none: #d84a88;
  --danger_color: #eb4540;
  --main_bg: #fff;
  --main_border: #d0d0d0;
  --main_color3: var(--main_bg);
  --main_bg3: var(--main_color);
  --main_border3: var(--main_bg);
  --main_bg4: var(--danger_color);
  --main_color4: #fff; }

* {
  font-size: 12px;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1em;
  box-sizing: border-box; }

body.colorpie_red {
  --main_color: var(--colorpie_red); }
body.colorpie_blue {
  --main_color: var(--colorpie_blue); }
body.colorpie_white {
  --main_color: var(--colorpie_white); }
body.colorpie_black {
  --main_color: var(--colorpie_black); }
body.colorpie_green {
  --main_color: var(--colorpie_green); }
body.colorpie_none {
  --main_color: var(--colorpie_none); }
body.overwrapped {
  /* デバイスが100dvhをサポートしている場合 */
  /* デバイスが100dvhをサポートしていない場合 */
  overflow: hidden; }
  @supports (height: 100dvh) {
    body.overwrapped {
      height: 100dvh; } }
  @supports not (height: 100dvh) {
    body.overwrapped {
      height: 100vh; } }
body:has(header.fixed) {
  padding-top: 113px; }
body:has(.footer_decklist_wrap) {
  padding-bottom: 181px; }
@media print {
  body.textonly_mode header,
  body.textonly_mode footer {
    display: none; }
  body.textonly_mode h2 {
    display: none; }
  body.textonly_mode .button_area,
  body.textonly_mode .deckinfo_wrap,
  body.textonly_mode .page_top_jump {
    display: none; }
  body.textonly_mode .recipe_wrap .cardlist {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1px 1px;
    margin-bottom: 1px; }
    body.textonly_mode .recipe_wrap .cardlist .card_info {
      display: block;
      width: calc(32%);
      background: #f0f0f0;
      page-break-inside: avoid;
      /* 要素内で改頁を防ぐ */
      padding: 2px; }
      body.textonly_mode .recipe_wrap .cardlist .card_info dt p.name {
        font-size: 12px; }
      body.textonly_mode .recipe_wrap .cardlist .card_info .card_detail dd.cardtext_wrap .cardtext p {
        font-size: 10px; }
        body.textonly_mode .recipe_wrap .cardlist .card_info .card_detail dd.cardtext_wrap .cardtext p.text {
          line-height: 1.2em; }
        body.textonly_mode .recipe_wrap .cardlist .card_info .card_detail dd.cardtext_wrap .cardtext p .card_icon {
          height: 12px;
          margin-right: 2px; }
      body.textonly_mode .recipe_wrap .cardlist .card_info .card_detail dd.cardtext_wrap .subtext {
        font-size: 10px;
        padding: 1px;
        line-height: 1.2em; } }
body.textonly_mode header.fixed {
  display: none; }
body.textonly_mode .card_info {
  position: relative; }
  body.textonly_mode .card_info > dt p.card_number {
    font-size: 10px !important; }
  body.textonly_mode .card_info > dd dl.card_detail dt.card_image {
    display: none; }
  body.textonly_mode .card_info > dd dl.card_detail dd.samecard,
  body.textonly_mode .card_info > dd dl.card_detail dd.icon,
  body.textonly_mode .card_info > dd dl.card_detail dd.change_image_wrap,
  body.textonly_mode .card_info > dd dl.card_detail dd.cost,
  body.textonly_mode .card_info > dd dl.card_detail dd.power,
  body.textonly_mode .card_info > dd dl.card_detail dd.rare,
  body.textonly_mode .card_info > dd dl.card_detail dd.type,
  body.textonly_mode .card_info > dd dl.card_detail dd.race,
  body.textonly_mode .card_info > dd dl.card_detail dd.bikou,
  body.textonly_mode .card_info > dd dl.card_detail dd.illust,
  body.textonly_mode .card_info > dd dl.card_detail dd.cardtext_wrap > span,
  body.textonly_mode .card_info > dd dl.card_detail dd.recorded,
  body.textonly_mode .card_info > dd dl.card_detail dd.flavor {
    display: none; }
@media screen and (min-width: calc(1280px + 1px)) {
  body .smponly {
    display: none !important; } }
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .smponly {
    display: none !important; } }
@media screen and (max-width: 640px) {
  body .pctbonly {
    display: none !important; } }
@media screen and (max-width: 640px) {
  body .pctbonly_noimportant {
    display: none; } }
body .debug_info {
  display: block;
  padding: 20px;
  line-height: 1.5em;
  background: #fcc;
  margin-bottom: 5px; }
  body .debug_info p {
    line-height: 1.5em;
    font-size: 16px; }
body span.caution {
  font-weight: bold;
  color: #f00; }
body strong.kw_text,
body strong.kw_ability {
  position: relative;
  z-index: 0; }
body strong.kw_text::before,
body strong.kw_ability::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* テキストの背面に配置 */
  left: 0;
  /* 左端から */
  right: 0;
  /* 右端まで */
  /* 下半分だけ覆う高さを指定。
         行の高さやフォントに合わせて調整してね */
  bottom: 0;
  height: 50%;
  /* 大体テキストの下半分 */
  /* お好みで、わずかに透過させるなどもできる:
         opacity: 0.8; */ }
body strong.kw_text::before {
  background-color: rgba(216, 74, 136, 0.8);
  /* 蛍光ペンっぽい色に変更してね */ }
body strong.kw_ability::before {
  background-color: rgba(74, 136, 216, 0.5);
  /* 蛍光ペンっぽい色に変更してね */ }
body span.rule_caution {
  display: block;
  font-size: 10px;
  line-height: 1.3em; }
body .kw_popup {
  background: #fff;
  border: 1px solid #999;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  min-width: 260px;
  overflow: hidden;
  position: absolute;
  z-index: 10001; }
  body .kw_popup p.title {
    font-weight: bold;
    text-decoration: none;
    padding: 10px 12px;
    background: #f6f6f6;
    border-bottom: 1px solid #ddd; }
  body .kw_popup .kw_tabs {
    display: flex;
    background: #fafafa;
    border-bottom: 1px solid #ddd; }
  body .kw_popup .kw_tab {
    flex: 1;
    padding: 6px 8px;
    border: none;
    background: transparent;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent; }
    body .kw_popup .kw_tab.is-active {
      background: #fff;
      color: var(--main_color);
      border-bottom-color: var(--main_color); }
  body .kw_popup .kw_body {
    display: none;
    padding: 8px 12px 10px;
    max-height: 240px;
    overflow: auto;
    line-height: 1.5em; }
    body .kw_popup .kw_body.is-active {
      display: block; }
  body .kw_popup p.detail {
    line-height: 1.5em;
    margin-bottom: 6px; }
    body .kw_popup p.detail:last-of-type {
      margin-bottom: 0; }
body .seriescheck_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px; }
  body .seriescheck_table th,
  body .seriescheck_table td {
    border: 1px solid #d0d0d0;
    padding: 6px 8px;
    text-align: left;
    line-height: 1.4em; }
  body .seriescheck_table th {
    background: #f0f0f0;
    font-weight: bold; }
  body .seriescheck_table .seriescheck_alert {
    color: #d00;
    font-weight: bold; }
    body .seriescheck_table .seriescheck_alert a {
      color: inherit;
      font-weight: inherit; }
body .cardgacha_preview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap; }
  body .cardgacha_preview .cardgacha_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; }
    body .cardgacha_preview .cardgacha_item img {
      width: 200px;
      height: auto;
      display: block;
      border: 1px solid #d0d0d0;
      background: #fff; }
    body .cardgacha_preview .cardgacha_item .size {
      font-size: 12px;
      color: #666; }
body .no_entry_card {
  padding: 5px;
  border-radius: 5px;
  display: block;
  text-decoration: none !important;
  font-size: 1em !important;
  background: #f00;
  color: #fff;
  line-height: 1.5em; }
body .consider,
body .holo {
  background: none !important; }
  body .consider a,
  body .holo a {
    display: block;
    border: 2px solid var(--main_color);
    width: 50px;
    height: 50px;
    line-height: 47px;
    padding: 0 !important;
    text-align: center;
    border-radius: 50%; }
  body .consider.already a,
  body .holo.already a {
    border: 2px solid var(--main_color) !important;
    background: var(--main_bg) !important;
    color: var(--main_color) !important;
    font-weight: bold; }
body .card_name_list {
  display: flex;
  flex-wrap: wrap; }
  body .card_name_list li {
    display: block;
    width: 25%;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0; }
body.hidecontent header.fixed {
  position: relative; }
body.hidecontent > div.main_wrap {
  display: none; }
body h2 {
  width: 100%;
  padding: 15px;
  background: #f0f0f0; }
  body h2.em {
    padding: 20px 25px;
    font-size: 16px;
    margin-bottom: 10px;
    border-left: 8px solid --main_color;
    border-bottom: 2px solid --main_color; }
  body h2.space-top {
    margin-top: 20px; }
  body h2.pickup {
    color: #fff;
    background: #606060; }
  body h2.caution {
    color: #f00;
    font-weight: bold; }
  body h2 span {
    font-size: inherit;
    font-weight: inherit; }
body h3 {
  font-weight: bold;
  margin: 10px 0; }
body span.color_icon {
  display: inline-block;
  margin-right: 3px;
  font-size: inherit;
  width: 1em;
  height: 1em;
  border-radius: 50%; }
  body span.color_icon.color_1 {
    background: var(--colorpie_red); }
  body span.color_icon.color_2 {
    background: var(--colorpie_blue); }
  body span.color_icon.color_3 {
    background: var(--colorpie_white); }
  body span.color_icon.color_4 {
    background: var(--colorpie_black); }
  body span.color_icon.color_5 {
    background: var(--colorpie_green); }
  body span.color_icon.color_6 {
    background: var(--colorpie_none); }
body input[type="submit"].button,
body button.button,
body a.button {
  background: var(--main_color);
  color: var(--main_bg);
  border: 1px solid var(--main_border);
  text-decoration: none;
  padding: 8px 10px;
  display: inline-block; }
body input[type="submit"].danger,
body button.danger,
body a.danger {
  background: var(--main_bg4) !important;
  color: var(--main_color4) !important;
  border: 1px solid var(--main_border4);
  font-weight: bold;
  text-decoration: none;
  padding: 8px 10px;
  display: inline-block; }
body input[type="submit"].tag,
body button.tag,
body a.tag {
  background: var(--main_color);
  color: var(--main_bg);
  border: 1px solid var(--main_border);
  text-decoration: none;
  padding: 5px 6px;
  font-size: 12px !important;
  display: inline-block;
  margin-right: 10px; }
body input[type="submit"]:hover,
body button:hover,
body a:hover {
  opacity: 0.7; }
body header div.smp_menu_icon {
  position: fixed;
  right: 10px;
  top: 10px; }
  @media screen and (min-width: calc(1280px + 1px)) {
    body header div.smp_menu_icon {
      display: none; } }
  @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
    body header div.smp_menu_icon {
      display: block; } }
  @media screen and (max-width: 640px) {
    body header div.smp_menu_icon {
      display: block; } }
  body header div.smp_menu_icon p {
    display: block;
    width: 32px;
    height: 32px; }
    body header div.smp_menu_icon p a {
      line-height: 1em;
      display: block;
      width: 100%;
      height: 100%;
      padding: 8px;
      border-radius: 3px;
      border: 1px solid var(--main_color);
      text-align: center; }
      body header div.smp_menu_icon p a i {
        font-size: 15px;
        color: var(--main_color); }
body header.fixed ul {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99; }
body header h1 {
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  background: #fff; }
  @media screen and (max-width: 640px) {
    body header h1 {
      width: calc(100% - 30px); } }
  body header h1 a {
    font-size: inherit;
    font-weight: inherit; }
    body header h1 a img {
      height: 30px; }
      @media screen and (max-width: 640px) {
        body header h1 a img {
          height: 20px; } }
body header .menu {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
  background: #fff; }
  body header .menu > li {
    display: block; }
    @media screen and (min-width: calc(1280px + 1px)) {
      body header .menu > li.pc {
        display: block; } }
    @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
      body header .menu > li.pc {
        display: none; } }
    @media screen and (max-width: 640px) {
      body header .menu > li.pc {
        display: none; } }
    @media screen and (min-width: calc(1280px + 1px)) {
      body header .menu > li.sp {
        display: none; } }
    @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
      body header .menu > li.sp {
        display: none; }
        body header .menu > li.sp.showmenu {
          display: block; }
          body header .menu > li.sp.showmenu.title.fullsize a {
            padding: 10px 0 10px 15px;
            font-size: 14px;
            background: var(--main_bg);
            color: var(--main_color);
            text-align: left; } }
    @media screen and (max-width: 640px) {
      body header .menu > li.sp {
        display: none; }
        body header .menu > li.sp.showmenu {
          display: block; }
          body header .menu > li.sp.showmenu.title.fullsize a {
            padding: 10px 0 10px 15px;
            font-size: 14px;
            background: var(--main_bg);
            color: var(--main_color);
            text-align: left; } }
    body header .menu > li.title, body header .menu > li.fullsize {
      flex: 1;
      border-right: 1px solid var(--main_border);
      border-bottom: 1px solid var(--main_border); }
      body header .menu > li.title.second.break, body header .menu > li.fullsize.second.break {
        flex-basis: 100%;
        height: 0;
        border-right: none;
        border-bottom: none; }
      body header .menu > li.title.second > a, body header .menu > li.fullsize.second > a {
        padding: 10px 0;
        font-size: 12px; }
      body header .menu > li.title.fullsize, body header .menu > li.fullsize.fullsize {
        border-bottom: 1px solid var(--main_border);
        flex: auto;
        width: 100%;
        border-right: none; }
        body header .menu > li.title.fullsize.last-item, body header .menu > li.fullsize.fullsize.last-item {
          border-bottom: 1px solid var(--main_border); }
      body header .menu > li.title a, body header .menu > li.fullsize a {
        color: #333;
        text-decoration: none;
        display: block;
        padding: 20px 0;
        background: var(--main_color);
        color: var(--main_bg);
        font-size: 16px;
        text-align: center; }
        @media screen and (max-width: 640px) {
          body header .menu > li.title a, body header .menu > li.fullsize a {
            padding: 15px 0; } }
    body header .menu > li.submenu_wrap {
      display: block;
      width: 100%; }
      body header .menu > li.submenu_wrap.title {
        display: none;
        width: 100%;
        padding: 10px;
        background: #f0c0c0;
        flex: auto; }
        body header .menu > li.submenu_wrap.title.show {
          display: block; }
      body header .menu > li.submenu_wrap > .submenu {
        display: none;
        background: #fff;
        flex-wrap: wrap;
        width: 100%;
        overflow: scroll; }
        body header .menu > li.submenu_wrap > .submenu.show {
          display: flex; }
        @media screen and (max-width: 640px) {
          body header .menu > li.submenu_wrap > .submenu.fullsize > li {
            width: 100%; } }
        body header .menu > li.submenu_wrap > .submenu > li {
          display: block; }
          @media screen and (min-width: calc(1280px + 1px)) {
            body header .menu > li.submenu_wrap > .submenu > li {
              width: 25%; } }
          @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
            body header .menu > li.submenu_wrap > .submenu > li {
              width: 33%; } }
          @media screen and (max-width: 640px) {
            body header .menu > li.submenu_wrap > .submenu > li {
              width: 50%; } }
          body header .menu > li.submenu_wrap > .submenu > li.subtitle {
            padding: 10px 10px;
            width: 100%;
            background: #f0f0f0; }
          body header .menu > li.submenu_wrap > .submenu > li a {
            display: block;
            text-decoration: none;
            padding: 10px 10px; }
            body header .menu > li.submenu_wrap > .submenu > li a:hover {
              background: #f0f0f0; }
body textarea {
  width: 100%;
  height: 6rem; }
body .tags {
  margin-top: 5px; }
body .button_area {
  display: block;
  max-width: 1024px;
  margin: 20px auto; }
  body .button_area ul {
    display: flex;
    gap: 10px;
    margin: 0 10px;
    flex-wrap: wrap; }
    @media screen and (max-width: 640px) {
      body .button_area ul {
        justify-content: center; } }
    body .button_area ul li {
      display: block; }
      @media screen and (max-width: 640px) {
        body .button_area ul li {
          width: 45%; }
          body .button_area ul li.fullsize {
            width: calc(90% + 10px); } }
      body .button_area ul li.title {
        font-weight: bold;
        width: 100%; }
      body .button_area ul li.recipe_button {
        display: none; }
        body .button_area ul li.recipe_button.showmenu {
          display: block; }
      @media screen and (max-width: 640px) {
        body .button_area ul li.operation_button.showmenu {
          display: block; } }
      body .button_area ul li a {
        display: block;
        padding: 10px 30px;
        border-radius: 5px;
        background: var(--main_color);
        color: var(--main_bg);
        text-align: center; }
        @media screen and (max-width: 640px) {
          body .button_area ul li a {
            padding: 10px; } }
        body .button_area ul li a:hover {
          opacity: 0.7; }
        body .button_area ul li a.x_share_disabled, body .button_area ul li a.x_share_disabled:hover {
          background: #d0d0d0 !important;
          border-color: #a0a5ac;
          color: #eceef1;
          cursor: not-allowed;
          opacity: 1;
          pointer-events: none; }
body .deckmenu_fab_wrap,
body .deckmenu_overlay {
  display: none; }
body .deckmenu_icon, body .deckmenu_img {
  display: none; }
@media screen and (max-width: calc(1280px)) {
  body.deckmenu_open {
    overflow: hidden; }
  body .deckmenu_fab_wrap {
    display: block;
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 1100; }
    body .deckmenu_fab_wrap .deckmenu_fab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #111;
      color: #fff;
      border: 2px solid #fff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
      text-decoration: none;
      line-height: 1.1;
      padding: 6px;
      gap: 4px; }
      body .deckmenu_fab_wrap .deckmenu_fab i {
        font-size: 20px;
        color: inherit; }
      body .deckmenu_fab_wrap .deckmenu_fab span {
        text-align: center;
        font-size: 8px;
        font-weight: bold; }
  body .deckmenu_overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto; }
    body .deckmenu_overlay.is_open {
      display: block; }
    body .deckmenu_overlay .deckmenu_overlay_inner {
      min-height: 100vh;
      padding: 14px 12px 80px;
      position: relative; }
    body .deckmenu_overlay .deckmenu_close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      color: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
      body .deckmenu_overlay .deckmenu_close i {
        font-size: 24px;
        color: inherit; }
    body .deckmenu_overlay .deckmenu_panel_grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      align-items: start; }
      body .deckmenu_overlay .deckmenu_panel_grid > h2 {
        color: #fff;
        margin-top: 60px;
        background: var(--main_color);
        grid-column: 1 / -1; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area,
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul {
        display: contents; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li {
        display: block;
        width: auto;
        margin: 0; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li a:hover {
        opacity: 1;
        background: var(--main_color);
        color: #fff; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li.recipe_button {
        display: none; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li.recipe_button.showmenu {
        display: block; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li.title {
        grid-column: 1 / -1;
        color: #fff;
        font-weight: bold;
        padding: 4px 2px 0;
        font-size: 13px; }
      body .deckmenu_overlay .deckmenu_panel_grid .button_area ul li.fullsize {
        grid-column: auto;
        width: auto; }
      body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button {
        min-height: 86px;
        border-radius: 12px;
        background: #fff;
        color: #222;
        border: 1px solid #d8d8d8;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
        padding: 10px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 12px;
        text-align: center;
        line-height: 1.3; }
        body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button:has(img) {
          flex-direction: row;
          justify-content: left; }
        body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button img {
          display: none; }
        body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button .deckmenu_img {
          display: inline-block;
          height: 65px;
          margin-right: 10px; }
        body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button i {
          display: none; }
        body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button .deckmenu_icon {
          display: block;
          font-size: 40px;
          color: inherit;
          margin: 0; }
      body .deckmenu_overlay .deckmenu_panel_grid .send_wrap,
      body .deckmenu_overlay .deckmenu_panel_grid .send_wrap_show,
      body .deckmenu_overlay .deckmenu_panel_grid .send_wrap_hide {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        margin: 0; }
      body .deckmenu_overlay .deckmenu_panel_grid .send_wrap {
        border-right: 2px solid #d0d0d0;
        border-bottom: 2px solid #d0d0d0; }
      body .deckmenu_overlay .deckmenu_panel_grid .deck_detail_title {
        grid-column: 1 / -1;
        color: #fff; } }
body .normaltext {
  padding: 15px; }
  body .normaltext p {
    line-height: 1.5em; }
    body .normaltext p.subtitle {
      text-decoration: underline;
      margin-top: 5px; }
  body .normaltext input[type="text"],
  body .normaltext textarea {
    font-size: 16px;
    padding: 3px;
    line-height: 1.2em; }
body .urllist {
  border-top: 1px solid #d0d0d0; }
  body .urllist p {
    border-bottom: 1px solid #d0d0d0; }
    body .urllist p:hover a, body .urllist p.selected a {
      background: #d0d0d0;
      opacity: 0.8; }
    body .urllist p a {
      display: block;
      padding: 5px 10px; }
body .update_detail.show_all {
  display: block !important; }
body .update_detail:nth-of-type(n + 6) {
  display: none; }
body .update_detail p.caution {
  color: #f00;
  font-weight: bold; }
body .update_detail_show_item {
  margin-top: 10px; }
  body .update_detail_show_item p a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: var(--main_color);
    color: var(--main_bg); }
body .panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin: 10px; }
  body .panel li {
    display: block;
    text-align: center;
    border-radius: 3px;
    flex: 1; }
    body .panel li.colorpie_red {
      background: var(--colorpie_red); }
    body .panel li.colorpie_blue {
      background: var(--colorpie_blue); }
    body .panel li.colorpie_white {
      background: var(--colorpie_white); }
    body .panel li.colorpie_black {
      background: var(--colorpie_black); }
    body .panel li.colorpie_green {
      background: var(--colorpie_green); }
    body .panel li.colorpie_none {
      background: var(--colorpie_none); }
    body .panel li a {
      display: block;
      color: var(--main_bg);
      text-decoration: none;
      font-size: 16px;
      padding: 30px 10px; }
body .spacer {
  display: none; }
body .card_icon {
  display: inline-block;
  height: 15px;
  margin-right: 5px;
  margin-bottom: -2px; }
body div.deckinfo_wrap {
  display: block;
  max-width: 800px;
  width: 90%;
  margin: 20px auto;
  background: #fff;
  border-top: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  border-right: 4px solid #d0d0d0;
  border-bottom: 4px solid #d0d0d0; }
  body div.deckinfo_wrap div.deckinfo {
    padding: 20px; }
    body div.deckinfo_wrap div.deckinfo dl {
      display: flex; }
      body div.deckinfo_wrap div.deckinfo dl dt,
      body div.deckinfo_wrap div.deckinfo dl dd {
        display: block;
        padding: 10px; }
      body div.deckinfo_wrap div.deckinfo dl dt {
        width: 30%; }
      body div.deckinfo_wrap div.deckinfo dl dd {
        width: 70%; }
body div.tablw_wrap {
  width: 100%; }
  body div.tablw_wrap table {
    width: 100%;
    border-left: 1px solid #d0d0d0;
    border-top: 1px solid #d0d0d0;
    border-spacing: unset; }
    body div.tablw_wrap table.kwtable tr th.kwtable_1,
    body div.tablw_wrap table.kwtable tr td.kwtable_1 {
      width: 50px;
      text-align: center; }
    body div.tablw_wrap table.kwtable tr th.kwtable_2,
    body div.tablw_wrap table.kwtable tr td.kwtable_2 {
      line-height: 1.5em;
      width: 200px; }
      @media screen and (max-width: 640px) {
        body div.tablw_wrap table.kwtable tr th.kwtable_2,
        body div.tablw_wrap table.kwtable tr td.kwtable_2 {
          width: 100px; } }
    body div.tablw_wrap table.kwtable tr th.kwtable_3 p,
    body div.tablw_wrap table.kwtable tr td.kwtable_3 p {
      line-height: 1.5em; }
    body div.tablw_wrap table tr.em th,
    body div.tablw_wrap table tr.em td {
      padding: 10px 15px;
      font-size: 14px;
      background: #ff5b5b;
      color: #fff; }
    body div.tablw_wrap table tr:nth-of-type(2n + 2) td {
      background: #f0f0f0; }
    body div.tablw_wrap table tr th,
    body div.tablw_wrap table tr td {
      padding: 5px 10px;
      border-right: 1px solid #d0d0d0;
      border-bottom: 1px solid #d0d0d0; }
      body div.tablw_wrap table tr th.center,
      body div.tablw_wrap table tr td.center {
        text-align: center; }
body div.searchquery_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px; }
  body div.searchquery_wrap p {
    display: block;
    border-radius: 1em;
    background: var(--main_color);
    color: var(--main_bg);
    padding: 5px 10px;
    line-height: 1.5em; }
  body div.searchquery_wrap p a {
    display: block;
    border-radius: 1em;
    background: var(--main_color);
    color: var(--main_bg);
    padding: 5px 10px;
    line-height: 1.5em;
    text-decoration: none; }
body .tag_search_form {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto; }
  body .tag_search_form .tag_search,
  body .tag_search_form .kw_search {
    display: flex;
    margin-bottom: 10px; }
    body .tag_search_form .tag_search .label,
    body .tag_search_form .kw_search .label {
      font-size: 15px;
      padding: 10px;
      background: var(--main_color);
      color: #fff;
      border-radius: 5px 0 0 5px;
      line-height: 1em; }
      @media screen and (max-width: 640px) {
        body .tag_search_form .tag_search .label,
        body .tag_search_form .kw_search .label {
          margin-left: 10px;
          font-size: 12px;
          padding: 8px; } }
    body .tag_search_form .tag_search .text input,
    body .tag_search_form .kw_search .text input {
      width: 300px;
      font-size: 16px;
      padding: 8px;
      border: none;
      border-radius: 0;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000; }
      @media screen and (max-width: 640px) {
        body .tag_search_form .tag_search .text input,
        body .tag_search_form .kw_search .text input {
          max-width: 40vw;
          padding: 3px; } }
    body .tag_search_form .tag_search .button input,
    body .tag_search_form .kw_search .button input {
      border-radius: 0 5px 5px 0;
      padding: 10px 15px;
      font-size: 16px;
      color: #fff;
      background: var(--main_color);
      border: none;
      outline: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      @media screen and (max-width: 640px) {
        body .tag_search_form .tag_search .button input,
        body .tag_search_form .kw_search .button input {
          padding: 8px 10px;
          font-size: 12px; } }
    body .tag_search_form .tag_search .reset,
    body .tag_search_form .kw_search .reset {
      margin-left: 5px; }
      body .tag_search_form .tag_search .reset a,
      body .tag_search_form .kw_search .reset a {
        display: inline-block;
        padding: 10px 15px;
        font-size: 16px; }
        @media screen and (max-width: 640px) {
          body .tag_search_form .tag_search .reset a,
          body .tag_search_form .kw_search .reset a {
            padding: 7px 10px;
            font-size: 12px; } }
body .popular_tags {
  margin-top: 10px;
  margin-left: 20px; }
  body .popular_tags span {
    display: inline_block;
    margin-right: 10px;
    margin-left: -10px;
    padding: 8px 8px 8px 0;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: underline; }
  body .popular_tags a {
    margin-bottom: 5px; }
body div.decklist_wrap .decklists {
  width: 100%;
  margin: 20px auto;
  border-top: 1px solid #c0c0c0; }
  body div.decklist_wrap .decklists a {
    display: flex;
    text-decoration: none;
    align-items: center;
    border-bottom: 1px solid #c0c0c0;
    position: relative; }
    body div.decklist_wrap .decklists a .list-favorite-star {
      position: absolute;
      right: 34px;
      top: 8px;
      font-size: 20px;
      line-height: 1em;
      color: #999;
      z-index: 2;
      cursor: pointer;
      user-select: none; }
      body div.decklist_wrap .decklists a .list-favorite-star.is-favorite {
        color: #f5c400; }
    body div.decklist_wrap .decklists a > p.image {
      margin: 0 5px; }
      body div.decklist_wrap .decklists a > p.image img {
        width: 80px; }
    body div.decklist_wrap .decklists a > p.arrow {
      padding: 0 5px; }
      body div.decklist_wrap .decklists a > p.arrow i {
        font-size: 16px; }
    body div.decklist_wrap .decklists a .deck {
      flex: 1;
      display: block;
      margin: 15px 0; }
      body div.decklist_wrap .decklists a .deck li {
        display: flex;
        flex-wrap: wrap;
        align-items: center; }
        @media screen and (max-width: 640px) {
          body div.decklist_wrap .decklists a .deck li {
            padding: 0 10px; } }
        body div.decklist_wrap .decklists a .deck li span {
          padding: 5px 10px;
          line-height: 1em;
          display: block;
          text-align: center;
          background: #ddd;
          font-size: 10px; }
          body div.decklist_wrap .decklists a .deck li span.tag {
            background: var(--main_color);
            color: var(--main_bg); }
          body div.decklist_wrap .decklists a .deck li span.publish {
            background: #2c7cc9;
            color: #fff; }
          body div.decklist_wrap .decklists a .deck li span.unpublish {
            background: #b98422;
            color: #fff; }
        body div.decklist_wrap .decklists a .deck li.deck_time {
          display: block; }
          body div.decklist_wrap .decklists a .deck li.deck_time div {
            display: flex;
            gap: 0 5px;
            align-items: center; }
            body div.decklist_wrap .decklists a .deck li.deck_time div.publish p, body div.decklist_wrap .decklists a .deck li.deck_time div.owner p {
              flex: 9;
              margin-right: 25px; }
            body div.decklist_wrap .decklists a .deck li.deck_time div.times {
              margin-top: 5px; }
            body div.decklist_wrap .decklists a .deck li.deck_time div p {
              line-height: 1.5em; }
          @media screen and (max-width: 640px) {
            body div.decklist_wrap .decklists a .deck li.deck_time span {
              flex: 1; } }
          @media screen and (max-width: 640px) {
            body div.decklist_wrap .decklists a .deck li.deck_time p {
              flex: 4; } }
        body div.decklist_wrap .decklists a .deck li.deck_info {
          display: block;
          margin-top: 10px; }
          @media screen and (max-width: 640px) {
            body div.decklist_wrap .decklists a .deck li.deck_info {
              flex: 3; } }
          body div.decklist_wrap .decklists a .deck li.deck_info .times {
            width: 100%; }
          body div.decklist_wrap .decklists a .deck li.deck_info p {
            font-size: 18px; }
        body div.decklist_wrap .decklists a .deck li.deck_tag {
          gap: 5px;
          margin-top: 20px; }
body div.decklist_wrap .decklist {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto; }
  body div.decklist_wrap .decklist table {
    width: 100%; }
    body div.decklist_wrap .decklist table tbody tr:nth-of-type(2n + 1) th,
    body div.decklist_wrap .decklist table tbody tr:nth-of-type(2n + 1) td {
      background: #fff; }
    body div.decklist_wrap .decklist table tbody tr:nth-of-type(2n + 2) th,
    body div.decklist_wrap .decklist table tbody tr:nth-of-type(2n + 2) td {
      background: #e9e9e9; }
    body div.decklist_wrap .decklist table tr th,
    body div.decklist_wrap .decklist table tr td {
      padding: 10px 5px; }
      body div.decklist_wrap .decklist table tr th .menu,
      body div.decklist_wrap .decklist table tr td .menu {
        margin-top: 5px; }
        @media screen and (max-width: 640px) {
          body div.decklist_wrap .decklist table tr th .menu,
          body div.decklist_wrap .decklist table tr td .menu {
            display: block; }
            body div.decklist_wrap .decklist table tr th .menu a,
            body div.decklist_wrap .decklist table tr td .menu a {
              display: block;
              margin-top: 5px;
              margin-right: 0; } }
        body div.decklist_wrap .decklist table tr th .menu a,
        body div.decklist_wrap .decklist table tr td .menu a {
          margin-right: 10px;
          text-decoration: underline; }
      body div.decklist_wrap .decklist table tr th a,
      body div.decklist_wrap .decklist table tr td a {
        text-decoration: none; }
        body div.decklist_wrap .decklist table tr th a.tag, body div.decklist_wrap .decklist table tr th a.button,
        body div.decklist_wrap .decklist table tr td a.tag,
        body div.decklist_wrap .decklist table tr td a.button {
          background: var(--main_color);
          color: var(--main_bg); }
      body div.decklist_wrap .decklist table tr th.r1, body div.decklist_wrap .decklist table tr th.r2,
      body div.decklist_wrap .decklist table tr td.r1,
      body div.decklist_wrap .decklist table tr td.r2 {
        width: 80px;
        text-align: center;
        line-height: 1.5em; }
      body div.decklist_wrap .decklist table tr th.r3,
      body div.decklist_wrap .decklist table tr td.r3 {
        line-height: 1.5em; }
        body div.decklist_wrap .decklist table tr th.r3 > a,
        body div.decklist_wrap .decklist table tr td.r3 > a {
          font-size: 16px; }
      body div.decklist_wrap .decklist table tr th.r4,
      body div.decklist_wrap .decklist table tr td.r4 {
        width: 60px;
        text-align: center; }
      body div.decklist_wrap .decklist table tr th.r5,
      body div.decklist_wrap .decklist table tr td.r5 {
        width: 160px;
        text-align: center; }
        @media screen and (max-width: 640px) {
          body div.decklist_wrap .decklist table tr th.r5,
          body div.decklist_wrap .decklist table tr td.r5 {
            width: 80px; } }
      body div.decklist_wrap .decklist table tr th div.table_button,
      body div.decklist_wrap .decklist table tr td div.table_button {
        display: flex;
        gap: 5px 5px;
        justify-content: center;
        flex-wrap: wrap; }
        @media screen and (max-width: 640px) {
          body div.decklist_wrap .decklist table tr th div.table_button a,
          body div.decklist_wrap .decklist table tr td div.table_button a {
            width: 100%; } }
        body div.decklist_wrap .decklist table tr th div.table_button a.delete,
        body div.decklist_wrap .decklist table tr td div.table_button a.delete {
          background: #f00;
          color: #fff; }
    body div.decklist_wrap .decklist table tr th {
      background: var(--main_color);
      color: var(--main_bg); }
      body div.decklist_wrap .decklist table tr th a {
        color: inherit; }
body div.recipe_wrap .recipe:first-of-type h2 p.link_before a {
  display: none; }
body div.recipe_wrap .recipe:first-of-type h2 p.link_after {
  margin-left: auto; }
body div.recipe_wrap .recipe:last-of-type h2 p.link_after a {
  display: none; }
body div.recipe_wrap .recipe h2 {
  display: flex;
  align-items: center; }
  body div.recipe_wrap .recipe h2 p {
    width: 60px; }
    body div.recipe_wrap .recipe h2 p.link_before {
      margin-left: auto; }
    body div.recipe_wrap .recipe h2 p a {
      display: block;
      margin-left: auto;
      padding: 5px 20px;
      text-decoration: none;
      text-align: center;
      border-radius: 20px;
      line-height: 1em;
      border: 3px solid #fff;
      background: var(--main_color);
      color: var(--main_bg); }
body div.deck_stat_wrap .deck_stat {
  margin: 20px auto;
  max-width: 1024px; }
  @media screen and (min-width: calc(1280px + 1px)) {
    body div.deck_stat_wrap .deck_stat {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr 1fr 1fr; } }
  @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
    body div.deck_stat_wrap .deck_stat {
      display: grid;
      gap: 10px;
      padding: 0 10px;
      grid-template-columns: 1fr 1fr; } }
  @media screen and (max-width: 640px) {
    body div.deck_stat_wrap .deck_stat {
      display: block;
      padding: 0 10px; }
      body div.deck_stat_wrap .deck_stat h3 {
        margin-top: 20px; } }
  body div.deck_stat_wrap .deck_stat.hide {
    display: none; }
  body div.deck_stat_wrap .deck_stat .stat_item {
    flex: 1; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color dl {
      display: flex;
      margin-bottom: 5px;
      padding-bottom: 5px;
      border-bottom: 1px solid #909090; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_color dl dt {
        flex: 1;
        padding: 10px 0;
        text-align: center; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_color dl dd {
        flex: 1;
        padding: 10px 0;
        text-align: center; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_1 dt {
      background: var(--colorpie_red);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_2 dt {
      background: var(--colorpie_blue);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_3 dt {
      background: var(--colorpie_white);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_4 dt {
      background: var(--colorpie_black);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_5 dt {
      background: var(--colorpie_green);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_color .color_6 dt {
      background: var(--colorpie_none);
      color: #fff; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl {
      display: flex; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dt {
        flex: 1;
        padding: 10px 0;
        text-align: center; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd {
        flex: 3;
        padding: 10px 0;
        display: flex; }
        body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd span,
        body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd em {
          text-indent: 0.5em; }
          body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd span.texthide,
          body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd em.texthide {
            text-indent: -9999px; }
        body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd span {
          display: block;
          background: var(--main_color);
          color: #fff;
          padding: 5px 0; }
        body div.deck_stat_wrap .deck_stat .stat_item.stat_cost dl dd em {
          display: block;
          background: #fff;
          padding: 5px 0;
          font-style: normal; }
    body div.deck_stat_wrap .deck_stat .stat_item.stat_cardtype dl, body div.deck_stat_wrap .deck_stat .stat_item.stat_cardability dl {
      display: flex;
      gap: 10px;
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #909090; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cardtype dl dt,
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cardtype dl dd, body div.deck_stat_wrap .deck_stat .stat_item.stat_cardability dl dt,
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cardability dl dd {
        padding: 10px 0; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cardtype dl dt, body div.deck_stat_wrap .deck_stat .stat_item.stat_cardability dl dt {
        flex: 1;
        text-align: right; }
      body div.deck_stat_wrap .deck_stat .stat_item.stat_cardtype dl dd, body div.deck_stat_wrap .deck_stat .stat_item.stat_cardability dl dd {
        flex: 1;
        text-align: left; }
body div.deckcreate_wrap {
  display: none; }
  body div.deckcreate_wrap:has(.card_info) {
    display: block; }
  body div.deckcreate_wrap:has(.smallcard_info) {
    display: block; }
  body div.deckcreate_wrap p.card_info {
    padding: 5px 10px; }
body div.recipe_error_wrap .recipe_error {
  margin: 20px; }
  body div.recipe_error_wrap .recipe_error.hide {
    display: none; }
  body div.recipe_error_wrap .recipe_error p {
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 5px;
    line-height: 1.5em; }
    body div.recipe_error_wrap .recipe_error p:first-of-type {
      margin-top: 0; }
    body div.recipe_error_wrap .recipe_error p.danger {
      font-weight: bold;
      color: #eb4540;
      background: #fdeeee;
      border: 1px solid var(--danger_color); }
    body div.recipe_error_wrap .recipe_error p.caution {
      background: #eb4540;
      border: 1px solid #b98422; }
    body div.recipe_error_wrap .recipe_error p.info {
      background: #e8f3fa;
      border: 1px solid #2c7cc9; }
    body div.recipe_error_wrap .recipe_error p.success {
      background: #e9fbec;
      border: 1px solid #409f3a; }
    body div.recipe_error_wrap .recipe_error p span {
      display: inline-block;
      margin-right: 10px; }
body div.smallcardlist_wrap div.smallcardlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding: 20px;
  gap: 20px 20px; }
  body div.smallcardlist_wrap div.smallcardlist.consider_list dl.smallcard_info dd.cardswap {
    display: none; }
  body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
    display: block;
    position: relative; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info:first-of-type > dd.cardswap.before {
      display: none; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info:last-of-type > dd.cardswap.after {
      display: none; }
    @media screen and (min-width: calc(1280px + 1px)) {
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
        max-width: calc(100% / 3 - 40px / 3); } }
    @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
        max-width: calc(100% / 3 - 40px / 3); } }
    @media screen and (max-width: 640px) {
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
        max-width: calc(100% / 2 - 20px / 2); } }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info:has(.cnt.hide) dd.holo {
      display: none; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dt {
      display: block; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dt p.card_number {
        position: absolute;
        left: 10px;
        top: 10px; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dt p.blank_card {
        max-width: 260px;
        height: 363px; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dt p img {
        display: block;
        width: 260px;
        max-width: 100%; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cnt {
      position: absolute;
      display: block;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.7);
      font-size: 24px;
      font-weight: bold;
      padding: 10px 0;
      margin: 0 auto;
      width: 60px;
      text-align: center; }
      @media screen and (max-width: 640px) {
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cnt {
          width: 50px; } }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cnt.hide {
        display: none; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button {
      position: absolute;
      display: block;
      bottom: 0;
      background: #fff; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.consider {
        left: 0;
        bottom: 45px; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.holo {
        right: 0;
        bottom: 45px; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.listcreate {
        left: 0;
        top: 98px;
        bottom: auto; }
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.listcreate a {
          min-width: 64px;
          line-height: 1.2em;
          font-size: 11px;
          padding: 8px 8px; }
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.listcreate.already a {
          border: 2px solid var(--main_color) !important;
          background: var(--main_bg) !important;
          color: var(--main_color) !important;
          font-weight: bold; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.add {
        left: 0; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.remove {
        right: 0; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.hide {
        display: none; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button a {
        display: block;
        padding: 10px 10px;
        background: var(--main_color);
        color: var(--main_bg);
        text-decoration: none; }
        @media screen and (max-width: 640px) {
          body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button a {
            padding: 15px; } }
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button a:hover {
          opacity: 0.7; }
    body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap {
      position: absolute;
      display: block;
      top: 150px;
      background: #fff; }
      @media screen and (max-width: 640px) {
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap {
          top: 90px; } }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap.before {
        left: 0; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap.after {
        right: 0; }
      body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap a {
        display: block;
        padding: 10px 15px;
        background: var(--main_color);
        color: var(--main_bg);
        text-decoration: none; }
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap a i {
          font-size: 24px; }
        body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap a:hover {
          opacity: 0.7; }
body div.cardlist_wrap div.cardlist {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 10px 10px; }
  body div.cardlist_wrap div.cardlist dl.card_info {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #f0f0f0; }
    @media print {
      body div.cardlist_wrap div.cardlist dl.card_info {
        width: 100%; } }
    @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
      body div.cardlist_wrap div.cardlist dl.card_info {
        width: calc(33% - 10px); } }
    @media screen and (max-width: calc(2000px)) and (min-width: calc(1280px + 1px)) {
      body div.cardlist_wrap div.cardlist dl.card_info {
        width: calc(25% - 10px); } }
    @media screen and (min-width: calc(2000px + 1px)) {
      body div.cardlist_wrap div.cardlist dl.card_info {
        width: calc(1 / 6 * 100% - 10px); } }
    body div.cardlist_wrap div.cardlist dl.card_info:first-of-type > dd dl.card_detail dt.card_image .cardswap.before {
      display: none; }
    body div.cardlist_wrap div.cardlist dl.card_info:last-of-type > dd dl.card_detail dt.card_image .cardswap.after {
      display: none; }
    body div.cardlist_wrap div.cardlist dl.card_info > dt {
      width: 100%;
      margin-bottom: 5px; }
      body div.cardlist_wrap div.cardlist dl.card_info > dt .card_number {
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 3px; }
      body div.cardlist_wrap div.cardlist dl.card_info > dt .furi {
        font-size: 10px;
        margin-bottom: 3px; }
      body div.cardlist_wrap div.cardlist dl.card_info > dt .name {
        font-size: 16px;
        font-weight: bold; }
    body div.cardlist_wrap div.cardlist dl.card_info > dd span {
      font-size: 10px;
      text-decoration: underline;
      font-weight: bold;
      display: block;
      margin-bottom: 5px; }
    body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail {
      display: flex;
      flex-wrap: wrap; }
      body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image {
        position: relative;
        width: 100%;
        padding-right: 10px;
        margin-bottom: 5px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image img {
          display: block;
          margin: 0 auto;
          max-width: 100%;
          width: 260px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cnt {
          width: 80px;
          z-index: 1;
          text-align: center;
          position: absolute;
          right: 0;
          left: 0;
          bottom: 0;
          margin: 0 auto;
          background: rgba(255, 255, 255, 0.7);
          font-size: 24px;
          padding: 10px 25px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap {
          position: absolute;
          text-align: center;
          top: 150px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap.before {
            left: 0; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap.after {
            right: 0; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap a {
            display: block;
            padding: 10px 20px;
            background: var(--main_color);
            color: var(--main_bg);
            text-decoration: none; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap a i {
              font-size: 30px; }
            @media screen and (max-width: 640px) {
              body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap a {
                padding: 20px 30px; } }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cardswap a:hover {
              opacity: 0.7; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image:has(.deckcreate.cnt.hide) .holo {
          display: none; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate {
          position: absolute;
          text-align: center;
          bottom: 10px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.consider {
            left: 0;
            bottom: 60px; }
            @media screen and (max-width: 640px) {
              body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.consider {
                bottom: 80px; } }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.holo {
            right: 0;
            bottom: 60px; }
            @media screen and (max-width: 640px) {
              body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.holo {
                bottom: 80px; } }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.listcreate {
            left: 0;
            top: 98px;
            bottom: auto; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.listcreate a {
              min-width: 80px;
              line-height: 1.2em;
              padding: 8px 10px;
              font-size: 11px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.add {
            left: 0; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.remove {
            right: 0; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.hide {
            display: none; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate a {
            display: block;
            padding: 10px 20px;
            border: 2px solid --main_color;
            background: var(--main_color);
            color: var(--main_bg);
            text-decoration: none; }
            @media screen and (max-width: 640px) {
              body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate a {
                padding: 20px 30px; } }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate a:hover {
              opacity: 0.7; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate {
          position: absolute;
          text-align: center;
          left: 0;
          top: 98px;
          bottom: auto;
          z-index: 1; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate a {
            display: inline-block;
            padding: 8px 10px;
            border: 2px solid var(--main_color);
            background: var(--main_color);
            color: var(--main_bg);
            text-decoration: none;
            min-width: 76px;
            line-height: 1.2em;
            font-size: 11px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate.already a {
            border: 2px solid var(--main_color) !important;
            background: var(--main_bg) !important;
            color: var(--main_color) !important;
            font-weight: bold; }
      body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd {
        float: left; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.samecard {
          float: none;
          position: absolute;
          right: 0;
          top: 0; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.samecard a {
            text-decoration: none;
            background: var(--main_color);
            color: var(--main_bg);
            padding: 10px 15px;
            display: block; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.refcard {
          float: none;
          position: absolute;
          right: 0;
          top: 40px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.refcard a {
            text-decoration: none;
            background: var(--main_color);
            color: var(--main_bg);
            padding: 10px 15px;
            display: block; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.icon {
          width: 100%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.change_image_wrap {
          width: 100%;
          margin-bottom: 10px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.change_image_wrap.hide {
            display: none; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.change_image_wrap a.select:before {
            /* アイコン文字を指定 */
            content: "\f0da";
            /* Line Awesomeのフォントファミリーを指定 */
            font-family: "Line Awesome Free";
            display: inline-block;
            margin-right: 5px;
            width: 10px;
            height: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.rare {
          width: 25%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.type {
          width: 25%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.race {
          width: 50%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cost {
          width: 25%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.power {
          width: 25%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.life {
          width: 25%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.illust {
          width: 50%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.recorded {
          width: 100%;
          margin-bottom: 10px; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.bikou {
          width: 100%;
          line-height: 1.5rem;
          margin-bottom: 10px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.bikou p {
            line-height: 1.5rem; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.bikou p.caution {
              font-weight: bold;
              color: #f00; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.flavor {
          width: 100%;
          line-height: 1.5rem; }
        body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap {
          width: 100%;
          line-height: 1.5rem;
          margin-bottom: 10px; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap div.cardtext {
            display: flex; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap div.cardtext p.text {
              flex: 1;
              line-height: 1.5rem; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap div.cardtext p.zone {
              margin-left: 10px;
              width: 20%; }
              body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap div.cardtext p.zone img {
                display: block;
                width: 100%; }
          body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap p.subtext {
            margin-top: 5px;
            padding: 5px;
            line-height: 1.5rem;
            background: #fff; }
            body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap p.subtext.hide {
              display: none; }
body div.pagenation_wrap {
  padding: 20px; }
  body div.pagenation_wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; }
    body div.pagenation_wrap ul li {
      display: block;
      margin-right: 5px;
      margin-bottom: 5px; }
      body div.pagenation_wrap ul li.spacer {
        padding: 10px 5px; }
      body div.pagenation_wrap ul li.target a {
        background: var(--main_color);
        color: var(--main_bg); }
      body div.pagenation_wrap ul li a {
        display: block;
        padding: 10px;
        border: 1px solid #ddd;
        text-decoration: none; }
body div.message_wrap {
  padding: 0 0 20px; }
  body div.message_wrap.space {
    padding: 20px; }
  body div.message_wrap div.message {
    margin-bottom: 20px; }
    body div.message_wrap div.message:last-of-type {
      margin-bottom: 0; }
    body div.message_wrap div.message p {
      padding: 15px 15px;
      border-radius: 5px; }
      body div.message_wrap div.message p.success {
        font-weight: bold;
        background: #090;
        color: #fff; }
      body div.message_wrap div.message p.caution {
        font-weight: bold;
        background: #f00;
        color: #fff; }
      body div.message_wrap div.message p a {
        color: inherit;
        font-weight: inherit; }
      body div.message_wrap div.message p:first-of-type {
        margin-top: 0; }
body div.draftlist_wrap {
  display: block;
  padding: 20px;
  margin: 0 auto; }
  body div.draftlist_wrap ul.draftlist {
    display: block; }
    body div.draftlist_wrap ul.draftlist li {
      display: block;
      margin-top: 10px; }
      body div.draftlist_wrap ul.draftlist li:first-of-type {
        margin-top: 0; }
      body div.draftlist_wrap ul.draftlist li span {
        display: block;
        font-size: 12px; }
      body div.draftlist_wrap ul.draftlist li a {
        word-break: break-all; }
body div.deck_stat_wrap_show,
body div.deck_stat_wrap_hide,
body div.recipe_error_wrap_show,
body div.recipe_error_wrap_hide,
body div.send_wrap_show,
body div.send_wrap_hide {
  display: block; }
  body div.deck_stat_wrap_show p a,
  body div.deck_stat_wrap_hide p a,
  body div.recipe_error_wrap_show p a,
  body div.recipe_error_wrap_hide p a,
  body div.send_wrap_show p a,
  body div.send_wrap_hide p a {
    display: block;
    text-decoration: none;
    padding: 15px 20px;
    background: var(--main_color);
    color: var(--main_bg);
    margin: 10px;
    border-radius: 32px;
    border: 2px solidvar(--main_border3); }
    body div.deck_stat_wrap_show p a i,
    body div.deck_stat_wrap_hide p a i,
    body div.recipe_error_wrap_show p a i,
    body div.recipe_error_wrap_hide p a i,
    body div.send_wrap_show p a i,
    body div.send_wrap_hide p a i {
      font-size: inherit;
      color: inherit;
      display: inline-block;
      margin-right: 5px; }
  body div.deck_stat_wrap_show.hide,
  body div.deck_stat_wrap_hide.hide,
  body div.recipe_error_wrap_show.hide,
  body div.recipe_error_wrap_hide.hide,
  body div.send_wrap_show.hide,
  body div.send_wrap_hide.hide {
    display: none; }
body div.send_wrap {
  display: block;
  max-width: 800px;
  width: 90%;
  margin: 20px auto;
  background: #fff;
  border-top: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  border-right: 4px solid #d0d0d0;
  border-bottom: 4px solid #d0d0d0; }
  body div.send_wrap.hide {
    display: none; }
  body div.send_wrap div.send_form {
    padding: 20px; }
    body div.send_wrap div.send_form .list-save-error {
      border: 2px solid #eb4540 !important;
      background: #fff2f2 !important; }
    body div.send_wrap div.send_form p {
      margin-top: 10px; }
    body div.send_wrap div.send_form dl {
      display: block; }
      body div.send_wrap div.send_form dl:last-of-type dd {
        margin-bottom: 0; }
      @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
        body div.send_wrap div.send_form dl.enter_button dd {
          display: flex;
          gap: 10px; }
          body div.send_wrap div.send_form dl.enter_button dd a {
            flex: 1; } }
      @media screen and (max-width: 640px) {
        body div.send_wrap div.send_form dl.enter_button dd {
          display: flex;
          gap: 10px; }
          body div.send_wrap div.send_form dl.enter_button dd a {
            flex: 1; } }
      body div.send_wrap div.send_form dl dt,
      body div.send_wrap div.send_form dl dd {
        display: block; }
      body div.send_wrap div.send_form dl dt {
        font-size: 12px;
        margin-bottom: 10px;
        font-weight: bold; }
      body div.send_wrap div.send_form dl dd {
        margin-bottom: 20px; }
        body div.send_wrap div.send_form dl dd label {
          display: inline-block;
          margin-left: 15px;
          padding: 8px 10px;
          border: 2px solid #d0d0d0;
          border-radius: 5px; }
          body div.send_wrap div.send_form dl dd label:has(input[type="radio"]:checked) {
            background: var(--main_color);
            color: var(--main_bg);
            border: 2px solid var(--main_bg); }
          body div.send_wrap div.send_form dl dd label input {
            display: inline-block;
            margin-right: 5px; }
        body div.send_wrap div.send_form dl dd input[type="text"],
        body div.send_wrap div.send_form dl dd input[type="password"],
        body div.send_wrap div.send_form dl dd textarea,
        body div.send_wrap div.send_form dl dd select {
          width: 100%;
          font-size: 16px;
          padding: 8px 12px;
          border-radius: 3px;
          border: 1px solid #d0d0d0; }
        body div.send_wrap div.send_form dl dd textarea {
          display: block;
          height: 8em;
          line-height: 1.5em; }
        body div.send_wrap div.send_form dl dd div.caution {
          margin-top: 5px; }
        body div.send_wrap div.send_form dl dd p.caution {
          color: #f00;
          font-weight: bold; }
body .list_groups_wrap {
  max-width: none;
  width: 100%;
  margin: 0 auto 30px;
  padding: 0 10px; }
  body .list_groups_wrap .list_groups_sortable {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px; }
  body .list_groups_wrap .list_group_block {
    width: 100%;
    background: #fafafa;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 10px; }
  body .list_groups_wrap .list_group_head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap; }
    body .list_groups_wrap .list_group_head .list-group-name {
      flex: 1;
      min-width: 180px;
      font-size: 14px;
      padding: 8px 10px;
      border: 1px solid #d0d0d0;
      border-radius: 4px; }
    body .list_groups_wrap .list_group_head a.button.mini {
      padding: 8px 12px;
      font-size: 12px; }
  body .list_groups_wrap .list-group-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    min-height: 220px;
    border: 2px dashed #d6d6d6;
    border-radius: 6px;
    background: #fff;
    padding: 10px; }
  body .list_groups_wrap .list-drop-hint {
    display: block;
    width: 100%;
    text-align: center;
    color: #6a6a6a;
    padding: 12px;
    line-height: 1.5em;
    font-size: 12px; }
  body .list_groups_wrap .list-card-sort-placeholder {
    width: 260px;
    height: 420px;
    border: 2px dashed var(--main_color);
    background: rgba(255, 255, 255, 0.5); }
  body .list_groups_wrap .list-card-item {
    width: 260px;
    max-width: 100%;
    position: relative; }
    @media screen and (max-width: 640px) {
      body .list_groups_wrap .list-card-item {
        width: calc(50% - 8px); } }
    body .list_groups_wrap .list-card-item .list-card-visual {
      position: relative; }
      body .list_groups_wrap .list-card-item .list-card-visual .smallcard_info dt p {
        width: 100%;
        max-width: 260px;
        aspect-ratio: 260 / 363;
        overflow: hidden;
        background: #f5f5f5; }
        body .list_groups_wrap .list-card-item .list-card-visual .smallcard_info dt p img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          object-position: center center; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-remove {
        position: absolute;
        right: 6px;
        bottom: 6px;
        z-index: 3;
        padding: 6px 8px;
        font-size: 11px;
        white-space: nowrap; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-up,
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-down {
        position: absolute;
        top: 150px;
        z-index: 3;
        display: block;
        padding: 10px 15px !important;
        background: var(--main_color) !important;
        color: var(--main_bg) !important;
        text-decoration: none;
        border: none !important;
        border-radius: 0;
        line-height: 1; }
        @media screen and (max-width: 640px) {
          body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-up,
          body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-down {
            top: 90px; } }
        body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-up i,
        body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-down i {
          font-size: 24px; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-up {
        left: 0; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-down {
        right: 0; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-prev-group,
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-next-group {
        position: absolute;
        top: 100px;
        z-index: 3;
        display: block;
        padding: 10px 15px !important;
        background: var(--main_color) !important;
        color: var(--main_bg) !important;
        text-decoration: none;
        border: none !important;
        border-radius: 0;
        line-height: 1; }
        @media screen and (max-width: 640px) {
          body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-prev-group,
          body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-next-group {
            top: 53px; } }
        body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-prev-group i,
        body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-next-group i {
          font-size: 24px; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-prev-group {
        left: 0; }
      body .list_groups_wrap .list-card-item .list-card-visual .list-card-move-next-group {
        right: 0; }
    body .list_groups_wrap .list-card-item .list_card_comment {
      display: block;
      margin-top: 8px; }
      body .list_groups_wrap .list-card-item .list_card_comment .list-card-comment-input {
        width: 100%;
        min-height: 80px;
        font-size: 16px;
        line-height: 1.3em;
        padding: 8px 10px;
        border-radius: 4px;
        border: 1px solid #d0d0d0;
        resize: vertical; }
body .list_pick_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px; }
  body .list_pick_wrap .searchform {
    max-width: 1200px;
    width: 95vw;
    max-width: 1160px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    margin: 0 auto;
    background: #fff; }
  body .list_pick_wrap .panel {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
    margin-left: 0;
    margin-right: 0; }
    body .list_pick_wrap .panel li a.deck-open-list-cards {
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
      background: #fafafa;
      border: 1px solid #dadada;
      border-radius: 6px;
      padding: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16); }
      body .list_pick_wrap .panel li a.deck-open-list-cards .list-thumb {
        width: 56px;
        height: 78px;
        display: block;
        border-radius: 4px;
        background: #efefef;
        border: 1px solid #ddd;
        overflow: hidden;
        flex-shrink: 0; }
        body .list_pick_wrap .panel li a.deck-open-list-cards .list-thumb.has-image {
          background: #fff; }
        body .list_pick_wrap .panel li a.deck-open-list-cards .list-thumb img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; }
      body .list_pick_wrap .panel li a.deck-open-list-cards .list-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0; }
      body .list_pick_wrap .panel li a.deck-open-list-cards .list-title {
        color: #222;
        font-size: 13px;
        font-weight: bold;
        line-height: 1.4;
        word-break: break-word; }
      body .list_pick_wrap .panel li a.deck-open-list-cards .list-count {
        color: #666;
        font-size: 12px; }
      body .list_pick_wrap .panel li a.deck-open-list-cards.selected {
        background: var(--main_color);
        border-color: var(--main_color); }
        body .list_pick_wrap .panel li a.deck-open-list-cards.selected .list-title,
        body .list_pick_wrap .panel li a.deck-open-list-cards.selected .list-count {
          color: var(--main_bg); }
  body .list_pick_wrap .deck-list-cards-panel {
    margin-top: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    padding: 10px; }
    body .list_pick_wrap .deck-list-cards-panel .deck-list-cards-panel-inner h3 {
      margin: 0 0 10px;
      font-size: 16px; }
    body .list_pick_wrap .deck-list-cards-panel .deck-list-cards-panel-inner h4 {
      margin: 10px 0;
      padding: 8px 10px;
      background: #f0f0f0;
      border-left: 4px solid var(--main_color); }
    body .list_pick_wrap .deck-list-cards-panel .deck-list-cards-panel-inner .smallcardlist.list-modal-cards {
      padding: 10px 0;
      gap: 14px; }
      body .list_pick_wrap .deck-list-cards-panel .deck-list-cards-panel-inner .smallcardlist.list-modal-cards .listcreate {
        display: none !important; }
body div.smallcardlist_wrap.listdetail_smallcardlist_wrap div.smallcardlist {
  gap: 20px; }
  body div.smallcardlist_wrap.listdetail_smallcardlist_wrap div.smallcardlist .list-card-item {
    width: 260px;
    max-width: 100%; }
    @media screen and (max-width: 640px) {
      body div.smallcardlist_wrap.listdetail_smallcardlist_wrap div.smallcardlist .list-card-item {
        width: calc(50% - 10px); } }
    body div.smallcardlist_wrap.listdetail_smallcardlist_wrap div.smallcardlist .list-card-item dl.smallcard_info {
      max-width: none;
      width: 100%; }
      body div.smallcardlist_wrap.listdetail_smallcardlist_wrap div.smallcardlist .list-card-item dl.smallcard_info dt p img {
        width: 100%;
        max-width: 100%; }
body div.page_top_jump {
  position: fixed;
  bottom: 30px;
  right: 30px; }
  body div.page_top_jump p {
    margin-left: auto;
    width: 40px; }
    body div.page_top_jump p a {
      display: block;
      font-size: 16px;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      text-decoration: none;
      text-align: center;
      border: 1px solid var(--main_color);
      background: var(--main_bg);
      color: var(--main_color); }
      body div.page_top_jump p a:hover {
        background: var(--main_color);
        color: var(--main_bg); }
body div.footer_decklist_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff; }
  body div.footer_decklist_wrap h2 {
    padding: 15px 10px;
    margin-bottom: 0;
    font-size: 12px;
    background-color: var(--main_color);
    color: var(--main_bg); }
    body div.footer_decklist_wrap h2 span {
      display: inline-block;
      margin-right: 5px; }
  body div.footer_decklist_wrap .footer_decklist {
    width: 100vw;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    gap: 10px;
    padding: 10px; }
    body div.footer_decklist_wrap .footer_decklist.hide {
      display: none; }
    body div.footer_decklist_wrap .footer_decklist li {
      display: block; }
      body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info {
        position: relative; }
        body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dt img {
          width: 80px; }
        body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd {
          position: absolute; }
          body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.cnt {
            right: 0;
            top: 0;
            padding: 5px 10px;
            background: rgba(255, 255, 255, 0.8); }
          body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button {
            bottom: 0; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button.add {
              left: 0; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button.remove {
              right: 0; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button.consider {
              display: none; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button.holo {
              display: none; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button.hide {
              display: none; }
            body div.footer_decklist_wrap .footer_decklist li dl.smallcard_info dd.button a {
              text-decoration: none;
              padding: 10px 5px;
              display: block;
              background: var(--main_color);
              color: var(--main_bg); }
body footer {
  margin-top: 50px;
  padding: 50px 10px 0;
  background: #f0f0f0; }
  body footer p {
    text-align: center;
    line-height: 1.5em; }
  body footer ul {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px; }
    body footer ul li {
      display: block; }
  body footer p.copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 20px;
    padding: 15px 0; }
  @media screen and (max-width: 640px) {
    body footer {
      padding: 50px 0 0; }
      body footer > ul {
        display: block; }
        body footer > ul li {
          width: 100%; }
          body footer > ul li a {
            display: block;
            padding: 10px 15px;
            text-align: left;
            text-decoration: none; }
      body footer > p.copyright {
        margin-top: 0; } }
body div.overwrap {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999; }
  body div.overwrap .closebutton {
    position: fixed;
    width: 100px;
    height: 100px;
    right: 0;
    top: 0;
    z-index: 2; }
    body div.overwrap .closebutton p {
      width: 100%;
      height: 100%;
      color: #d0d0d0;
      font-size: 100px;
      text-align: center;
      rotate: 45deg;
      line-height: 1em; }
  body div.overwrap.hide {
    display: none; }
  body div.overwrap.list_pick_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 24px; }
  body div.overwrap.list_pick_wrap.hide {
    display: none; }
  body div.overwrap.searchform_wrap .searchform {
    position: relative;
    width: 720px;
    max-width: 100%;
    margin: 5vh auto;
    background: #fff;
    /* デバイスが100dvhをサポートしている場合 */
    /* デバイスが100dvhをサポートしていない場合 */ }
    @supports (height: 90dvh) {
      body div.overwrap.searchform_wrap .searchform {
        height: 90dvh; } }
    @supports not (height: 90dvh) {
      body div.overwrap.searchform_wrap .searchform {
        height: 80vh; } }
    body div.overwrap.searchform_wrap .searchform form {
      display: flex;
      flex-wrap: wrap;
      height: 100%;
      position: relative;
      overflow-y: scroll;
      padding: 15px 15px 70px; }
      body div.overwrap.searchform_wrap .searchform form dl {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding-bottom: 10px; }
        @media screen and (min-width: calc(1280px + 1px)) {
          body div.overwrap.searchform_wrap .searchform form dl.half {
            width: 50%; } }
        @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
          body div.overwrap.searchform_wrap .searchform form dl.half {
            width: 50%; } }
        @media screen and (max-width: 640px) {
          body div.overwrap.searchform_wrap .searchform form dl.half {
            width: 100%; } }
        body div.overwrap.searchform_wrap .searchform form dl dt,
        body div.overwrap.searchform_wrap .searchform form dl dd {
          display: block;
          width: 100%; }
        body div.overwrap.searchform_wrap .searchform form dl dt {
          text-decoration: underline;
          font-weight: bold;
          margin-bottom: 10px; }
        body div.overwrap.searchform_wrap .searchform form dl dd {
          margin-bottom: 10px; }
          body div.overwrap.searchform_wrap .searchform form dl dd.items {
            width: 40%; }
          body div.overwrap.searchform_wrap .searchform form dl dd.separator {
            width: 5%;
            text-align: center; }
          body div.overwrap.searchform_wrap .searchform form dl dd .ms-container {
            width: auto; }
          body div.overwrap.searchform_wrap .searchform form dl dd.select_high .ms-container .ms-list {
            height: 258px; }
          body div.overwrap.searchform_wrap .searchform form dl dd .ms-selectable .ms-list li {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap; }
            body div.overwrap.searchform_wrap .searchform form dl dd .ms-selectable .ms-list li span {
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap; }
          body div.overwrap.searchform_wrap .searchform form dl dd.optgroup_color .ms-container .ms-list > .ms-optgroup-container:nth-of-type(2n + 1) > ul li.ms-elem-selectable {
            background: rgba(var(--main_color), 0.5); }
          body div.overwrap.searchform_wrap .searchform form dl dd input[type="text"] {
            width: 100%;
            padding: 5px;
            border-radius: 3px;
            border: 1px solid #d0d0d0;
            font-size: 16px; }
          body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel {
            display: flex;
            align-items: center; }
            body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel input[type="text"] {
              border-radius: 3px 0 0 3px;
              flex: 1;
              /* テキストボックスは可能な限り広く */ }
            body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label {
              position: relative;
              display: inline-block;
              padding: 7px 12px;
              border: 1px solid #ccc;
              border-left: none;
              background-color: #f5f5f5;
              color: #333;
              cursor: pointer;
              user-select: none;
              font-size: 14px;
              transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
              body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label input[type="checkbox"] {
                position: absolute;
                opacity: 0;
                pointer-events: none; }
              body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label:has(input[type="checkbox"]:checked) {
                background-color: var(--main_color);
                color: #fff;
                border-color: #007bff; }
          body div.overwrap.searchform_wrap .searchform form dl dd select {
            width: 100%; }
          body div.overwrap.searchform_wrap .searchform form dl dd p.caution {
            font-weight: bold;
            color: #f00; }
            body div.overwrap.searchform_wrap .searchform form dl dd p.caution.hide {
              display: none; }
          body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: left; }
            body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label {
              display: block;
              padding: 10px 5px;
              margin-right: 2%;
              background: #d0d0d0;
              border-radius: 3px; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.em {
                border: 2px solid #f00; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.up, body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.sk, body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.kn {
                width: 31%;
                margin-bottom: 5px; }
                @media screen and (max-width: 640px) {
                  body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.up, body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.sk, body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.kn {
                    width: 48%; } }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl {
                flex: 1; }
                @media screen and (max-width: 640px) {
                  body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl {
                    margin-bottom: 5px;
                    flex: none;
                    width: 23%; } }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_1 {
                background: #c92c1f;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_2 {
                background: #3794da;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_3 {
                background: #e6b02d;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_4 {
                background: #755098;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_5 {
                background: #68a250;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_6 {
                background: #d84a88;
                color: #fff; }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_7 {
                color: #fff;
                background: linear-gradient(to right, #c92c1f 0%, #c92c1f 20%, #3794da 20%, #3794da 40%, #e6b02d 40%, #e6b02d 60%, #755098 60%, #755098 80%, #68a250 80%, #68a250 100%); }
              body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label input {
                margin-right: 5px; }
    body div.overwrap.searchform_wrap .searchform div.footer {
      content: " ";
      height: 70px;
      position: absolute;
      display: flex;
      gap: 10px;
      padding: 15px;
      width: 720px;
      max-width: 100%;
      bottom: 0;
      left: 0;
      background: #f0f0f0; }
      body div.overwrap.searchform_wrap .searchform div.footer p {
        height: 100%;
        flex: 1; }
        body div.overwrap.searchform_wrap .searchform div.footer p.submit {
          flex: 2; }
          body div.overwrap.searchform_wrap .searchform div.footer p.submit a {
            background: var(--main_color);
            color: var(--main_bg);
            font-size: 24px;
            line-height: 1em; }
        body div.overwrap.searchform_wrap .searchform div.footer p a {
          display: block;
          text-align: center;
          text-align: center;
          padding: 10px 0;
          font-size: 16px;
          background: #bbb;
          border-radius: 5px;
          line-height: 1.5em;
          text-decoration: none; }
  body div.overwrap.cardinfo_wrap .cardinfo {
    position: relative;
    width: 480px;
    max-width: 100%;
    /* デバイスが100dvhをサポートしている場合 */
    /* デバイスが100dvhをサポートしていない場合 */
    margin: 5vh auto;
    background: #fff;
    overflow-y: scroll; }
    @supports (height: 90dvh) {
      body div.overwrap.cardinfo_wrap .cardinfo {
        height: 90dvh; } }
    @supports not (height: 90dvh) {
      body div.overwrap.cardinfo_wrap .cardinfo {
        height: 80vh; } }
    body div.overwrap.cardinfo_wrap .cardinfo dl {
      display: block;
      padding: 15px; }
      body div.overwrap.cardinfo_wrap .cardinfo dl dt {
        display: block; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same {
          position: absolute;
          right: 0;
          top: 80px;
          border: 3px solid #fff; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same.hide {
            display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same a {
            display: block;
            background: var(--main_color);
            color: var(--main_bg);
            padding: 10px 15px;
            text-decoration: none; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same a:hover {
              opacity: 0.8; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same_effect {
          position: absolute;
          right: 0;
          top: 120px;
          border: 3px solid #fff; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same_effect.hide {
            display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same_effect a {
            display: block;
            background: var(--main_color);
            color: var(--main_bg);
            padding: 10px 15px;
            text-decoration: none; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_same_effect a:hover {
              opacity: 0.8; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_ref {
          position: absolute;
          right: 0;
          top: 160px;
          border: 3px solid #fff; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_ref.hide {
            display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_ref a {
            display: block;
            background: var(--main_color);
            color: var(--main_bg);
            padding: 10px 15px;
            text-decoration: none; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dt p.is_ref a:hover {
              opacity: 0.8; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.card_number {
          font-weight: bold;
          margin-bottom: 5px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.card_furi {
          font-size: 10px;
          margin-bottom: 5px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.card_name {
          font-size: 16px;
          margin-bottom: 10px;
          font-weight: bold; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dt p.img {
          text-align: center;
          margin-bottom: 10px; }
          @media screen and (max-width: 640px) {
            body div.overwrap.cardinfo_wrap .cardinfo dl dt p.img {
              width: 60%;
              margin: 0 auto; } }
          body div.overwrap.cardinfo_wrap .cardinfo dl dt p.img img {
            display: block;
            width: 100%; }
      body div.overwrap.cardinfo_wrap .cardinfo dl dd {
        display: flex;
        flex-wrap: wrap; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div span {
          display: block;
          margin-bottom: 5px;
          font-size: 10px;
          text-decoration: underline; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.icon {
          width: 100%;
          margin-bottom: 10px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.change_image_wrap {
          width: 100%;
          margin-bottom: 10px; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.change_image_wrap.hide {
            display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.change_image_wrap a.select:before {
            /* アイコン文字を指定 */
            content: "\f0da";
            /* Line Awesomeのフォントファミリーを指定 */
            font-family: "Line Awesome Free";
            display: inline-block;
            margin-right: 5px;
            width: 10px;
            height: 10px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.rare, body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.type, body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cost, body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.power, body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.life {
          width: 25%;
          margin-bottom: 10px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.race, body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.illust {
          width: 50%;
          margin-bottom: 10px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap {
          width: 100%; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap div.cardtext {
            display: flex;
            flex-wrap: wrap; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap div.cardtext p.text {
              flex: 1;
              line-height: 1.5rem; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap div.cardtext p.zone {
              width: 120px;
              margin-left: 10px;
              margin-right: 10px; }
              body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap div.cardtext p.zone.hide {
                display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap p.subtext {
            line-height: 1.5rem;
            background: #f0f0f0;
            padding: 5px; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.cardtext_wrap p.subtext.hide {
              display: none; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.recorded {
          width: 100%;
          margin-top: 10px; }
        body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.bikou {
          width: 100%;
          margin-top: 10px; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.bikou.hide {
            display: none; }
          body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.bikou p {
            line-height: 1.5rem; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.bikou p.caution {
              font-weight: bold;
              color: #f00; }
            body div.overwrap.cardinfo_wrap .cardinfo dl dd > div.bikou p.hide {
              display: none; }
  body div.overwrap.cardimage_wrap .cardimage {
    display: flex;
    justify-content: center; }
    body div.overwrap.cardimage_wrap .cardimage p {
      width: 95vw;
      height: 90vh;
      margin: 5vh 0; }
      body div.overwrap.cardimage_wrap .cardimage p img {
        display: block;
        height: 100%;
        width: 100%;
        object-fit: contain; }
body div.entryform_wrap {
  margin-top: 10px; }
  body div.entryform_wrap input[type="button"],
  body div.entryform_wrap input[type="submit"] {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 3px;
    background: var(--main_color);
    color: var(--main_bg); }
  body div.entryform_wrap dl {
    display: block;
    margin-bottom: 10px; }
    body div.entryform_wrap dl dt,
    body div.entryform_wrap dl dd {
      padding: 5px 10px; }
    body div.entryform_wrap dl dt {
      margin: 0 0 5px;
      font-weight: bold;
      text-decoration: underline; }
    body div.entryform_wrap dl dd input[type="text"] {
      width: 300px; }
    body div.entryform_wrap dl dd textarea {
      display: block;
      padding: 5px;
      border-radius: 5px;
      line-height: 1.3em;
      height: calc(1.3em * 10); }
    body div.entryform_wrap dl dd.cardtext_sample {
      border: 2px solid #f0f0f0;
      padding: 20px;
      width: 90%;
      max-width: 480px;
      line-height: 1.5em; }
      body div.entryform_wrap dl dd.cardtext_sample span.hankaku {
        background: #f33;
        color: #fff; }
      body div.entryform_wrap dl dd.cardtext_sample span.zenkaku {
        background: #66f;
        color: #fff; }
    body div.entryform_wrap dl dd.checklist {
      display: flex;
      width: 80%;
      gap: 10px 5px;
      flex-wrap: wrap; }
    body div.entryform_wrap dl dd .ms-container {
      width: 660px; }
      body div.entryform_wrap dl dd .ms-container .ms-list {
        margin-top: 5px; }
    body div.entryform_wrap dl dd.caution {
      color: #f00;
      font-weight: bold; }
    body div.entryform_wrap dl dd label {
      padding: 5px 10px;
      border-radius: 3px;
      border: 3px solid #d0d0d0;
      margin-right: 5px; }
      body div.entryform_wrap dl dd label:has(input:checked) {
        border: 3px solid var(--main_color);
        background: var(--main_color);
        color: var(--main_bg); }
      body div.entryform_wrap dl dd label input[type="checkbox"] {
        display: inline-block;
        margin-right: 5px; }
    body div.entryform_wrap dl dd.buttonitem {
      padding: 5px 10px 0; }
      body div.entryform_wrap dl dd.buttonitem .buttongroup {
        display: flex;
        margin-bottom: 5px; }
        body div.entryform_wrap dl dd.buttonitem .buttongroup h3 {
          width: 100px;
          margin: 5px 0 0; }
        body div.entryform_wrap dl dd.buttonitem .buttongroup a {
          line-height: 1em;
          text-decoration: none;
          display: block;
          margin-right: 5px;
          border-radius: 3px;
          padding: 5px 10px;
          background: var(--main_color);
          color: var(--main_bg); }
body ul.shop_fav_wrap {
  display: flex;
  flex-wrap: wrap; }
  body ul.shop_fav_wrap li {
    display: flex;
    width: 33%; }
    body ul.shop_fav_wrap li a {
      display: block;
      padding: 10px 15px;
      text-decoration: none; }
      body ul.shop_fav_wrap li a.link {
        flex: 1;
        background: var(--main_color);
        color: #fff; }
      body ul.shop_fav_wrap li a.delbtn {
        background: #f00;
        color: #fff; }
    @media screen and (max-width: 640px) {
      body ul.shop_fav_wrap li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0; }
        body ul.shop_fav_wrap li > a {
          padding: 15px 15px; } }
body div.shop_search_wrap {
  padding: 20px 0; }
  @media screen and (max-width: 640px) {
    body div.shop_search_wrap {
      padding: 0; } }
  body div.shop_search_wrap form dl.form_item {
    display: flex;
    flex-wrap: wrap; }
    body div.shop_search_wrap form dl.form_item.result_hide {
      display: none; }
    @media screen and (max-width: 640px) {
      body div.shop_search_wrap form dl.form_item {
        display: block; }
        body div.shop_search_wrap form dl.form_item.border {
          margin-top: 20px; }
          body div.shop_search_wrap form dl.form_item.border dt,
          body div.shop_search_wrap form dl.form_item.border dd {
            width: 100% !important;
            border-bottom: 1px solid #fee;
            padding: 0; }
            body div.shop_search_wrap form dl.form_item.border dt label,
            body div.shop_search_wrap form dl.form_item.border dd label {
              padding: 15px 0 15px 20px; }
          body div.shop_search_wrap form dl.form_item.border dt {
            padding: 15px 0 15px 20px;
            background: #f0f0f0; }
          body div.shop_search_wrap form dl.form_item.border dd:has(input:checked) {
            background: #fcc; } }
    body div.shop_search_wrap form dl.form_item dt,
    body div.shop_search_wrap form dl.form_item dd {
      padding: 20px 0 0 20px;
      line-height: 1.5em; }
      body div.shop_search_wrap form dl.form_item dt input[type="text"],
      body div.shop_search_wrap form dl.form_item dd input[type="text"] {
        border: 1px solid #d0d0d0;
        font-size: 16px;
        padding: 3px; }
      body div.shop_search_wrap form dl.form_item dt input[type="submit"],
      body div.shop_search_wrap form dl.form_item dd input[type="submit"] {
        border: 1px solid #d0d0d0;
        padding: 5px 10px; }
      body div.shop_search_wrap form dl.form_item dt label,
      body div.shop_search_wrap form dl.form_item dd label {
        display: block;
        font-size: 12px; }
        body div.shop_search_wrap form dl.form_item dt label input[type="checkbox"],
        body div.shop_search_wrap form dl.form_item dd label input[type="checkbox"] {
          display: inline-block;
          margin-right: 5px; }
    body div.shop_search_wrap form dl.form_item dt {
      width: 100px; }
    body div.shop_search_wrap form dl.form_item dd {
      flex: 1; }
body div.shop_search_result_wrap {
  margin-top: 20px;
  margin-left: 20px; }
  body div.shop_search_result_wrap table {
    border-left: 1px solid #909090;
    border-top: 1px solid #909090;
    border-spacing: 0; }
    body div.shop_search_result_wrap table tr th,
    body div.shop_search_result_wrap table tr td {
      padding: 5px 10px;
      border-right: 1px solid #909090;
      border-bottom: 1px solid #909090; }
      body div.shop_search_result_wrap table tr th.r1,
      body div.shop_search_result_wrap table tr td.r1 {
        text-align: center; }
      body div.shop_search_result_wrap table tr th.r2,
      body div.shop_search_result_wrap table tr td.r2 {
        text-align: center; }
      body div.shop_search_result_wrap table tr th.r6 img,
      body div.shop_search_result_wrap table tr td.r6 img {
        display: block;
        width: 150px; }
      body div.shop_search_result_wrap table tr th.r3,
      body div.shop_search_result_wrap table tr td.r3 {
        text-align: center; }
    body div.shop_search_result_wrap table tr td.r5 {
      text-align: right; }
  body div.shop_search_result_wrap .shop_search_result {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; }
    body div.shop_search_result_wrap .shop_search_result dl {
      display: flex;
      flex-wrap: wrap; }
      @media screen and (max-width: 640px) {
        body div.shop_search_result_wrap .shop_search_result dl {
          width: calc(33.33333% - 15px); } }
      @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
        body div.shop_search_result_wrap .shop_search_result dl {
          width: calc(16.66667% - 12px); } }
      @media screen and (min-width: calc(1280px + 1px)) {
        body div.shop_search_result_wrap .shop_search_result dl {
          width: calc(12.5% - 11.42857px); } }
      body div.shop_search_result_wrap .shop_search_result dl.soldout {
        opacity: 0.3; }
        body div.shop_search_result_wrap .shop_search_result dl.soldout:hover {
          opacity: 0.1; }
      body div.shop_search_result_wrap .shop_search_result dl:hover {
        opacity: 0.8; }
      body div.shop_search_result_wrap .shop_search_result dl dt {
        width: 100%; }
        body div.shop_search_result_wrap .shop_search_result dl dt img {
          display: block;
          width: 100%; }
      body div.shop_search_result_wrap .shop_search_result dl dd {
        width: 100%;
        margin-top: 5px;
        font-size: 14px; }
        body div.shop_search_result_wrap .shop_search_result dl dd.r2 {
          width: 50%; }
        body div.shop_search_result_wrap .shop_search_result dl dd.r3 {
          width: 50%; }
        body div.shop_search_result_wrap .shop_search_result dl dd.r4 {
          line-height: 1.3em; }
        body div.shop_search_result_wrap .shop_search_result dl dd.r5 {
          font-weight: bold;
          text-align: center;
          font-size: 16px;
          padding: 5px 0;
          background: #f0f0f0; }

body .mypage_tab_wrap {
  margin: 24px 0 20px; }
  body .mypage_tab_wrap .mypage_tab_buttons {
    display: flex;
    gap: 8px;
    padding: 0 20px;
    margin: 0 auto 20px;
    justify-content: center;
    flex-wrap: wrap; }
    body .mypage_tab_wrap .mypage_tab_buttons .mypage_tab_button {
      display: inline-block;
      min-width: 160px;
      padding: 12px 20px;
      background: #f0f0f0;
      border: 1px solid var(--main_border);
      color: #333;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      border-radius: 999px; }
      body .mypage_tab_wrap .mypage_tab_buttons .mypage_tab_button.is_active {
        background: var(--main_color);
        color: var(--main_bg);
        border-color: var(--main_color); }
  body .mypage_tab_wrap .mypage_view_buttons {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom: 20px;
    justify-content: flex-end; }
    body .mypage_tab_wrap .mypage_view_buttons .mypage_view_button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: #fff;
      border: 1px solid var(--main_border);
      color: #333;
      text-decoration: none;
      border-radius: 10px; }
      body .mypage_tab_wrap .mypage_view_buttons .mypage_view_button i {
        font-size: 22px;
        line-height: 1; }
      body .mypage_tab_wrap .mypage_view_buttons .mypage_view_button.is_active {
        background: var(--main_color);
        color: var(--main_bg);
        border-color: var(--main_color); }
  body .mypage_tab_wrap .mypage_tab_panel {
    display: none; }
    body .mypage_tab_wrap .mypage_tab_panel.is_active {
      display: block; }
  body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-top: none;
    padding: 0 20px;
    box-sizing: border-box; }
    body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 280px;
      border: 1px solid #c0c0c0;
      border-radius: 8px;
      overflow: hidden;
      background: #fff; }
      @media screen and (max-width: 640px) {
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a {
          width: calc(50% - 8px); } }
      @media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a {
          width: calc(33.333333% - 11px); } }
      body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a > p.image {
        margin: 0;
        background: #f7f7f7; }
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a > p.image img {
          display: block;
          width: 100%;
          aspect-ratio: 3 / 4;
          object-fit: cover; }
      body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a > p.arrow {
        display: none; }
      body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .list-favorite-star {
        right: 10px;
        top: 10px; }
      body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck {
        margin: 0;
        padding: 12px; }
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li {
          padding: 0; }
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div {
          display: block; }
          body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.publish p, body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.owner p {
            margin-right: 0;
            margin-top: 5px; }
          body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.publish {
            position: absolute;
            left: 10px;
            bottom: calc(100% - 42px);
            z-index: 2; }
            body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.publish span {
              display: inline-block;
              padding: 6px 10px;
              border-radius: 999px;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
          body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times {
            margin-top: 4px; }
            body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times span {
              display: none; }
            body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times p {
              margin-top: 0;
              margin-bottom: 0;
              line-height: 1.4em;
              font-size: 12px; }
            body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times p:last-of-type {
              display: none; }
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_info {
          margin-top: 12px; }
          body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_info p {
            font-size: 16px;
            line-height: 1.4em; }
        body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_tag {
          margin-top: 12px; }
@media screen and (max-width: 640px) {
  body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists {
    padding: 0 12px; }
  body .mypage_tab_wrap .mypage_tab_buttons {
    padding: 0 12px;
    gap: 0;
    margin-bottom: 16px;
    justify-content: space-between; }
    body .mypage_tab_wrap .mypage_tab_buttons .mypage_tab_button {
      width: calc(50% - 4px);
      text-align: center;
      min-width: 0;
      border-radius: 999px;
      padding: 12px 10px; }
  body .mypage_tab_wrap .mypage_view_buttons {
    padding: 0 12px;
    margin-bottom: 16px; }
    body .mypage_tab_wrap .mypage_view_buttons .mypage_view_button {
      width: 42px;
      height: 42px; } }
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists {
    padding: 0 16px; }
  body .mypage_tab_wrap .mypage_tab_buttons {
    padding: 0 16px; }
  body .mypage_tab_wrap .mypage_view_buttons {
    padding: 0 16px; } }

body#profile_page {
  background: #f5f5f5; }
  body#profile_page .send_wrap {
    max-width: 960px;
    width: 96%;
    margin: 30px auto 60px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
    body#profile_page .send_wrap h2 {
      padding: 24px 32px 0;
      font-size: 18px;
      line-height: 1.6; }
    body#profile_page .send_wrap form {
      padding-bottom: 32px; }
    body#profile_page .send_wrap .send_form {
      padding: 24px 32px 32px; }
      body#profile_page .send_wrap .send_form .message_wrap {
        margin-bottom: 24px; }
        body#profile_page .send_wrap .send_form .message_wrap .message {
          padding: 16px;
          border-radius: 6px;
          background: rgba(235, 69, 64, 0.08); }
          body#profile_page .send_wrap .send_form .message_wrap .message p.caution {
            color: var(--danger_color);
            font-weight: bold;
            line-height: 1.6; }
      body#profile_page .send_wrap .send_form dl.form_item {
        padding: 20px 0;
        border-bottom: 1px solid #ececec;
        display: block; }
        body#profile_page .send_wrap .send_form dl.form_item:first-of-type {
          padding-top: 0; }
        body#profile_page .send_wrap .send_form dl.form_item dt {
          font-size: 14px;
          line-height: 1.6;
          margin-bottom: 12px;
          display: flex;
          align-items: center;
          gap: 8px; }
          body#profile_page .send_wrap .send_form dl.form_item dt .required {
            display: inline-block;
            padding: 2px 6px;
            font-size: 11px;
            color: #fff;
            background: var(--danger_color);
            border-radius: 4px;
            line-height: 1.4; }
        body#profile_page .send_wrap .send_form dl.form_item dd {
          display: block; }
          body#profile_page .send_wrap .send_form dl.form_item dd input[type="text"],
          body#profile_page .send_wrap .send_form dl.form_item dd input[type="file"],
          body#profile_page .send_wrap .send_form dl.form_item dd textarea,
          body#profile_page .send_wrap .send_form dl.form_item dd select {
            width: 100%;
            font-size: 16px;
            padding: 10px 14px;
            border-radius: 6px;
            border: 1px solid #cfcfcf;
            transition: border-color 0.2s ease, box-shadow 0.2s ease; }
            body#profile_page .send_wrap .send_form dl.form_item dd input[type="text"]:focus,
            body#profile_page .send_wrap .send_form dl.form_item dd input[type="file"]:focus,
            body#profile_page .send_wrap .send_form dl.form_item dd textarea:focus,
            body#profile_page .send_wrap .send_form dl.form_item dd select:focus {
              outline: none;
              border-color: var(--main_color);
              box-shadow: 0 0 0 3px color-mix(in srgb, var(--main_color) 30%, transparent); }
          body#profile_page .send_wrap .send_form dl.form_item dd input[type="file"] {
            padding: 10px 0; }
          body#profile_page .send_wrap .send_form dl.form_item dd textarea {
            min-height: 140px;
            line-height: 1.6;
            resize: vertical; }
          body#profile_page .send_wrap .send_form dl.form_item dd .hint {
            margin-top: 8px;
            font-size: 12px;
            color: #777;
            line-height: 1.5; }
          body#profile_page .send_wrap .send_form dl.form_item dd p.caution {
            margin-top: 8px;
            color: var(--danger_color);
            font-weight: bold;
            line-height: 1.5; }
          body#profile_page .send_wrap .send_form dl.form_item dd.has_error input,
          body#profile_page .send_wrap .send_form dl.form_item dd.has_error textarea,
          body#profile_page .send_wrap .send_form dl.form_item dd.has_error select,
          body#profile_page .send_wrap .send_form dl.form_item dd .has_error input,
          body#profile_page .send_wrap .send_form dl.form_item dd .has_error textarea,
          body#profile_page .send_wrap .send_form dl.form_item dd .has_error select {
            border-color: var(--danger_color);
            box-shadow: 0 0 0 2px rgba(235, 69, 64, 0.15); }
        body#profile_page .send_wrap .send_form dl.form_item.has_error input,
        body#profile_page .send_wrap .send_form dl.form_item.has_error textarea,
        body#profile_page .send_wrap .send_form dl.form_item.has_error select {
          border-color: var(--danger_color);
          box-shadow: 0 0 0 2px rgba(235, 69, 64, 0.15); }
        body#profile_page .send_wrap .send_form dl.form_item .checkbox_group {
          display: flex;
          flex-wrap: wrap;
          gap: 12px; }
          body#profile_page .send_wrap .send_form dl.form_item .checkbox_group label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid #cfcfcf;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s ease; }
            body#profile_page .send_wrap .send_form dl.form_item .checkbox_group label input {
              margin: 0; }
            body#profile_page .send_wrap .send_form dl.form_item .checkbox_group label span {
              font-size: 13px; }
            body#profile_page .send_wrap .send_form dl.form_item .checkbox_group label:has(input:checked) {
              background: var(--main_color);
              color: #fff;
              border-color: var(--main_color); }
        body#profile_page .send_wrap .send_form dl.form_item.sns_group dd {
          display: grid;
          gap: 16px; }
          body#profile_page .send_wrap .send_form dl.form_item.sns_group dd .sns_field {
            display: flex;
            flex-direction: column;
            gap: 6px; }
            body#profile_page .send_wrap .send_form dl.form_item.sns_group dd .sns_field label {
              font-size: 13px;
              font-weight: bold; }
      body#profile_page .send_wrap .send_form .form_actions {
        margin-top: 32px;
        text-align: center; }
        body#profile_page .send_wrap .send_form .form_actions .button {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          min-width: 240px;
          padding: 14px 24px;
          font-size: 16px;
          font-weight: bold;
          color: #fff;
          background: var(--main_color);
          border: none;
          border-radius: 999px;
          cursor: pointer;
          transition: transform 0.2s ease, box-shadow 0.2s ease; }
          body#profile_page .send_wrap .send_form .form_actions .button:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18); }
          body#profile_page .send_wrap .send_form .form_actions .button:active {
            transform: translateY(0);
            box-shadow: none; }
    @media screen and (max-width: 640px) {
      body#profile_page .send_wrap h2 {
        padding: 20px 20px 0;
        font-size: 16px; }
      body#profile_page .send_wrap .send_form {
        padding: 20px; }
        body#profile_page .send_wrap .send_form dl.form_item {
          padding: 16px 0; }
          body#profile_page .send_wrap .send_form dl.form_item dt {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px; }
        body#profile_page .send_wrap .send_form .checkbox_group {
          gap: 10px; }
          body#profile_page .send_wrap .send_form .checkbox_group label {
            padding: 6px 10px; }
        body#profile_page .send_wrap .send_form .form_actions .button {
          width: 100%;
          min-width: 0; } }

/*# sourceMappingURL=style.css.map */
