@charset "UTF-8";

/* ============================================================
   BASE.CSS — 推し旅テンプレート 共通コンポーネント
   Design reference: not-equal-me
   Customization: override CSS variables in custom.css only.

   REM SYSTEM: 100px = 1rem at 393px viewport width.
     design px value ÷ 100 = rem value  (e.g. 16px → 0.16rem)
     :root font-size scales with viewport automatically.
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}


/* ============================================================
   REM BASE — 100px = 1rem @ 393px viewport
   ============================================================ */
:root {
    --design-width-sp: 393;
    --content-width-pc: 430;
    --rem-ratio: calc(var(--design-width-sp) / 100);
    /* 3.93 */

    /* PC: 430px 固定幅基準 (430 / 3.93 ≈ 109.4px = 1rem) */
    font-size: calc(var(--content-width-pc) * 1px / var(--rem-ratio));
}

@media screen and (max-width: 430px) {
    :root {
        /* SP: viewport 幅基準でスケール (393px 時に 100px = 1rem) */
        font-size: calc(100vw / var(--rem-ratio));
    }
}


/* ============================================================
   CSS VARIABLES
   Colors are overridden per-event in custom.css.
   --image-bg is set via inline <style> in top.php.
   ============================================================ */
:root {
    /* Typography scale (design px ÷ 100) */
    --fs-sm: 0.12rem;
    /* ~12px */
    --fs-base: 0.14rem;
    /* ~14px */
    --fs-md: 0.16rem;
    /* ~16px */
    --fs-lg: 0.18rem;
    /* ~18px */
    --fs-xl: 0.21rem;
    /* ~21px */
    --fs-2xl: 0.26rem;
    /* ~26px */
    --fs-3xl: 0.32rem;
    /* ~32px */

    /* Colors — override in custom.css for each event */
    --color-main: #ffffff;
    --color-content: #ffffff;
    --color-text: #323232;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-tokai: #ED6D00;
    --color-sub1: #CB95FF;
    --color-sub2: #80579E;
    --color-sub3: #CB95FF;
    --color-sub4: #80579E;
    --color-sub5: #f3f2e8;
    --color-local: #EF5D49;
    --color-button: var(--color-sub1);

    --image-bg: none;

    --font-family: 'M PLUS Rounded 1c', YakuHanJP, sans-serif;
    --font-code: 'Courier New', Courier, monospace;
    --shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
}


/* ============================================================
   PAGE LAYOUT
   ============================================================ */

body {
    font-family: var(--font-family);
    font-size: var(--fs-base);
    -webkit-font-smoothing: antialiased;
    background: var(--color-main);
}

main {
    margin-top: 0.66rem;
    /* header height 66px */
    position: relative;
    font-family: var(--font-family);
}

main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--image-bg) no-repeat center center / cover;
    background-color: var(--color-main);
    z-index: -2;
}

hr {
    margin: 0.15rem auto;
}


.fontEvent {
    font-family: var(--font-family) !important;
    font-style: normal;
}

.fontNotoSans {
    font-family: "Noto Sans JP" !important;
}

.fontNotoSerif {
    font-family: "Noto Serif JP" !important;
}

.fontMPlus {
    font-family: "M PLUS Rounded 1c" !important;
    font-style: normal;
}

.page-content {
    width: 100%;
    max-width: 4.30rem;
    margin-inline: auto;
    padding-bottom: 0;
}

.page-content img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page-content img.img-placeholder {
    opacity: 0.45;
    object-fit: contain;
    min-height: 1.20rem;
}


/* ============================================================
   SECTION LAYOUT
   ============================================================ */

.bannerImg img {
    width: 100%;
    display: block;
}

.message-container {
    width: 100%;
    margin: 0.10rem auto;
    text-align: center;
}

.content-holder {
    width: 96%;
    background-color: var(--color-content);
    border: 0.02rem solid var(--color-sub1);
    margin-top: 0.08rem;
    padding-bottom: 0.12rem;
    position: relative;
}

/* ============================================================
   SECTION TITLE — phase ribbon (「第1弾」)
   ============================================================ */

.contents-title {
    text-align: center;
    margin-bottom: 0.10rem;
}

