@charset "UTF-8";
/* =================================== */
/*	AIチャット（NOMOCa AI chat）バナー
/* =================================== */
/* バナーボタン */
.ai-btn-area {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 9991;
  width: 265px;
}
.ai-btn-area button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.ai-btn-area__btn {
  display: inline-block;
  margin-top: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ai-btn-area__btn:hover, .ai-btn-area__btn:focus {
  opacity: 0.8;
}
.ai-btn-area__btn img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .ai-btn-area {
    background-color: #22819E;
    width: 100%;
    text-align: center;
  }
  .ai-btn-area__btn {
    width: 100%;
    display: block;
  }
  .ai-btn-area__btn img {
    height: 100%;
    width: auto;
  }
}

/* モーダルウィンドウ */
.info-modal-fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

.info-modal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.info-modal__cont {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background-color: #D5D0CF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .info-modal__cont {
    width: 90%;
    padding: 25px;
  }
}
.info-modal__ttl {
  font-weight: bold;
  color: #4D4848;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid #4D4848;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .info-modal__ttl {
    font-size: 24px;
  }
}
.info-modal__desc {
  font-size: 19px;
  font-weight: normal;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .info-modal__desc {
    font-size: 16px;
  }
}
.info-modal__menu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
}
.info-modal__menu-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 24px;
  font-weight: normal;
  display: block;
  width: 100%;
  text-align: left;
  padding: 3px 15px 7px;
  margin-top: 10px;
  color: #fff;
  background-color: #4D4848;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.info-modal__menu-item:hover, .info-modal__menu-item:focus {
  opacity: 0.8;
}
.info-modal__menu-item:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .info-modal__menu-item {
    font-size: 22px;
  }
}
.info-modal__menu-item::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/ai-bnr/popup_arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-modal__menu-item img {
  margin-right: 10px;
  vertical-align: middle;
}
.info-modal__close-btn {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
}
.info-modal__bg-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}/*# sourceMappingURL=ai-bnr.css.map */