/* 調整用スタイル */

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}


section {
  text-align: center;
}

main {
  background: transparent;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
}

.main {
  padding-top: 70px;
  text-align: center;
}

.main__content {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

/* メインロゴ */
.main__title-image {
  max-width: 60%; 
  height: auto; 
  display: block;
  margin: 0 auto;
}

/* コンテンツラッパー */
.content-wrapper {
  position: relative;
  margin-top: 30px;
  min-height: 500px;
}

/* 業務準備ボタン */
.toggle-button {
  font-family: 'sippori';
  cursor: pointer;
  font-size: 1.8em;
  padding: 15px 40px;
  background-color: transparent;
  color: #bababa;
  border: none;
  border-radius: 5px;
  transition: opacity 0.5s ease, transform 0.5s ease;

  opacity: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.toggle-button:hover {
  transform: translateX(-50%) translateY(-2px);
}

.toggle-button.hide {
  opacity: 0;
  transform: translateX(-50%) scale(0.9);
  pointer-events: none;
}

/* ログインエリア */
.login-area {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 100%;
  max-width: 800px;
}

.login-area.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

/* LOGINタイトル */
.login-title {
  font-family: 'sippori';
  font-size: 2em;
  color: #bababa;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}

/* ログインフォーム */
.login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.login-form__field {
  margin-bottom: 0;
  width: 100%;
  max-width: 300px;
}
#bababa
.login-form__field label {
  font-size: 16px;
  color: #bababa;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.login-form__field input {
  font-family: 'sippori';
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
      background-color: transparent;
    color: #bababa;
}

.login-form__submit {
  font-family: 'sippori';
  padding: 5px 20px;
  font-size: 16px;
  background: transparent;
  color: #bababa;
  border: 1px solid #bababa;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
}

.login-form__submit:hover {
  background: #bababa;
  color: #1B1F2A;
}

/* OR区切り */
.divider {
  font-family: 'sippori';
  color: #bababa;
  font-size: 1.2em;
  margin: 30px 0;
}

/* ナビゲーションリンク */
.nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: 'sippori';
  text-decoration: underline;
  color: #bababa;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #7DF9FF;
}

/* 閉じるリンク */
.close-link {
  font-family: 'sippori';
  text-decoration: underline;
  color: #bababa;
  font-size: 18px;
  margin-top: 30px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-link:hover {
  color: #7DF9FF;
}

/* メッセージ */
.error-message {
  color: #ff6b6b;
  margin-bottom: 15px;
  font-size: 14px;
}

.welcome-message {
  color: #7DF9FF;
  margin-bottom: 15px;
  font-size: 16px;
}

.welcome-message a {
  color: #7DF9FF;
  text-decoration: underline;
}

/* 旧スタイル(使用していない場合は削除可能) */
.sinkimoji {
  color: #bababa;
  margin-top: 20px;
}