@charset "utf-8";
html {
  height: 100%;
}

/* line 12, sass/chat.scss */
/* ポップアップ時にbodyにクラス追加 */
.pop_avator {
  overflow: hidden;
}
body {
  height: 100%;
  margin: 0 auto;
  color: #444;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: transparent;
}





#refresh_button {
  position: absolute;
  top: 8px;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: transform 0.3s;
  /* 回転のアニメーションを追加 */
}

/*===============================
ローディング
===============================*/


/*テキスト点滅*/
.lorder-wrap .blink-txt {
  animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* .loader {
  width: 100px;
  aspect-ratio: 1;
  padding: 10px;
  box-sizing: border-box;
  display: grid;
  background: #fff;
  filter: blur(3px) contrast(7) hue-rotate(290deg);
  mix-blend-mode: darken;
}
.loader:before{
  content: "";
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ff0000;
  background: currentColor;
  box-shadow: -30px 0,30px 0,0 30px, 0 -30px;
  animation: l6 1s infinite alternate;
}
@keyframes l6{
  90%,100% {box-shadow: -10px 0,10px 0,0 10px, 0 -10px;transform: rotate(180deg)}
} */
/*アニメーション*/


.listening2 {
  animation: pulse2 1s infinite;
}

@keyframes pulse2 {
  0% {
    text-shadow: 0 0 5px rgba(0, 121, 190, 0.7), 0 0 10px rgba(5, 166, 158, 0.7), 0 0 15px rgba(0, 121, 190, 0.7);
  }

  70% {
    text-shadow: 0 0 20px rgba(0, 121, 190, 0), 0 0 30px rgba(5, 166, 158, 0), 0 0 40px rgba(0, 121, 190, 0);
  }

  100% {
    text-shadow: 0 0 5px rgba(0, 121, 190, 0), 0 0 10px rgba(5, 166, 158, 0), 0 0 15px rgba(0, 121, 190, 0);
  }
}

/*===============================
START
===============================*/
.video_play {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.05em solid currentColor;
  border-radius: 50%;
  color: #333;
  font-size: 154px;
}

.video_play::before {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.5em solid currentColor;
  box-sizing: border-box;
  content: "";
}

/*===============================
STOP
===============================*/
.spinner-box {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgba(63, 249, 220, 1) 100%);
  animation: spin .8s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}



/* line 4, sass/chat.scss */
* {
  box-sizing: border-box;
}



#chat-button-app.hidden {
  display: none;
}

/* line 25, sass/chat.scss */
#js_chat_toggle_button .bl_button_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* line 37, sass/chat.scss */
#js_chat_toggle_button .bl_button_container.open {
  opacity: 0;
  transform: rotate(30deg) scale(0);
}

/* line 42, sass/chat.scss */
#js_chat_toggle_button .el_close_icon,
#js_chat_toggle_button .el_open_icon {
  cursor: pointer;
}

/* line 47, sass/chat.scss */
#js_chat_toggle_button .el_open_icon {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  opacity: 0;
  transform: rotate(30deg) scale(0);
}

/* line 61, sass/chat.scss */
#js_chat_toggle_button .el_open_icon svg {
  width: 32px;
  height: 32px;
}

/* line 65, sass/chat.scss */
#js_chat_toggle_button .el_open_icon svg path {
  fill: #fff;
}

/* line 71, sass/chat.scss */
#js_chat_toggle_button .el_open_icon.active {
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* line 78, sass/chat.scss */
#js_chat_toggle_button .el_close_icon {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  opacity: 0;
  transform: rotate(0deg);
}

/* line 96, sass/chat.scss */
#js_chat_toggle_button .el_close_icon svg {
  width: 28px;
  height: 25px;
}

/* line 100, sass/chat.scss */
#js_chat_toggle_button .el_close_icon svg path {
  fill: #fff;
}

