.lfr-layout-structure-item-row {overflow: hidden;}.lfr-layout-structure-item-a3ec48a1-d4d5-4e8c-28f5-0ea43b8817c3 {
text-align: center !important;
}
.lfr-layout-structure-item-a63284da-bd46-482b-74de-caf2331469ba {
display: none !important;
}
.lfr-layout-structure-item-7bf4e590-1ee7-7777-8837-99a79663ec0d {
text-align: center !important;
}
.lfr-layout-structure-item-1544a48f-43d3-b6ef-5540-121474b13b46 {
overflow: visible !important;
}
.lfr-layout-structure-item-9583ca83-fe58-9e30-bbbd-5703ef7bd0ae {
text-align: center !important;
}
.lfr-layout-structure-item-02a4c717-39e0-2ad0-d177-d5b81118927e {
text-align: center !important;
}
.lfr-layout-structure-item-036c1f63-9539-5ede-60b5-3499d811128f {
text-align: center !important;
}
.lfr-layout-structure-item-0a9a7e50-12a0-4403-bbd7-9de2b9a397a3 {

.floating-image-with-hover-text {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  text-align: center;

display: flex;
  flex-direction: column-reverse; /* テキストを上に表示 */
  align-items: center;

}

.floating-image-with-hover-text img {
  width: 150px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-image-with-hover-text img:hover {
  transform: scale(1.1);
}

.hover-text {
  margin-top: 8px;
  background-color: #008c4b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.floating-image-with-hover-text:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hover-text a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hover-text a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .floating-image-with-toggle-text {
    bottom: 5px;
    right: 5px;
  }

  .floating-image-with-toggle-text img {
    width: 15px;
  }

  .hover-text {
    font-size: 0.8em;
    padding: 10px 12px;
  }

}