/* -------------------- */
/* 霑ｽ蜉��壹�繝�ム繝ｼ蜀�､懃ｴ｢逕ｨ繧ｹ繧ｿ繧､繝ｫ */
/* -------------------- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

.search-dial {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  width: 90%;
  max-width: 400px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.search-dial.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 繧ｷ繝ｳ繝励Ν繝ｭ繧ｰ繧､繝ｳ繝輔か繝ｼ繝�縺ｮ蜈ｨ菴捺棧 */
.simple-login-form {
  max-width: 300px;
  margin: 50px auto;
  padding: 20px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}

.simple-login-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.simple-login-input {
  width: 80%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.simple-login-submit {
  padding: 8px 16px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.simple-login-submit:hover {
  background: #e05500;
}

.simple-login-error {
  color: red;
  margin-bottom: 10px;
}

/* 繝ｭ繧ｰ繧､繝ｳ逕ｻ髱｢逕ｨ */
.simple-login-form {
  max-width: 300px;
  margin: 50px auto;
  padding: 20px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}

.simple-login-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.simple-login-input {
  width: 80%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.simple-login-submit {
  padding: 8px 16px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.simple-login-submit:hover {
  background: #e05500;
}

.simple-login-error {
  color: red;
  margin-bottom: 10px;
}

/* 繧ｵ繝ｳ繝励Ν逕ｻ髱｢逕ｻ蜒冗畑 */
.login-sample-container {
  text-align: center;
  margin-top: 20px;
}

.login-sample-container h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.login-sample-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 繧､繝ｳ繝ｩ繧､繝ｳ驟咲ｽｮ縺ｮ繧ｷ繝ｳ繝励Ν繝ｭ繧ｰ繧､繝ｳ繝輔か繝ｼ繝��域棧邱壻ｻ倥″�� */
.simple-login-form-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin: 20px auto;
  padding: 15px;
  border: 1px solid var(--line-gold-hi);
  border-radius: 8px;
  background: var(--bg-card);
}

.simple-login-form-inline label {
  font-weight: bold;
  margin: 0;
  color: var(--text-main);
}

.simple-login-input-inline {
  width: 150px;
  padding: 8px;
  border: 1px solid var(--line-gold-hi);
  border-radius: 4px;
  background: var(--bg-card-hi);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.simple-login-input-inline:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(245, 184, 0, 0.2);
}

.simple-login-submit-inline {
  padding: 8px 18px;
  background: var(--accent-color);
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.simple-login-submit-inline:hover {
  background: var(--accent-hover);
}

.simple-login-submit-inline:active {
  transform: translateY(1px);
}

/* 繧ｨ繝ｩ繝ｼ繝｡繝�そ繝ｼ繧ｸ */
.simple-login-error {
  color: red;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

/* 繧ｹ繝槭�迚郁ｪｿ謨ｴ�夂判髱｢蟷�480px莉･荳九�蝣ｴ蜷� */
@media screen and (max-width: 480px) {
  .simple-login-input-inline {
    width: 120px;
  }
}

