* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.top-page {
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  padding: 0 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: #56C79A;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  cursor: grab;
  opacity: 1;
  transition: opacity 1000ms ease-in-out;
}

.top-page:active {
  cursor: grabbing;
}

.top-page.fade-out {
  opacity: 0;
}

.header-icon-line {
  position: absolute;
  top: 71px;
  left: 24px;
  display: flex;
  width: 43px;
  height: 29.128px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.header-icon-line span {
  display: block;
  width: 43px;
  height: 3px;
  background: #FFFFFF;
}

.logo-area {
  display: flex;
  width: 100%;
  max-width: 355px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.logo-area img {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}