/* Cinematic LP v4 — style.css */

.clplp-wrap { position: relative; }

/* ===== LINE 浮動ボタン ===== */
.clplp-line-float {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}
.clplp-line-btn {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    padding: .65em 1.1em;
    border-radius: .5rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: opacity .2s, transform .2s;
    line-height: 1.2;
}
.clplp-line-btn:hover { opacity: .88; transform: scale(1.04); }

/* ===== コントロールパネル ===== */
/* right / bottom は PHP インラインCSSで上書き */
.clplp-controls {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    z-index: 9999;
}

/* 丸ボタン共通 */
.clplp-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 11px; /* PHPインラインCSSで上書き */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    transition: transform .18s, box-shadow .18s, opacity .18s;
    line-height: 1.25;
    letter-spacing: -.01em;
}
.clplp-btn:hover  {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.clplp-btn:active { transform: scale(.95); }

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
    .clplp-btn { width: 58px; height: 58px; }
}
@media (max-width: 600px) {
    .clplp-btn { width: 52px; height: 52px; }
    .clplp-line-float { top: .7rem; right: .7rem; }
}
