@charset "UTF-8";

/* ボタン */
.btnWhite a, .faqValuation__btnArea .faqValuation__btnArea-btn {
  color: #478410;
  font-weight: bold;
  width: 100%;
  border-radius: 50px;
  background: #fff;
  filter: drop-shadow(0px 4px 4px rgba(73, 134, 31, 0.4));
  transform: translateZ(0);
  display: inline-block;
  text-decoration: none;
}

@media (hover: hover) {
  .btnWhite a:hover, .faqValuation__btnArea-btn:hover {
    opacity: .6;
    transition: all .2s 0s ease;
  }
}

/* 背景 */
.bgGreenGrad, .AImomo__inner, .AImomo__search-form .AImomo__search-btn, .faqValuation {
  background: rgb(103, 165, 16);
  background: -webkit-linear-gradient(left, rgba(103, 165, 16, 1) 0%, rgba(73, 134, 31, 1) 100%);
  background: -o-linear-gradient(left, rgba(103, 165, 16, 1) 0%, rgba(73, 134, 31, 1) 100%);
  background: linear-gradient(to right, rgba(103, 165, 16, 1) 0%, rgba(73, 134, 31, 1) 100%);
}

.momoFace {
  position: absolute;
  border-radius: 50px;
  padding: 7px;
}

.momoFace__inner {
  background: #fff;
  border-radius: 50px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
  transform: translateZ(0);
}

/* フォームopen */
.AImomo {
  position: absolute;
  top: 0;
  left: -500px;
  width: 100%;
  height: 100%;
  display: flex;
  transition: all .3s 0s ease;
  visibility: hidden;
  z-index: 50;
  opacity: 0;
}
.AImomo.open {
  left: 0;
  visibility: visible;
  opacity: 1;
  background-color: #fff;
}
.AImomo__inner {
  width: 100%;
  min-height: 440px;
  padding: 40px 24px 24px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 16px;
}
.AImomo__search {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.AImomo p {
  color: #fff;
  font-weight: bold;
  margin-bottom: 14px;
}
.AImomo__search-form {
  position: relative;
  width: 100%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
  transform: translateZ(0);
}
.AImomo__search-form .AImomo__search-input {
  font-weight: bold;
  font-size: 1.6rem;
  color: #1d1c1d;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 50px;
  border: none;
  outline: 0;
}
.AImomo__search-form .AImomo__search-input::placeholder {
  color: #C1C1C1;
}
.AImomo__search-form .AImomo__search-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: none;
}
.AImomo__search-form .AImomo__search-btn::before {
  position: absolute;
  content: "";
  background: url("../img/icon_03.svg")no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.AImomo .momoFace {
  top: -20px;
}
.AImomo__plusIcon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.AImomo__plusIcon:before, .AImomo__plusIcon:after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
  transform: translate(50%, 50%) rotate(45deg);
}
.AImomo__plusIcon::before {
  width: 2px;
  height: 20px;
}
.AImomo__search .AImomo__search-keyword {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.AImomo__search-keyword li {
  margin: 0 8px 12px;
}
.AImomo__search-keyword.btnWhite a {
  font-size: 1.6rem;
  padding: 12px 16px;
  height: 42px;
  display: flex;
  align-items: center;
}
@media screen and (max-width:767px) {
  .AImomo {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }
  .AImomo.open {
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .AImomo__inner::after {
    content: none;
  }
  .AImomo__inner {
    position: absolute;
    bottom: 0;
    height: 80%;
    padding: 20% 16px 0;
    min-height: auto;
    transform: translateY(110%);
    visibility: hidden;
    border-radius: 32px 32px 0 0;
    transition: all .3s 0s ease;
    align-items: normal;
  }
  .AImomo__inner.open {
    bottom: 0;
    visibility: visible;
    transform: translateY(0);
  }
  .AImomo .momoFace {
    top: -40px;
  }
  .AImomo__search {
    padding: 0;
    overflow-y: scroll;
  }
  .AImomo p {
    font-size: 1.8rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .AImomo__inner {
    padding: 60px 16px 0;
  }
}
