/* Shared CTA styles
   This file centralizes CTA button styles used across top, LP, buyer, offered, and catalog pages. */

.button_outer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.2em .35em;
    border: none;
    border-radius: .5rem;
    background: linear-gradient(180deg, #F06E14 0%, #ff0000 100%);
    font-weight: 700;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .2));
}

.button_outer .button_wh {
    margin: 0 .5em 0 0;
    padding: .2em .6em;
    border-radius: .3rem;
    background-color: #fff;
    color: #ff0000;
    font-size: clamp(.5rem, 3.5vw, 1rem);
    white-space: nowrap;
}

.button_outer .button_red {
    color: #fff;
    font-size: clamp(1.05rem, 4.5vw, 1.45rem);
    white-space: nowrap;
}

.button_outer:hover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .3);
}

/* 画面固定 申し込みボタン */
.button_fixed{
    padding: .5em 1.5rem;
    width: 100%;
    background-color: rgb(255, 210, 110);
    position:fixed;
    bottom: 0px;
    z-index: 999;
    font-feature-settings:"palt"; /* 文字間の自動調整 */
}

/* 申し込みボタン */
/* 個人情報の注意書き */
.caution{
    text-align: center;
    font-size: clamp(.6rem, 3vw, .75rem);
    color: #000;
    padding-top: .5em;
    letter-spacing : -0.03em;
    line-height: 1.5em;
}

.caution a{
    font-weight: 500;
    color: #d22800;
    cursor: pointer;
}

.caution a:hover {
    text-decoration: underline;
}

/* .button_space_fixed {
    padding: 10px;
    width: 100%;
    background-color: rgba(55, 55, 55, .9);
    position: fixed;
    bottom: 0;
    z-index: 999;
    resize: none;
} */

@media screen and (max-width: 430px) {
    .button_outer .button_wh {
        margin-right: .35em;
        padding: .2em .45em;
        font-size: .8rem;
    }

    .button_outer .button_red {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 360px) {
    .button_outer {
        padding: 1em .2em;
    }

    .button_outer .button_wh {
        margin-right: .25em;
        padding: .18em .35em;
        font-size: .8rem;
    }

    .button_outer .button_red {
        font-size: 1rem;
        letter-spacing: -0.03em;
    }
}
