@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-size: .705vw;
  height: 100%;
}

body {
  color: #505d6f;
  background-color: #f8fafd;
  font-family: 'Hiragino Kaku Gothic ProN',
    'ヒラギノ角ゴ ProN W3',
    'Helvetica Neue',
    Arial,
    'Hiragino Sans',
    'Meiryo',
    sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #333;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

.el_paragraph {
  display: none;
}

.el_btn_mark {
  margin-right: 10px;
}

.contents {
  display: flex;
}

/* 文字色 */
.el_gy {
  color: #525252;
}

.el_pgy {
  color: #707a85;
}

/* 背景色 */
.el_bg_gr {
  background-color: #0ac48f;
}

.el_bg_yl {
  background-color: #ffc700;
}

.el_bg_gy {
  background-color: #808892;
}

.el_bg_bl {
  background-color: #1660c6;
}

.el_bg_nv {
  background-color: #00358c;
}

.el_bg_yl_dk {
  background-color: #ac8600;
}

/* 下マージン */
.el_mgb_15 {
  margin-bottom: 15px;
}

.el_mgb_20 {
  margin-bottom: 20px;
}

.el_mgb_40 {
  margin-bottom: 40px;
}

/* 左寄せ・右寄せ・中央寄せ */
.el_ta_l {
  text-align: left;
}

.el_ta_r {
  text-align: right;
}

.el_ta_c {
  text-align: center;
}

/* 文字の高さ */
.el_lh_1 {
  line-height: 1;
}

/* 文字の3点リーダー */
.el_one_line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.el_two_lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.el_three_lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ボタン */
.el_actionBtn {
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  padding: 10px 17px;
  font-size: 12px;
  cursor: pointer;
  transition: all .25s ease;
}

/* ボタンの幅 */
.el_actionBtn_mw100 {
  min-width: 100px;
}

.el_actionBtn_mw150 {
  min-width: 150px;
}

/* ボタンの背景色とホバー時背景色 */
.el_actionBtn_rd {
  background-color: #f7486b;
}

.el_actionBtn_rd:hover {
  background-color: #e83257;
}

.el_actionBtn_bl {
  background-color: #2c54ca;
}

.el_actionBtn_bl:hover {
  background-color: #263c7b;
}

.el_actionBtn_bk {
  background-color: #636a80;
}

.el_actionBtn_bk:hover {
  background-color: #575e74;
}

.el_actionBtn_gy {
  background-color: #eef2f7;
}

.el_actionBtn_gy:hover {
  background-color: #f6f7fb;
}

/* 汎用的な小ボタン用 */
.el_generalBtn {
  display: block;
  cursor: pointer;
  min-width: 90px;
  padding: 3px 10px;
  text-align: center;
  border: 1px solid #899dbd;
  border-bottom-width: 2px;
  font-size: 13px;
  background: #f3f9ff;
  box-shadow: 0px 0px 15px 0px rgb(154 161 171 / 10%);
  transition: all ease .2s;
}

.el_generalBtn_mw100 {
  min-width: 100px;
}

.el_generalBtn:hover {
  background: #d1e3fb;
  border-bottom-width: 1px;
}

/* 正方形ボタン */
.el_squareBtn {
  background: #fff;
  padding: 7px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all .25s ease;
  font-size: 13px;
  box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
  color: #505d6f;
  border: 1px solid #b8c0cb;
}

.el_squareBtn:hover {
  background: #e9eef5;
}

/* 汎用コンテナパーツ */
.el_container {
  position: relative;
  background: #fbfeff;
  padding: 15px 20px 25px;
  margin-bottom: 20px;
  border: 1px solid #dae1ed;
  box-shadow: 0px 0px 15px 0px rgb(143 158 180 / 20%);
}

/* 共通情報 */
.el_info {
  margin-bottom: 40px;
}

.el_info_txtWrap {
  margin-bottom: 25px;
}

.el_info_txt {
  display: block;
  margin-bottom: 10px;
  color: #57626e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.el_info_link {
  font-size: 13px;
  text-decoration: underline;
  color: #57626e;
}

.el_info_link:hover {
  opacity: .8;
}

/* ポップアップ */
.el_popupWrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, .8);
  padding: 50px 20px;
}

.el_popupWrap.active {
  display: block;
}

.el_popup {
  position: relative;
  width: 800px;
  height: 100%;
  margin: 0 auto;
  padding: 35px 20px 20px;
  background: #fff;
  overflow-y: scroll;
}

.el_popupClose {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  color: #505d6f;
  transition: all ease .2s;
}

.el_popupClose:hover {
  opacity: .8;
}

/* ローディング */
.el_loading {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgb(255 255 255 / 50%);
  z-index: 9999;
  display: none;
}

.el_msg {
  font-size: 13px;
  font-weight: bold;
  color: #ff0000;
}

/* ヘッダー */
.bl_header_inner {
  padding: 15px;
  min-height: 70px;
  background-color: #fff;
  display: flex;
  justify-content: end;
  align-items: center;
  position: sticky;
  top: 0;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  z-index: 1000;
  box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

.bl_header_txt {
  font-size: 13px;
  margin-right: 20px;
  color: #656f7c;
}

.bl_header_logoutBtn {
  background: #525c6b;
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  padding: 7px 17px;
  font-size: 12px;
  cursor: pointer;
  transition: all .25s ease;
}

.bl_header_logoutBtn:hover {
  background: #3f4753;
}

/* メインコンテンツ大枠 */
.bl_main {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f8fafd;
  min-height: 100%;
  width: calc(100% - 230px);
}

.bl_main_inner {
  padding: 20px;
}

.bl_main_headWrap {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.bl_main_head {
  font-size: 16px;
  color: #333;
}

.bl_main_head_link {
  color: #8f98a0;
}

.bl_main_contents {
  background: #fff;
  box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
  padding: 35px 25px;
}

.bl_main_contents_inner {
  max-width: 1300px;
  margin: 0 auto;
}

.bl_main_btnWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ログイン */
.bl_login_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
}

.bl_login_head {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #57616d;
}

.bl_login_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  text-align: center;
}

