@charset "UTF-8";

/* ============================================================
   STYLE_V2.CSS — 推し旅コンポーネント v2 共通ベーススタイル
   REM SYSTEM: 100px = 1rem at 393px viewport (px ÷ 100 = rem)
   rem-ratio は navi_v2.css が提供するため、ここでは定義しない
   ============================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.page-content {
    padding-top: 0.6rem;
    min-height: calc(100vh - 1.50rem);
    padding-bottom: 0.60rem;
    width: 4.30rem;
    margin: auto;
    position: relative;
    display: block;
    max-width: 4.30rem;
    overflow: hidden;
    box-sizing: content-box;
}

.content-holder {
    width: 90%;
    max-width: 4.20rem;
    margin: 0 auto;
    padding: 0.1rem;
    background-color: #fff;
    border-radius: 0.15rem;
    -moz-box-shadow: 0 0 0.03rem #ccc;
    -webkit-box-shadow: 0 0 0.03rem #ccc;
    box-shadow: 0 0 0.03rem #ccc;
    margin-top: 0.20rem;
    margin-bottom: 0.25rem;
}

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

.message-container h1,
.message-container h3 {
    color: #1c1c1e;
}

.message-container p {
    color: #3a3a3c;
}

.gradient-button {
    display: inline-block;
    padding: 0.10rem 0.40rem;
    font-size: 0.16rem;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 0.40rem;
    transition: 0.5s;
    background: linear-gradient(to right, #f8bd00, #f19500, #eb6c00);
}

.gradient-button:active {
    box-shadow: 0 0.08rem 0.15rem rgba(0, 0, 0, 0.1);
    transform: translateY(0.02rem);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 0.08rem;
    padding: 0.20rem;
    width: 90%;
    max-width: 3.50rem;
    box-shadow: 0 0.04rem 0.08rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

#alertTitle {
    font-size: 0.22rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.20rem;
}

#alertMessage {
    margin: 0;
    font-size: 0.20rem;
    margin-bottom: 0.20rem;
}

.footer {
    display: flex;
    justify-content: center;
}

.close-button {
    padding: 0.08rem 0.16rem;
    background-color: #e26a0d;
    color: #fff;
    border: none;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    cursor: pointer;
}

.close-button:hover {
    background-color: #DF6E20;
}