/* line 105, sass/chat.scss */
#js_chat_toggle_button .el_close_icon.active {
  opacity: 1;
  transform: rotate(-90deg);
}

/* line 111, sass/chat.scss */
#js_chat_toggle_button.open {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
  opacity: 0;
  transform: rotate(-60deg);
}

/* line 126, sass/chat.scss */
#js_chat_toggle_button.open svg {
  width: 16px;
}

/* line 128, sass/chat.scss */
#js_chat_toggle_button.open svg path {
  fill: white;
}

/* line 135, sass/chat.scss */
#js_chat {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border: none;
  /* transition: height 300ms linear; */
}

/* line 150, sass/chat.scss */
#js_chat.open {
  height: 100%;
  width: 100%;
  border-bottom: 1px solid #aaa;
}

/* line 159, sass/chat.scss */
.bl_chat {
  z-index: 100;
  position: relative;
  border-radius: 4px;
  background-color: #ffffff;
}

/* line 166, sass/chat.scss */
.el_chat_window_table {
  height: 100%;
  border: 0;
}

/* line 170, sass/chat.scss */
.el_chat_window_table td {
  padding: 0;
}

/* line 174, sass/chat.scss */
.el_chat_window_table .chat-window-table-body,
.el_chat_window_table .chat-window-table-body-error {
  height: 100%;
  width: 100%;
  min-width: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  vertical-align: top;
}

/* line 186, sass/chat.scss */
.chat-window-table-body>* {
  width: 100%;
}

/* line 190, sass/chat.scss */
.chat-window-table-title.text-and-image {
  height: 40px;
}

/* line 194, sass/chat.scss */
.chat-title-window {
  height: 40px;
  color: #ffffff;
  background-color: #38a25b;
  padding: 0;
  border-radius: 4px 4px 0 0;
  border: 1px solid #38a25b;
  width: 100%;
}

/* line 204, sass/chat.scss */
.bl_chat_header {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

/* line 213, sass/chat.scss */
.bl_chat_header>div {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 219, sass/chat.scss */
.bl_chat_header .el_chat_icon {
  width: 30px;
  margin-right: 20px;
}

/* line 224, sass/chat.scss */
.bl_chat_header .el_chat_header_message {
  width: calc(100% - 30px);
  font-size: 15px;
  line-height: 1.4;
}

/* line 230, sass/chat.scss */
.bl_chat_header .el_chat_header_message.no_icon {
  width: 100%;
  font-size: 15px;
  line-height: 1.4;
}

/* line 236, sass/chat.scss */
.bl_chat_header .js_toggle_icon,
.bl_chat_header .js_close_icon {
  cursor: pointer;
}

/* line 240, sass/chat.scss */
.bl_chat_header .js_toggle_icon svg,
.bl_chat_header .js_close_icon svg {
  fill: #fff;
}

/* line 246, sass/chat.scss */
#chatView {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  background-color: #ffffff;
  border-style: solid;
  border-width: 0 1px 0 1px;
  border-color: #aaa;
  transition: width 300ms linear;
  border-radius: 0 0 4px 4px;
}

/* line 268, sass/chat.scss */
#js_chat.open #chatView {
  width: 100%;
  height: 100%;
}

/* line 276, sass/chat.scss */
.bl_chat_body {
  background-color: #fff;
  height: calc(100% - 20px);
}

/* line 282, sass/chat.scss */
.bl_message {
  margin-bottom: 20px;
  width: 100%;
  transition: all 1s linear;
  animation: leftIn 1s linear;
  transform-origin: bottom left;
}

/* line 290, sass/chat.scss */
.bl_message img {
  display: block;
  max-width: 100%;
  margin: 0;
}

/* line 296, sass/chat.scss */
.bl_message a {
  text-decoration: underline;
}

/* line 302, sass/chat.scss */
.bl_message.user {
  animation: rightIn 1s linear;
  transform-origin: bottom right;
}

