/* ==========================================================
   YUPPY QUOKKA
   Chat Widget
========================================================== */


/* ==========================================================
   全体
========================================================== */

.yq-chat-widget {
    position: fixed;

    right: 24px;
    bottom: 90px;

    z-index: 999990;
}


/* ==========================================================
   チャットボタン
========================================================== */

.yq-chat-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;
    min-height: 72px;

    margin: 0;
    padding: 0;

    color: #ffffff;
    background: #5a1300;

    border: 0;
    border-radius: 50%;

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.16);

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}


.yq-chat-button:hover {
    color: #ffffff;
    background: #5a1300;

    transform: translateY(-2px);

    box-shadow:
        0 10px 32px
        rgba(0, 0, 0, 0.20);
}


.yq-chat-button:focus {
    outline: none;
}


.yq-chat-button:focus-visible {
    outline: 2px solid #c5a46d;
    outline-offset: 3px;
}


/* ==========================================================
   チャットロゴ
========================================================== */

.yq-chat-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 58px;
    height: 58px;

    line-height: 1;
}


.yq-chat-button__icon img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    object-fit: contain;
}


/* ==========================================================
   チャットパネル
========================================================== */

.yq-chat-panel {
    position: absolute;

    right: 0;
    bottom: 86px;

    width: 340px;
    max-width: calc(100vw - 32px);

    overflow: hidden;

    background: #ffffff;

    border: 1px solid
        rgba(90, 19, 0, 0.12);

    border-radius: 14px;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}


/* 開いた状態 */

.yq-chat-widget.is-open
.yq-chat-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* ==========================================================
   ヘッダー
========================================================== */

.yq-chat-panel__header {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;

    padding: 14px 52px;

    color: #5a1300;
    background: #f7f5f0;

    text-align: center;
}


.yq-chat-panel__title {
    width: 100%;

    margin: 0;

    color: #5a1300;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.06em;

    text-align: center;
}


/* ==========================================================
   閉じるボタン
========================================================== */

.yq-chat-panel__close {
    position: absolute;

    top: 50%;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    margin: 0;
    padding: 0;

    color: #5a1300;
    background: transparent;

    border: 0;

    font-size: 24px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transform: translateY(-50%);

    transition:
        opacity 0.2s ease;
}


.yq-chat-panel__close:hover {
    color: #5a1300;
    background: transparent;

    opacity: 0.65;
}


.yq-chat-panel__close:focus {
    outline: none;
}


/* ==========================================================
   パネル本文
========================================================== */

.yq-chat-panel__body {
    padding: 18px;
}


/* ==========================================================
   営業時間外
========================================================== */

.yq-chat-status {
    margin: 0 0 14px;
    padding: 13px 14px;

    color: #5a1300;
    background: #f7f5f0;

    border-left: 2px solid #c5a46d;
}


.yq-chat-status__title {
    display: block;

    margin: 0 0 5px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 0.05em;
}


.yq-chat-status__message {
    display: block;

    margin: 0;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;

    letter-spacing: 0.02em;
}


/* ==========================================================
   商品ページ
========================================================== */

.yq-chat-product {
    margin: 0 0 14px;
    padding: 14px;

    background: #ffffff;

    border: 1px solid
        rgba(90, 19, 0, 0.12);
}


.yq-chat-product__label {
    margin: 0 0 6px;

    color: #5a1300;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 0.05em;
}


.yq-chat-product__name {
    margin: 0;

    color: #5a1300;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
}


/* ==========================================================
   問い合わせボタン
========================================================== */

.yq-chat-action {
    display: block;

    margin: 0 0 10px;
    padding: 13px 14px;

    color: #5a1300;
    background: #ffffff;

    border: 1px solid
        rgba(90, 19, 0, 0.18);

    text-align: center;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.03em;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.yq-chat-action:last-child {
    margin-bottom: 0;
}


.yq-chat-action:hover,
.yq-chat-action:focus {
    color: #ffffff;
    background: #5a1300;

    border-color: #5a1300;

    text-decoration: none;
}


/* LINE */

.yq-chat-action--line {
    border-color:
        rgba(90, 19, 0, 0.28);
}


/* ==========================================================
   Contact Form 7
   商品情報
========================================================== */


/*
 * 初期状態では非表示。
 * JSで商品情報が確認できた場合だけ表示。
 */

.yq-product-row {
    display: none;
}


/* 商品情報あり */

.yq-product-row.yq-has-product {
    display: table-row;
}


/* 商品情報全体 */

.yq-contact-product-info {
    width: 100%;
}


/* 商品名 */

.yq-contact-product-name {
    margin: 0 0 10px;
}


.yq-contact-product-name input {
    width: 100%;

    color: #5a1300;
    background: #f7f5f0;

    border: 1px solid #ddd;

    cursor: default;
}


/* 商品URL */

.yq-contact-product-url {
    margin: 0;
}


.yq-contact-product-url input {
    width: 100%;

    color: #5a1300;
    background: #f7f5f0;

    border: 1px solid #ddd;

    cursor: default;
}


/* readonly */

.yq-contact-product-info
input[readonly] {
    opacity: 1;
}


/* ==========================================================
   スマートフォン
========================================================== */

@media screen and (max-width: 549px) {

    .yq-chat-widget {
        right: 14px;
        bottom: 80px;
    }


    /* ボタン */

    .yq-chat-button {
        width: 66px;
        height: 66px;
        min-height: 66px;
    }


    /* ロゴ */

    .yq-chat-button__icon {
        width: 54px;
        height: 54px;
    }


    /* パネル */

    .yq-chat-panel {
        right: 0;
        bottom: 78px;

        width: calc(100vw - 28px);
        max-width: none;
    }


    /* ヘッダー */

    .yq-chat-panel__header {
        min-height: 60px;

        padding: 12px 50px;
    }


    .yq-chat-panel__title {
        font-size: 14px;
    }


    /* 閉じる */

    .yq-chat-panel__close {
        right: 14px;

        width: 30px;
        height: 30px;

        font-size: 22px;
    }


    /* 本文 */

    .yq-chat-panel__body {
        padding: 15px;
    }


    /* 営業時間外 */

    .yq-chat-status {
        margin-bottom: 12px;
        padding: 12px;
    }


    /* 商品 */

    .yq-chat-product {
        margin-bottom: 12px;
        padding: 12px;
    }


    /* ボタン */

    .yq-chat-action {
        padding: 12px;

        font-size: 13px;
    }


    /* CF7 商品情報 */

    .yq-contact-product-name {
        margin-bottom: 8px;
    }

}


/* ==========================================================
   アニメーション軽減
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .yq-chat-panel,
    .yq-chat-button,
    .yq-chat-action,
    .yq-chat-panel__close {
        transition: none;
    }

}