@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;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #999;
  border-radius: 16px;
  padding: 6px 8px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s, border-color 0.2s;
}
#helpPopupIconWrapper:hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: #888;
}
#helpPopupIconWrapper #helpPopupIcon {
  width: 72px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
#helpPopupIconWrapper .help_popup_icon_caption {
  margin-top: 2px;
  color: #e53935;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.2px;
  pointer-events: none;
  user-select: none;
  text-align: center;
}
#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%;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border: 2px solid #d3e7fc;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  /* QR ビュー */
}
.help_popup_box.active {
  opacity: 1;
  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: #d3e7fc;
  padding: 1px 12px 1px 76px;
}
.help_popup_box .popup_header .popup_icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.help_popup_box .popup_header .popup_icon img {
  width: 55px;
}
.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_divider {
  height: 1px;
  background: #ccc;
  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: 5px 0 6px;
}
.help_popup_box .popup_contacts .contact_row.phone {
  margin-left: 12px;
}
.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;
  color: #003380;
  margin-left: 20px;
}
.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: 10px 12px 12px;
  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;
}

/* スマホ調整 */
@media (max-width: 767px) {
  #helpPopupIconWrapper {
    right: 10px;
    padding: 4px 6px 3px;
    border-radius: 12px;
  }
  #helpPopupIconWrapper #helpPopupIcon {
    width: 54px;
  }
  #helpPopupIconWrapper .help_popup_icon_caption {
    font-size: 12px;
  }
  .help_popup_box {
    width: 270px;
    right: 70px;
    top: 70%;
    border-radius: 16px;
  }
  .help_popup_box .popup_close {
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
  }
  .help_popup_box .popup_header {
    padding: 1px 10px 1px 60px;
  }
  .help_popup_box .popup_header .popup_icon img {
    width: 46px;
  }
  .help_popup_box .popup_header .popup_text {
    width: 85%;
  }
  .help_popup_box .popup_header .popup_text .sub:first-child {
    font-size: 16px;
  }
  .help_popup_box .popup_header .popup_text .sub + .sub {
    font-size: 11px;
  }
  .help_popup_box .popup_contacts {
    padding: 4px 12px 2px;
  }
  .help_popup_box .popup_contacts .contact_row {
    margin: 4px 0;
  }
  .help_popup_box .popup_contacts .contact_row .label {
    width: 60px;
    font-size: 12px;
  }
  .help_popup_box .popup_contacts .contact_row .value {
    margin-left: 12px;
    font-size: 12px;
  }
  .help_popup_box .popup_contacts .contact_row .icon-phone {
    width: 16px;
    margin-right: 6px;
  }
  .help_popup_box .popup_contacts .contact_row .icon-whatsapp {
    width: 26px;
    transform: translateX(-4px);
  }
  .help_popup_box .popup_contacts .qr_hint {
    margin: 2px 0 4px auto;
    font-size: 11px;
  }
  .help_popup_box .popup_hours {
    font-size: 11px;
    padding: 8px 10px 10px;
  }
  .help_popup_box .qr_view {
    width: 100%;
    padding: 40px 14px 14px;
  }
  .help_popup_box .qr_view .qr_close_btn {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
  }
  .help_popup_box .qr_view .qr_close_btn:before {
    font-size: 18px;
  }
  .help_popup_box .qr_view .qr_inner {
    min-height: 0;
  }
  .help_popup_box .qr_view .qr_inner .qr_img_wrap {
    position: relative;
  }
  .help_popup_box .qr_view .qr_inner .qr_image {
    aspect-ratio: 1/1;
    height: auto;
  }
  .help_popup_box .qr_view .qr_inner .qr_brand {
    top: 4px;
    right: -44px;
  }
  .help_popup_box .qr_view .qr_inner .qr_brand img {
    width: 44px;
  }
  .help_popup_box .qr_view .qr_inner .qr_caption {
    margin-top: 4px;
    font-size: 12px;
  }
}
/* 見積り画面だけスマホ相当の固定サイズ */
#helpPopupIconWrapper[data-estimate="1"] {
  padding: 4px 6px 3px;
  border-radius: 12px;
}
#helpPopupIconWrapper[data-estimate="1"] #helpPopupIcon {
  width: 54px;
}
#helpPopupIconWrapper[data-estimate="1"] .help_popup_icon_caption {
  font-size: 12px;
}

.help_popup_box[data-estimate="1"] {
  width: 265px;
  border-radius: 16px;
}
.help_popup_box[data-estimate="1"] .popup_close {
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  font-size: 12px;
}
.help_popup_box[data-estimate="1"] .popup_header {
  padding: 1px 10px 1px 60px;
}
.help_popup_box[data-estimate="1"] .popup_header .popup_icon img {
  width: 46px;
}
.help_popup_box[data-estimate="1"] .popup_header .popup_text {
  width: 85%;
}
.help_popup_box[data-estimate="1"] .popup_header .popup_text .sub:first-child {
  font-size: 16px;
}
.help_popup_box[data-estimate="1"] .popup_header .popup_text .sub + .sub {
  font-size: 11px;
}
.help_popup_box[data-estimate="1"] .popup_contacts {
  padding: 4px 12px 2px;
}
.help_popup_box[data-estimate="1"] .popup_contacts .contact_row .label {
  width: 60px;
  font-size: 12px;
}
.help_popup_box[data-estimate="1"] .popup_contacts .contact_row .value {
  margin-left: 12px;
  font-size: 12px;
}
.help_popup_box[data-estimate="1"] .popup_contacts .contact_row .icon-phone {
  width: 16px;
  margin-right: 6px;
}
.help_popup_box[data-estimate="1"] .popup_contacts .contact_row .icon-whatsapp {
  width: 26px;
  transform: translateX(-4px);
}
.help_popup_box[data-estimate="1"] .popup_contacts .qr_hint {
  margin: 2px 0 4px auto;
  font-size: 11px;
}
.help_popup_box[data-estimate="1"] .popup_hours {
  font-size: 11px;
  padding: 8px 10px 10px;
}

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