/* チャットボット ▼ */

        #chat-container {
            width: 100%;
            height: 100%;
            border: 1px solid #ccc;
            display: flex;
            flex-direction: column;
        }
        #chatbox {
            flex: 1;
            padding: 10px;
            overflow-y: scroll;
            display: flex;
            flex-direction: column;
	    background-color: light-dark(#fff,#2c2c2c);
        }
        .message {
            margin: 5px 0;
            padding: 10px;
            border-radius: 10px;
            display: inline-block;
            max-width: 80%;
            word-wrap: break-word;
            font-size: 0.8em;

        }
        .user {
            background-color: light-dark(#e0e0ff,#7f7fff);
            align-self: flex-end;
            text-align: right;
            border-radius: 10px 0px 10px 10px;
        }
        .bot {
            background-color: light-dark(#f8d7da,#f88);
            align-self: flex-start;
            text-align: left;
            border-radius: 0px 10px 10px 10px;
        }
        .bot img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            border-radius: 50%;
        }
        .bot-no-icon {
            background-color: light-dark(#f8d7da,#f88);
            align-self: flex-start;
            text-align: left;
        }
        .option {
            display: block;
            margin: 5px 0;
            padding: 10px;
            background-color: light-dark(#f0f0f0,#1c1c1c);
            font-size: 0.7em;
            cursor: pointer;
            align-self: flex-start;
        }
        #resetButton {
            padding: 10px;
            background-color: light-dark(#f00,#f33);
            color: #fff;
            cursor: pointer;
            text-align: center;
        }


.chatbot {
          display: none;
          width: 300px;
          height: 500px;
          position: fixed;
          bottom: 10px;
          right: 50px;
          background: #fff;
          box-shadow: 0 0 6px gray;
          z-index: 31;
}

#chat-button {
              display: block;
              position: fixed;
              bottom: 10px;
              right: 20px;
              width: 60px;
              height: 60px;
              background-color: #fff;
              border: 1px #ccc solid;
              box-shadow: 0 0 4px gray;
              border-radius: 50%;
}

.chat-icon {
            position: fixed;
            bottom: 15px;
            right: 25px;
}

#close-button {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 32;
	font-size: 3em;
	color: #7f7fff;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border: 1px #ccc solid;
	box-shadow: 0 0 4px gray;
	border-radius: 50%;
}

/* チャットボット ▲ */

.highlighter {
    background: linear-gradient(180deg,light-dark(#fff,#1c1c1c) 0%,light-dark(#fff,#1c1c1c) 60%,light-dark(#ff0,#cc0) 60%,light-dark(#ff0,#cc0) 100%);
}

.chatbot-guidance {
    font-size: 1.3em;
}

/* アコーディオンパネル ▼ */

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}
  
.panel {
	border-radius: 10px;
}
  
.panel-header {
	width: 100%;
	padding: 15px 52px 15px 16px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: none;
    border-top: 2px #ddd solid;
	font-size: 16px;
	text-align: left;
    background-color: light-dark(#fff,#1c1c1c);
}
  
.panel-header:hover {
	color: light-dark(#7f7fff,#aaf);
}
  
.panel-header.active {
	color: light-dark(#7f7fff,#aaf);
}

.icon {
	font-size: 20px;
	margin-right: -32px;
	margin-left: auto;
	transition: transform 0.3s;
}
  
.panel-header.active .icon {
	transform: rotate(45deg);
}
  
.panel-content {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease-out;
}
  
.panel-body {
	padding: 10px;
}
  
.panel-body p {
	background-color: light-dark(#fff,#1c1c1c);
	margin: 0;
	padding: 16px;
}

/* アコーディオンパネル ▲ */

.finisher {
    border-top: 2px #ddd solid;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝モバイル版　▼＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media screen and (max-width: 767px) {

.chatbot {
          display: none;
          width: 100%;
          height: 100%;
          position: fixed;
          bottom: 0px;
          right: 0px;
          background: #fff;
          box-shadow: 0 0 6px gray;
          z-index: 31;
}

}
/* ==モバイル版 ▲== */