.contents-title .titleBorder {
    display: inline-block;
    /* background-color: var(--color-sub1); */
    color: var(--color-sub1);
    border: 0.03rem solid var(--color-sub1);
    padding: 0.06rem 0.20rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.20rem;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   CAUTION LIST
   ============================================================ */

ul {
    margin: 0;
    padding: 0;
    font-size: var(--fs-sm);
    list-style: none;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
}

ul.caution {
    margin: 0.12rem 0 0;
    padding: 0;
    font-size: var(--fs-sm);
}

ul.caution li {
    position: relative;
    padding: 0 0 0 1.1em;
    list-style: none;
}

ul.caution li::after {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

ul.caution li a {
    text-decoration: underline;
    color: blue;
}


/* ============================================================
   BUTTONS — iconButton (primary CTA)
   ============================================================ */

.iconButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 4.00rem;
    height: 0.70rem;
    border-radius: 0.18rem;
    border: 0;
    padding: 0.05rem;
    box-sizing: border-box;
    margin: 0.06rem auto 0.10rem;
    background: linear-gradient(135deg, var(--color-sub1), var(--color-sub2));
    color: white;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.iconButton::before {
    content: '';
    position: absolute;
    inset: 0.04rem;
    border: 0.02rem solid rgba(255, 255, 255, 0.9);
    border-radius: 0.14rem;
    pointer-events: none;
}

.iconButton:active {
    transform: scale(0.96);
}

.iconButton[disabled],
.iconButton.disabled,
.iconButton:disabled {
    background: linear-gradient(to right, gray, darkgray);
    pointer-events: none;
    cursor: default;
}

.iconButton.button-bg {
    background: var(--color-button);
}

.iconButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
}

.iconButton .icon img {
    max-height: 0.40rem;
    max-width: 0.40rem;
    width: auto;
    height: auto;
}

.iconButton .iconButtonText {
    font-size: var(--fs-md);
    font-weight: 600;
    flex: 4.5;
    text-align: center;
    padding-right: 0.05rem;
    line-height: 1.4;
}

.iconButton .icon2nd {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1.5;
}

.iconButton .icon2nd img {
    height: 0.30rem;
    width: auto;
}

@media only screen and (max-width: 375px) {
    .iconButton .iconButtonText {
        font-size: var(--fs-sm);
    }
}


/* ============================================================
   BUTTONS — register / login
   ============================================================ */

.loginRgisterButton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.05rem;
    border-radius: 0.10rem;
    background-color: white;
    cursor: pointer;
    margin: 0.10rem auto;
    width: 100%;
    max-width: 4.00rem;
    max-height: 0.55rem;
    box-shadow: var(--shadow);
    user-select: none;
    -webkit-user-select: none;
}

.loginRgisterButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.20rem;
}

.loginRgisterButton .icon img {
    height: 0.25rem;
    width: auto;
}

.loginRgisterButton .iconButtonText {
    flex: 1;
    font-size: var(--fs-lg);
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin-right: 0.10rem;
}

.loginRgisterButton.button-bg {
    background: var(--color-button);
}

.loginRgisterButton[disabled] {
    background: darkgray;
    pointer-events: none;
}

.loginRgisterButton:active {
    transform: scale(0.96);
}


/* ============================================================
   BUTTONS — campaign site link (plain border)
   ============================================================ */

.toOshitabiTop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 4.00rem;
    border-radius: 0.10rem;
    border: 0.02rem solid var(--color-black);
    padding: 0.08rem 0.05rem;
    box-sizing: border-box;
    margin: 0.06rem auto 0.12rem;
    color: var(--color-black);
    font-size: var(--fs-md);
    font-family: var(--font-family);
    font-weight: 600;
    background: var(--color-white);
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    min-height: 0.6rem;
}

.toOshitabiTop:active {
    transform: scale(0.96);
}


/* ============================================================
   BUTTONS — misc variants
   ============================================================ */

.whiteButton {
    border-radius: 0.10rem;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.10rem;
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 0.05rem;
    height: 0.55rem;
    max-width: 4.00rem;
    cursor: pointer;
}

.whiteButton[disabled] {
    background: darkgray;
    pointer-events: none;
}

.whiteButton:active {
    transform: scale(0.96);
}

.simpleButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 4.00rem;
    height: 0.55rem;
    border-radius: 0.10rem;
    border: 0.02rem solid var(--color-black);
    color: var(--color-black);
    padding: 0.05rem;
    box-sizing: border-box;
    margin: 0.06rem auto 0.16rem;
    color: var(--color-black);
    font-size: var(--fs-md);
    font-weight: 600;
    background: var(--color-white);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.simpleButton.disabled {
    border: 0.02rem solid var(--color-white);
}

.narrowIconButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 4.00rem;
    height: 0.55rem;
    border-radius: 0.28rem;
    padding: 0.05rem;
    box-sizing: border-box;
    margin: 0.06rem auto 0.16rem;
    color: var(--color-white);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.narrowIconButton::before {
    content: '';
    position: absolute;
    inset: 0.02rem;
    border: 0.02rem solid rgba(255, 255, 255, 0.7);
    border-radius: 0.26rem;
    pointer-events: none;
}

.narrowIconButton:active {
    transform: scale(0.96);
}

.narrowIconButton[disabled] {
    background: darkgray;
    pointer-events: none;
}

.narrowIconButton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
}

.narrowIconButton .icon img {
    height: 0.36rem;
}

.narrowIconButton .narrowIconButtonText {
    font-size: var(--fs-lg);
    font-weight: 600;
    flex: 6;
    text-align: left;
}

.rectangleButton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
    width: 45%;
    max-width: 2.00rem;
    height: 0.70rem;
    border-radius: 0.05rem;
    padding: 0.05rem;
    box-sizing: border-box;
    margin: 0.06rem auto 0.16rem;
    color: var(--color-white);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.rectangleButton::before {
    content: '';
    position: absolute;
    inset: 0.02rem;
    border: 0.01rem solid rgba(255, 255, 255, 0.7);
    border-radius: 0.04rem;
    pointer-events: none;
}

.rectangleButton[disabled] {
    background: darkgray;
    pointer-events: none;
}

.rectangleButton .rectangleButtonText {
    font-size: var(--fs-md);
    font-weight: 600;
}

.oshitabiButton {
    position: relative;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 4.00rem;
    height: 0.50rem;
    margin: 0 auto 0.10rem;
    border: 0;
    border-radius: 0.25rem;
    padding: 0.05rem;
    font-size: var(--fs-md);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.oshitabiButton::before {
    content: '';
    position: absolute;
    inset: 0.02rem;
    border: 0.02rem solid var(--color-white);
    border-radius: 0.23rem;
    pointer-events: none;
}

.oshitabiButton:active {
    transform: scale(0.96);
}

.oshitabiButton[disabled] {
    background: darkgray;
    pointer-events: none;
}

.buttonContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0.16rem 0;
}

.stampComment {
    text-align: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.08rem;
}


/* ============================================================
   CODE / COPY UI (prize won display)
   ============================================================ */

.code-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border: 0.02rem solid var(--color-tokai);
    border-radius: 0.10rem;
    padding: 0.12rem 0.16rem;
    max-width: 6.00rem;
    margin: 0.10rem auto;
}

.code-text {
    font-family: var(--font-code);
    font-size: 0.28rem;
    font-weight: 700;
    color: var(--color-tokai);
    background: #f8f8f8;
    padding: 0.04rem 0.08rem;
    border-radius: 0.04rem;
    word-break: break-all;
}

.copyButton {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    padding: 0.08rem;
    background: var(--color-tokai);
    border: none;
    border-radius: 0.05rem;
    color: var(--color-white);
    font-size: 0.14rem;
    font-weight: 600;
    cursor: pointer;
}

.copy-icon {
    width: 0.16rem;
    height: 0.16rem;
}


/* ============================================================
   STAMP / AR ICON GRID
   ============================================================ */

.stamp-holder {
    width: 100%;
    margin: 0rem auto;
    color: var(--color-black);
}

.stampContainer {
    flex-direction: column;
    align-items: center;
    padding: 0rem 0;
}

.icon-grid {
    display: grid;
    gap: 0.10rem;
    margin: 0.10rem auto;
    width: calc(100% - 0.10rem);
    justify-items: center;
    align-items: start;
}

.icon-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    width: 65%;
}

.icon-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
}

.icon-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stampIcon {
    width: 100%;
    max-width: 0.80rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stampContainer .stampIcon img {
    width: 100%;
    max-width: 1.20rem;
    border-radius: 0.05rem;
    height: auto;
    display: block;
}

.name-tag {
    margin-top: 0.05rem;
    font-size: var(--fs-sm);
    text-align: center;
    color: var(--color-black);
    font-weight: 900;
}

.stamp-container {
    display: flex;
    justify-content: center;
    gap: 0.20rem;
    margin: 0.20rem auto;
}

.stamp {
    width: 1.00rem;
    height: 1.00rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp img {
    max-width: 100%;
    max-height: 100%;
}


/* ============================================================
   THUMBNAIL GRID (wallpaper / camera frames)
   ============================================================ */

.thumbnails-container {
    --cols: 3;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 0.10rem;
    padding: 0.10rem;
}

.thumbnails-container.cols-2 {
    --cols: 2;
}

.thumbnails-container.cols-3 {
    --cols: 3;
}

.thumbnails-container.cols-5 {
    --cols: 5;
}

.thumbnails-container.cols-6 {
    --cols: 6;
}

.thumbnails-container.cols-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.10rem;
}

.thumbnails-container.cols-4 .thumbnail {
    width: calc(25% - 0.075rem);
    flex-shrink: 0;
}

.thumbnails-container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.10rem;
    padding: 0 0.10rem;
}

