@charset "UTF-8";
#helpPopupIconWrapper {
  display: none;
  position: fixed;
  right: 20px;
  top: 80%;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
}
#helpPopupIconWrapper:hover {
  background: transparent !important;
  border-color: transparent !important;
}
#helpPopupIconWrapper .help_popup_icon_box {
  display: inline-block;
  width: 140px;
  padding: 0;
  text-align: center;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 51, 128, 0.2);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
#helpPopupIconWrapper .help_popup_icon_box:hover {
  box-shadow: 0 14px 28px rgba(0, 51, 128, 0.25);
  transform: translateY(-2px);
}
#helpPopupIconWrapper[data-estimate="1"] .help_popup_icon_box {
  transform: scale(0.8);
}
#helpPopupIconWrapper[data-estimate="1"] .help_popup_icon_box:hover {
  box-shadow: 0 14px 28px rgba(0, 51, 128, 0.25);
  transform: scale(0.8) translateY(-2px);
}
#helpPopupIconWrapper .help_popup_icon_imgwrap {
  width: 100%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: 1.5px solid #003380;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  height: 100px;
}
#helpPopupIconWrapper .help_popup_icon_imgwrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 0;
  border-bottom: 1.5px solid #003380;
  z-index: 2;
  border-top: 3px solid #003380;
}
#helpPopupIconWrapper .help_popup_icon_imgwrap #helpPopupIcon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
#helpPopupIconWrapper .help_popup_icon_caption {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  user-select: none;
  pointer-events: none;
  text-align: center;
  background: #fff;
  border: 1.5px solid #003380;
  border-radius: 0 0 18px 18px;
  color: #e53935;
  margin: 0;
  margin-top: -2px;
  padding: 5px 4px 5px;
}
#helpPopupIconWrapper .close_icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #555;
  border: 1px solid #555;
  border-radius: 50%;
  font-size: 14px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  font-weight: bold;
}

/* 開いたポップアップ本体 */
.help_popup_box {
  position: fixed;
  display: none;
  right: 120px;
  top: 73%;
  z-index: 1000;
  width: auto;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  pointer-events: none;
  /* QRビュー */
}
.help_popup_box.active {
  pointer-events: auto;
}
.help_popup_box .popup_close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #fff;
  color: #555;
  border: 1px solid #555;
  border-radius: 50%;
  font-size: 14px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1002;
}
.help_popup_box .popup_header {
  position: relative;
  display: flex;
  align-items: center;
  background: #dde9f5;
  padding: 3px 12px 1px 76px;
}
.help_popup_box .popup_header .popup_icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
}
.help_popup_box .popup_header .popup_icon img {
  width: 55px;
  vertical-align: unset;
}
.help_popup_box .popup_header .popup_text {
  width: 85%;
  text-align: center;
  line-height: 1.2;
}
.help_popup_box .popup_header .popup_text .sub:first-child {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.help_popup_box .popup_header .popup_text .sub + .sub {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-top: 0;
}
.help_popup_box .popup_header .popup_text .popup-emph {
  color: #e53935;
}
.help_popup_box .popup_header .popup_text .fontbold {
  font-weight: 700;
}
.help_popup_box .popup_header .popup_icon img {
  width: 70px;
  height: 56px;
  margin-top: 7px;
  margin-left: -5px;
  vertical-align: unset;
}
.help_popup_box .popup_divider {
  height: 1px;
  background: #000;
  margin: 0;
}
.help_popup_box .popup_contacts {
  padding: 1px 15px;
  justify-items: center;
}
.help_popup_box .popup_contacts .contact_row {
  display: flex;
  align-items: center;
  margin: 2px 0 1px;
}
.help_popup_box .popup_contacts .contact_row.phone {
  margin-left: 10px;
  margin-top: 5px;
}
.help_popup_box .popup_contacts .contact_row .icon-phone {
  width: 18px;
  margin-right: 8px;
}
.help_popup_box .popup_contacts .contact_row .icon-whatsapp {
  width: 30px;
  transform: translateX(-4px);
}
.help_popup_box .popup_contacts .contact_row .label {
  font-weight: bold;
  width: 80px;
  color: #555;
}
.help_popup_box .popup_contacts .contact_row .value {
  font-weight: bold;
  font-size: 120%;
  color: #003380;
  margin-left: 15px;
}
.help_popup_box .popup_contacts .contact_row .value:hover {
  color: #d3e7fc;
}
.help_popup_box .popup_contacts .qr_hint {
  margin: -5px 0 5px 120px;
  justify-content: flex-end;
  font-size: 12px;
}
.help_popup_box .popup_contacts .qr_hint a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.help_popup_box .popup_hours {
  position: relative;
  padding: 5px 12px 8px;
  font-size: 12px;
  color: #555;
  text-align: center;
}
.help_popup_box .popup_hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 25px);
  height: 2px;
  background: #ccc;
  border-radius: 1px;
}
.help_popup_box .qr_view {
  position: relative;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 48px 24px 24px;
  min-height: auto;
  height: auto;
}
.help_popup_box .qr_view .qr_close_btn {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 4px 8px;
  line-height: 1.2;
  z-index: 3;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.help_popup_box .qr_view .qr_close_btn:before {
  content: "×";
  font-size: 20px;
  line-height: 1;
  margin-right: 4px;
}
.help_popup_box .qr_view .qr_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 125px;
  justify-content: center;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
}
.help_popup_box .qr_view .qr_inner:active {
  cursor: grabbing;
}
.help_popup_box .qr_view .qr_inner .qr_img_wrap {
  position: relative;
}
.help_popup_box .qr_view .qr_inner .qr_image {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  background: #fff;
}
.help_popup_box .qr_view .qr_inner .qr_brand {
  position: absolute;
  top: 8px;
  right: -70px;
}
.help_popup_box .qr_view .qr_inner .qr_brand img {
  width: 56px;
}
.help_popup_box .qr_view .qr_inner .qr_caption {
  margin-top: 6px;
  font-size: 13px;
  color: #444;
}
.help_popup_box .help_popup_box_inner {
  width: 330px;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #003380;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.help_popup_box.active .help_popup_box_inner {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  #helpPopupBox[data-estimate="1"] {
    transform: scale(0.8);
  }
}

/*# sourceMappingURL=help_popup.css.map */
