* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #ebebee;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.container {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(240, 192, 216, 0.25);
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #c47a9f;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.message {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 30px;
}

.loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid #f5e8ef;
  border-top: 4px solid #e8b4cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.apply-link {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background-color: #c47a9f;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 122, 159, 0.3);
}
.apply-link:hover {
  background-color: #b0688a;
  box-shadow: 0 6px 20px rgba(196, 122, 159, 0.4);
  transform: translateY(-2px);
}

.contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #999;
}

.company-link {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #999;
}
.company-link a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.company-link a:hover {
  color: #c47a9f;
}
.company-link .material-icons {
  font-size: 0.9rem;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 30px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