@keyframes leftIn {
  0% {
    transform: translate(-10%, 0) scale(0, 0);
  }

  50% {
    transform: translate(-5%, 0) scale(0.5, 0.5);
  }

  100% {
    transform: translate(0, 0) scale(1, 1);
  }
}

@keyframes rightIn {
  0% {
    transform: translate(10%, 0) scale(0, 0);
  }

  50% {
    transform: translate(5%, 0) scale(0.5, 0.5);
  }

  100% {
    transform: translate(0, 0) scale(1, 1);
  }
}

/* line 332, sass/chat.scss */
.bl_comment_group {
  display: flex;
  align-items: flex-end;
}

/* line 336, sass/chat.scss */
.bl_comment_group .el_profile_img {
  width: 30px;
  height: 25px;
}

/* line 341, sass/chat.scss */
.bl_comment_group .bl_comment {
  margin-left: 10px;
  word-break: break-all;
}

.bl_comment_group .bl_comment iframe {
  width: 100%;
  height: fit-content;
}

/* line 346, sass/chat.scss */
.bl_comment_group .bl_comment .spacer {
  display: none;
}

/* line 350, sass/chat.scss */
.bl_comment_group .bl_comment iframe {
  width: 100%;
}

/* line 356, sass/chat.scss */
.ml50 {
  margin-left: 50px;
}

/* line 360, sass/chat.scss */
.bl_comment {
  padding: 15px 10px;
  border-radius: 4px;
  position: relative;
  color: #111;
  background-color: #e0e0e0;
  max-width: 300px;
  font-size: 13px;
}

/* line 369, sass/chat.scss */
.bl_comment p {
  line-height: 1.6;
}

/* line 373, sass/chat.scss */
.bl_comment label {
  background-color: #ffffff;
  color: #394359;
}

/* line 378, sass/chat.scss */
.bl_comment .el_choice_text {
  display: block;
  padding: 6px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 5px;
  line-height: 1.6;
}

/* line 391, sass/chat.scss */
.bl_message.user .bl_comment {
  text-align: right;
  background-color: #fff !important;
  margin-bottom: 0;
  padding: 0;
}

/* line 398, sass/chat.scss */
.bl_message.user .el_choiced_item {
  display: inline-block;
  width: auto;
  background-color: #5c5c5c;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 5px;
}

/* line 408, sass/chat.scss */
.bl_comment_meta_left {
  margin-top: 5px;
  text-align: left;
}

/* line 413, sass/chat.scss */
.bl_comment_meta_right {
  margin-top: 5px;
  text-align: right;
}






/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
Our AI面接
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#js_chat_toggle_button .bl_button_container {
  display: none;
}

.bl_chat,
.bl_chat_body {
  height: 100%;
  border-radius: 0;
  background: none;
}

#js_chat.open {
  border: none;
}

#js_chat_toggle_button {
  padding: 0;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  共通
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#uchinoaibutton img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  ボタン
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.uchino_ai_button {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 74px;
  padding: 0;
  margin: 20px 26px 8px auto;
  cursor: pointer;
  line-height: 1;
  border-radius: 11vw;
  z-index: 99999;
}

/*タイプ別
  ===============================*/
.uchino_ai_button.a-type {
  width: 314px;
}

.uchino_ai_button.b-type {
  width: 284px;
  padding: 0 0 0 80px;
  margin: 20px 8px 8px auto;
}

.uchino_ai_button.c-type {
  width: 284px;
  padding: 0 0 0 32px;
}

/*PC時左*/
.left .uchino_ai_button.a-type,
.left .uchino_ai_button.c-type {
  margin: 20px 26px 8px 0;
}

.left .uchino_ai_button.b-type {
  margin: 20px auto 8px 26px;
}

/*スマホ*/
.sp_cont .uchino_ai_button {
  margin: 20px auto 8px auto;
}

.sp_cont .uchino_ai_button.a-type {
  right: 8px;
}

.sp_cont .uchino_ai_button.b-type {
  left: 8px;
}

