/* =====================================
	NOMOCa AI Chatbot
===================================== */
section#aiChat {
   /* display: none; */
}

/*--------------------------------------
	レスポンシブ
--------------------------------------*/
.bannersNomocaAi .sp {
   display: none;
}

@media (max-width: 767px) {
   .bannersNomocaAi .pc {
      display: none;
   }

   .bannersNomocaAi .sp {
      display: block;
   }
}

/*--------------------------------------
  バナー
--------------------------------------*/
.bannersNomocaAi {
   display: flex;
   gap: 10px;
   justify-content: center;
   position: fixed;
   bottom: 0;
   right: 20px;
   z-index: 999;
   width: clamp(320px, 26%, 600px);
}

.bannersNomocaAi li {
   cursor: pointer;
   transition-duration: .4s;
}

.bannersNomocaAi li:hover {
   opacity: .7;
}

.bannersNomocaAi li img {
   vertical-align: bottom;
   width: 100%;
}

@media (max-width: 767px) {
   .bannersNomocaAi {
      width: 100%;
      gap: 0;
      right: 0;
   }

   .bannersNomocaAi li {
      width: calc(100% / 2);
   }
}

/*--------------------------------------
	モーダルウィンドウ
--------------------------------------*/
.dispFixed {
   overflow: hidden;
}

.modalNomocaAi {
   position: fixed;
   display: none;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: 9999;
   overflow-y: scroll;
   background-color: rgba(103, 103, 103, .73);
   cursor: pointer;
   /* font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif; */
}

.windowPopup {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 93%;
   max-width: 400px;
   background: #fff;
   cursor: auto;
   padding: 25px;
}

.btnClose {
   position: absolute;
   top: -22px;
   right: -10px;
   width: 44px;
   height: 44px;
   cursor: pointer;
   transition-duration: .4s;
}

.btnClose:hover {
   opacity: .7;
}

span.btnClose img {
   width: 100%;
}

.windowPopup p {
   margin: 0;
   font-weight: 600;
   color: #fff;
   text-align: center;
}

.windowPopup p.popupTitle {
   color: #141EA1;
   /* margin-bottom: 28px; */
   padding: 25px 0 15px;
   border-bottom: 1px solid #141EA1;
   font-size: 22.5px;
   line-height: 1.28;
   letter-spacing: .16em;
}

.windowPopup p.popupDescription {
   color: #333;
   font-size: 18px;
   line-height: 1.35;
   letter-spacing: .04em;
   padding: 15px 0 30px;
}

.ai_popup_content {
   margin: 0 auto 30px !important;
   /* padding: 0 30px; */
   list-style: none !important;
}

.ai_popup_content li a {
   position: relative;
   padding: 0 10px 0 66px;
   display: flex;
   align-items: center;
   min-height: 50px;
   background: #141EA1;
   border-radius: 5px;
   font-size: 19px;
   font-weight: 400;
   line-height: 1;
   letter-spacing: 0;
   color: #fff;
   text-decoration: none;
   letter-spacing: 1.5px;
}

.ai_popup_content li a:before {
   content: "";
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   left: 17px;
   width: 25px;
   height: 25px;
   background: url(/_userdata/nomoca_ai-chat/img/icon_01.svg) no-repeat center/100%;
}

.ai_popup_content li:nth-child(2) a:before {
   background-image: url(/_userdata/nomoca_ai-chat/img/icon_02.svg);
}

/* .ai_popup_content li:nth-child(3) a:before {
	background-image: url(/_userdata/nomoca_ai-chat/img/icon_03.svg);
}

.ai_popup_content li:nth-child(4) a:before {
	background-image: url(/_userdata/nomoca_ai-chat/img/icon_04.svg);
} */

.ai_popup_content li:not(:last-child) {
   margin-bottom: 22px;
}

.ai_popup_content li a:after {
   content: "";
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 12px;
   width: 25px;
   height: 25px;
   background: url(/_userdata/nomoca_ai-chat/img/icon_arrow.svg) no-repeat center/100%;
}

/*
.ai_popup_content li a:hover {
	background: rgba(255, 255, 255, .9);
}
*/
@media (max-width: 767px) {

   .windowPopup p.popupDescription {
      font-size: 18px;
      font-weight: 400;
   }

   .ai_popup_content {
      /* margin-top: 40px !important; */
   }

   .ai_popup_content li a {
      padding-left: 50px;
   }

   .ai_popup_content li a:before {
      left: 11px;
   }

   .ai_popup_content li a:after {
      top: 50%;
      right: 10.5px;
      transform: translateY(-50%);
      width: 25px;
      height: 25px;
   }
}
