@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
/* ご案内ページ専用のstyle sheet*/
/* Main */
.contetns .contents-body {
  outline: 1px solid red;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.button-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn_apply {
  margin-bottom: 5px;
  padding: 30px 30px;
  font-size: 2rem;
  background-color: #1b1e7f;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 300px;
  transition: all 0.2s ease-in-out;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1) opacity(1);
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
}

.btn_apply:hover {
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1.2) opacity(0.9);
  transform: translate(1px, 1px);
  transition: all 0.2s ease-in-out;
}

.button-wrapper {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 1.125rem;
  color: #555;
}

.account-settings {
  width: 80%;
  /* 横幅80% */
  max-width: 850px;
  /* 最大幅 */
  margin: 0 auto;
  padding: 30px;
  /* 内側の余白 */
  background-color: white;
  /* 背景色 */
  border: 1px solid #ccc;
  /* 枠線 */
  border-radius: 0 0 8px 8px;
  /* 角を丸く */
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1) opacity(1);
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
}

.account-settings-title-bg {
  width: 80%;
  /* 横幅80% */
  max-width: 850px;
  /* 最大幅 */
  margin: 0 auto;
  padding: 10px 0 10px 20px;
  /* 内側の余白 */
  color: white;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1) opacity(1);
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
  background-color: #1b1e7f;
  /* 好きな背景色を指定 */
  border-radius: 8px 8px 0 0;
  /* 角を少し丸くする（任意） */
}

/* .account-settings p {
    font-size: 1.1em;
    margin-bottom: 20px;
  } */
.custom-password-group-discription p {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.custom-form-label {
  font-weight: bold;
}

.custom-mail-group,
.custom-password-group {
  display: flex;
  /* 横並びにする */
  align-items: center;
  /* 縦位置を揃える */
  gap: 10px;
  /* 入力とボタンの間にスペースを追加 */
  width: 100%;
}

.custom-input-group {
  width: 100%;
  position: relative;
}

.custom-form-input {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin: 5px 0;
  color: #6c757d;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.custom-form-button {
  width: 200px;
  height: auto;
  padding: 10px;
  background-color: #1b1e7f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1) opacity(1);
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
}

.custom-form-button:hover {
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1.2) opacity(0.9);
  transform: translate(1px, 1px);
  transition: all 0.2s ease-in-out;
}

.custom-button-group {
  margin-top: 10px;
}

@media (max-width: 375px) {
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
  }
}
@media (max-width: 375px) {
  .button-wrapper {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    font-size: 1.125rem;
    color: #555;
  }
}
@media (max-width: 375px) {
  .btn_apply {
    margin-bottom: 5px;
    padding: 30px 30px;
    font-size: 1.125rem;
    background-color: #1b1e7f;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 200px;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
    filter: brightness(1) opacity(1);
    transform: translate(0, 0);
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 375px) {
  .button-description {
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
}
@media (max-width: 375px) {
  .account-settings {
    width: 80%;
    /* 横幅80% */
    max-width: 850px;
    /* 最大幅 */
    margin: 0 auto;
    padding: 20px;
    /* 内側の余白 */
    background-color: white;
    /* 背景色 */
    border: 1px solid #ccc;
    /* 枠線 */
    border-radius: 0 0 8px 8px;
    /* 角を丸く */
    font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
    filter: brightness(1) opacity(1);
    transform: translate(0, 0);
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 375px) {
  .account-settings-title-bg {
    font-size: 0.8rem;
    text-align: center;
    padding: 16px;
  }
}
@media (max-width: 375px) {
  .account-settings-description {
    font-size: 0.8rem;
    padding-bottom: 20px;
  }
}
@media (max-width: 375px) {
  .custom-mail-group,
  .custom-password-group {
    display: block;
  }
}
@media (max-width: 375px) {
  .custom-password-group-discription {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
}
#contents .contents-body {
  /* margin: 40px auto 0; */
  margin: 0 auto;
  padding: 0 0 80px;
  max-width: 1023px;
}

/* 初期状態: 左上に配置 */
#message-container.top-left {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f8f9fa;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* 中央表示用スタイル */
#message-container.center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #28a745;
  color: #fff;
  padding: 20px;
  border: 1px solid #1c7430;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 1.2em;
}

/* -------------------------------------------*/
/* ゲスト用リンクボタン */
/* -------------------------------------------*/
@media (max-width: 576px) {
  .container {
    padding-bottom: 5rem;
  }
}
.btn-guest {
  color: #fff;
  background-color: #1B1E7F;
  border-color: #1B1E7F;
}

.btn-guest:hover {
  color: #fff;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
  filter: brightness(1.2) opacity(0.9);
  transform: translate(1px, 1px);
  transition: all 0.2s ease-in-out;
}

.btn-guest:focus {
  color: #fff;
  background-color: #1B1E7F;
  border-color: #1B1E7F;
  box-shadow: 0 0 0 0.25rem rgba(27, 30, 127, 0.5);
}

.btn-guest:active,
.btn-guest.active,
.show > .btn-guest.dropdown-toggle {
  color: #fff;
  background-color: #16196A;
  border-color: #14175F;
}

.btn-guest:active:focus,
.btn-guest.active:focus,
.show > .btn-guest.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(27, 30, 127, 0.5);
}

.btn-guest:disabled,
.btn-guest.disabled {
  color: #fff;
  background-color: 1B1E7F;
  border-color: 1B1E7F;
}

/* 5/23ここからcontents-body:top40px追加調整 */
#confirmationModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  /* 縦方向の中央配置 */
  justify-content: center;
  /* 横方向の中央配置 */
}

