.p-access {
  background-color: #E3E2DC;
  overflow: hidden;
  position: relative;
}

.sample_box11 {
  width: 43%;
  max-width: 700px;
  height: auto;
  padding: 5px;
  margin: 6em auto 14em;
  background: #F5EBC4;
  color: #000;
  word-break: break-all;
  opacity: 0;
  transform: rotate(2deg) scale(0.95);
  box-shadow: 0 0 0 transparent;
  transition: all 1.2s ease;
}

.sample_box11.show {
  opacity: 1;
  transform: rotate(2deg) scale(1);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.sample_box11_tape {
  width: 30%;
  height: 8vh;
  margin: -25px auto 0;
  background: #77adce34;
  transform: rotate(-2deg) scale(0.95);
  opacity: 0;
  transition: all 0.4s ease;
}

.sample_box11.show .sample_box11_tape {
  transform: rotate(-2deg) scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}

.access_flexBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 5%;
}

.sample_box11_title {
  font-size: 1.3em;
  color: #9B7E54;
  margin: 0;
  white-space: nowrap;
}

.left-icon,
.right-icon {
  width: 28px;
  height: 28px;
}

.map {
  text-align: center;
  margin-top: 1em;
}

.map iframe {
  width: 100%;
  max-width: 450px;
  height: 250px;
  border: 0;
}

.bubbles_left {
  position: absolute;
  top: 1vh;
  right: 27vw;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
}

.bubbles_right {
  position: absolute;
  top: 85vh;
  left: 48vw;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
}

.bubbles_left,
.bubbles_right {
  animation: bubbleUp 12s linear infinite;
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.bubbles_left {
  left: 10%;
  animation-delay: 0s;
}

.bubbles_right {
  right: 10%;
  animation-delay: 6s;
}

.access-textBox {
  display: flex;
  text-align: center;
  margin: 1.5em 0;
}

.access-textBox-inner {
  text-align: left;
  margin: 0 auto;
  color: #9B7E54;
  line-height: 2em;
}

.access-textBox p {
  color: #9B7E54;
  line-height: 2em;
}

@media screen and (max-width: 1024px) {
  .sample_box11 {
    width: 90%;
    max-width: 450px;
    margin: 4em auto 10em;
  }

  .sample_box11_tape {
    width: 30%;
    height: 45px;
    margin: -25px auto 0;
  }

  .sample_box11_title {
    font-size: 1.2em;
  }

  .map iframe {
    width: 95%;
    height: 200px;
  }

  .bubbles_left,
  .bubbles_right {
    width: 40%;
  }

  .bubbles_left {
    right: 300px;
  }

  .bubbles_right {
    top: 500px;
    left: 500px;
  }
}

@media screen and (max-width: 768px) {
  .sample_box11 {
    width: 90%;
    max-width: 400px;
    transform: rotate(0deg);
    margin: 3em auto 6em;
  }

  .sample_box11_tape {
    width: 30%;
    height: 40px;
    transform: rotate(0deg);
  }

  .sample_box11_title {
    font-size: 1.1em;
  }

  .map iframe {
    width: 95%;
    height: 180px;
  }

  .bubbles_left,
  .bubbles_right {
    width: 35%;
  }

  .bubbles_left {
    right: 35vw;
  }

  .bubbles_right {
    top: 450px;
    left: 420px;
  }

  .access-textBox p {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {

  .sample_box11_tape {
    height: 35px;
  }

  .sample_box11_title {
    font-size: 0.9em;
  }

  .map iframe {
    width: 95%;
    height: 180px;
  }

  .bubbles_left,
  .bubbles_right {
    width: 20%;
  }

  .bubbles_left {
    top: -20px;
    right: 250px;
  }

  .bubbles_right {
    top: 480px;
    left: 300px;
  }

  .left-icon,
  .right-icon {
    width: 20px;
    height: 20px;
  }

  .access-textBox p {
    font-size: 14px;
  }
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: translateY(-50vh) translateX(10px) scale(1.1) rotate(15deg);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(-10px) scale(0.9) rotate(-15deg);
    opacity: 0;
  }
}