@charset "UTF-8";

.wechatResponse {
    background: #64B92F;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

/* WeChat モーダル（body直下に移動するため .l-header より前面に表示） */
.wechat-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.wechat-modal.is-show {
    display: flex;
}
.wechat-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 50, 56, 0.90);
    backdrop-filter: blur(5px);
    cursor: pointer;
}
.wechat-modal__content {
    position: relative;
    border-radius: 8px;
    padding: 0px;
    max-width: 370px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.wechat-modal__close {
    position: absolute;
    top: -42px;
    right: -2px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wechat-modal__close:hover {
    background: #f0f0f0;
    color: #333;
}
.wechat-modal__ttl {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: bold;
}
.wechat-modal__img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}