﻿:root {
  --bg: #f7f7f2;
  --text: #1b1f24;
  --surface: #ffffff;
  --accent: #0f766e;
  --muted: #607080;
  --border: #d8dde3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f9f9f9;
  color: var(--text);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-top: 76px;
  font-size: 16px;
}

.container {
  width: min(1080px, calc(100% - 24px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 12px 0;
  background: #f9f9f9;
  border-bottom: 1px solid #dbdbdb;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
}

.header-logo {
  justify-self: center;
  line-height: 0;
}

.header-logo img {
  width: auto;
  height: 15px;
  display: block;
}

.header-logo-text {
  line-height: 1;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.header-left {
  justify-self: start;
  width: 40px;
  height: 40px;
}

.header-back {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-back img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.header-bell {
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-bell img {
  display: block;
  object-fit: contain;
}

.header-bell.header-close {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  color: #1b1b1b;
}

main {
  padding-bottom: 96px;
}

.page-mypage .mypage-top-section {
  position: relative;
  width: 100%;
  height: 178px;
  background: #3a8e42;
}

.page-mypage .mypage-top-inner {
  position: relative;
  width: min(1080px, calc(100% - 24px));
  height: 100%;
  margin-inline: auto;
}

.page-mypage .mypage-top-user {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.page-mypage-top .support24-page {
  padding: 0 12px 102px;
}

.page-mypage-top .support24-menu {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.page-mypage .header-bell.header-member-card {
  width: auto;
  height: auto;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: #3a8e42;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.page-mypage .header-bell.header-member-card img {
  width: 20px;
  height: 20px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 30px);
}

.slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  aspect-ratio: 16 / 6;
}

.slider.is-syncing {
  visibility: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.6s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 24, 33, 0.65);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.nav.prev {
  left: 12px;
}

.nav.next {
  right: 12px;
}

.dots {
  position: static;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #e6e6e6;
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: #3a8e42;
}

#sec03 {
  margin-top: 50px;
}

#sec03.is-syncing {
  visibility: hidden;
}

#sec03 h2 span {
  display: block;
  margin-top: 7px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

#sec03 h2 {
  color: #3a8e42;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}

.text-center {
  margin: 0 0 40px;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

#sec03 .row {
  display: block;
  margin-top: 14px;
}

#sec03 .row .col.span_6 {
  min-width: 0;
  margin-top: 14px;
}

#sec03 .row .col.span_6:first-child {
  margin-top: 0;
}

#sec03 .col.span_6 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

#sec03 .col.span_6 figure {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

#sec03 .col.span_6 img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
}

#sec03 .col.span_6 .text {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 12px;
  letter-spacing: 0;
}

#sec03 .col.span_6 .date {
  order: 2;
  margin: 0;
  margin-top: 8px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

#sec03 .col.span_6 .date span {
  display: inline-block;
  background: transparent;
  color: #7b7b7b;
  padding: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

#sec03 .col.span_6 figcaption {
  order: 1;
  margin-top: 0;
  font-size: 16px;
}

.tb,
.sp {
  display: none;
}

.more {
  margin: 18px 0 0;
}

.more a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .slider {
    aspect-ratio: 16 / 8;
  }

  .nav {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .sp {
    display: inline;
  }

  #sec03 h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #sec03 h2 span {
    font-size: 12px;
  }

  .text-center {
    margin-bottom: 30px;
  }

  #sec03 .col.span_6 img {
    width: 80px;
    height: 80px;
  }

  #sec03 .col.span_6 .text {
    width: calc(100% - 80px);
  }
}

.app-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: 82px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.app-footer .item {
  color: #222;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.app-footer .item svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-footer .item .icon-wrap {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}

.app-footer .item img {
  display: block;
  object-fit: contain;
}

.app-footer .item.is-active {
  color: #3a8e42;
}

.merit-tabs {
  width: 100%;
  height: 50px;
  background: #f9f9f9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-bottom: 1px solid #d2d2d2;
}

.merit-tabs .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #7b7b7b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}

.merit-tabs .tab.is-active {
  color: #3a8e42;
}

.merit-tabs .tab.is-active::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 3px;
  background: #3a8e42;
  border-radius: 2px;
}

.merit-content {
  padding: 16px 0 0;
}

.merit-panel {
  display: none;
}

.merit-panel.is-active {
  display: block;
}

.merit-container {
  max-width: 880px;
}

.merit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.merit-card {
  display: block;
  text-decoration: none;
  color: #1b1f24;
  background: #fff;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  min-height: 240px;
}

