@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:700,500,900|Oswald:700,500|Zen+Old+Mincho:400,500,700|Cinzel:400,500,600,700|EB+Garamond:400,500,600,700|Niconne:400");
.floating-button {
  position: fixed;
  bottom: min(40px, 5vh);
  right: min(40px, 5vw);
  z-index: 100;
}
.floating-button.page-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.floating-button.page-top button {
  width: 160px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 24px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}
.floating-button.page-top button .arrow {
  color: #00479D;
  font-size: 16px;
  line-height: 1;
}
.floating-button.page-top button .text {
  color: #00479D;
  font-size: 16px;
  font-family: "Noto Sans JP";
  line-height: 1;
}
.floating-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(272px, 34vw);
  height: min(85px, 10.6vh);
  background-color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .floating-button a {
    width: 176px;
    height: 62px;
  }
}
.floating-button a:hover {
  background-color: #E1EBF9;
  color: #ffffff;
}
.floating-button a .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(8px, 1vh);
}
.floating-button a .text-container p:first-child {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  color: #333333;
}
@media (max-width: 768px) {
  .floating-button a .text-container p:first-child {
    font-size: 16px;
    line-height: 24px;
  }
}
.floating-button a .text-container p:last-child {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .floating-button a .text-container p:last-child {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 1024px) {
  .floating-button {
    bottom: min(24px, 3vh);
    right: min(24px, 3vw);
  }
}/*# sourceMappingURL=floating-button.css.map */