
/* resources/css/app.css または既存のCSSファイルに追加 */
.option-disabled {
    pointer-events: none;
    opacity: 0.32;
}

.calendar-text-default {
    color: inherit;
}
.calendar-text-holiday {
    color: #EC0C0C;
}

.price-text-5000{
    font-weight: 400;
    color: #032D0E;
}

.price-text-10000{
    font-weight: 700;
    color: #0053C0;
}
.price-text-15000{
    font-weight: 700;
    color: #EC0C0C;
}

.cancel-policy{
    color: #032D0E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.16px;
    margin: 0 0 1em;
}

.cancel-policy .policy-number{
    font-weight: 700;
}
.cancel-policy .bold{
    font-weight: 700;

}
.cancel-policy .policy-strong-number{
    font-weight: 900;

}
.cancel-policy .policy-highlight{
    color: #2A8B14;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.16px;
}

.cancel-policy .policy-bullet{
    display:inline-block;
    width:1em;
    margin-right:0.1em;
    text-align:center;
    line-height:1;
    position:relative;
    top:-.02em;
}
.cancel-policy .policy-bullet::before{
    content:"●";
    color:#032D0E;
    font-weight:400;
}
/* カレンダー 背景*/
.day-cell-status-consecutive_allowed {
    background-color: #FFFFFF;
}
.day-cell-status-single_night_only {
    background-color: #FFD9BA;
}
.day-cell-status-near_term_consecutive_allowed {
    background-color: #D0E3FF;
}
.day-cell-status-unavailable {
    background-color: #CFCFCF;
}

.day-cell-status-booked {
    background-color: #CFCFCF;
}

.t-flow_lead.is-abs {
    position: relative; /* 親の基準 */
    /* 親の希望サイズを維持（必要なら width: 80px; など） */
    min-height: 2.6em
}

.t-flow_lead.is-abs .t-flow_lead_text {

    position: absolute;
    transform: translateX(-32px); /* ずらしは transform で */
    top: 0;   /* 配置位置はお好みで */
    width: 144px;
    /* 折返し調整が必要なら */
    white-space: normal; /* or pre-wrap 等 */
    height: 38px;

}

.caution-text{
    color: #EC0C0C;
}

.logout-icon{
    width: 44px;
    height: 44px;
    margin-left: 11px;
}


/*** ログアウトモーダル ***/
.c-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 初期チラ見え防止（Alpineが適用解除する） */
[x-cloak] {
    display: none !important;
}

/* 背景オーバーレイ */
.c-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* ===== モーダル本体（Figma外枠） ===== */
.c-modal__panel {
    position: relative;

    /* Figmaの指定値 */
    width: 800px;
    height: 320px;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;

    /* 既存デザインから引き継ぎ */
    background: #ffffff;
    border: 1px solid #8e9790;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    color: #032d0e;
    font-family: inherit;
}

/* タイトル（Figma指定） */
.c-modal__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    align-self: stretch;

    color: #032D0E;
    text-align: center;
    font-family: "BIZ UDGothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}

/* 本文テキスト */
.c-modal__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

/* ボタンエリア（横並び中央寄せ） */
.c-modal__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* ボタン（Figma指定ベース） */
.c-modal__btn {
    display: flex;
    width: 240px;
    height: 60px;
    padding: 16px 44px;
    justify-content: center;
    align-items: center;
    gap: 40px;

    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;

    border-radius: 4px;
    border: 1px solid #032D0E;
    background: #FFF;
    color: #032D0E;
}

/*.c-modal__btn:hover {*/
/*    background: #f2f4f3;*/
/*}*/

/* いいえ：標準ボタン */
.c-modal__btn--secondary {
    background: #FFFFFF;
}

/* はい：強調したければ色を付ける（任意） */
.c-modal__btn--primary {
    background: #2A8B14;
    color: #FFF;
    text-decoration: none;
}

.c-modal__btn--primary:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* スマホ向け調整（はみ出さないように） */
@media (max-width: 840px) {
    .c-modal__panel {
        width: 94%;
        height: auto;        /* 高さはコンテンツに合わせる */
        padding: 40px 20px;
        gap: 24px;
    }

    .c-modal__btn {
        width: 100%;
        justify-content: center;
    }
}


