@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をサポートしている場合 */
}
@supports (height: 100dvh) {
  body.overwrapped {
    height: 100dvh;
  }
}
body.overwrapped {
  /* デバイスが100dvhをサポートしていない場合 */
}
@supports not (height: 100dvh) {
  body.overwrapped {
    height: 100vh;
  }
}
body.overwrapped {
  overflow: hidden;
}
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: 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: 34px;
  line-height: 34px;
  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_color) !important;
  color: var(--main_bg) !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 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 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.flex_end {
  width: 100%;
  height: 1px;
  padding: 0;
  margin: 0;
  grid-column: 1/-1;
}
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 (min-width: calc(1280px + 1px)) {
  body .button_area ul li a.recipe_toggle_button > .deckmenu_img {
    display: none !important;
  }
  body .button_area ul li a.recipe_toggle_button i:nth-of-type(1) {
    display: none !important;
  }
}
body .button_area ul li a.menu_submenu_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
body .button_area ul li a.menu_submenu_toggle .menu_toggle_text {
  flex: 1 1 auto;
  text-align: left;
}
body .button_area ul li a.menu_submenu_toggle .menu_toggle_arrow {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
}
body .button_area ul li a.menu_submenu_toggle .menu_toggle_close_icon {
  display: none;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}
@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: 99999;
    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 a.deckmenu_panel_button.menu_submenu_toggle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle:has(img) {
    justify-content: space-between;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle .deckmenu_img {
    height: 26px;
    margin-right: 0;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle .deckmenu_icon {
    font-size: 26px;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle .menu_toggle_text {
    flex: 1 1 auto;
    text-align: left;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle .menu_toggle_arrow {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 18px;
  }
  body .deckmenu_overlay .deckmenu_panel_grid a.deckmenu_panel_button.menu_submenu_toggle .menu_toggle_close_icon {
    display: none;
    flex: 0 0 auto;
    font-size: 26px;
    line-height: 1;
  }
  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_show,
  body .deckmenu_overlay .deckmenu_panel_grid .send_wrap_hide {
    display: none;
  }
  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 .user-event-table table tr:hover td {
  background: var(--main_color) !important;
  color: #fff;
}
body .urllist {
  border-top: 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 .urllist p {
  border-bottom: 1px solid #d0d0d0;
}
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: var(--main_color);
  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:not(:has(a)) {
  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.combined_search_form {
  padding: 0 10px;
}
body .tag_search_form.combined_search_form .search_condition_box {
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}
body .tag_search_form.combined_search_form .search_condition_title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
body .tag_search_form.combined_search_form .search_condition_fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media screen and (max-width: 640px) {
  body .tag_search_form.combined_search_form .search_condition_fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body .tag_search_form.combined_search_form .tag_search,
body .tag_search_form.combined_search_form .kw_search {
  display: block;
  margin-bottom: 0;
  padding: 0;
}
body .tag_search_form.combined_search_form .tag_search .label,
body .tag_search_form.combined_search_form .kw_search .label {
  width: auto;
  margin-bottom: 6px;
  padding: 0;
  text-align: left;
  background: transparent;
  color: #333;
  border-radius: 0;
  font-weight: bold;
  line-height: 1.4em;
}
@media screen and (max-width: 640px) {
  body .tag_search_form.combined_search_form .tag_search .label,
  body .tag_search_form.combined_search_form .kw_search .label {
    margin-left: 0;
    padding: 0;
  }
}
body .tag_search_form.combined_search_form .tag_search .text,
body .tag_search_form.combined_search_form .kw_search .text {
  width: auto;
}
body .tag_search_form.combined_search_form .tag_search .text input,
body .tag_search_form.combined_search_form .kw_search .text input {
  border: 1px solid #999;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  body .tag_search_form.combined_search_form .tag_search .text input,
  body .tag_search_form.combined_search_form .kw_search .text input {
    max-width: none;
    padding: 8px;
  }
}
body .tag_search_form.combined_search_form .search_condition_actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
@media screen and (max-width: 640px) {
  body .tag_search_form.combined_search_form .search_condition_actions {
    justify-content: flex-start;
  }
}
body .tag_search_form.combined_search_form .search_condition_actions .button input {
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 16px;
  color: #fff;
  background: var(--main_color);
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body .tag_search_form.combined_search_form .search_condition_actions .reset {
  margin-left: 0;
}
body .tag_search_form.combined_search_form .search_condition_actions .reset a {
  display: inline-block;
  padding: 10px 12px;
  font-size: 15px;
}
body .tag_search_form .tag_search,
body .tag_search_form .kw_search {
  display: flex;
  margin-bottom: 10px;
  padding: 0 10px;
}
body .tag_search_form .tag_search .label,
body .tag_search_form .kw_search .label {
  width: max(20%, 200px);
  font-size: 15px;
  padding: 10px;
  text-align: center;
  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,
body .tag_search_form .kw_search .text {
  width: max(50%, 300px);
}
body .tag_search_form .tag_search .text input,
body .tag_search_form .kw_search .text input {
  width: 100%;
  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;
}
body div.decklist_wrap .decklists a .deck li.deck_time .deck_label_icon {
  display: none;
}
body div.decklist_wrap .decklists a .deck li.deck_time .deck_label_text {
  font-weight: normal;
}
@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.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 {
  width: 95vw;
  max-width: 1160px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 0 auto;
  background: #fff;
}
body .list_pick_wrap .searchform h3 {
  padding: 0 20px;
}
body .list_pick_wrap .panel {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 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: 300px;
  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.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: 13em;
}
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.3333333333% - 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.6666666667% - 12px);
  }
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.shop_search_result_wrap .shop_search_result dl {
    width: calc(12.5% - 11.4285714286px);
  }
}
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 img {
  display: block;
  width: 100%;
}
body div.shop_search_result_wrap .shop_search_result dl dt {
  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;
  box-sizing: border-box;
}
@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 20px;
  }
}
@media screen and (max-width: 640px) {
  body .mypage_tab_wrap.is_card_view .decklist_wrap .decklists {
    padding: 0 20px;
  }
}
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: 1280px) and (min-width: 641px) {
  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;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time {
  display: flex;
  flex-direction: column;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div {
  width: 100%;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.owner {
  display: flex;
  align-items: center;
  gap: 4px;
  order: 2;
  margin-top: 2px;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.owner span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  color: #666;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.owner p {
  flex: 0 1 auto;
  margin: 0;
  line-height: 1.4em;
  font-size: 12px;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times {
  display: flex;
  align-items: center;
  gap: 4px;
  order: 1;
  margin-top: 0;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times span:first-of-type {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  color: #666;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div.times span:nth-of-type(2) {
  display: none;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div .deck_label_icon {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_time div .deck_label_text {
  display: none;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_info {
  margin-top: 10px;
}
body .mypage_tab_wrap.public_list_tab_wrap.is_card_view .decklist_wrap .decklists > a .deck li.deck_tag {
  margin-top: 8px;
}
@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: 1280px) and (min-width: 641px) {
  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 {
  /*
   * Modern database UI refresh.
   * Existing markup is intentionally preserved; this block reshapes the main
   * card database/deck builder surfaces through scoped overrides.
   */
  --app_surface: #ffffff;
  --app_surface_soft: #f6f7fb;
  --app_surface_tint: #f1eef8;
  --app_text: #202433;
  --app_text_muted: #697083;
  --app_border: #dfe3ec;
  --app_shadow: 0 14px 34px rgba(22, 24, 34, 0.12);
  --app_shadow_soft: 0 8px 20px rgba(22, 24, 34, 0.08);
  --app_radius: 8px;
  --app_radius_panel: 3px;
  --app_radius_modal: 16px;
  background: var(--app_surface_soft);
  color: var(--app_text);
  overflow-x: clip;
}
body * {
  box-sizing: border-box;
  line-height: 1.35;
}
body h2 {
  width: auto;
  background: transparent;
  color: var(--app_text);
  padding: 22px 20px 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  margin: 18px 10px 12px;
}
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 h2.top-title {
  max-width: 1440px;
  margin: 80px auto 40px;
}
body h2.top-title:first-of-type {
  margin-top: 40px;
}
body h2.em {
  font-size: 16px;
  margin-bottom: 10px;
  padding: 16px 20px;
  max-width: 1440px;
  border-left: 4px solid var(--main_color);
  border-bottom: 0;
  background: var(--app_surface);
  border-radius: var(--app_radius);
  box-shadow: var(--app_shadow_soft);
}
body a {
  color: var(--main_color);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
body input[type=submit].button,
body button.button,
body a.button,
body .button_area ul li a {
  border: 1px solid color-mix(in srgb, var(--main_color) 82%, #111);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(22, 24, 34, 0.1);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
body input[type=submit].button:hover,
body button.button:hover,
body a.button:hover,
body .button_area ul li a:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--app_shadow_soft);
}
body.top-page header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin-bottom: 0;
}
body.top-page .main_wrap {
  margin-top: 40px;
}
body header {
  display: flex;
  background: var(--app_surface);
  border-bottom: 1px solid var(--app_border);
  box-shadow: 0 6px 18px rgba(22, 24, 34, 0.06);
  margin-bottom: 30px;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body header {
    padding: 10px 20px 12px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body header {
    flex-direction: column;
    padding: 10px 10px 0;
  }
}
@media screen and (max-width: 640px) {
  body header {
    flex-direction: column;
    padding: 10px 10px 0;
  }
}
body header h1 {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body header h1 {
    margin-top: 10px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body header h1 {
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  body header h1 {
    margin: 0 auto;
  }
}
body header h1 {
  background: transparent;
  padding: 0;
}
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 h1 a {
  display: inline-flex;
  align-items: center;
}
body header .menu {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
  background: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px;
  gap: 6px;
}
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 {
  flex: 0 1 auto;
}
body header .menu > li.break {
  display: none;
}
body header .menu > li.title, body header .menu > li.fullsize {
  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.fullsize a, body header .menu > li.fullsize.fullsize a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
body header .menu > li.title.fullsize a .submenu_toggle_icon, body header .menu > li.fullsize.fullsize a .submenu_toggle_icon {
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 10px;
  font-size: 15px;
  line-height: 1;
}
body header .menu > li.title, body header .menu > li.fullsize {
  width: auto;
  flex: 0 1 auto;
  border: 0;
}
body header .menu > li.title a, body header .menu > li.fullsize a {
  text-decoration: none;
  display: block;
  text-align: center;
  background: var(--app_surface);
  color: var(--app_text);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9px;
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  body header .menu > li.title a, body header .menu > li.fullsize a {
    padding: 10px 5px;
  }
}
body header .menu > li.title a:hover, body header .menu > li.fullsize a:hover {
  background: var(--app_surface);
  color: var(--main_color);
  opacity: 1;
  box-shadow: var(--app_shadow_soft);
}
body header .menu > li.title a:has(.submenu_toggle_icon), body header .menu > li.fullsize a:has(.submenu_toggle_icon) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
body header .menu > li.title a .submenu_toggle_icon, body header .menu > li.fullsize a .submenu_toggle_icon {
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1;
}
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;
}
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 {
  flex-wrap: wrap;
  width: 100%;
  overflow: scroll;
}
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 header .menu > li.submenu_wrap {
  display: none;
  width: 100%;
}
body header .menu > li.submenu_wrap:has(> .submenu.show), body header .menu > li.submenu_wrap.title.show {
  display: block;
}
body header .menu > li.second.title a {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--app_text);
}
body header.fixed ul {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
body header.fixed .menu {
  position: fixed;
  left: 50%;
  top: 10px;
  width: min(1280px, 100% - 40px);
  transform: translateX(-50%);
  z-index: 99;
  border-radius: 5px;
  box-shadow: var(--app_shadow);
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body header.fixed .menu {
    left: 10px;
    right: 54px;
    width: auto;
    transform: none;
  }
}
@media screen and (max-width: 640px) {
  body header.fixed .menu {
    left: 10px;
    right: 54px;
    width: auto;
    transform: none;
  }
}
@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 {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9999;
}
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: 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 div.smp_menu_icon p a {
  border-radius: 10px;
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
}
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 .normaltext {
  max-width: 1280px;
  margin: 0 auto 18px;
  padding: 0 20px;
}
body .normaltext > p {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--app_border);
  border-left: 4px solid var(--main_color);
  border-radius: 2px 10px 10px 2px;
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
  color: var(--app_text);
  font-size: 13px;
  line-height: 1.65;
}
body .normaltext.top-intro {
  margin-top: 14px;
  margin-bottom: 26px;
}
body .normaltext.top-intro > p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  border-left: 3px solid var(--main_color);
  border-radius: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--main_color) 7%, #fff), rgba(255, 255, 255, 0.72));
  box-shadow: none;
}
body .normaltext.top-intro > p:before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main_color);
}
body > .main_wrap {
  max-width: 1480px;
  margin: 0 auto;
}
body .top-hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-color: var(--main_color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .top-hero .hero-message {
  padding: 0 max(30px, 5%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 10px 10px 0;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body .top-hero .hero-message {
    width: 50%;
    height: 30vh;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-hero .hero-message {
    width: 80%;
    height: 20vh;
  }
}
@media screen and (max-width: 640px) {
  body .top-hero .hero-message {
    width: 80%;
    height: 20vh;
  }
}
body .top-hero .hero-message .hero-title,
body .top-hero .hero-message .hero-desc {
  color: #fff;
}
body .top-hero .hero-message .hero-title {
  padding: 0;
  margin: 0;
  font-size: 20px;
}
body .top-hero .hero-message .hero-desc p {
  font-size: 16px;
  line-height: 1.5em;
}
body .top-menus {
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 8px 20px 22px;
}
body .top-menus > ul {
  display: grid;
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-menus > ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  body .top-menus > ul {
    grid-template-columns: 1fr 1fr;
  }
}
body .top-menus > ul {
  gap: 14px;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body .top-menus > ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
body .top-menus > ul > li {
  display: flex;
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-menus > ul > li {
    grid-column: span 1;
  }
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li {
    grid-column: span 2;
  }
}
@media screen and (min-width: calc(1280px + 1px)) {
  body .top-menus > ul > li:nth-child(-n+2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-menus > ul > li:nth-child(-n+2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li:nth-child(-n+2) {
    grid-column: span 1;
  }
}
body .top-menus > ul > li:nth-child(-n+2) > a {
  justify-content: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, color-mix(in srgb, var(--main_color) 10%, #fff), #fff 52%), var(--app_surface);
  color: var(--app_text);
  border-color: color-mix(in srgb, var(--main_color) 34%, var(--app_border));
  border-top: 4px solid var(--main_color);
  border-radius: var(--app_radius_panel);
  clip-path: none;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body .top-menus > ul > li:nth-child(-n+2) > a {
    align-items: center;
    flex-direction: row;
    gap: 30px;
    min-height: 150px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-menus > ul > li:nth-child(-n+2) > a {
    align-items: center;
    flex-direction: row;
    gap: 30px;
    min-height: 150px;
  }
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li:nth-child(-n+2) > a {
    min-height: 94px;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
  }
}
body .top-menus > ul > li:nth-child(-n+2) > a > i {
  background: var(--main_color);
  color: #fff;
  font-size: 40px;
  width: 66px;
  height: 66px;
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li:nth-child(-n+2) > a > i {
    margin: 0 auto;
  }
}
body .top-menus > ul > li:nth-child(-n+2) > a:hover {
  border-color: color-mix(in srgb, var(--main_color) 58%, var(--app_border));
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .top-menus > ul > li:nth-child(-n+2) > a > .text {
    flex: none;
  }
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li:nth-child(-n+2) > a > .text {
    flex: none;
  }
}
body .top-menus > ul > li:nth-child(-n+2) > a > .text > .desc {
  text-align: left;
  color: #50576a;
}
body .top-menus > ul > li > a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
body .top-menus > ul > li > a > i,
body .top-menus > ul > li > a p {
  color: inherit;
}
body .top-menus > ul > li > a {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--app_border);
  border-radius: var(--app_radius_panel);
  background: var(--app_surface);
  color: var(--app_text);
  box-shadow: var(--app_shadow_soft);
}
body .top-menus > ul > li > a:hover {
  opacity: 1;
  background: var(--app_surface);
  color: var(--main_color);
  transform: translateY(-2px);
  box-shadow: var(--app_shadow);
}
body .top-menus > ul > li > a > i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--app_surface_tint);
  color: var(--main_color);
  font-size: 26px;
}
body .top-menus > ul > li > a > .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
body .top-menus > ul > li > a > .text > p {
  text-align: left;
}
body .top-menus > ul > li > a > .text > .title {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 0;
}
body .top-menus > ul > li > a > .text > .desc {
  flex: 1;
  font-size: 12px;
  line-height: 1.55;
  color: var(--app_text_muted);
}
@media screen and (max-width: 640px) {
  body .top-menus > ul > li > a {
    min-height: 82px;
    padding: 14px;
    gap: 12px;
  }
  body .top-menus > ul > li > a > i {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  body .top-menus > ul > li > a > .text > .title {
    font-size: 14px;
  }
  body .top-menus > ul > li > a > .text > .desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 11px;
    line-height: 1.45;
  }
}
body .fullsize-button {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 10px;
}
body .fullsize-button a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 3px #909090;
  border-radius: 10px;
  opacity: 1;
}
body .fullsize-button a:hover {
  color: #fff;
  background: var(--main_color);
}
body .normaltext.user-event-table {
  max-width: 1280px;
  margin: 0 auto 18px;
  padding: 0 20px;
}
body .normaltext.user-event-table > p:has(a.button) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
body .normaltext.user-event-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
body .normaltext.user-event-table table tr {
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
}
body .normaltext.user-event-table table tr:hover td {
  background: var(--app_surface_tint) !important;
  color: var(--app_text);
}
body .normaltext.user-event-table table th {
  padding: 0 14px 6px;
  color: var(--app_text_muted);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
}
body .normaltext.user-event-table table td {
  padding: 14px;
  border-top: 1px solid var(--app_border);
  border-bottom: 1px solid var(--app_border);
  font-size: 13px;
}
body .normaltext.user-event-table table td:first-child {
  border-left: 1px solid var(--app_border);
  border-radius: var(--app_radius) 0 0 var(--app_radius);
  font-weight: 800;
  color: var(--main_color);
}
body .normaltext.user-event-table table td:last-child {
  border-right: 1px solid var(--app_border);
  border-radius: 0 var(--app_radius) var(--app_radius) 0;
  font-weight: 700;
}
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 {
  max-width: 1040px;
  margin: 0 auto 10px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0 14px;
  background: var(--app_surface);
  border: 1px solid var(--app_border);
  border-radius: 14px 4px 14px 4px;
  box-shadow: var(--app_shadow_soft);
}
body .update_detail p {
  padding: 12px 14px;
  min-height: 0;
  border-left: 0;
  background: transparent;
  border-bottom: 1px solid var(--app_border);
  line-height: 1.55;
}
body .update_detail p a {
  font-weight: 700;
  text-decoration: none;
}
body .update_detail p.subtitle {
  grid-row: 1/span 8;
  align-self: start;
  justify-self: start;
  margin: 12px 0 12px 14px;
  padding: 6px 0;
  width: auto;
  min-width: 92px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--main_color);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
}
body .update_detail p:last-child {
  border-bottom: 0;
}
body .update_detail span,
body .update_detail time {
  color: var(--app_text_muted);
}
@media screen and (max-width: 640px) {
  body .update_detail {
    grid-template-columns: 1fr;
  }
  body .update_detail p {
    padding: 10px 12px;
  }
  body .update_detail p.subtitle {
    grid-row: auto;
    justify-self: start;
    margin: 12px 12px 0;
  }
}
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 .update_detail_show_item {
  max-width: 1040px;
  margin: 14px auto 34px;
  padding: 0 20px;
}
body .panel {
  display: flex;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 0 20px;
  gap: 8px;
}
body .panel li {
  display: block;
  text-align: center;
}
body .panel li.colorpie_red a {
  background: var(--colorpie_red);
}
body .panel li.colorpie_blue a {
  background: var(--colorpie_blue);
}
body .panel li.colorpie_white a {
  background: var(--colorpie_white);
}
body .panel li.colorpie_black a {
  background: var(--colorpie_black);
}
body .panel li.colorpie_green a {
  background: var(--colorpie_green);
}
body .panel li.colorpie_none a {
  background: var(--colorpie_none);
}
body .panel li {
  flex: 0 0 auto;
  min-width: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--app_shadow_soft);
}
body .panel li a {
  font-size: 16px;
  border-radius: 5px;
  display: block;
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
}
body div.overwrap {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 9999999;
}
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.cardinfo_wrap .cardinfo {
  position: relative;
  width: 480px;
  max-width: 100%;
  /* デバイスが100dvhをサポートしている場合 */
}
@supports (height: 90dvh) {
  body div.overwrap.cardinfo_wrap .cardinfo {
    height: 90dvh;
  }
}
body div.overwrap.cardinfo_wrap .cardinfo {
  /* デバイスが100dvhをサポートしていない場合 */
}
@supports not (height: 90dvh) {
  body div.overwrap.cardinfo_wrap .cardinfo {
    height: 80vh;
  }
}
body div.overwrap.cardinfo_wrap .cardinfo {
  margin: 5vh auto;
  background: #fff;
  overflow-y: scroll;
}
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.overwrap {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: rgba(23, 26, 38, 0.68);
  backdrop-filter: blur(3px);
}
body div.overwrap .closebutton {
  position: fixed;
  z-index: 2;
  width: 44px;
  height: 44px;
  top: 12px;
  right: 12px;
}
body div.overwrap .closebutton p {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--app_surface);
  color: var(--app_text);
  font-size: 0;
  line-height: 58px;
  overflow: hidden;
  rotate: none;
  transform: none;
  box-shadow: 0 0 5px #000;
}
body div.overwrap .closebutton p i {
  font-size: 22px;
}
body div.overwrap.searchform_wrap .searchform {
  position: relative;
  max-width: 100%;
  /* デバイスが100dvhをサポートしている場合 */
}
@supports (height: 90dvh) {
  body div.overwrap.searchform_wrap .searchform {
    height: 90dvh;
  }
}
body div.overwrap.searchform_wrap .searchform {
  /* デバイスが100dvhをサポートしていない場合 */
}
@supports not (height: 90dvh) {
  body div.overwrap.searchform_wrap .searchform {
    height: 80vh;
  }
}
body div.overwrap.searchform_wrap .searchform {
  width: min(1120px, 100% - 32px);
  margin: 32px auto;
  border-radius: var(--app_radius_modal);
  background: var(--app_surface_soft);
  box-shadow: var(--app_shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
body div.overwrap.searchform_wrap .searchform:before {
  content: "カード検索";
  display: block;
  padding: 20px 24px 4px;
  color: var(--app_text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}
body div.overwrap.searchform_wrap .searchform form {
  flex-wrap: wrap;
  position: relative;
  display: flex;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: clip;
  overscroll-behavior: contain;
  height: auto;
  padding: 18px 18px 24px;
  background: var(--app_surface_soft);
}
@media screen and (max-width: 640px) {
  body div.overwrap.searchform_wrap .searchform form {
    padding: 14px 12px;
  }
}
body div.overwrap.searchform_wrap .searchform form dl {
  flex-wrap: wrap;
  padding-bottom: 10px;
}
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 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 14px;
  margin: 0 0 12px;
  border: 1px solid var(--app_border);
  border-radius: 10px 2px 10px 2px;
  background: var(--app_surface);
  box-shadow: 0 3px 10px rgba(22, 24, 34, 0.04);
}
body div.overwrap.searchform_wrap .searchform form dl.landscape {
  flex-direction: row;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl.half {
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl.half {
    width: 100%;
  }
}
@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.half {
  min-height: 92px;
  align-self: stretch;
}
body div.overwrap.searchform_wrap .searchform form dl dt {
  font-weight: bold;
  text-decoration: none;
  color: var(--app_text);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
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.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 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 {
  max-width: 100%;
  min-width: 0;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}
body div.overwrap.searchform_wrap .searchform form dl dd:last-child {
  margin-bottom: 0;
}
body div.overwrap.searchform_wrap .searchform form dl dd input[type=text],
body div.overwrap.searchform_wrap .searchform form dl dd select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--app_border);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--app_text);
  font-size: 16px;
}
body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}
body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel input[type=text] {
  /* テキストボックスは可能な限り広く */
  min-width: 0;
  border-radius: 8px;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel input[type=text] {
    flex: 1 1 220px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel input[type=text] {
    flex: 1 1 220px;
  }
}
@media screen and (max-width: 640px) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel input[type=text] {
    flex: 1 1 100%;
  }
}
body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label {
  position: relative;
  display: inline-block;
  padding: 7px 12px;
  border-left: none;
  background-color: #f5f5f5;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  max-width: 100%;
  border: 1px solid var(--app_border);
  border-radius: 999px;
  background: var(--app_surface_soft);
  white-space: normal;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label {
    font-size: 12px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  body div.overwrap.searchform_wrap .searchform form dl dd.inputlabel label {
    font-size: 10px;
  }
}
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);
  background: var(--main_color);
  border-color: var(--main_color);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label {
  margin-right: 2%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 34px;
  padding: 8px 12px;
  margin: 0;
  border: 1px solid var(--app_border);
  border-radius: 999px;
  background: var(--app_surface_soft);
  color: var(--app_text);
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label {
    font-size: 12px;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label {
    font-size: 9px;
  }
}
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 {
  color: var(--app_text);
  background: #fff;
  transition: all 0.2s ease;
  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 {
  border: var(--colorpie_red) 2px solid;
  color: var(--colorpie_red);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_1:has(input:checked) {
  background: var(--colorpie_red);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_2 {
  border: var(--colorpie_blue) 2px solid;
  color: var(--colorpie_blue);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_2:has(input:checked) {
  background: var(--colorpie_blue);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_3 {
  border: var(--colorpie_white) 2px solid;
  color: var(--colorpie_white);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_3:has(input:checked) {
  background: var(--colorpie_white);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_4 {
  border: var(--colorpie_black) 2px solid;
  color: var(--colorpie_black);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_4:has(input:checked) {
  background: var(--colorpie_black);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_5 {
  border: var(--colorpie_green) 2px solid;
  color: var(--colorpie_green);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_5:has(input:checked) {
  background: var(--colorpie_green);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_6 {
  border: var(--colorpie_none) 2px solid;
  color: var(--colorpie_none);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_6:has(input:checked) {
  background: var(--colorpie_none);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_7 {
  background: #fff;
  border: var(--main_color) 2px solid;
  color: linear-gradient(to right, rgb(201, 44, 31) 0%, rgb(201, 44, 31) 20%, rgb(55, 148, 218) 20%, rgb(55, 148, 218) 40%, rgb(230, 176, 45) 40%, rgb(230, 176, 45) 60%, rgb(117, 80, 152) 60%, rgb(117, 80, 152) 80%, rgb(104, 162, 80) 80%, rgb(104, 162, 80) 100%);
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label.cl_7:has(input:checked) {
  background: linear-gradient(to right, rgb(201, 44, 31) 0%, rgb(201, 44, 31) 20%, rgb(55, 148, 218) 20%, rgb(55, 148, 218) 40%, rgb(230, 176, 45) 40%, rgb(230, 176, 45) 60%, rgb(117, 80, 152) 60%, rgb(117, 80, 152) 80%, rgb(104, 162, 80) 80%, rgb(104, 162, 80) 100%);
  color: #fff;
}
body div.overwrap.searchform_wrap .searchform form dl dd .label_wrap label input {
  margin-right: 5px;
  accent-color: var(--main_color);
}
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-list {
  border-color: var(--app_border);
  border-radius: 8px;
  max-width: 100%;
  overflow-x: clip;
}
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-list li,
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-list span {
  display: block;
  width: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-overflow: clip;
}
@media screen and (max-width: 640px) {
  body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selectable,
  body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selection {
    width: 100%;
  }
}
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selectable,
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selection {
  width: calc(50% - 8px);
}
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selectable .ms-list li,
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selectable .ms-list li span,
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selection .ms-list li,
body div.overwrap.searchform_wrap .searchform form dl dd .ms-container .ms-selection .ms-list li span {
  display: block;
  width: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-overflow: clip;
}
body div.overwrap.searchform_wrap .searchform div.footer {
  content: " ";
  display: flex;
  gap: 10px;
  bottom: 0;
  left: 0;
  position: static;
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 76px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--app_border);
  box-shadow: 0 -10px 22px rgba(22, 24, 34, 0.08);
  backdrop-filter: blur(8px);
  z-index: 1;
}
body div.overwrap.searchform_wrap .searchform div.footer p {
  height: 100%;
  flex: 1 1 160px;
  min-width: 0;
}
body div.overwrap.searchform_wrap .searchform div.footer p a {
  display: block;
  text-align: center;
  padding: 10px 0;
  line-height: 1.5em;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  background: var(--app_surface_soft);
  color: var(--app_text);
  border: 1px solid var(--app_border);
}
body div.overwrap.searchform_wrap .searchform div.footer p a:hover {
  opacity: 1;
}
body div.overwrap.searchform_wrap .searchform div.footer p.submit {
  flex: 2 1 220px;
}
body div.overwrap.searchform_wrap .searchform div.footer p.submit a {
  line-height: 1em;
  background: var(--main_color);
  color: #fff;
  border-color: var(--main_color);
  font-size: 18px;
}
body div.smallcardlist_wrap div.smallcardlist {
  display: flex;
  flex-wrap: wrap;
}
body div.smallcardlist_wrap div.smallcardlist.consider_list dl.smallcard_info dd.cardswap {
  display: none;
}
body div.smallcardlist_wrap div.smallcardlist {
  justify-content: flex-start;
  gap: 18px;
  padding: 18px;
}
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;
}
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 {
  overflow: hidden;
  border-radius: 14px 3px 14px 3px;
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
  border: 1px solid var(--app_border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
    max-width: calc(20% - 15px);
  }
}
@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(25% - 14px);
  }
}
@media screen and (max-width: 640px) {
  body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info {
    max-width: calc(50% - 9px);
  }
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info:hover {
  transform: translateY(-2px);
  box-shadow: var(--app_shadow);
}
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;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  background: #fff;
}
@media screen and (max-width: 640px) {
  body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cardswap {
    top: 50%;
  }
}
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.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.cnt {
  position: absolute;
  display: block;
  margin: 0 auto;
  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.cnt {
  left: auto;
  right: 8px;
  top: 8px;
  bottom: auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--main_color) 48%, #fff);
  background: #fff;
  color: var(--main_color);
  font-size: 16px;
  font-weight: 900;
  box-shadow: var(--app_shadow_soft);
}
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 {
  display: block;
  position: absolute;
  bottom: 8px;
  background: transparent;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.consider {
  left: 8px;
  bottom: 50px;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.holo {
  right: 8px;
  bottom: 50px;
}
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.listcreate {
  left: 8px;
  top: auto;
  bottom: 95px;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.add {
  left: 8px;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.remove {
  right: 8px;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button a {
  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.button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--main_color);
  border: 1px solid color-mix(in srgb, var(--main_color) 55%, #fff);
  box-shadow: var(--app_shadow_soft);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.add a {
  background: var(--main_color);
  color: #fff;
}
body div.smallcardlist_wrap div.smallcardlist dl.smallcard_info dd.button.remove a {
  background: #2d3345;
  border-color: #2d3345;
  color: #fff;
}
body div.cardlist_wrap div.cardlist {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  padding: 18px;
}
body div.cardlist_wrap div.cardlist dl.card_info {
  position: relative;
}
@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(16.6666666667% - 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 {
  width: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--app_border);
  border-radius: 14px 3px 14px 3px;
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
}
body div.cardlist_wrap div.cardlist dl.card_info > dt {
  width: 100%;
  padding: 14px 14px 10px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--app_border);
}
body div.cardlist_wrap div.cardlist dl.card_info > dt .card_number {
  font-weight: bold;
  margin-bottom: 3px;
  color: var(--app_text_muted);
  font-size: 11px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dt .furi {
  font-size: 10px;
  margin-bottom: 3px;
  color: var(--app_text_muted);
}
body div.cardlist_wrap div.cardlist dl.card_info > dt .name {
  font-weight: bold;
  color: var(--app_text);
  font-size: 15px;
  line-height: 1.45;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd span {
  font-weight: bold;
  display: block;
  color: var(--app_text_muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0;
  margin-bottom: 3px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 10px;
  padding: 12px;
}
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: 50%;
  transform: translate(0, -50%);
}
transra 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;
  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 dt.card_image {
  grid-column: 1/-1;
  position: relative;
  padding-right: 0;
  margin-bottom: 2px;
  border-radius: 2px;
  overflow: visible;
  background: var(--app_surface_soft);
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image img {
  width: min(100%, 300px);
  min-height: 300px;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate {
  bottom: 10px;
  top: auto;
  z-index: 2;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.consider {
  left: 10px;
  bottom: 52px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.holo {
  right: 10px;
  bottom: 52px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.listcreate {
  left: 10px;
  top: auto;
  bottom: 95px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.add {
  left: 10px;
  right: auto;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.remove {
  right: 10px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--main_color) 55%, #fff);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--main_color);
  box-shadow: var(--app_shadow_soft);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.add a {
  background: var(--main_color);
  color: #fff;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .deckcreate.remove a {
  background: #2d3345;
  border-color: #2d3345;
  color: #fff;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate {
  left: 10px;
  top: auto;
  bottom: 95px;
  z-index: 2;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--main_color) 55%, #fff);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--main_color);
  box-shadow: var(--app_shadow_soft);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .listcreate.already a {
  background: #2d3345 !important;
  border-color: #2d3345 !important;
  color: #fff !important;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dt.card_image .cnt {
  left: auto;
  right: 10px;
  top: 10px;
  bottom: auto;
  height: 44px;
  width: 44px;
  line-height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--main_color) 48%, #fff);
  color: var(--main_color);
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: var(--app_shadow_soft);
}
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.change_image_wrap {
  grid-column: span 2;
}
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.type {
  grid-column: span 2;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.race {
  grid-column: span 2;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.illust {
  grid-column: 1/-1;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.recorded {
  grid-column: 1/-1;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.flavor {
  grid-column: 1/-1;
  line-height: 1.5rem;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd {
  float: none;
  min-width: 0;
  margin-bottom: 0;
  padding: 7px 9px;
  border-radius: 4px;
  background: var(--app_surface_soft);
  color: var(--app_text);
  font-size: 12px;
  line-height: 1.45;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.samecard, body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.refcard {
  grid-column: span 2;
  position: static;
  padding: 0;
  background: transparent;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.samecard a, body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.refcard a {
  display: inline-block;
  border-radius: 999px;
  background: var(--app_surface_tint);
  color: var(--main_color);
  padding: 7px 12px;
  font-weight: 800;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.icon {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.icon span {
  display: block;
  width: 100%;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap {
  grid-column: 1/-1;
  line-height: 1.5rem;
}
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.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.cardtext_wrap {
  max-height: none;
  overflow-y: visible;
  overflow-x: clip;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd .no_entry_card {
  border: 1px solid #f0c66a;
  background: #fff7df;
  color: #5b3b00;
  font-weight: 700;
}
body div.cardlist_wrap div.cardlist dl.card_info > dd dl.card_detail dd.bikou {
  grid-column: 1/-1;
  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.bikou p.caution {
  display: inline-block;
  margin: 2px 6px 2px 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0f0;
  color: #c62929;
  font-size: 11px;
  font-weight: 800;
}
body .recipe.deckcreate_wrap {
  max-width: 1480px;
  margin: 0 auto 18px;
}
body .recipe.deckcreate_wrap h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
  cursor: pointer;
  background: var(--app_surface);
  border: 1px solid var(--app_border);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--app_shadow_soft);
}
body .recipe.deckcreate_wrap h2:after {
  content: "\f107";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-left: auto;
  color: var(--main_color);
  line-height: 1;
}
body .recipe.deckcreate_wrap h2 span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  margin-left: 4px;
}
body .recipe.deckcreate_wrap h2.is_collapsed {
  border-radius: 0 0 8px 8px;
}
body .recipe.deckcreate_wrap h2.is_collapsed:after {
  content: "\f105";
}
body .recipe.deckcreate_wrap .deckcreate_cardlist {
  justify-content: flex-start;
}
body .recipe.deckcreate_wrap .deckcreate_cardlist.hide {
  display: none !important;
}
body .recipe_wrap p.jump_link {
  display: none;
}
body .recipe_wrap .deckcreate_cardlist.smallcardlist {
  justify-content: flex-start;
}
body .recipe_wrap > .recipe h2.pickup {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
  cursor: pointer;
}
body .recipe_wrap > .recipe h2.pickup:after {
  content: "\f107";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-left: auto;
  color: #fff;
  line-height: 1;
}
body .recipe_wrap > .recipe h2.pickup.is_collapsed:after {
  content: "\f105";
}
body .deckmake_top_controls,
body .deckmake_mobile_menu_controls {
  max-width: 1280px;
  margin: 0 auto 18px;
  border: 1px solid var(--app_border);
  border-radius: var(--app_radius);
  background: var(--app_surface);
  box-shadow: var(--app_shadow_soft);
  overflow: hidden;
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body .deckmake_top_controls,
  body .deckmake_mobile_menu_controls {
    margin: 0 10px 18px;
  }
}
@media screen and (max-width: 640px) {
  body .deckmake_top_controls,
  body .deckmake_mobile_menu_controls {
    margin: 0 10px 18px;
  }
}
body .deckmake_top_controls h2,
body .deckmake_mobile_menu_controls h2 {
  padding: 18px 20px;
  margin: 0 10px 12px;
  background: transparent;
  border-bottom: 1px solid var(--app_border);
}
body .deckmake_top_controls .button_area,
body .deckmake_mobile_menu_controls .button_area {
  margin: 18px auto;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body .deckmake_mobile_menu_controls {
    display: none;
  }
}
body div.page_top_jump {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
}
body div.page_top_jump p {
  margin-left: auto;
  width: 52px;
}
body div.page_top_jump p a {
  display: block;
  font-size: 16px;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border: 0;
  background: #2d3345;
  color: #fff;
  box-shadow: var(--app_shadow);
}
body div.page_top_jump p a:hover {
  background: var(--main_color);
  color: #fff;
}
body .deckmenu_fab_wrap .deckmenu_fab {
  border: 0;
  background: var(--main_color);
  box-shadow: var(--app_shadow);
}
body div.footer_decklist_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
}
body div.footer_decklist_wrap .footer_decklist {
  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 div.footer_decklist_wrap .footer_decklist {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: auto;
  flex-wrap: wrap;
  max-height: 42vh;
}
body div.footer_decklist_wrap {
  background: var(--app_surface);
  border-top: 1px solid var(--app_border);
  box-shadow: 0 -10px 24px rgba(22, 24, 34, 0.1);
}
body div.footer_decklist_wrap h2 {
  padding: 15px 10px;
  margin-bottom: 0;
  font-size: 12px;
  background-color: var(--main_color);
}
body div.footer_decklist_wrap h2 span {
  display: inline-block;
  margin-right: 5px;
}
body div.footer_decklist_wrap h2 {
  background: #2d3345;
  color: #fff;
}
body footer {
  margin-top: 50px;
  padding: 50px 10px 0;
}
body footer p {
  text-align: center;
  line-height: 1.5em;
}
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 footer {
  background: #202433;
  color: rgba(255, 255, 255, 0.82);
}
body footer a {
  color: #fff;
  text-decoration: none;
}
body footer ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
body footer ul li {
  display: block;
}
body footer ul {
  flex-wrap: wrap;
}

body#profile_page {
  background: #f5f5f5;
}
body#profile_page .send_wrap {
  max-width: 1240px;
  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;
  gap: 10px;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body#profile_page .send_wrap .send_form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body#profile_page .send_wrap .send_form {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  body#profile_page .send_wrap .send_form {
    display: flex;
    flex-direction: column;
  }
}
body#profile_page .send_wrap .send_form .fullsize_column {
  grid-column: 1/-1;
}
body#profile_page .send_wrap .send_form .half_column {
  grid-column: span 2;
}
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: 0;
  border-bottom: 1px solid #ececec;
  display: block;
}
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;
}
@media screen and (min-width: calc(1280px + 1px)) {
  body#profile_page .send_wrap .send_form dl.form_item dd.sns_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: calc(1280px)) and (min-width: calc(640px + 1px)) {
  body#profile_page .send_wrap .send_form dl.form_item dd.sns_area {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  body#profile_page .send_wrap .send_form dl.form_item dd.sns_area {
    display: flex;
    flex-direction: column;
  }
}
body#profile_page .send_wrap .send_form dl.form_item dd.sns_area .sns_x_field {
  grid-row: span 2;
}
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 {
  --colorpie_red: #c92c1f;
  --colorpie_blue: #3794da;
  --colorpie_white: #e6b02d;
  --colorpie_black: #755098;
  --colorpie_green: #68a250;
  --colorpie_none: #d84a88;
}
body#profile_page .send_wrap .send_form dl.form_item dd.checkbox_group label,
body#profile_page .send_wrap .send_form dl.form_item dd.radio_group label {
  transition: all 0.2s ease;
}
body#profile_page .send_wrap .send_form dl.form_item dd.checkbox_group label.cl_red,
body#profile_page .send_wrap .send_form dl.form_item dd.radio_group label.cl_red {
  border: 2px solid var(--colorpie_red);
  color: var(--colorpie_red);
}
body#profile_page .send_wrap .send_form dl.form_item dd.checkbox_group label.cl_red:has(input:checked),
body#profile_page .send_wrap .send_form dl.form_item dd.radio_group label.cl_red:has(input:checked) {
  background: var(--colorpie_red);
  color: #fff;
}
body#profile_page .send_wrap .send_form dl.form_item dd.checkbox_group label.cl_blue,
body#profile_page .send_wrap .send_form dl.form_item dd.radio_group label.cl_blue {
  border: 2px solid var(--colorpie_blue);
}
body#profile_page .send_wrap .send_form dl.form_item dd.checkbox_group label.cl_blue:has(input:checked),
body#profile_page .send_wrap .send_form dl.form_item dd.radio_group label.cl_blue:has(input:checked) {
  background: var(--colorpie_blue);
  color: #fff;
}
body#profile_page .send_wrap .send_form dl.form_item .radio_group {
  display: flex;
  gap: 10px;
}
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;
  cursor: pointer;
}
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.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 */