@charset "UTF-8";
#access {
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  #access {
    padding: 45px 0;
  }
}
#access .grayArea {
  background-color: #727272;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 10px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  #access .grayArea {
    margin-top: 45px;
  }
}
@media screen and (max-width: 480px) {
  #access .grayArea {
    font-size: 14px;
  }
}
#access .map02 {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  #access .map02 {
    margin-top: 45px;
  }
}

.compare {
  position: relative;
  overflow: hidden;
  width: 800px; /* 必要に応じて */
  height: 500px; /* 必要に応じて */
}

.compare img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.compare .before {
  z-index: 1;
}

.compare .after {
  z-index: 2;
  clip-path: inset(0 50% 0 0); /* ← 初期値をここで指定 */
}

.compare input[type=range] {
  appearance: auto !important;
  -webkit-appearance: auto !important; /* Safari */
  display: block !important;
  height: 20px !important;
  background: #ccc !important;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 3;
}