.thumbnail {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.wallpaper-name {
    margin-top: 0.05rem;
    font-size: var(--fs-sm);
    text-align: center;
    color: var(--color-black);
    font-weight: 700;
}

.title-image {
    margin-bottom: 0.10rem;
}

.phase-name {
    font-weight: 700;
    font-size: var(--fs-lg);
    margin-bottom: 0.10rem;
    text-decoration: underline;
    text-underline-offset: 0.04rem;
}

.title-img-container {
    text-align: center;
    width: 80%;
    margin: auto;
}

.title-img-container img {
    width: 100%;
}


/* ============================================================
   NOVELTY LOCATION CARD (cafe, exchange locations)
   ============================================================ */

.novelty-location {
    width: 100%;
    margin: auto;
    border: 0.02rem solid var(--color-sub1);
    background: var(--color-white);
}

.novelty-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    padding: 0.10rem;
}

.novelty-border-full {
    margin: 1% auto 0.10rem;
    width: 100%;
}

.novelty-city {
    font-size: var(--fs-lg);
    font-weight: 700;
    padding: 0.02rem;
    border: 0.03rem solid var(--color-sub4);
    border-radius: 0.50rem;
    width: 40%;
    margin: 0.16rem auto 0.08rem;
    text-align: center;
}

.novelty-place-inner {
    margin: 0.10rem auto;
}

.novelty-place {
    font-size: var(--fs-lg);
    font-weight: 700;
    padding: 0.10rem;
}

.novelty-hours {
    font-size: var(--fs-base);
    font-weight: 700;
}

.novelty-caution {
    margin: auto;
    text-align: left;
    padding: 0.10rem 0.10rem 0.20rem !important;
}

/* Exchange table (特典引換場所) */
.exchange-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.10rem 0;
}

.exchange-table th,
.exchange-table td {
    border: 0.01rem solid #ddd;
    padding: 0.06rem 0.08rem;
    text-align: left;
    vertical-align: top;
}

.exchange-table th {
    background: var(--color-sub1);
    color: #fff;
    font-weight: 700;
}

.exchange-table tr:nth-child(even) td {
    background: #f8f8f8;
}


/* ============================================================
   LOCATION DETAILS — two-column label / value
   ============================================================ */

.location-info {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 0.16rem;
}

.location-title {
    text-align: center;
    margin-bottom: 0.16rem;
}

.spacer {
    margin: 0.16rem 0;
}

.location-details {
    display: flex;
    margin-bottom: 0.08rem;
    text-align: left;
}

.detail-label {
    min-width: 1.00rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    text-align: justify;
    text-align-last: justify;
}

.detail-value {
    margin-left: 0.10rem;
    flex-grow: 1;
    font-size: var(--fs-sm);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.detail-value a {
    text-decoration: underline;
    color: inherit;
    word-break: break-word;
}

.detail-value a:hover {
    color: #007BFF;
}


/* ============================================================
   MISC LAYOUT HELPERS
   ============================================================ */

.shinkansen {
    position: relative;
    top: 0.15rem;
    left: 0.10rem;
    z-index: 2;
}

.shinkansen img {
    width: 3.80rem;
    height: auto;
}

.placeName {
    display: flex;
    align-items: center;
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 0.10rem;
}

.placeName svg {
    margin-top: 0.01rem;
    margin-right: 0.10rem;
    width: 0.18rem;
}

.titleText {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 0.10rem;
    margin-left: 0.10rem;
}

.itemDescription {
    text-align: left;
    font-weight: 500;
    margin-bottom: 0.10rem;
    font-size: var(--fs-sm);
    padding: 0.10rem;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background-color: var(--color-white);
    padding: 0.10rem;
    text-align: center;
    width: auto;
    margin: 0 auto 0;
    position: relative;
    overflow-x: hidden;
}

.footer-content {
    width: 96%;
    margin: 0 auto;
}

.footer-content h2 {
    margin-bottom: 0.05rem;
    font-size: 1em;
}

.footer-content p {
    font-size: 0.7em;
    color: #666;
}

.copyrightText {
    font-size: 0.7em;
    color: #666;
}

.info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.10rem;
}