.merit-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 10px auto 7px auto;
}

.merit-card .category {
  margin: 10px 10px 0;
  color: #fff;
  display: inline-block;
  padding: 2px 8px;
  background: #7b7b7b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.merit-card .category.category-special {
  background: #ff9924;
}

.merit-card .category.category-present {
  background: #ff5b4c;
}

.merit-card .category.category-event {
  background: #3a8e42;
}

.merit-card figcaption {
  margin: 4px 10px 12px;
  font-size: 16px;
  font-weight: 500;
}

.merit-card figcaption span {
  color: #767676;
  font-size: 10px;
  line-height: 1.4;
}

.merit-partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0px 15px;
}

.merit-partner-item {
  display: block;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.merit-partner-item img {
  width: 100%;
  height: auto;
  display: block;
}

.merit-partner-empty {
  display: none;
  margin: 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  color: #4b5563;
  text-align: center;
  padding: 24px 12px;
  font-size: 13px;
  font-weight: 700;
}

.merit-partner-empty.is-visible {
  display: block;
}

.prize-page {
  padding-top: 20px;
}

.prize-container {
  max-width: 760px;
}

.prize-detail {
  background: transparent;
  border: 0;
  padding: 0 0 24px;
}

.prize-category,
.present-category {
  margin: 10px auto 0;
  display: flex;
  width: fit-content;
  padding: 2px 5px;
  color: #fff;
  background: #7b7b7b;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.prize-category.is-present {
  background: #ff5b4c;
}
.prize-category.is-prize {
  background: #ff9924;
}
.present-category.is-present {
  background: #ff5b4c;
}

.prize-category.is-event {
  background: #3a8e42;
}

.prize-title {
  margin: 10px 0 0;
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.prize-article {
  margin: 10px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
  border-bottom: 0;
}

.prize-page.is-event .prize-article {
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 10px;
}

.prize-remark {
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #76767678;
}

.prize-note-label {
  margin: 0;
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.prize-note-text {
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

.prize-product-links {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.prize-lottery-period {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.prize-lottery-period-title {
  margin: 0;
  color: #1b1b1b;
  font-weight: 550;
}

.prize-lottery-period-value {
  margin: 5px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.prize-page.is-event .prize-lottery-period {
  display: block;
  border: 1px solid #c0c0c0;
  margin-top: 20px;
}

.prize-page.is-event .prize-lottery-period-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  padding: 0;
  border-top: 1px solid #c0c0c0;
  line-height: 1.6;
}

.prize-page.is-event .prize-lottery-period-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 110px;
  width: 1px;
  background: #c0c0c0;
}

.prize-page.is-event .prize-lottery-period-item:first-child {
  border-top: 0;
}

.prize-page.is-event .prize-lottery-period-title {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  background: #e8f6e9;
}

.prize-page.is-event .prize-lottery-period-value {
  margin: 0;
  padding: 8px 12px;
}

.prize-guidance {
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
}

.prize-guidance-item + .prize-guidance-item {
  margin-top: 10px;
}

.prize-guidance-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 550;
}

.prize-guidance-text {
  margin: 5px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.prize-product-links-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 500;
}

.prize-product-links-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.prize-product-links-list li + li {
  margin-top: 6px;
}

.prize-product-links-list a {
  color: #1f5fae;
  text-decoration: underline;
  word-break: break-all;
}

.prize-figure {
  margin: 0 auto;
  width: min(50%, 420px);
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-expired-notice {
  text-align: center;
  color: #e00;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 12px;
}

.prize-winner-notice {
  text-align: center;
  color: #f5b15e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 12px;
}

.prize-applied-notice {
  text-align: center;
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 12px;
}

.prize-action-winner {
  background: #f5b15e;
  color: #fff;
  display: flex;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.prize-figure img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.prize-meta {
  margin: 16px 0 0;
  padding: 12px;
  border: 1px solid #e6e6e6;
  background: #f9fbf9;
}

.prize-meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 6px;
}

.prize-meta-row + .prize-meta-row {
  margin-top: 6px;
}

.prize-meta-row dt {
  color: #3a8e42;
  font-size: 13px;
  font-weight: 700;
}

.prize-meta-row dd {
  margin: 0;
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 500;
}

.prize-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.prize-action {
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.prize-action-primary {
  background: #3a8e42;
  color: #fff;
  display: flex;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.prize-action-secondary {
  border: 1px solid #3a8e42;
  background: #fff;
  color: #3a8e42;
}

.prize-action.prize-action-winner {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

body.is-prize-winner-modal-open {
  overflow: hidden;
}

.prize-winner-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.prize-winner-modal[hidden] {
  display: none !important;
}

.prize-winner-modal-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: 92vh;
  border-radius: 12px;
  background: #fff;
  padding: 40px 18px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  overflow: auto;
}

[data-member-card-modal] .prize-winner-modal-dialog {
  padding: 20px 18px 0;
}

.prize-winner-modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.prize-winner-modal-error {
  margin: 8px 0 0;
  color: #e00;
  font-size: 14px;
  text-align: center;
}

.prize-action.is-disabled,
.prize-action[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
}

.prize-action.is-expired,
.prize-action-primary.is-expired {
  background: #a8a8a8;
  color: #fff;
  pointer-events: none;
  cursor: default;
}

.column-single-page {
  padding: 20px 12px 102px;
}

.column-single-card {
}

.column-single-title {
  margin: 0;
  color: #3a8e42;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}

.column-single-meta {
  margin: 20px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.column-single-category {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: #3a8e42;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}

.column-single-figure {
  margin: 14px 0 0;
}

.column-single-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.column-single-source {
  margin-top: 6px;
  color: #999;
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

.column-single-source a {
  color: inherit;
  text-decoration: underline;
}

.column-single-lead {
  margin: 20px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  white-space: pre-line;
}

.column-single-section {
  margin-top: 20px;
}

.column-single-section-title {
  margin: 0 0 20px;
  padding: 10px;
  background-color: #f0f7f3;
  color: #3a8e42;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.column-single-section-text {
  margin: 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

.column-single-summary {
  margin: 24px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

.column-single-pagination {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.column-single-pagination-link {
  min-height: 44px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #1b1b1b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 14px;
}

.column-single-pagination-link.is-next {
  justify-content: center;
}

.column-single-back {
  margin-top: 14px;
  min-height: 44px;
  border-radius: 999px;
  background: #3a8e42;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  padding: 0 14px;
}

.support24-page,
.demo-login-page {
  padding: 20px 12px 102px;
}

.mypage-page {
  padding: 20px 12px 102px;
}

.page-mypage:not(.page-reminder) .mypage-page {
  visibility: hidden;
}

.page-mypage.is-auth-ready .mypage-page {
  visibility: visible;
}

/* Support24 typography rule: 14px/12px => 1.6, 10px => 1.4 */
.support24-page .support24-menu-main,
.demo-login-page .support24-menu-main,
.support24-page .support24-menu-sub,
.demo-login-page .support24-menu-sub,
.support24-page .support24-phone-pill-text,
.demo-login-page .support24-phone-pill-text,
.support24-page .support24-contact-pill-text,
.demo-login-page .support24-contact-pill-text,
.support24-page .support24-chat-title,
.demo-login-page .support24-chat-title,
.support24-page .support24-form-note-red,
.demo-login-page .support24-form-note-red,
.support24-page .support24-form-label,
.demo-login-page .support24-form-label,
.support24-page .support24-form-input,
.demo-login-page .support24-form-input,
.support24-page .support24-form-select,
.demo-login-page .support24-form-select,
.support24-page .support24-form-textarea,
.demo-login-page .support24-form-textarea,
.support24-page .support24-form-help,
.demo-login-page .support24-form-help,
.support24-page .support24-radio-list label,
.demo-login-page .support24-radio-list label,
.support24-page .support24-contact-submit,
.demo-login-page .support24-contact-submit,
.support24-page .support24-thanks-title,
.demo-login-page .support24-thanks-title,
.support24-page .support24-thanks-support-label,
.demo-login-page .support24-thanks-support-label {
  line-height: 1.6;
}

.support24-page .support24-notes-title,
.demo-login-page .support24-notes-title,
.support24-page .support24-notes-item,
.demo-login-page .support24-notes-item {
  line-height: 1.4;
}

.support24-intro {
  margin-bottom: 20px;
}

.support24-title {
  margin: 0 0 15px;
  color: #3a8e42;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.support24-moveout-note {
  margin-bottom: 10px;
  padding: 20px 10px;
  background: #f0f7f3;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.support24-moveout-banner {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  display: block;
}

.support24-moveout-block {
  margin-bottom: 40px;
}

.support24-key-steps {
  margin: 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.support24-key-step-card {
  position: relative;
  margin-top: 0;
  padding: 40px 20px 20px;
  border: 2px solid #3a8e42;
  border-radius: 22px;
}

.support24-key-step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  min-width: 132px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #3a8e42;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.support24-key-step-text {
  margin: 0;
  text-align: center;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.support24-key-step-media {
  margin: 16px auto 0;
  width: min(190px, 100%);
  aspect-ratio: 190 / 92;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support24-key-step-media img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.support24-text {
  margin: 0;
  color: #1b1b1b;
}
.support24-emergency-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: #fcf603;
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1.6;
  font-weight: bold;
}

.support24-emergency-wrap {
  background: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  margin: 20px;
}

.support24-menu {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.support24-menu-example {
  padding: 20px;
  display: flex;
  align-items: center;
  background: #e8f2fa;
}

.page-support24-other .support24-menu-example,
.page-support24-other .support24-phone-pill.is-blue {
  background: #fff7e9;
}
.support24-menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: #1b1b1b;
  gap: 2px;
  height: 70px;
  padding: 0 49px 0 20px;
}

.support24-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #d2d2d2;
}

.support24-menu-item:first-child::before {
  display: none;
}

.support24-menu-example + .support24-menu-item::before {
  display: none;
}

.support24-menu-main {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item
  .support24-menu-main,
.page-support24-other
  .support24-menu
  > .support24-menu-item
  .support24-menu-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item
  .support24-menu-main::before,
.page-support24-other
  .support24-menu
  > .support24-menu-item
  .support24-menu-main::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item:nth-of-type(1)
  .support24-menu-main::before {
  background-image: url("/img/all/humidity_mid.svg");
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item:nth-of-type(2)
  .support24-menu-main::before {
  background-image: url("/img/all/water_heater.svg");
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item:nth-of-type(3)
  .support24-menu-main::before {
  background-image: url("/img/all/lightbulb_2_blue.svg");
}

.page-support24-trouble
  .support24-menu
  > .support24-menu-item:nth-of-type(4)
  .support24-menu-main::before {
  background-image: url("/img/all/approval_delegation.svg");
}

.page-support24-other
  .support24-menu
  > .support24-menu-item:nth-of-type(1)
  .support24-menu-main::before {
  background-image: url("/img/all/lightbulb_2_orange.svg");
}

.page-support24-other
  .support24-menu
  > .support24-menu-item:nth-of-type(2)
  .support24-menu-main::before {
  background-image: url("/img/all/door_sliding.svg");
}

.page-support24-other
  .support24-menu
  > .support24-menu-item:nth-of-type(3)
  .support24-menu-main::before {
  background-image: url("/img/all/computer.svg");
}
.support24-menu-sub {
  display: block;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.support24-menu-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/arrow_forward.png") no-repeat center center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.support24-menu-item.is-external-link .support24-menu-arrow {
  background-image: url("/img/all/arrow_outward.png");
}

.page-mypage .mypage-menu {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.page-mypage .mypage-menu + .mypage-menu {
  margin-top: 20px;
}

.page-mypage .mypage-menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: #1b1b1b;
  gap: 2px;
  height: 70px;
  padding: 0 49px 0 20px;
}

.page-mypage .mypage-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #d2d2d2;
}

.page-mypage .mypage-menu-item:first-child::before {
  display: none;
}

.page-mypage .mypage-menu-main {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}

.page-mypage .mypage-menu-sub {
  display: block;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.page-mypage .mypage-menu-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/arrow_forward.png") no-repeat center center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.page-mypage-profile .mypage-menu-arrow.is-value {
  right: 20px;
  width: auto;
  max-width: 56%;
  height: auto;
  background: none;
  color: #1b1b1b;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.page-mypage-room-info .mypage-menu-arrow.is-value {
  right: 20px;
  width: auto;
  max-width: 56%;
  height: auto;
  background: none;
  color: #878787;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.page-mypage-room-info
  .mypage-menu-item:nth-child(n + 6)
  .mypage-menu-arrow.is-value {
  right: 30px;
  max-width: calc(56% - 30px);
}

.page-mypage-room-info .mypage-menu-item:nth-child(n + 6)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("/img/all/arrow_forward_ios.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.page-mypage-profile .mypage-menu-item.is-editable .mypage-menu-arrow.is-value {
  right: 38px;
  max-width: calc(56% - 18px);
}

.page-mypage-profile .mypage-menu-item.is-editable::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("/img/all/arrow_forward_ios.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.page-mypage-room-info-garbage-days .mypage-garbage-section {
  margin-top: 0;
  padding: 0px 20px;
}

.page-mypage-room-info-garbage-days .mypage-garbage-text {
  margin: 20px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.page-mypage-room-info-garbage-days
  .mypage-garbage-section
  > .mypage-garbage-text:first-child {
  margin: 0;
}

.page-mypage-room-info-garbage-days .mypage-garbage-break {
  display: block;
  margin-top: 5px;
}

.page-mypage-room-info-garbage-days .mypage-garbage-table {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  border-collapse: collapse;
  table-layout: fixed;
}

.page-mypage-room-info-garbage-days .mypage-garbage-table th,
.page-mypage-room-info-garbage-days .mypage-garbage-table td {
  border: 1px solid #2a2a2a;
  padding: 8px 10px;
  font-size: 15px;
  line-height: 1.2;
}

.page-mypage-room-info-garbage-days .mypage-garbage-table th {
  width: 42%;
  background: #eaffec;
  color: #1b1b1b;
  font-weight: 400;
  text-align: left;
}

.page-mypage-room-info-garbage-days .mypage-garbage-link {
  position: relative;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #f2f2f2;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
}

.page-mypage-room-info-garbage-days .mypage-garbage-link-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.page-mypage-room-info-garbage-days .mypage-garbage-link-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/arrow_outward.png") no-repeat center center;
  background-size: contain;
}

.page-mypage-room-info-utility .mypage-utility-section {
  margin-top: 0;
  padding: 0px 20px;
}

.page-mypage-room-info-utility .mypage-utility-text {
  margin: 20px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.page-mypage-room-info-utility
  .mypage-utility-section
  > .mypage-utility-text:first-child {
  margin: 0;
}

.page-mypage-room-info-utility .mypage-utility-break {
  display: block;
  margin-top: 5px;
}

.page-mypage-room-info-utility .mypage-utility-link {
  position: relative;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #f2f2f2;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
}

.page-mypage-room-info-utility .mypage-utility-link-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.page-mypage-room-info-utility .mypage-utility-link-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/arrow_outward.png") no-repeat center center;
  background-size: contain;
}

.page-mypage-room-info-utility .mypage-utility-phone-pill {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #dfece2;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
}

.page-mypage-room-info-utility .mypage-utility-phone-pill-icon {
  width: 16px;
  height: 16px;
  display: block;
  background: url("/img/all/phone_in_talk.png") no-repeat center center;
  background-size: contain;
}

.page-mypage-room-info-utility .mypage-utility-phone-pill-text {
  font-size: 16px;
  line-height: 1.6;
}

.page-login {
  background: #ffffff;
}

.page-login .demo-login-section {
  margin-top: 20px;
  padding: 0 20px;
}

.page-login .demo-login-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 20px;
  border-radius: 12px;
  background: #fff;
}

.page-login .demo-login-title {
  margin: 0;
  display: flex;
  justify-content: center;
}

.page-login .demo-login-logo {
  width: min(220px, 50%);
  height: auto;
  display: block;
}

.page-login .demo-login-text {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.page-login .demo-login-form {
  margin-top: 40px;
}

.page-login .demo-login-label {
  display: block;
  margin: 20px 0 6px;
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.page-login .demo-login-input {
  width: 100%;
  height: 44px;
  border: 1px solid #c8c8c8;
  border-radius: 50px;
  background-color: #fff;
  padding: 0 12px;
  color: #1b1b1b;
  font-size: 14px;
  line-height: 1.4;
}

.page-login .demo-login-input:focus {
  border-color: #4f8fd8;
  outline: none;
}

.page-login .demo-login-error {
  margin: 12px 0 0;
  color: #d13f3f;
  font-size: 13px;
  line-height: 1.6;
}

.page-login .demo-login-submit {
  width: 100%;
  min-width: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-login .demo-login-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.page-login .demo-login-links {
  margin: 0px;
  text-align: center;
}

.page-login .demo-login-links .demo-login-forgot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  color: #1b1b1b;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
}

.page-login .demo-login-links .demo-login-forgot-link::after {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  background: url("/img/all/arrow_back.svg") no-repeat center center;
  background-size: contain;
}

.page-mypage-infomation .mypage-infomation-section {
}

.page-mypage-infomation .mypage-infomation-status {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.page-mypage-infomation .mypage-infomation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-mypage-infomation .mypage-infomation-item {
  position: relative;
  padding: 16px 16px;
  background-color: #ffffff;
}

.page-mypage-infomation .mypage-infomation-item:first-child {
}

.page-mypage-infomation .mypage-infomation-item.is-editable {
  cursor: pointer;
  padding-right: 30px;
}

.page-mypage-infomation .mypage-infomation-item.is-editable::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("/img/all/arrow_forward_ios.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.page-mypage-infomation .mypage-infomation-item.is-editable:focus-visible {
  outline: 2px solid #2a6fb6;
  outline-offset: -2px;
}

.page-mypage-infomation .mypage-infomation-date {
  margin: 0;
  color: #878787;
  font-size: 12px;
}

.page-mypage-infomation .mypage-infomation-body {
  margin-top: 8px;
  color: #1b1b1b;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  word-break: break-word;
}

.page-mypage-infomation .mypage-infomation-body a {
  color: inherit;
  text-decoration: none;
}

.page-mypage-infomation .mypage-infomation-body > *:first-child {
  margin-top: 0;
}

.page-mypage-infomation .mypage-infomation-body > *:last-child {
  margin-bottom: 0;
}

.page-mypage-profile-tell .mypage-current-card,
.page-mypage-profile-mail .mypage-current-card,
.page-mypage-profile-password .mypage-current-card {
  padding: 16px 20px;
}

.page-mypage-profile-tell .mypage-current-label,
.page-mypage-profile-tell .mypage-new-label,
.page-mypage-profile-mail .mypage-current-label,
.page-mypage-profile-mail .mypage-new-label,
.page-mypage-profile-password .mypage-current-label,
.page-mypage-profile-password .mypage-new-label {
  margin: 0;
  line-height: 1.6;
  display: block;
}

.page-mypage-profile-tell .mypage-current-value,
.page-mypage-profile-mail .mypage-current-value,
.page-mypage-profile-password .mypage-current-value {
  margin: 10px 0 0;
}

.page-mypage-profile-tell .change-complete-message,
.page-mypage-profile-mail .change-complete-message,
.page-mypage-profile-password .change-complete-message {
  margin: 0px;
}

.page-mypage-profile-tell .mypage-new-field,
.page-mypage-profile-mail .mypage-new-field,
.page-mypage-profile-password .mypage-new-field {
  margin-top: 16px;
  padding-top: 16px;
}

.page-mypage-profile-tell .mypage-new-input,
.page-mypage-profile-mail .mypage-new-input,
.page-mypage-profile-password .mypage-new-input {
  width: 100%;
  padding: 10px 0 10px;
  border: 0;
  border-bottom: 2px solid #3a8e42;
  background: transparent;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
}

.page-mypage-profile-tell .mypage-new-input::placeholder,
.page-mypage-profile-mail .mypage-new-input::placeholder,
.page-mypage-profile-password .mypage-new-input::placeholder {
  color: #9b9b9b;
  opacity: 1;
}

.page-mypage-profile-tell .mypage-profile-tell-notes-item,
.page-mypage-profile-mail .mypage-profile-mail-notes-item,
.page-mypage-profile-password .mypage-profile-password-notes-item {
  margin: 6px 0 0;
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.page-mypage-profile-tell
  .mypage-profile-tell-notes-item
  + .mypage-profile-tell-notes-item,
.page-mypage-profile-mail
  .mypage-profile-mail-notes-item
  + .mypage-profile-mail-notes-item,
.page-mypage-profile-password
  .mypage-profile-password-notes-item
  + .mypage-profile-password-notes-item {
  margin-top: 16px;
}

.page-mypage-profile-tell .mypage-profile-tell-actions,
.page-mypage-profile-mail .mypage-profile-mail-actions,
.page-mypage-profile-password .mypage-profile-password-actions {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-mypage-profile-tell .mypage-profile-tell-action,
.page-mypage-profile-mail .mypage-profile-mail-action,
.page-mypage-profile-password .mypage-profile-password-action {
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.page-mypage-profile-tell .mypage-profile-tell-action-primary,
.page-mypage-profile-mail .mypage-profile-mail-action-primary,
.page-mypage-profile-password .mypage-profile-password-action-primary {
  background: #3a8e42;
  color: #fff;
  display: flex;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.page-reminder .mypage-profile-tell-action-primary {
  border: 0;
  cursor: pointer;
}

.page-reminder .reminder-current-note {
  margin: 5px 0 0;
  color: #1b1b1b;
  font-size: 12px;
  line-height: 1.6;
}

.page-reminder .reminder-form-error {
  margin: 10px 0 0;
  color: #d13f3f;
  font-size: 13px;
  line-height: 1.6;
}

.page-reminder .mypage-profile-tell-action-primary:disabled {
  opacity: 0.7;
  cursor: wait;
}

.page-reminder-ok .reminder-ok-note {
  margin: 16px 0 0;
  color: #3a8e42;
  font-size: 12px;
  line-height: 1.6;
}

.support24-accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 49px;
}

.support24-accordion-symbol {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.support24-accordion-symbol::before,
.support24-accordion-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #3a8e42;
  transform: translate(-50%, -50%);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.page-support24-trouble .support24-accordion-symbol::before,
.page-support24-trouble .support24-accordion-symbol::after {
  background: #3a85d1;
}

.page-support24-other .support24-accordion-symbol::before,
.page-support24-other .support24-accordion-symbol::after {
  background: #e6855a;
}

.support24-accordion-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.support24-accordion-toggle[aria-expanded="true"]
  .support24-accordion-symbol::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.support24-accordion-content {
  position: relative;
  padding: 0 20px;
  color: #1b1b1b;
  font-size: 12px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    padding-top 0.28s ease,
    padding-bottom 0.28s ease;
}

.support24-accordion-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #d2d2d2;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.support24-accordion-content.is-open {
  padding-top: 25px;
  padding-bottom: 25px;
}

.support24-accordion-content.is-open::before {
  opacity: 1;
}

.support24-phone-pill {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #dfece2;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
}

.support24-phone-pill.is-blue {
  background: #e8f2fa;
  margin-top: 0px;
}

.support24-phone-pill-icon {
  width: 16px;
  height: 16px;
  display: block;
  background: url("/img/all/phone_in_talk.png") no-repeat center center;
  background-size: contain;
}

.support24-phone-pill.is-blue .support24-phone-pill-icon {
  background-image: url("/img/all/phone_in_talk.blue.svg");
  width: 20px;
  height: 20px;
}

.page-support24-other .support24-phone-pill.is-blue .support24-phone-pill-icon {
  background-image: url("/img/all/phone_in_talk_orange.svg");
}

.support24-phone-pill.is-blue .support24-phone-pill-text {
  font-size: 18px;
  font-weight: bold;
}

.support24-phone-pill-text {
  font-size: 16px;
  line-height: 1.6;
}

.support24-contact-pill {
  position: relative;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #f2f2f2;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  min-width: 260px;
  width: 80%;
}

.support24-contact-pill.is-green {
  background: #3a8e42;
  color: #fff;
}

.support24-contact-pill-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.support24-contact-pill-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/arrow_outward.png") no-repeat center center;
  background-size: contain;
}

.support24-contact-pill.is-green .support24-contact-pill-arrow {
  background-image: url("/img/all/arrow_outward.svg");
}

.support24-moveout-submit {
  margin-bottom: 35px;
}

.support24-garbage-table {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  border-collapse: collapse;
  table-layout: fixed;
}

.support24-garbage-table th,
.support24-garbage-table td {
  border: 1px solid #2a2a2a;
  padding: 8px 10px;
  font-size: 15px;
  line-height: 1.2;
}

.support24-garbage-table th {
  width: 42%;
  background: #eaffec;
  color: #1b1b1b;
  font-weight: 400;
  text-align: left;
}

.support24-garbage-table td {
}

.support24-chat {
  margin-top: 40px;
}

.support24-chat.support24-chat-no-margin {
  margin-top: 0;
}

.support24-chat-title {
  margin-bottom: 20px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.support24-chat-title::before {
  content: "";
  width: 4px;
  height: 15px;
  background: #3a8e42;
  border-radius: 2px;
}

.support24-chat-text {
  margin: 20px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}
.support24-accordion-content .support24-chat-text {
  margin: 0;
  line-height: 1.6;
}

.page-support24-trouble ul.support24-chat-text {
  list-style: none;
  padding: 0 5px;
}

.page-support24-trouble ul.support24-chat-text li {
  position: relative;
  padding-left: 10px;
}

.page-support24-trouble ul.support24-chat-text li + li {
  margin-top: 5px;
}

.page-support24-trouble ul.support24-chat-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a85d1;
  transform: translateY(-50%);
}

.page-support24-other ul.support24-chat-text {
  list-style: none;
  padding: 0 5px;
}

.page-support24-other ul.support24-chat-text li {
  position: relative;
  padding-left: 10px;
}

.page-support24-other ul.support24-chat-text li + li {
  margin-top: 5px;
}

.page-support24-other ul.support24-chat-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e6855a;
  transform: translateY(-50%);
}

.support24-break-after {
  display: block;
  margin-top: 5px;
}
.support24-chat-link {
  position: relative;
  margin-top: 20px;
  height: 64px;
  padding: 0 44px 0 20px;
  border-radius: 10px;
  background: #fff;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support24-chat-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  background: url("/img/all/smart_toy.png") no-repeat center center;
  background-size: contain;
}

.support24-chat:nth-of-type(4) .support24-chat-icon {
  background-image: url("/img/all/mail.png");
}

.support24-chat:nth-of-type(5) .support24-chat-icon {
  background-image: url("/img/all/phone_in_talk.png");
}

.page-support24 .support24-chat:nth-of-type(3) .support24-menu-arrow,
.page-support24 .support24-chat:nth-of-type(5) .support24-menu-arrow {
  background-image: url("/img/all/arrow_outward.png");
}

.support24-chat-link-text {
  font-size: 16px;
  line-height: 1.6;
}

.support24-accordion-content .support24-contact-pill + .support24-chat-text {
  margin-top: 40px;
}

.support24-accordion-content .support24-notes {
  margin-top: 20px;
}
.support24-notes {
  margin-top: 40px;
}

.support24-notes-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.support24-notes-item {
  margin: 6px 0 0;
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.support24-contact-form-section {
}

.support24-form-note-red {
  margin: 8px 0 0;
  color: #c01212;
}

.support24-contact-form {
  margin-top: 10px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.support24-form-label {
  margin: 0;
  color: #1b1b1b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.support24-form-required {
  color: #c01212;
  font-size: 12px;
  line-height: 1.6;
}

.support24-form-label + .support24-form-input,
.support24-form-label + .support24-form-select,
.support24-form-label + .support24-form-textarea,
.support24-form-label + .support24-form-value {
  margin-top: 10px;
}

.support24-form-input + .support24-form-label,
.support24-form-select + .support24-form-label,
.support24-form-textarea + .support24-form-label,
.support24-form-value + .support24-form-label,
.support24-form-input + .support24-form-fieldset,
.support24-form-select + .support24-form-fieldset,
.support24-form-textarea + .support24-form-fieldset,
.support24-form-help + .support24-form-label,
.support24-form-help + .support24-form-fieldset,
.support24-form-fieldset + .support24-form-label {
  margin-top: 20px;
}

.support24-form-input,
.support24-form-select,
.support24-form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d7d7d7;
  color: #1b1b1b;
  background: #fff;
  box-sizing: border-box;
}

.support24-form-input[disabled] {
  background: #efefef;
  color: #666;
}

.support24-form-textarea {
  resize: vertical;
  min-height: 112px;
}

.support24-form-value {
  margin: 0;
  padding: 12px;
  border: 1px solid #d2d2d2;
  color: #1b1b1b;
  background: #f5f5f5;
  box-sizing: border-box;
  white-space: pre-wrap;
  word-break: break-word;
}

.support24-form-value.is-empty {
  color: #666;
}

.support24-form-help {
  margin: 10px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.support24-form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.support24-radio-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support24-radio-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1b1b1b;
}

.support24-contact-submit {
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: #3a8e42;
  color: #fff;
  line-height: 1.6;
  padding: 16px 20px;
}

.support24-contact-submit.is-secondary {
  background: #f2f2f2;
  color: #1b1b1b;
}

.support24-confirm-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support24-confirm-actions .support24-contact-submit {
  margin-top: 0;
  width: 100%;
}

.support24-thanks-card {
  padding: 20px 10px;
  background: #ffffff;
  border-radius: 4px;
}

.support24-thanks-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.support24-thanks-message {
  margin: 10px 0 0;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.6;
}

.support24-thanks-support {
  margin-top: 20px;
  text-align: center;
}

.support24-thanks-support-label {
  margin: 0;
  color: #1b1b1b;
}

.support24-thanks-phone {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  text-decoration: none;
}

.support24-thanks-phone::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("/img/all/phone_in_talk.png") no-repeat center center;
  background-size: contain;
}

@media (max-width: 480px) {
  .merit-grid {
    gap: 10px;
  }

  .merit-card .category {
    font-size: 10px;
    line-height: 1.4;
    margin: 0px 8px 0;
  }

  .merit-card figcaption {
    font-size: 12px;
    margin: 5px 8px 10px;
  }

  .merit-partner-grid {
    gap: 10px;
  }

  .prize-title {
    font-size: 16px;
  }

  .prize-actions {
    grid-template-columns: 1fr;
  }

  .prize-meta-row {
    grid-template-columns: 80px 1fr;
  }

  .prize-lottery-period {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