.sp_cont .uchino_ai_button.c-type {
  right: 8px;
}


/*===============================
   アイコン画像
  ===============================*/
.ua_img {
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  padding: 0;
  margin: 0 10px 0 10px;
  border-radius: 50%;
  background-color: #fff;
}

/*タイプ別
  ===============================*/
.a-type .ua_img {
  display: flex;
}

.b-type .ua_img {
  display: none;
}

.c-type .ua_img {
  display: none;
}

/*===============================
   テキスト
  ===============================*/
.ua_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 100%;
}

.ua_txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

/*===============================
   アイコン大画像＋カウント
  ===============================*/
.ua_img2 {
  position: absolute;
  bottom: 0;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
}

.ua_img2 .img {
  display: none;
}

/*タイプ別
  ===============================*/
.a-type .ua_img2 {
  right: -16px;
}

.a-type .ua_img2 .t-A {
  display: block;
}

.b-type .ua_img2 {
  left: -16px;
  bottom: -4px;
}

.b-type .ua_img2 .t-B {
  display: block;
}

.c-type .ua_img2 {
  right: -16px;
  bottom: -4px;
}

.c-type .ua_img2 .t-A {
  display: block;
}

/* カウント 
  ===============================*/
.ua_img2 .ai_number {
  position: absolute;
  top: -5px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  background-color: #f05b5b;
}

/* アイコン大画像 
  ===============================*/
.ua_img2 .ai_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

/* ボタンここまで */

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  AIボット
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
  共通
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* backdrop-filter 非対応ブラウザ用 */
@supports not ((-webkit-backdrop-filter: blur(50px)) or (backdrop-filter: blur(50px))) {
  .backdrop {
    background: rgba(100, 148, 185, 0.9);
  }
}
.no_iframe .voice_conversation .on_load {
  position: fixed;
}
.voice_conversation .on_load {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2147483647;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #d5dfee, #e9dfee);
}

#uchino_ai_stream .voice_conversation .on_load img {
  height: 100px;
  width: 100px;
}

#uchino_ai_stream img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

/*small*/
#uchino_ai_stream small {
  font-size: 12px;
  line-height: 1.2;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
   フォーム大枠
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#uchino_ai_stream {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.ua_wrap {
  width: 100%;
  height: 100%;
}

/*最背景色*/
.ua_area_bg {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}

/*タイプ別
  ===============================*/
.b-type .ua_area_bg {
  padding-top: 20px;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
   ヘッダー
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.ua_header {
  position: relative;
  width: 100%;
}

/*タイプ別*/
.a-type .ua_header {
  border-top-width: 4px;
  border-top-style: solid;
}

.ua_header .h_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: fit-content;
  padding: 32px 16px 24px;
  margin: 0 auto;
  z-index: 10;
}

/*タイプ別*/
.b-type .ua_header .h_wrap {
  padding: 40px 16px 16px;
}

.ua_header .ua_header_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*画像
  ===============================*/
.h_img {
  width: 64px;
  height: 64px;
  overflow: hidden;
  margin-right: 16px;
  border-radius: 50%;
  background: #fff;
}

/*テキスト
  ===============================*/
.h_txt {
  width: auto;
  max-width: calc(100% - 80px);
  font-size: 16px;
  line-height: 1.4;
}

/* フォーム右上の✖
  ===============================*/
#x_botton {
  position: absolute;
  top: 8px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  border-radius: 50%;
  z-index: 10;
}

.a-type #x_botton {
  font-size: 20px;
  background: none !important;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
   メイン
  ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
#uchino_ai_wrap {
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
  padding: 0 0 64px;
  margin: 0 20px;
  border-radius: 16px;
}

.sp_cont #uchino_ai_wrap {
  margin: 0 16px;
}

/*タイプ別*/
.a-type #uchino_ai_wrap {}

.b-type #uchino_ai_wrap {
  display: flex;
  flex-direction: column;
}