.confirmmodal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 700px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.confirmmodal-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-header {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #dee2e6;
}

#confirmButton {
  cursor: pointer;
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

Z #cancelButton {
  cursor: pointer;
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

#complete-wrapper {
  display: none;
  justify-content: center;
  /* ✅ 水平方向中央 */
  align-items: center;
  /* ✅ 垂直方向中央 */
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* ✅ 位置補正 */
  background-color: #f9f9f9;
}

#complete-message {
  background-color: white;
  padding: 20px;
  text-align: center;
}

#backButton {
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #6c757d;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 50px;
}

#backButton:hover {
  opacity: 0.8;
}

/* '/contact/{id}'途中フォーム画面(ユーザー入力) */
/* チャットコンテナ（全体のレイアウト管理） */
#main-content {
  margin-bottom: 80px;
}

#chat-container {
  width: 100%;
  max-width: 800px;
  height: calc(100vh - 80px);
  /* 入力エリアの高さを考慮 */
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/* チャットメッセージのリスト */
#chat-messages {
  flex-grow: 1;
  /* 残りのスペースを全て使う */
  display: flex;
  padding-bottom: 10vh;
  flex-direction: column;
  /* メッセージを縦方向に並べる */
}

/* 共通のメッセージスタイル */
.message {
  padding: 20px;
  margin: 8px;
  border-radius: 20px;
  max-width: 75%;
  display: block;
  text-align: left;
  /* テキストを左寄せ */
}

/* 管理者のメッセージ（左側に配置） */
.admin-message {
  background-color: #EAEAEA;
  align-self: flex-start;
}

/* ユーザーのメッセージ（右側に配置） */
.user-message {
  align-self: flex-end;
}

#admin-user {
  flex-direction: column;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  cursor: default;
  margin-right: -10px;
  margin-left: 0;
  background-color: #A3FFA3;
}

#contact-container {
  height: 20%;
}

/* 入力エリア（独立した配置） */
#input-area {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  margin: 10px;
  padding: 12px;
  background: white;
  border-top: 1px solid #ddd;
  height: 80px;
  box-sizing: border-box;
  width: 100%;
  /* 画面幅に追従 */
  max-width: 800px;
  /* 最大幅を800pxに制限 */
  left: 50%;
  transform: translateX(-50%);
}

/* テキストエリア */
#messageInput {
  width: 100%;
  /* 親要素の幅に追従 */
  box-sizing: border-box;
  height: 40px;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
  /* 手動リサイズ無効化 */
  min-height: 40px;
  max-height: 200px;
  overflow-y: auto;
}

