@charset "UTF-8";

/* Sample Site Header */
.sample-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: rgba(43, 161, 169, 0.95);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 9999;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
  border-bottom: 1px solid rgba(43, 161, 169, 0.25);
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* Add padding to body when header is fixed */
body.has-sample-header {
  padding-top: 45px;
}

.sample-site-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sample-site-header__demo-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.75rem;
}

.sample-site-header__text {
  opacity: 0.8;
}

.sample-site-header__right {
  display: flex;
  align-items: center;
}

.sample-site-header__back-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.sample-site-header__back-link:hover {
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.2);
}

.sample-site-header__arrow {
  font-size: 1.1em;
}

/* Sample Site Footer */
.sample-site-footer {
  position: relative;
  /* bottom: 0; */
  /* left: 0; */
  width: 100%;
  height: 50px;
  background-color: rgba(43, 161, 169, 0.95);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 9999;
  /* box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3); */
  border-top: 1px solid rgba(43, 161, 169, 0.25);
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}


.sample-site-footer__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sample-site-footer__demo-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.75rem;
}

.sample-site-footer__text {
  opacity: 0.8;
}

.sample-site-footer__right {
  display: flex;
  align-items: center;
}

.sample-site-footer__link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.sample-site-footer__link:hover {
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 600px) {

  .sample-site-header__text,
  .sample-site-footer__text {
    display: none;
  }
}