/* WordPress固有の表示調整。サイト本体のデザインはsite.cssに保持します。 */
.admin-bar .site-header {
  top: 32px;
}

.template-default-content {
  width: min(calc(100% - 48px), 1120px);
  min-height: 60vh;
  margin-inline: auto;
  padding-block: 80px;
}

.template-default-content > article {
  padding: 32px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(88, 64, 40, 0.08);
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .global-nav {
    top: 122px;
    max-height: calc(100vh - 122px);
  }
}

