@charset "UTF-8";
/* CSS Document */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === 高さ指定未満のとき非表示 === */
@media screen and (max-height: 1050px) {
  .p-popup.is-show .p-popup-wrap,
  .p-popup-bubble,
  .p-popup.is-show-popup .p-popup-wrap {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
  }
}

/* === 幅指定未満のとき非表示 === */
@media screen and (max-width: 1000px) {
  .p-popup.is-show .p-popup-wrap,
  .p-popup-bubble,
  .p-popup.is-show-popup .p-popup-wrap {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
  }
}

/* === 幅指定以上のときは高さ条件を上書きして再表示 === */
@media screen and (min-width: 1830px) {
  .p-popup.is-show .p-popup-wrap,
  .p-popup-bubble,
  .p-popup.is-show-popup .p-popup-wrap {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

.p-searchFormside__input {
  margin: 0 auto 20px auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  width: 100%;
  height: 50px;
  line-height: 36px;
  padding: 0 40px 0 18px;
  border-radius: 25px;
  font-size: 16px;
  font-size: 0.9rem;
  border: 2px solid #0066b4;
  background: #fafbfd;
}
.p-searchFormside__input:hover {
  background-color: #fff;
}
.p-searchFormside__btn img {
  width: 26px;
}
.p-searchFormside__btn {
  margin-top: 14px;
  margin-left: -40px;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  position: absolute;
  cursor: pointer;
}
.p-popup-wrap {
  opacity: 0;
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 80px;
  right: 20px;
}
.p-popup-wrap.is-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup-container {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}
.p-popup-content {
  position: relative;
  height: 190px;
  max-width: 235px;
  background: linear-gradient(180deg, #E3E9F5 0%, #F3F6FB 100%);
  border: 1px solid #C5D2E5;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 0 0 0;
}
.p-popup-text {
  padding: 15px;
  height: calc(100% - 146px);
}
.p-popup-text img {
  height: 39px;
  width: fit-content;
  display: block;
  margin: auto;
}
.p-popup-text1 {
  padding: 9px;
  height: calc(100% - 105px);
}
.p-popup-text1 img {
  height: 144px;
  width: 197px;
  display: block;
  margin: auto;
}
.p-popup-text2 {
  padding: 15px;
  height: calc(100% - 146px);
}
.p-popup-text2 img {
  height: 20px;
  width: fit-content;
  display: block;
  margin: auto;
}
.p-popup-image {
  height: 146px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  position: relative;
}
.p-popup-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.p-popup-close {
  position: fixed;
  bottom: 280px;
  top: 0;
  right: -70px;
  left: 0;
  margin: auto 90px 0 auto;
  z-index: 100;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-popup-btn {
  position: absolute;
  top: 0;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto auto 0;
  height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #1b5fac;
  padding: 12px 9.5px;
  min-width: 171px;
  width: fit-content;
  border-radius: 3px;
}
.p-popup-bubble {
  position: fixed;
  right: 7px;
  bottom: 80px;
  z-index: 100;
  display: none;
}
.p-popup.is-show-popup .p-popup-wrap, .p-popup.is-show .p-popup-wrap {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup.is-show-bubble .p-popup-bubble {
  display: block;
  cursor: pointer;
  opacity: .8;
}
@media screen and (max-width: 768px) {
  .p-popup {
    display: none;
  }
}