.bl_login_input_ttl {
  font-size: 14px;
  font-weight: bold;
  color: #57616d;
  margin-bottom: 10px;
  display: block;
  text-align: left;
}

.bl_login_error {
  font-size: 12px;
  color: #57616d;
  margin-top: 20px;
}

.bl_login_btn {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  width: 150px;
  padding: 8px 30px;
  border-radius: 3px;
  background: #f1416c;
  margin: 0 auto;
  text-align: center;
}

/* 登録・編集 */
.bl_add_inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}

.bl_add_left {
  width: 50%;
  margin-right: 25px;
}

.bl_add_right {
  width: 50%;
}

.bl_add_head {
  font-size: 14.5px;
  font-weight: bold;
  max-width: 1300px;
  margin: 0 auto 10px;
}

.bl_add_menu {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  background: #fff;
  border: 1px solid #d4dae5;
  box-shadow: 0px 0px 20px 0px rgb(154 161 171 / 10%);
  max-width: 1300px;
  margin: 0 auto 40px;
}

.bl_add_menu_item {
  display: block;
  margin-right: 15px;
}

/* 並び順 */
.bl_add_order {
  border: 1px solid #bec9d5;
  height: 580px;
  overflow-y: scroll;
  padding: 20px;
}

.bl_add_order_item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl_add_order_item_block {
  font-size: 13px;
  color: #fff;
  width: 400px;
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 15px 10px;
  font-weight: bold;
  margin-right: 20px;
  cursor: pointer;
  transition: all ease .25s;
}

.bl_add_order_item_block:hover,
.bl_add_order_item_btn:hover {
  opacity: .8;
}

.bl_add_order_item_btn {
  font-size: 15px;
  color: #fff;
  padding: 0px 15px;
  background: #00358c;
  cursor: pointer;
  transition: all ease .25s;
}

.bl_add_order_head {
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}

.bl_add_order_item_block_s {
  display: none;
  border: 1px solid #02368c;
  color: #57616d;
}

.bl_add_order_item_block_s.active {
  display: block;
}

.bl_add_order_item_block_txt {
  text-align: left;
  display: inline-block;
}

/* 検索用キーワード */
.bl_add_keyword {
  max-width: 700px;
  margin: 0 auto;
}

.bl_add_keyword_inner {
  border: 1px solid #dee3e9;
  box-shadow: 0px 0px 20px 0px rgb(154 161 171 / 10%);
  height: 540px;
  overflow-y: scroll;
  padding: 20px 40px;
  margin-bottom: 15px;
}

.bl_add_keyword_itemWrap {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 10px;
  background: #eaf1fb;
}

.bl_add_keyword_item_input {
  width: 100%;
  margin-right: 15px;
}

.bl_add_keyword_item_input input {
  padding: 8px 10px;
}

.bl_add_keyword_item_input input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #57626e;
}

.bl_add_keyword_item_icon {
  font-size: 14px;
  color: #56616e;
  cursor: pointer;
  transition: all ease .25s;
}

.bl_add_keyword_item_icon:hover {
  color: #ff0000;
}

.bl_add_keyword_btnWrap {
  text-align: right;
}

.bl_add_keyword_formBtnWrap {
  margin-top: 10px;
  text-align: right;
}

/* 推測ツール・理論値 */
.bl_tool {
  background: #fff;
  padding: 20px 0px;
  position: relative;
  height: calc(100vh - 161px);
}

.bl_tool_inner {
  height: calc(100% - 100px);
  display: flex;
  overflow-y: scroll;
}

.bl_tool_wrap {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: clip;
}

.bl_tool_headWrap {
  padding: 0 20px 10px;
  border-bottom: 1px solid #bec9d5;
}

.bl_tool_head {
  margin-bottom: 10px;
}

.bl_tool_head_txtWrap {
  display: flex;
}

.bl_tool_head_titletag {
  min-width: 100px;
}

.bl_tool_head_description {
  min-width: 150px;
}

.bl_tool_head_txt {
  display: block;
  margin-bottom: 10px;
  color: #57626e;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.bl_tool_inner_headWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.bl_tool_left,
.bl_tool_right {
  width: 50%;
  padding: 15px 20px 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.bl_tool_left {
  border-right: 1px solid #bec9d5;
}

.bl_tool_left_head {
  margin-bottom: 20px;
}

.bl_tool_left_head_txt {
  margin-bottom: 25px;
}

.bl_tool_right {
  min-width: 783px;
  position: relative;
}

.bl_tool_btnWrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: right;
  border-top: 1px solid #bec9d5;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}

.bl_meta {
  max-width: 1300px;
  margin: 0 auto;
}

.bl_meta_item {
  width: 100%;
  margin-bottom: 40px;
}

.bl_meta_item_head {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.bl_meta_item_txt {
  font-size: 13px;
  margin-bottom: 10px;
}