.c-type #uchino_ai_wrap {
  margin: 20px 20px 0;
}

/*===============================
  ボット
  ===============================*/
.cont_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*===============================
  マスク
  ===============================*/
#uchino_ai_wrap .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  z-index: 10;
}

/*===============================
  AI会話部分
  ===============================*/
#uchino_ai_wrap .cont {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  padding: 32px 16px 20px;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.w100 #uchino_ai_wrap .cont {
  width: 80%;
}

/*スマホ*/
.w100 .sp_cont #uchino_ai_wrap .cont {
  width: 100%;
  padding: 32px 16px 20px;
}

#uchino_ai_wrap .cont::-webkit-scrollbar {
  display: none !important;
}

#chatContainer {
  padding: 0;
}

/* first_messege、bot_message
  ===============================*/
.first_messege {
  overflow: hidden;
}

.fm_wrap,
.bot_message {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 24px;
}

/* 画像 
  ===============================*/
.ct_uchinoai_imgbox,
.l_uchinoai_imgbox {
  float: left;
  width: 48px;
  height: 48px;
  overflow: hidden;
  margin: 0 16px 0 0;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
}

/* テキスト
  =============================== */
.r_messege,
.r_box {
  position: relative;
  width: calc(100% - 48px - 32px);
  min-height: 52px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 14px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: 0 16px 16px 16px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  word-break: break-all;
}

.r_messege p,
.r_box .bot-ancer p {
  font-size: 14px;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.r_box .bot-ancer {
  margin-bottom: 24px;
}

/*信頼
  ===============================*/
.r_messege .nimgenniyoru,
.r_box .ainiyoru {
  position: absolute;
  bottom: -32px;
  left: 2px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.r_messege .nimgenniyoru i,
.r_box .ainiyoru i {
  margin-right: 4px;
}

.r_messege .nimgenniyoru span,
.r_box .ainiyoru span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*===============================
  チャット
  ===============================*/
.chat_message {
  width: 100%;
  margin: 0 auto;
}

/*ユーザーメッセージ
  ===============================*/
.chat_question {
  width: calc(100% - 105px);
  min-height: 52px;
  border-radius: 16px 0 16px 16px;
  background: #3dbdd3;
  margin: 0 0 24px auto;
}

.chat_question p {
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 10px 14px 20px;
  margin: 0;
}

/*bot_summary
  ===============================*/
.bot_summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 8px;
}

.c-type .bot_summary {
  flex-direction: column-reverse;
}

/*情報源*/
.bot_summary .source_information {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  background-color: #4aa59a;
}

.bot_summary .source_information .icon-cheveron-down,
.bot_summary .source_information .icon-cheveron-up {
  font-size: 18px;
  margin-bottom: 2px;
}

.b-type .bot_summary .source_information {
  width: 80px;
  border-radius: 50px;
}

.c-type .bot_summary .source_information {
  width: 100%;
  border-radius: 0;
}

/*評価アイコンを囲うもの*/
.evaluation {
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.c-type .evaluation {
  margin: 0 0 12px auto;
}

/*評価アイコン*/
.uchinoai_good,
.uchinoai_bad {
  cursor: pointer;
  width: 16px;
  display: flex;
  align-items: center;
}

.uchinoai_good {
  margin-right: 8px;
}

/*情報源リスト
  ===============================*/
.r_box .bot_summary_list {
  list-style: none;
  margin: 0;
  padding: 16px;
  background-color: #f5f5f5;
}

.b-type .r_box .bot_summary_list {
  border-radius: 16px;
}

.r_box .bot_summary_list li {
  font-size: 12px;
  margin: 0 0 16px;
}

.r_box .bot_summary_list li::before {
  margin-right: 4px;
}

.r_box .bot_summary_list li:last-child {
  margin: 0;
}

.r_box .bot_summary_list li i {
  margin-right: 6px;
}

.r_box .bot_summary_list li a {
  display: block;
}

.r_box .bot_summary_list li .nt_block {
  display: unset;
}

/*サポート
  ===============================*/
#first_question,
.support_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  transition: opacity 1s ease;
  width: calc(100% - 40px - 26px);
  margin: 10px 0 0 auto;
}

#first_question .one_question,
.support_contact .sc_link {
  display: inline-block;
  overflow: hidden;
  padding: 8px 16px;
  margin: 0 16px 16px 0;
  font-size: 12px;
  text-decoration: none;
  border-radius: 16px;
  color: #000;
  background: rgb(165, 165, 165);
}

/*ローディング
  ===============================*/
.uchinoai_loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-weight: bold;
}

