@charset "UTF-8";
/*----------------------------------------------------
 メディアクエリmixin
----------------------------------------------------*/
@media (max-width: 768px) {
  .sp-kill {
    display: none !important;
  }
}

/*----------------------------------------------------
 アピアランス除去
----------------------------------------------------*/
.fab {
  /*--------------
    Variable
  --------------*/
  /*--------------
    Contents
  --------------*/
  box-sizing: border-box;
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  transition: all 0.08s ease-out;
  /*--------------
    State
  --------------*/
}
@media (max-width: 768px) {
  .fab {
    right: auto;
    bottom: 8px;
    width: 100%;
    padding: 0 8px;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
.fab .fab_banner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 36px 12px 12px;
  width: 228px;
  height: 182px;
  gap: 12px;
  background: #FFFFFF;
  border: solid 3px #C7E9FB;
  border-radius: 8px 0 0 8px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .fab .fab_banner {
    flex-direction: row;
    width: 100%;
    height: 78px;
    padding: 12px;
    padding-left: 80px;
    border-radius: 8px;
    height: auto;
  }
}
.fab .fab_title > img {
  width: auto;
  height: 60px;
}
@media (max-width: 768px) {
  .fab .fab_title > img {
    height: 38px;
  }
}
.fab .fab_cta {
  text-overflow: ellipsis;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #06C755;
  border-radius: 4px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fab .fab_cta {
    padding: 16px 12px;
    width: auto;
  }
}
.fab .fab_cta > img {
  width: auto;
  height: 24px;
}
@media (max-width: 768px) {
  .fab .fab_cta > img {
    height: 16px;
  }
}
.fab .fab_image {
  position: absolute;
  width: 100%;
  height: 86px;
  top: -50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fab .fab_image {
    width: 68px;
    height: 86px;
    top: auto;
    bottom: 0;
    left: 12px;
  }
}
.fab .fab_image > img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 120px;
  z-index: 1;
}
@media (max-width: 768px) {
  .fab .fab_image > img {
    width: 100%;
  }
}
.fab .fab_image::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 36px;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, white 90%);
  z-index: 2;
}
.fab .fab_close {
  text-overflow: ellipsis;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  box-sizing: border-box;
  width: 28px;
  height: auto;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  background: #C7E9FB;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fab .fab_close {
    width: auto;
    height: 28px;
    flex-direction: column;
    margin-right: 20px;
    border-radius: 4px 4px 0 0;
  }
}
.fab .fab_closetext {
  width: 28px;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 12px 6px;
}
@media (max-width: 768px) {
  .fab .fab_closetext {
    width: auto;
    height: 28px;
    flex-direction: row;
    padding: 6px 12px;
  }
}
.fab .fab_closetext > img {
  width: 15px;
  height: 15px;
  max-width: none;
  vertical-align: initial;
}
@media (max-width: 768px) {
  .fab .fab_closetext > img {
    transform: rotate(90deg);
  }
}
.fab .fab_closetext > span {
  color: #2C759C;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .fab .fab_closetext > span {
    writing-mode: horizontal-tb;
  }
}
.fab.fab-Disabled {
  right: -228px;
  bottom: 20px;
}
.fab.fab-Disabled .fab_close {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .fab.fab-Disabled {
    right: 0;
    bottom: -78px;
  }
}