@charset "utf-8";

.header {
  display: none;
}

main.content {
  position: relative;
}

.breadcrumb {
  display: none;
}

#box_map {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
}
/*カード内リンク*/
p.blk_link a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 6px;
  height: 6px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #0187cd;
}

/* ボタン */
.btn_mylocation {
  background: #fff;
  border-radius: 50%;
  bottom: 209px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  color: #05aa22;
  font-size: 0.75rem;
  font-weight: 600;
  height: 64px;
  padding-top: 34px;
  position: absolute;
  right: 15px;
  width: 64px;
  z-index: 4;
  border: 2px solid #05aa22;
}
.btn_mylocation::before {
  color: #05aa22;
  content: "\e55c";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 2rem;
  font-weight: normal;
  left: calc(50% - 1rem);
  position: absolute;
  top: 6px;
}
.btn_mylocation > label {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn_mylocation > label > span {
  padding-top: 30px;
  text-align: center;
}
.btn_map-filter {
  background: #fff;
  border-radius: 50%;
  bottom: 129px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  color: #05aa22;
  font-size: 0.75rem;
  font-weight: 600;
  height: 64px;
  padding-top: 34px;
  position: absolute;
  right: 15px;
  width: 64px;
  z-index: 4;
  border: 2px solid #05aa22;
}
.btn_map-filter::before {
  color: #05aa22;
  content: "\ef4f";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 2rem;
  font-weight: normal;
  left: calc(50% - 1rem);
  position: absolute;
  top: 6px;
}
.btn_map-filter > label {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.btn_map-filter > label > span {
  padding-top: 30px;
  text-align: center;
}
.btn_map-list {
  background: #fff;
  border-radius: 50%;
  bottom: 50px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  color: #05aa22;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  height: 64px;
  padding-top: 34px;
  position: absolute;
  right: 15px;
  text-align: center;
  width: 64px;
  z-index: 4;
  border: 2px solid #05aa22;
}
.btn_map-list::before {
  color: #05aa22;
  content: "\e241";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 2.2rem;
  font-weight: normal;
  left: calc(50% - 1.1rem);
  position: absolute;
  top: 7px;
}
.research_area_button {
  align-items: center;
  background: #fff;
  border-radius: 19px;
  border: 2px solid #05aa22;
  bottom: 25px;
  box-sizing: border-box;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  color: #05aa22;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  height: 38px;
  justify-content: center;
  left: calc(50% - 100px);
  position: absolute;
  width: 200px;
  animation: flash 2s linear infinite;
}
@keyframes flash {
  0% { background: #fff;color: #05aa22; }
  50% { background: #ffe801;color: #39683b; }
  100% { background: #fff;color: #05aa22; }
}

/* カード */
.list_card-map .item_card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  left: 50%;
  max-width: 360px;
  padding: 10px;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: calc(100% - 30px);
}
.list_card-map .item_card .ttl_card {
  color: #05aa22;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  text-decoration: underline;
}
.list_card-map .item_card .inner_card {
  display: flex;
  flex-wrap: nowrap;
}
.list_card-map .item_card .img_card {
  height: 96px;
  margin-right: 10px;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 144px;
}

/* カード内評価 */
.list_card-map .item_card .blk_rating {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
  position: absolute;
  z-index: 1;
}
.list_card-map .item_card .blk_rating > em {
  font-size: 0.875rem;
  font-weight: 600;
}
.list_card-map .item_card .blk_rating > a {
  color: #3c90d1;
  font-weight: normal;
}
.list_card-map .item_card .blk_rating .star_rating {
  color: #ff7700;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-right: 4px;
  position: relative;
  white-space: nowrap;
  z-index: 0;
}
.list_card-map .item_card .blk_rating .star_rating::before {
  content: "☆☆☆☆☆";
}
.list_card-map .item_card .blk_rating .star_rating::after {
  content: "★★★★★";
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  white-space: nowrap;
  z-index: 1;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="5"]:after {
  width: 100%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="4.5"]:after {
  width: 90%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="4"]:after {
  width: 80%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="3.5"]:after {
  width: 70%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="3"]:after {
  width: 60%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="2.5"]:after {
  width: 50%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="2"]:after {
  width: 40%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="1.5"]:after {
  width: 30%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="1"]:after {
  width: 20%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="0.5"]:after {
  width: 10%;
}
.list_card-map .item_card .blk_rating .star_rating[data-rate="0"]:after {
  width: 0%;
}

/* カード内金額 */
.list_card-map .item_card .blk_price {
  display: flex;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  line-height: 1.5;
}
.list_card-map .item_card .blk_price dt {
  font-weight: 600;
}
.list_card-map .item_card .blk_price dt::after {
  content: "：";
  font-weight: normal;
}
.list_card-map .item_card .blk_price dd > em {
  color: #ff7700;
  font-weight: 600;
}

/* カード内チェックボタン */
.list_card-map .item_card .blk_check {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.list_card-map .item_card .blk_check input {
  display: none;
}
.list_card-map .item_card .blk_check .btn_check {
  align-items: center;
  background: #ecf4e1;
  border: 1px solid #05aa22;
  border-radius: 5px;
  box-sizing: border-box;
  color: #05aa22;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: bold;
  height: 38px;
  justify-content: flex-start;
  padding-left: 22%;
  position: relative;
  width: 100%;
}
.list_card-map .item_card .blk_check .btn_check::before {
  background: #fff;
  border: 2px solid #aaa;
  border-radius: 3px;
  box-sizing: border-box;
  content: "";
  height: 24px;
  left: 36px;
  position: absolute;
  top: 7px;
  width: 24px;
}
.list_card-map .item_card .blk_check .btn_check::after {
  border-bottom: 3px solid #ccc;
  border-right: 3px solid #ccc;
  content: "";
  height: 14px;
  left: 42px;
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
  width: 9px;
}
.list_card-map .item_card .blk_check .btn_check_on {
  align-items: center;
  background: #efefef;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  color: #666;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: bold;
  height: 38px;
  justify-content: flex-start;
  padding-left: 22%;
  position: relative;
  width: 100%;
}
.list_card-map .item_card .blk_check .btn_check_on::before {
  background: #05aa22;
  border: 2px solid #05aa22;
  border-radius: 3px;
  box-sizing: border-box;
  content: "";
  height: 24px;
  left: 36px;
  position: absolute;
  top: 7px;
  width: 24px;
}
.list_card-map .item_card .blk_check .btn_check_on::after {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  height: 14px;
  left: 42px;
  position: absolute;
  top: 8px;
  transform: rotate(45deg);
  width: 9px;
}
.list_card-map .item_card .blk_check .btn_check_on > span {
  font-size: 0.75rem;
  font-weight: normal;
  padding-left: 3%;
}
.list_card-map .item_card .blk_check input[name^="btn_check_"].radio_on:checked + .btn_check_on {
  display: none;
}
.list_card-map .item_card .blk_check input[name^="btn_check_"].radio_on:checked + .btn_check {
  display: flex;
}
.list_card-map .item_card .blk_check input[name^="btn_check_"].radio_off:checked + .btn_check_on {
  display: flex;
}
.list_card-map .item_card .blk_check input[name^="btn_check_"].radio_off:checked + .btn_check {
  display: none;
}

/* カード内リンク */
.list_card-map .item_card .link_card {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* チェック済み資料請求 */
.btn_request {
  align-items: center;
  background: linear-gradient(180deg, #57dd06 0%, #05aa22 100%);
  border-radius: 4px;
  border: 1px solid #05aa22;
  box-shadow: 0px 2px 4px rgba(1, 56, 11, 0.5);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-shadow: 1px 0px 4px rgba(5, 98, 22, 0.5);
  top: 220px;
  transform: translateX(-50%);
  width: 253px;
  z-index: 1;
}
.btn_request .count_request {
  background: #fff;
  border: 2px solid #05aa22;
  border-radius: 50%;
  box-sizing: border-box;
  color: #05aa22;
  display: flex;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: -9px;
  text-shadow: none;
  top: -7px;
  width: 28px;
}
.none_card {
  top: 50px;
}

.window_result {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(1, 56, 11, 0.5);
  box-sizing: border-box;
  display: block;
  font-weight: 600;
  height: auto;
  left: 50%;
  max-width: 360px;
  padding: 20px 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 30px);
}
.window_result .txt_not {
  color: #d94372;
  font-size: 1rem;
  line-height: 1.5;
}
.window_result hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 10px 0;
  padding: 0;
}
.window_result p > a {
  font-size: 0.875rem;
  line-height: 1.5;
}
.gm-bundled-control {
  left: 0;
}

.nav_footer {
  display: none;
}
.blk_footer_copyright {
  display: none;
}

/* スモールSP */
@media (max-width: 374.98px) {
  .list_card-map .item_card {
    padding: 8px;
    width: calc(100% - 10px);
  }
  .list_card-map .item_card .img_card {
    height: 80px;
    margin-right: 8px;
    width: 120px;
  }
  .list_card-map .item_card .blk_rating {
    margin-bottom: 0;
  }
  .list_card-map .item_card .blk_price {
    font-size: 0.8125rem;
  }
  .list_card-map .item_card .blk_check .btn_check {
    padding-left: 18%;
  }
  .list_card-map .item_card .blk_check .btn_check_on {
    padding-left: 18%;
  }
  .list_card-map .item_card .blk_check .btn_check::before {
    left: 24px;
  }
  .list_card-map .item_card .blk_check .btn_check::after {
    left: 30px;
  }
  .list_card-map .item_card .blk_check .btn_check_on::before {
    left: 24px;
  }
  .list_card-map .item_card .blk_check .btn_check_on::after {
    left: 30px;
  }
  .btn_request {
    top: 200px;
  }
  .none_card {
    top: 50px;
  }
  .window_result {
    width: calc(100% - 10px);
  }
}

/* PC */
@media (min-width: 768px) {
  .header {
    display: block;
  }
  .breadcrumb {
    display: block;
  }
  #box_map {
    height: calc(100vh - 300px);
    min-height: 600px;
    margin: 10px auto;
    max-width: 1000px;
  }
  .btn_mylocation {
    bottom: 184px;
    right: 20px;
  }
  .btn_map-filter {
    bottom: 104px;
    right: 20px;
  }
  .btn_map-list {
    bottom: 20px;
    right: 20px;
  }
  .research_area_button {
    bottom: 10px;
  }
  .list_card-map .item_card {
    top: 50px;
  }
  .btn_request {
    top: 260px;
  }
  .none_card {
    top: 70px;
  }
  .nav_footer {
    display: block;
  }
  .blk_footer_copyright {
    display: block;
  }
}

/* ローディング */
#loading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgb(90 90 90 / 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
}

.loader {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.completed {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}

@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}