/* 送信ボタン */
#sendButton {
  height: 40px;
  padding: 8px 12px;
  font-size: 16px;
  border: none;
  background: #ccc;
  color: white;
  border-radius: 5px;
  cursor: not-allowed;
  margin-left: 10px;
  flex-shrink: 0;
  /* ボタンが縮小しないように設定 */
}

/* 送信ボタン（アクティブ状態） */
#sendButton.active {
  background: #198754;
  cursor: pointer;
}

/* メディアクエリ：767px以下の画面幅での調整 */
@media (max-width: 767px) {
  #input-area {
    margin: 0;
    /* 外側の余白をなくす */
    padding: 10px;
    /* 内側の余白をコンパクトに */
    width: 100%;
    /* 画面幅いっぱいに広げる */
    left: 0;
    /* 中央揃えを解除 */
    transform: none;
    /* 中央揃え不要 */
    border-radius: 0;
    /* 丸みを削除してフラットデザインに */
  }
  #sendButton {
    margin-left: 5px;
    /* ボタンとの間隔を狭める */
  }
}
/* モーダルの初期状態（非表示） */
/* モーダルの初期状態（非表示） */
#inputModal {
  transform: translate(-50%, 100%);
  /* 画面外の下に配置 */
  opacity: 0;
  /* 完全に透明な状態 */
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  /* なめらかな動きを設定 */
  position: fixed;
  /* モーダルを画面内に固定する */
  top: 50%;
  left: 50%;
  background-color: #fff;
  /* 背景を白に設定 */
  padding: 20px;
  /* 内側の余白を設定 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 影を追加して立体感を演出 */
  border-radius: 8px;
  /* モーダルの角を丸くする */
  z-index: 1000;
  /* 他の要素より前面に配置 */
}

/* モーダルがアクティブ状態（表示される） */
#inputModal.show {
  transform: translate(-50%, -50%);
  /* 画面中央に移動 */
  opacity: 1;
  /* 不透明にする */
}

/* 問い合わせボタンの通常時（デフォルトで非表示） */
.contact-btn {
  display: none;
  /* 初期状態で非表示 */
}

/* レスポンシブデザイン */
@media (max-width: 767px) {
  #input-area {
    display: none;
    /* 非表示にする */
  }
  #chat-messages {
    padding-bottom: 25vh;
  }
}
/* 問い合わせボタン */
.contact-btn {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 問い合わせボタン */
.contact-btn:hover {
  background-color: #0056b3;
}

#box {
  height: 100px;
  width: 200px;
  position: relative;
  border: 1px solid #000;
}

#panel {
  position: absolute;
  bottom: 0px;
  width: 200px;
  height: 20px;
  border: 1px solid red;
  display: none;
}

/* styleを上書き / scrollbarの表示領域を調整 */
#contents .contents-body {
  max-width: none;
  padding: 0;
}

/* styleを上書き / top:40pxを相殺して調整※他影響あれば消す */
#contents .contents-body {
  top: 0px;
  height: 100vh !important;
}

.status-container {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
.status-container .form-select {
  max-width: 100px;
  padding: 0;
  border: none;
  background-image: none;
}
.status-container .form-select .status-select {
  height: auto;
  font-size: 13px !important;
  font-weight: normal;
}

.status-select {
  max-width: 100px;
  font-size: 1rem !important;
}

.signin-container {
  justify-content: center;
  width: 100%;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.signin-text {
  font-size: 1.5rem;
  background-color: white;
  padding: 20px;
  text-align: center;
}

/* スマホ向けの調整 */
@media (max-width: 768px) {
  .signin-container {
    width: 90%;
    padding: 15px;
  }
}
.cf-containerBox {
  position: relative;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cf-container {
  position: relative;
  z-index: 1;
  margin: 0 auto 20px;
}

.cf-loading {
  position: absolute;
  z-index: 0;
  background: #FFFFE0;
  color: #000;
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 280px;
  white-space: nowrap;
  text-align: center;
  min-height: 40px;
  line-height: 1.4;
}

/*  *//*# sourceMappingURL=style_add_clients_login.css.map */