.logo-text {
    display: flex;
    align-items: center;
}

.company-logo {
    flex: 0 0 auto;
    height: 0.35rem;
    width: auto;
    margin-right: 0.10rem;
}

.info-section p {
    flex: 1 0 68%;
    text-align: left;
    font-size: 0.65em;
    margin-left: 0.10rem;
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ⚠ このブロックは必ずファイル末尾（COLOR UTILITIES の直前）に置くこと。
     他スタイルを上書きするユーティリティクラスのため、末尾でないと機能しない。
   ============================================================ */

.fontEvent {
    font-family: var(--font-family) !important;
    font-style: normal;
}

.fontNotoSans {
    font-family: var(--font-family) !important;
}

.text-sm {
    font-size: var(--fs-sm);
}

.text-base {
    font-size: var(--fs-base);
}

.text-md {
    font-size: var(--fs-md);
}

.text-lg {
    font-size: var(--fs-lg);
}

.text-xl {
    font-size: var(--fs-xl);
}

.text-2xl {
    font-size: var(--fs-2xl);
}

.text-3xl {
    font-size: var(--fs-3xl);
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}


/* ============================================================
   COLOR UTILITIES
   ⚠ このブロックは必ずファイルの一番末尾に置くこと。
     他スタイルを上書きするユーティリティクラスのため、末尾でないと機能しない。
   ============================================================ */

.color-text {
    color: var(--color-text);
}

.black-text {
    color: var(--color-black);
}

.white-text {
    color: var(--color-white);
}

.toOshitabi {
    color: blue;
    text-decoration: underline;
}

.main-bg {
    background: var(--color-main);
}

.main-text {
    color: var(--color-main) !important;
}

.main-border {
    border: 0.01rem solid var(--color-main);
}

.button-bg {
    background: var(--color-button);
}

.sub1-bg {
    background: var(--color-sub1);
    background-color: var(--color-sub1);
}

.sub1-gradient {
    background: linear-gradient(to top, var(--color-sub1), #fff 50%, #fff 100%);
}

.sub1-text {
    color: var(--color-sub1) !important;
}

.sub1-border {
    border: 0.01rem solid var(--color-sub1);
}

.sub2-bg {
    background: var(--color-sub2);
    background-color: var(--color-sub2);
}

.sub2-gradient {
    background: linear-gradient(to top, var(--color-sub2), #fff 50%, #fff 100%);
}

.sub2-text {
    color: var(--color-sub2) !important;
}

.sub2-border {
    border: 0.01rem solid var(--color-sub2);
}

.sub3-bg {
    background: var(--color-sub3);
    background-color: var(--color-sub3);
}

.sub3-text {
    color: var(--color-sub3) !important;
}

.sub3-border {
    border: 0.01rem solid var(--color-sub3);
}

.sub4-bg {
    background: var(--color-sub4);
    background-color: var(--color-sub4);
}

.sub4-text {
    color: var(--color-sub4) !important;
}

.sub4-border {
    border: 0.01rem solid var(--color-sub4);
}

.sub5-bg {
    background: var(--color-sub5);
    background-color: var(--color-sub5);
}

.sub5-text {
    color: var(--color-sub5) !important;
}

.sub5-border {
    border: 0.01rem solid var(--color-sub5);
}

.sub6-bg {
    background: var(--color-sub6);
    background-color: var(--color-sub6);
}

.sub6-text {
    color: var(--color-sub6) !important;
}

.sub6-border {
    border: 0.01rem solid var(--color-sub6);
}

.button-bg {
    background: var(--color-button);
    background-color: var(--color-button);
}

.tokai-bg {
    background: var(--color-tokai);
}

.tokai-text {
    color: var(--color-tokai);
}

.tokai-border {
    border: 0.01rem solid var(--color-tokai);
}

.local-bg {
    background: var(--color-local);
}

.local-text {
    color: var(--color-local);
}

.local-border {
    border: 0.01rem solid var(--color-local);
}

.black-bg {
    background: var(--color-black);
}

.black-border {
    border: 0.01rem solid var(--color-black);
}

.white-bg {
    background: var(--color-white);
}

.white-border {
    border: 0.01rem solid var(--color-white);
}

.sub2-border2 {
    border: 0.03rem solid var(--color-sub2);
}


.disabled {
    background: linear-gradient(to right, gray, darkgray) !important;
    color: #fff;
    pointer-events: none;
    cursor: not-allowed;
}