        /* チャットボットのスタイル */
        .chat-bot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            text-align: left;
        }

        .chat-bot-button {
            /* background-color: #0f1e44;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 20px 25px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            line-height: 1em; */
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-image: url('../../../assets/img/common/chat-float-bg.png');
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease;
        }

        @media all and (max-width: 768px) {
            .chat-bot-button {
                width: 86px;
                height: 86px;
            }
        }

        .chat-icon {
            /* margin-right: 8px;
            font-size: 20px; */
            position: absolute;
            top: 19px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 52px;
            height: auto;
        }

        @media all and (max-width: 768px) {
            .chat-icon {
                    top: 12px;
                    width: 29px;
            }
        }

        .chat-text{
            position: absolute;
            bottom: 13px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
            line-height: 1.5;
            text-align: center;
            white-space:  nowrap;
        }

                @media all and (max-width: 768px) {
                    .chat-text{
                        font-size: 11px;
            }
        }


        .chat-bot-window {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            height: 600px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #404f74;
        }

        .hidden {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .chat-header {
            background-color: #0f1e44;
            color: white;
            padding: 15px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            margin: 0;
            font-size: 15px;
        }

        .chat-close-button {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .chat-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            font-size: 14px;
        }

        .chat-message {
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 5px;
            word-wrap: break-word;
        }

        .bot-message {
            background-color: #f1f0f0;
            align-self: flex-start;
            margin-right: auto;
            position: relative;
            color: #000000;
        }

        .bot-message::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 10px 10px 10px 0;
            border-style: solid;
            border-color: transparent #f1f0f0 transparent transparent;
        }

        .user-message {
            background-color: #0f1e44;
            color: white;
            align-self: flex-end;
            margin-left: auto;
        }

        .chat-input-area {
            padding: 15px;
            border-top: 1px solid #e0e0e0;
        }

        .chat-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: space-around;
        }
        .chat-body input,
        .chat-body textarea {
            font-size: 16px;
            line-height: 1em;
        }

        .chat-option-button {
            background-color: #f1f0f0;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            transition: background-color 0.2s;
            width: 100%;
            font-size: 16px;
        }

        .chat-option-button:hover {
            background-color: #e0e0e0;
        }

        .chat-input-form {
            display: flex;
            gap: 10px;
        }

        .chat-text-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            outline: none;
        }

        .chat-submit-button {
            background-color: #FFF;
            color: #0f1e44;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
            align-self: flex-end;
        }

        .flex-d-row {
            flex-direction: column;
        }

        .for-m-group {
            width: 50px;
        }

        /* オペレーターアイコンのスタイル */
        .operator-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #ddd;
            overflow: hidden;
        }

        .operator-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bot-message-container {
            display: grid;
            align-items: flex-start;
            margin-bottom: 15px;
            grid-template-columns: 40px 1fr;
            gap: 10px;
        }

        /* チャット内入力欄のスタイル */
        .chat-inline-input-area {
            padding: 15px 15px;
            margin: 10px 0;
            background-color: #0f1e44;
            border-radius: 10px;
        }

        ul.summary-list {
            padding-left: 0;
            list-style-type: none;
        }
        
        ul.summary-list li {
            border-bottom: solid 1px #CCC;
            padding: 3px 0;
            word-break: break-word;
        }
        html {
            -webkit-text-size-adjust: 100%;
        }
        .chat-bot-container {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
        }
        #chat-messages button {
            color: #000;
            text-decoration: none;
        }
        @media screen and (max-width: 960px) {
            .chat-bot-window {
                left: 0;
                width: 100%;
                height: 100%;
                top: 0;
            }
        }
