@charset "utf-8";

/* style-login.css
 * ログインページ専用スタイル
 */

#subpage.login {
  background-color: #f9f9f9;
}

/* ヘッダー */
#l-header {
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
}
#l-header .logo img {
  max-width: 300px;
  height: auto;
}

/* メインエリア */
#main_login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 50px 20px;
}
#subpage.login .error {
  margin-bottom: 0.5em;
  color: #ff0000;
}

/* ログインボックス */
.login_box {
  margin: 0 auto;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.login_txt {
  margin-bottom: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* フォーム */
.form_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
}
.form_box .nyuryoku {
  padding: 10px 15px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 50px;
  outline: none;
}

/* ログインボタン (CSS実装) */
#loginbotan {
  display: inline-block;
  padding: 10px 40px;
  background-color: #00a0e9;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
}
#loginbotan:hover {
  background-color: #008cd1;
  opacity: 0.9;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .login_box {
    padding: 30px 20px;
  }
  .form_box {
    flex-direction: column;
  }
  .form_box .nyuryoku {
    width: 100%;
  }
  #loginbotan {
    width: 100%;
  }
}

/* 保険者番号の確認方法ガイド用 */
.login-info__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.login-info__title {
  font-size: 2.4rem;
  color: #1e83aa;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.login-info__nav {
  margin-bottom: 0 !important;
}

.login-info__content-box {
  background: #fff;
  border: 1px solid #5ca5c3;
  border-top: none;
  padding: 40px;
  border-radius: 0 0 25px 25px;
}

.panel-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.panel-info {
  flex: 1;
}

.panel-preview {
  flex: 1;
  text-align: center;
}

.panel-preview img {
  max-width: 100%;
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.panel-title {
  font-size: 2.0rem;
  color: #1e83aa;
  margin-bottom: 20px;
  font-weight: bold;
}

.panel-desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-list {
  list-style: none;
  padding: 0;
}

.step-list__item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  border: 2px solid transparent;
}

.step-list__item.active {
  background: #eef7fa;
  border-color: #5ca5c3;
}

.step-list__num {
  font-size: 1.8rem;
  font-weight: bold;
  color: #5ca5c3;
}

.step-list__text {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-list__sub {
  font-size: 1.4rem;
  color: #666;
}

.preview-note {
  font-size: 1.2rem;
  color: #999;
  margin-top: 10px;
  text-align: center;
}

.notice-card {
  margin-top: 40px;
  background: #fff9e6;
  border: 1px solid #ffcc00;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.notice-card__content {
  font-size: 1.0rem;
  font-weight: bold;
}

.btn-simple {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.btn-simple:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .login-info__container {
    padding: 20px 15px;
  }
  .panel-grid {
    flex-direction: column;
    gap: 20px;
  }
  .notice-card {
    flex-direction: column;
    text-align: center;
  }
  .login-info__content-box {
    padding: 20px;
  }
}