.uchinoai_loading span {
  display: inline-block;
  margin: 0 8px;
  animation: loadingAnimation 1s infinite;
}

@keyframes loadingAnimation {
  0% {
    opacity: 0.2;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

/*メッセージを送信
  ===============================*/
.uchino_ai_form {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  margin: auto;
  width: calc(100% - 32px);
  z-index: 10;
}

.w100 .uchino_ai_form {
  width: calc(80% - 32px);
}

/*SP*/
.w100 .sp_cont .uchino_ai_form {
  width: calc(100% - 32px);
}

.input-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/*入力欄*/
#questionInput {
  width: 100%;
  height: 38px;
  padding: 0 56px 0 18px;
  font-size: 14px;
  border-radius: 100px;
  border-width: 2px;
  border-style: solid;
  box-sizing: border-box;
}

.sp_cont #questionInput {
  font-size: 16px;
}

/*送信ボタン*/
.uchinoai_button {
  position: absolute;
  top: 0;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  border: none;
  background: none;
}

.on_voice .uchinoai_button {
  right: 46px;
}

.send_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}

/*Powered By
  ===============================*/
#uchino_ai_stream .uchino_bland {
  display: block;
  padding: 16px 32px 0 0;
  text-align: right;
  font-size: 10px;
  font-weight: bold;
}

#uchino_ai_stream .uchino_bland a {
  color: #0070c0;
  text-decoration: none;
}

.one_question {
  cursor: pointer;
}

/*===============================
 シングルの場合
  ===============================*/
/*pc*/
.no_iframe .b-type .ua_area_bg {
  border-radius: 0;
}

.no_iframe #x_botton {
  display: none;
}

.no_iframe #uchino_ai_wrap .cont {
  width: 80%;
}

.no_iframe .uchino_ai_form {
  width: calc(80% - 32px);
}

/*SP*/
.no_iframe .sp_cont #uchino_ai_wrap .cont {
  width: 100%;
}

.no_iframe .sp_cont .uchino_ai_form {
  width: calc(100% - 32px);
}

/*===============================
面接官一覧　modal
===============================*/
.easy-modal {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom:0;
  margin: auto;
  display: none;
	justify-content: center;
	align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
}

.easy-modal.show {
  display: flex;
  animation: modalFadeIn 0.5s forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/*閉じるボタン*/
.easy-modal .close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
	justify-content: center;
	align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  z-index: 10000;
}
.easy-modal .close-button:hover{
  color:#fff;
  background: #333;
}

/* 動画部分 */
.mobile-view .test_wrapper {
  width: 100%;
  height: 100%;
}

.test_wrapper {
  position: relative;
  width: 70%;
  height: 70%;
}
.test_wrapper .content,
.test_wrapper .container-fluid {
  width: 100%;
  height: 100%;
}
.test_wrapper #js_chat {
  position: absolute;
}
.admin-modal .voice_w,
.admin-modal .voice_w video {
  width: 100% !important;
  height: 100% !important;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
PC
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media only screen and (min-width: 641px) {
/*ここから*/
  /*===============================
  面接官一覧　modal
  ===============================*/
  /* .easy-modal {
    top: -16%;
    width: 70%;
    height: 70%;
  } */


/*ここまで*/
}