/* watashiから、こころとライフログへ移るための小さな固定導線。 */
.shell {
  padding-right: 18px;
}

/* 旧・縦型メニューは機能を残したまま画面から外す。 */
.side-actions {
  display: none !important;
}

.watashi-quick-links {
  position: fixed;
  right: max(10px, calc((100vw - 480px) / 2 + 10px));
  bottom: calc(76px + env(safe-area-inset-bottom));
  left: auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  width: auto;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.watashi-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(130, 89, 107, .18);
  border-radius: 13px;
  color: #735565;
  background: rgba(255, 253, 254, .95);
  box-shadow: 0 5px 16px rgba(77, 49, 64, .10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.watashi-quick-link:hover,
.watashi-quick-link:focus-visible {
  border-color: rgba(169, 79, 115, .4);
  background: #fff7fa;
}

.watashi-quick-link:active {
  transform: scale(.97);
}

.calendar-share-note {
  margin: -4px 0 12px;
  color: #9b8a93;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 760px) {
  .watashi-quick-links {
    bottom: calc(104px + env(safe-area-inset-bottom));
  }
}

@media (max-height: 560px) {
  .watashi-quick-links {
    gap: 5px;
  }

  .watashi-quick-link {
    min-height: 38px;
    padding-block: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .watashi-quick-link {
    transition: none;
  }
}
