@charset "UTF-8";

@import "reset.css";
@import "noto.css";
@import url("../../common/css/table.css?v=20240710");
/*@import "full_search.css";*/

:root {
  --works-color: #00b7bc;

  --color-free:	#61bdf2;
  --color-basic:	#c093ea;
  --color-standard:	#ff9800;
  --color-premium:	#f05f41;
  
  --color-green: #94BC3F;
  --color-blue:	#6488E6;
  --color-purple:	#AA92E4;
  --color-pink:	#E783C9;
  --color-red:	#DE5F62;
  --color-orange:	#DF970C;
  --color-yellow:	#D6CB05;
  --color-brown:	#947850;
  --color-black:	#000000;
  --color-gray:	#999999;
  --color-:	#ffffff;

  --color-gray-light: #bbb;
  --color-gray-disabled: #e8e8e8;
  --color-green-dark: #71912d;
}
.works_color {
  color:var(--works-color) !important;
}
.works_green {
  color:var(--color-green) !important;
}
.works_blue {
  color:var(--color-blue) !important;
}
.works_purple {
  color:var(--color-purple) !important;
}
.works_red {
  color:var(--color-red) !important;
}
.works_orange {
  color:var(--color-orange) !important;
}
.works_yellow {
  color:var(--color-yellow) !important;
}
.works_brown {
  color:var(--color-brown) !important;
}
.works_black {
  color:var(--color-black) !important;
}
.works_gray {
  color:var(--color-gray) !important;
}
.color_free {
  color:var(--color-free) !important;
}
.color_basic {
  color:var(--color-basic) !important;
}
.color_standard {
  color:var(--color-standard) !important;
}
.color_premium {
  color:var(--color-premium) !important;
}
.apps_main_color {
  color:var(--main-color) !important;
}
/* background-color */
.bkcolor_free {
  color: #fff !important;
  background-color:var(--color-free) !important;
}
.bkcolor_basic {
  color: #fff !important;
  background-color:var(--color-basic) !important;
}
.bkcolor_standard {
  color: #fff !important;
  background-color:var(--color-standard) !important;
}
.bkcolor_premium {
  color: #fff !important;
  background-color:var(--color-premium) !important;
}

.marker_pink {
  background: linear-gradient(transparent 60%, #fec1fe 0%);
}
.marker_yellow {
  background: linear-gradient(transparent 60%, #ffff00 0%);
}
.marker_blue {
  background: linear-gradient(transparent 60%, #00d2ff 0%);
}
.marker_brown {
  background: linear-gradient(transparent 60%, #b16e49 0%);
}
.marker_orange {
  background: linear-gradient(transparent 60%, #fcb848 0%);
}
/* タグ共通
--------------------------------- */
* {
  box-sizing: border-box;
	line-height: 1.3;
  word-wrap: break-word;
  }
  html,body {
    /* overflow: auto; */
    /* width: 100%;
    height: 100%;
    min-height: 100%; */
    color: #3c3c3c;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  html {
    font-size: 62.5%;
  }
  body {
    background: #fdfdfd; /* EEEFEF */
    font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
    /* font-size: 14px; */
    font-size: 1.4em;
    overflow: hidden;
  }
  body.iframe {
    background-color: #fff;
  }
  div {
    margin-left:auto;
    margin-right:auto;
  }
  table {
    margin-left:auto;
    margin-right:auto;
  }
  a {
    /* color : #84090c; */
    /* color: #AB1C23; */
    /* color: var(--works-color); */
    /* text-decoration: none; */
    color: rgb(1, 140, 255);
    transition: opacity .15s;
    transition: .2s;
  }
  a:hover {
    /* color : #ff8080; */
    /* color : rgb(65, 201, 189); */
    opacity: .7;
  }
  
  /* htmxリンク */
  a[hx-trigger="click"] {
    cursor: pointer;
    text-decoration: underline;
  }

  hr {
    border-top: 1px solid #eee;
    margin: 0;
  }
  img {
    max-width: 100%;
  }
  h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
      color: #2d2d2d;
  }
  ul, li {
    list-style: none;
  }

  /* Aタグを無効にする */
  a.link_off {
    pointer-events: none;
  }

  /* テキストを右寄せ */
  .text_right {
    text-align: right;
  }


/* アプリ画面 - （アプリ）
--------------------------------- */
body.works_apps {
  background: #EEEFEF;
  font-size: 1.3em;
  /* overflow: auto; */
}


/* アプリアイコン - （共通）
--------------------------------- */
.apps_icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  opacity: 1 !important;
}
.apps_icon.icon100 {
	width: 100px;
	height: auto;
  border-radius: 7px;
}
.apps_icon.icon20 {
	width: 20px;
	height: 20px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}


/* フラッシュメッセージ - （共通）
--------------------------------- */
#flash_message {
	position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
	text-align: center;
}
#flash_message p {
  background-color: var(--works-color);
  font-size: 16px;
  color: #fffdfd;
  padding: 10px;
  opacity: 0.9;
  width: 98%;
  margin: 300px auto 0;
}
/* エラー表示 */
#flash_message.error p {
  background-color: var(--color-red);
}


/* ==============================
   コンテンツ - （アプリ）
============================== */
/* .works_top #container {
  margin: 31px 0 0;
  padding: 20px 20px 0;
} */
.works_apps #container {
  position: relative;
  margin: 100px 0 0;
  height: auto;
}
.works_apps #main {
  position: relative;
  display: block;
  align-self: flex-start;
  background: #fff;
  flex-basis: calc(100% - 180px);
  flex-grow: 1;
  margin-left: 180px;
  /* height: auto;
  min-height: calc(100vh - 100px);
  overflow: inherit; */
  padding: 20px;
  overflow: auto;
  height: calc(100vh - 100px);
  width: calc(100% - 180px);
  z-index: 1;
}
.slide_lock #main {
  margin-left: 180px !important;
}
.works_top #main {
  align-self: flex-start;
  background: #fff;
  flex-basis: 100%;
  flex-grow: 1;
  margin-left: 0;
  min-height: calc(100vh - 51px - 20px);
  padding: 20px;
}
#iframe_main {
  width: 100%;
}
@media all and (-ms-high-contrast:none) {
  #main {
    max-width: calc(100% - 200px);
  }
}
/*  */
aside#sub_menu {
  border-bottom: 1px solid #e5e5e5;
  flex-basis: 100%;
}
aside#sub_menu ul li {
  font-weight: bold;
  display: inline-block;
}
aside#sub_menu ul li a {
  color: #777;
  display: block;
  padding: 2px 10px 2px 5px;
  text-decoration: none;
}
aside#sub_menu ul li.on a,
aside#sub_menu ul li a:hover {
  color: #DE5F62;
}

/* ==============================
   ここから - （アプリ）
============================== */
  /* カード
  --------------------------------- */
  .works_apps .card {
    /* border-bottom: 1px solid #ccc; */
    padding: 10px;
  }
  .works_apps .card h2 {
    font-size: 18px;
      margin-bottom: 10px;
  }

  /* 共通 page_title
  --------------------------------- */
  .works_apps .page_title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }

  /* 共通 list_title
  --------------------------------- */
  .list_title {
    font-size: 1.6rem;
    font-weight: 500;
    flex-wrap: nowrap;
    margin: 30px auto 20px;
    color: var(--main-color);
  }
  .list_title .list_action {
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 10px;
    float: right;
    display: flex;
  }
  .list_title .list_action a {
    display: inline-block;
    border-bottom: none;
  }
  .list_title .list_action a i {
    font-size: 1.4rem;
  }
  .list_title .list_action form {
    display: flex;
    align-items: center;
  }
  .list_title .list_action form label {
    display: flex;
    align-items: center;
    margin: 0 5px;
  }
  .list_title .list_action input,
  .list_title .list_action select {
    padding: 2px 8px;
  }
  .list_title .list_action select {
    padding-right: 1.5rem;
    margin-right: 8px;
    margin-bottom: 0;
  }
  .list_title .list_action select[name="sr_sort"] {
    margin-right: 10px;
  }
  .list_title > *:not(.list_action) {
    flex-grow: 1;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
  }
  .list_title h2 {
    color: var(--main-color);
  }

  /* 共通 カラー項目
  --------------------------------- */
  body form .select_color {
    display: inline-block;
    margin-right: 5px;
    min-width: inherit !important;
  }
  body form .select_color input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    cursor: pointer;
    height: 20px;
    margin: 0;
    width: 20px;
  }
  body form .select_color input:checked {
    outline: 2px solid #DE5F62;
  }

  /* 共通 詳細リスト
  --------------------------------- */
  body .dl_detail {
    margin: 0 auto 30px;
  }
  body .dl_detail dl dt {
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    padding: 10px;
  	width: 150px;
    /* margin-left: 10px; */
  }
  body .dl_detail dl dd {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    padding-right: 0;
    width: calc(100% - 160px);
  }


  /* 右下ボタン（フローティングアクションボタン）
  --------------------------------- */
  #btn_fab {
    /* border-radius: 50%; */
    /* display: inline-block; */
    /* overflow: hidden; */
    position: fixed;
    /* width: 50px; */
    height: 55px;
    z-index: 1500;
    right: 20px;
    bottom: 10px;
    /* text-align: center; */
  }
  /* #btn_fab input {
    background: url(/img/add_white.png) center center no-repeat #ccc;
    background-color: var(--main-color) !important;
    background-size: 55%;
    border: none;
    cursor: pointer;
    height: 100%;
    text-indent: -9999px;
    transition: all 0.5s;
    width: 100%;
  }
  #btn_fab input:hover {
    opacity: 0.6;
  } */
  #btn_fab > a {
    display: flex;
    background-color: var(--main-color) !important;
    width: 50px;
    height: 50px;
    transition: all 0.5s;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
  }
  #btn_fab > a:hover {
    opacity: 0.6;
  }
  #btn_fab >a i {
    color: #fff;
    font-size: 2rem;
    line-height: 50px;
  }
  .fab_space {
    height: 50px;
  }

  .anime_fadein {
    animation-name: fadein;
    animation-duration: 0.5s;
  }
  @keyframes fadein {
    from {
      opacity: 0;
      transform: scale(0) rotate(-180deg);
    }
    to {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
  }

  /* 新規登録・追加ボタン
  --------------------------------- */
  .add_btn {
    background: url(/common/img/plus_gray.svg) center center no-repeat #fff;
    background-size: 20px auto;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    height: 32px;
    vertical-align: middle;
    width: 32px;
  }

  /* ステータス変更ボタン
  --------------------------------- */
  body .public_btn,
  body .flag_btn,
  body .key_btn {
    width:36px !important;
    padding:0px !important;
    vertical-align: middle;
  }
  body .public_btn A,
  body .flag_btn A,
  body .key_btn A {
    display:block;
    width:25px;
    height:30px;
    text-indent:-9999rem;
  }
  body .public_btn A {
    background:url(/img/check.gif) no-repeat left top;
  }
  body .flag_btn A {
    background:url(/img/flag.gif) no-repeat left top;
  }
  body .off .public_btn A,
  body .off .flag_btn A,
  body .public_btn.off A {
    background-position:bottom;
  }
  body .public_btn A:hover,
  body .flag_btn A:hover,
  body .key_btn A:hover {
    background-position:center;
  }
  body .on .key_btn A {
    display:none;
  }
  body .on DIV.key_btn {
    background:url(/img/flag.gif) no-repeat top;
    height:30px;
    margin:0px;
    padding:0px;
  }
  body .public_btn.fix {
    height:30px;
    background:url(/img/check.gif) no-repeat top;
  }


  /* 鉛筆編集ボタン
  --------------------------------- */
  .jq_edit_regist input[type='text'] {
    padding-right: 23px;
  }
  .jq_edit_regist input[type='submit'],
  .jq_edit_regist .jq_edit_cancel {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/img/btn_register.png) center center no-repeat;
    border: none;
    cursor: pointer;
    height: 23px;
    margin: 0 2px;
    text-indent: -9999px;
    transition: all 0.2s;
    vertical-align: middle;
    width: 23px;
    }
    .jq_edit_regist .jq_edit_cancel {
      background-image: url(/img/btn_cancel.png);
      position: relative;
      right: 57px;
    }
    .jq_edit_regist input[type='submit']:hover,
    .jq_edit_regist .jq_edit_cancel:hover {
      opacity: 0.6;
    }

  /* 共通 submit_box
  --------------------------------- */
  body .submit_box {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
  }
  body .submit_box p {
    margin-bottom: 10px;
  }
  body .submit_box input[type='button'],
  body .submit_box input[type='submit'] {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }

  /* 共通 msgbox
  --------------------------------- */
  body .msgbox form {
    text-align: center;
  }
  body .card.msgbox {
    width: 80%;
    max-width: 600px;
    margin: 40px auto 0;
    border: 1px solid #ddd;
    border-left: 8px solid var(--works-color);
    background-color: #fff;
    min-height: calc(80px + 10px);
    /* padding: 0; */
    padding-top: 18px !important;
    word-break: break-all;
  }
  body .card.msgbox .inner_box {
    /* margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 2em; */
    margin: 0 20px 20px;
    text-align: left;
  }
  body .card.msgbox .inner_box > h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  body .card.msgbox p {
    margin: 0 auto 10px;
    line-height: 1.6;
  }

  /* iframe_main
  --------------------------------- */
  body .fancybox-skin {
    background: #fff;
    padding: 0 !important;
  }
  body .fancybox-outer {
    /* border-radius: 5px; */
    overflow: hidden;
  }
  body #iframe_main {
    background: #fff;
    min-height: 100vh;
    padding-bottom: 3rem;
  }
  body #iframe_main > div:not(.page_title) {
    padding: 15px;
  }
  body #iframe_main .submit_box.fixed,
  body #iframe_main .submit_box.sticky {
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1;
    bottom: 0;
    left: 0;
  }


  /* 共通 form
  --------------------------------- */
  /* select2 */
  .select2-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: none;
    margin-bottom: 3px;
    max-width: 100%;
    outline: 0;
    padding: 5px 3px;
    transition: .15s;
    vertical-align: middle;
    min-width: 200px;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 24px;
  }
  .select2-container .select2-selection--multiple {
    border: none !important;
    line-height: 100% !important;
    min-height: auto !important;
    margin: -4px auto !important;
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 100% !important;
    padding: 0 !important;
  }
  .select2-container .select2-selection--multiple .select2-selection__choice {
    background: #eee !important;
    border: 1px solid #ccc !important;
  }
  .select2-container input.select2-search__field {
    margin: 0;
    border: none !important;
    padding: 0 !important;
  }
  .select2-dropdown {
    border: none !important;
    box-shadow: 0px 0px 2px 1px #d7d7d7;
  }
  /* プルダウン内の検索窓*/
  .select2-search--dropdown input.select2-search__field {
    padding: 4px !important;
    background-color: rgb(240, 240, 240);
    border-radius: 4px;
  }

  .select2-container .select2-choices .select2-input {
    border: none !important
  }
  .select2-container .select2-choices {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    min-height: auto !important;
    margin: -4px auto !important;
  }
  .select2-container .select2-choices .select2-search-choice {
    background: #eee !important;
    border: 1px solid #ccc !important;
  }

  .select2-container--default .select2-selection--single {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    height: auto !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit !important;
    padding-left: 0 !important;
  }

  .select2-container .select2-choice {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
  }
  .select2-container .select2-choice .select2-arrow {
    border: none !important;
  }
  .select2-container .select2-choice .select2-arrow b {
    background: url(/img/select.svg) right 5px center no-repeat #fff !important;
    background-size: 10px !important;
  }

  /* form */
  form ::placeholder {
    color: #aaa;
  }
  form input:not([type='radio']):not([type='checkbox']):not([type='button']):not([type='submit']):not([type='file']),
  form textarea,
  form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    margin-bottom: 3px;
    max-width: 100%;
    outline: 0;
    padding: 5px 8px;
    transition: .15s;
    vertical-align: middle;
  }
  form select {
    background: url(/img/select.svg) right 5px center no-repeat #fff;
    background-size: 0.8rem;
    cursor: pointer;
    padding-right: 2em;
  }
  form textarea {
    width: 100%;
  }
  /* form label {
    cursor: pointer;
  } */
  form input[type='radio'],
  form input[type='checkbox'] {
    /* height: 1rem;
    margin: 0 3px 3px;
    padding: 0 !important;
    width: 1rem; */
    height: 1.4rem;
    margin: 0 4px;
    padding: 0 !important;
    width: 1.4rem;
  }
  /* ボタン */
  form input[type='button'],
  form input[type='submit'],
  a.main_btn,
  a.works_btn,
  a.delete_btn,
  a.cancel_btn,
  a.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background: var(--works-color); */
    background: #777;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 3px;
    max-width: 100%;
    outline: 0;
    padding: 3px 10px;
    text-decoration: none;
    transition: .15s;
    vertical-align: middle;
  }
  a.main_btn {
    background: var(--main-color);
    padding: 5px 20px;
  }
  a.works_btn {
    background: var(--works-color);
    padding: 5px 20px;
  }
  a.delete_btn {
    background: var(--color-red);
    padding: 5px 10px;
  }
  a.cancel_btn {
    background: var(--color-gray);
    padding: 5px 10px;
    margin-right: 20px;
  }
  input.main_btn {
    background: var(--main-color) !important;
    color: #fff !important;
  }
  input.works_btn {
    background: var(--works-color) !important;
    color: #fff !important;
  }
  form input[type='button'] {
    background: #eee;
    border: 1px solid #ccc;
    color: #3c3c3c;
    padding: 2px 6px;
  }
  form input[type='button'].important,
  form input[type='submit'].important,
  a.btn.important {
    background: #DE5F62;
  }
  form input[type='button']:hover,
  form input[type='submit']:hover,
  a.btn:hover {
    opacity: .7;
  }
  form input[type='button']:disabled {
    color: #ccc;
  }
  form input[type='button']:disabled:hover {
    opacity: 1;
  }
  /* ローディングボタン */
  form.now_loading input[type='submit'] {
    display: none !important;
  }
  form.now_loading .loading_btn {
    display: inline-block;
    width: 100px;
    background-color: #777;
    border-radius: 3px;
    padding: 0.5rem 2rem;
    line-height: 1.0;
    display: inline-block;
    text-align: center;
  }
  form.now_loading .loading_btn i {
    font-size: 18px;
    color: #fff;
  }

  .list_action a.btn {
    background: var(--main-color);
    padding: 5px 10px;
    font-weight: normal;
    border-radius: 5px;
  }
  .list_action input[type='submit'] {
    background: var(--main-color);
  }

  a.btn.cancel {
    background-color: #ababab;
    margin-right: 50px;
    margin-left: -50px;
    padding: 5px 15px;
  }
  /*  */
  form input[type='file'] {
    cursor: pointer;
  }
  
  form input:disabled {
    background-color: #fbfbfb !important;
    border-color: #e3e0e0 !important;
    color: #b5b2b2 !important;
  }

  /*  */
  form .message {
    color: #CC6600;
    font-size: 11px;
  }
  /*  */
  #main .submit_box {
    text-align: center;
    margin: 30px auto 0;
  }
  #main .submit_box input[type='button'],
  #main .submit_box input[type='submit'] {
    font-size: 14px;
    padding: 0.5rem 3rem;
  }
  #main .submit_box input[type='button'].back {
    margin-right: 80px;
  }
  #main .submit_box.fixed {
    position: fixed;
    width: calc(100% - 180px);
    right: 0px;
    bottom: 0px;
    margin: 0;
    padding: 20px;
    /* position: sticky;
    bottom: 0;
    border-top: 2px solid #ccc;
    padding: 20px; */
  }

  /* .submit_box.fixed を内包する要素 */
  .submit_fixed_contents {
    margin-bottom: 120px;
  }

/* ==============================
   ヘッダー - （アプリ）
============================== */
.works_apps header {
  background: #fff;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  border-bottom: none;
}
.works_apps #works_header {
  height: 30px;
  border-bottom: 1px solid rgba(200, 200, 201, 0.5);
}
/*  */
#works_header_l {
  padding: 0 10px;
}
#works_header_l > * {
  display: inline-block;
  margin: 0;
}
/* ロゴ ----- */
#works_header_l a.logo {
  margin-right: 15px;
  min-width: 73px;
}
#works_header_l a.logo img {
  height: 20px;
  width: auto;
  vertical-align: bottom;
}

/* ==============================
  ヘッダ 無料トライアル中表示
============================== */
.trial {
  padding: 7px 12px;
  margin-left: auto;
  margin-right: 20px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  /* color: #ffffff;
  background-color: var(--color-premium); */
}
.trial p {
	font-weight: bold;
	margin-bottom: 2px;
}
.trial p em {
	font-style: normal;
}
.trial span {
	display: block;
	font-size: 1.1rem;
	/* color: #777; */
}

.works_apps .trial {
  padding: 2px 10px;
  margin-right: 15px;
  text-align: left;
  border: none;
  /* background-color: var(--color-standard); */
  border-radius: 8px;
  /* color: #fff; */
}

/* アプリ管理
--------------------------------- */
#head_apps > a {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
#head_apps > a i {
  font-size: 2rem;
}
#head_apps .toggle_content {
  left: -200%;
  width: 300px;
}
#head_apps .toggle_inner {
  background-color: #fff;
  padding: 0;
}
#head_apps .toggle_inner > ul {
  /* height: 100vh;　*/
  max-height: 450px;
}
#head_apps ul ul {
  background: #fff;
  flex-wrap: wrap;
  list-style-type: none;
  margin-top: 0;
  position: static;
  align-items: inherit;
}
#head_apps ul ul li {
  display: flex;
  justify-content: center;
  flex: 1;
  width: calc(100% / 3);
  max-width: calc(100% / 3);
  border: 1px solid #f5f5f5;
}
#head_apps ul ul li.group {
  background: #f5f5f5;
  border-top: 1px solid #ccc;
  font-weight: 500;
  overflow-y: auto;
  padding: 0.5rem;
  width: 100%;
  max-width: none;
  flex: none;
}
#head_apps ul ul li.group:nth-of-type(1) {
  border-top: none;
}
#head_apps ul ul li.favorite_app a::before {
  content: '\f02e';
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 1.4rem;
  color: #F56363;
}
#head_apps ul ul li a {
  display: inline-block;
  text-align: center;
  width: 100% !important;
  position: relative;
  color: #3c3c3c;
}
#head_apps ul ul li a span {
  height: 40px;
  width: 40px;
  margin-bottom: 3px;
}
#head_apps ul ul li a div {
  font-size: 11px;
}
/*  */
#works_header_l .apps_list {
  margin: 0;
  margin-left: 20px;
  padding: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 0;
  height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#works_header_l .apps_list li {
  display: inline-block;
}
#works_header_l .apps_list li:nth-child(n+2) {
  margin-left: 10px;
}
#works_header_l .apps_list li a {
  color: #777;
  font-size: 12px;
  display: inline-block;
  line-height: 16px;
  text-decoration: none;
  overflow: hidden;
}
#works_header_l .apps_list li a .apps_icon {
  border-radius: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
#works_header_l .apps_list li a div {
  display: inline-block;
}
/*
--------------------------------- */
#works_header_r {
  width: auto;
  white-space: nowrap;
  margin-right: 0;
}
/* Works設定 ----- */
/* #works_header_r .account {
  display: inline-block;
  text-align: right;
  vertical-align: middle;
  margin-right: 5px;
}
#works_header_r .account span {
  font-size: 11px;
}
#works_header_r .account b {
  font-size: 12px;
} */
/*  */
/* #works_header_r .jq_toggle_navi {
  display: inline-block;
  position: relative;
} */
#works_header_r .menu_icon > a i {
  font-size: 22px;
  padding-top: 2px;
}
  /*
  --------------------------------- */
  #apps_header {
    background-color: #aaa;
    /* background-color: var(--main-color); */
    background-color: #fff;
    clear: both;
    position: relative;
    }
    #apps_header .apps_icon {
      border: 2px solid #fff;
      height: 57px;
      width: 57px;
      position: absolute;
      top: 7px;
      left: 10px;
      border-radius: 7px;
    }
    /*  */
    #apps_title {
      height: 38px;
      padding-right: 10px;
    }
    #apps_title h1 {
      color: var(--main-color);
      font-weight: 500;
      font-size: 19px;
      letter-spacing: 1px;
      overflow: hidden;
      padding: 0 10px;
      padding-left: 80px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    /*  */
    #apps_title_r {
      padding-right: 10px;
      white-space: nowrap;
      margin-left: auto;
      margin-right: 0;
    }
      #apps_title_r A {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        display: inline-block;
        height: 18px;
        width: 20px;
        text-decoration: none;
        margin-left: 5px;
        vertical-align: middle;
      }
      #apps_title_r A.csv {
        background-image: url(/img/csv.svg);
      }
      #apps_title_r A.print {
        background-image: url(/img/print.svg);
      }
      #apps_title_r A.reload {
        background-image: url(/img/reload.svg);
        width: 20px;
      }
      #apps_title_r A.reload:hover {
        background-position: center center;
      }
      /*  */
      #apps_title_r .jq_search {
        display: inline-block;
        position: relative;
        width: 180px;
      }
      #apps_title_r .jq_search input[type="text"] {
        border: 1px solid #ccc;
        border-radius: 20px;
        box-sizing: border-box;
        font-size: 12px;
        margin-bottom: 0;
        padding: 3px 20px 3px 10px;
        width: 100%;
      }
      #apps_title_r .jq_search input[type="text"]::placeholder {
        color: #aaa;
      }
      #apps_title_r .jq_search .search_btn {
        -webkit-appearance: none;
        background: url(/common/img/side_search.png) center center no-repeat;
        border: none;
        cursor: pointer;
        margin: auto;
        position: absolute;
        text-indent: -9999px;
        width: 20px;
        top: 0;
        bottom: 0;
        right: 3px;
      }
      /*  */
      #apps_title_r #header_search_result {
        background: #fff;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        max-height: calc(100vh - 100px);
        min-width: 150px;
        max-width: 450px;
        }
        #apps_title_r #header_search_result .toggle_inner {
          max-height: calc(100vh - 150px);
          overflow-y: auto;
          background-color: #fff;
        }
        #apps_title_r #header_search_result h2 {
          padding: 0.5rem;
        }
        /* #apps_title_r #header_search_result ul {
          background: #fff;
        } */
        #apps_title_r #header_search_result ul li {
          white-space: normal;
        }
        #apps_title_r #header_search_result ul li:nth-of-type(odd) {
          background: #f5f5f5;
        }
        #apps_title_r #header_search_result ul li.no_record {
          padding: 2rem 1rem;
        }
        #apps_title_r #header_search_result ul li a {
          color: #3c3c3c;
          margin: 0;
        }
        #apps_title_r .fa_icon i {
          color: #fff;
          font-size: 18px;
          margin-top: 3px;
        }

    /* apps_menu ========== */
    #apps_menu {
      background: var(--main-color);
      height: 32px;
      padding-left: 75px;
      white-space: nowrap;
      }
      #apps_menu > ul {
        height: 100%;
      } 
      #apps_menu > ul > li {
        display: inline-block;
        margin-top: auto;
      }
      #apps_menu > ul > li > a {
        color: #fff;
        display: flex;
        align-items: center;
        opacity: 1;
        height: 26px;
        padding: 0 10px;
        text-decoration: none;
      }
      #apps_menu > ul > li:nth-child(n+2) {
        margin-left: 8px;
      }
      /* アイコン */
      #apps_menu > ul > li > a::before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        /* font-size: 1.2rem; */
        color: #fff;
        margin-right: 3px;
      }
      #apps_menu > ul > li.dashboard > a::before {
        content: '\f62a';
      }
      #apps_menu > ul > li.record > a::before {
        content: '\f03a';
      }
      #apps_menu > ul > li.regist > a::before {
        content: '\f067';
      }
      #apps_menu > ul > li.aggregate > a::before {
        content: '\f65b';
      }
      /* hover */
      #apps_menu > ul > li:hover > a,
      #apps_menu > ul > li.on > a {
        background-color: #EEEFEF;
        color: #3c3c3c;
        border-radius: 3px 3px 0 0;
      }
      #apps_menu > ul > li:hover > a::before,
      #apps_menu > ul > li.on > a::before {
        color: #3c3c3c;
      }



/* バッジ ----- */
.badge_num {
  background: rgb(231, 7, 7);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  padding: 0 0.25rem;
  height: 14px;
  min-width: 14px;
  line-height: 14px;
  text-align: center;
  position: absolute;
  top: -4px;
  right: -8px;
}

/* 新着情報バッジ*/
.inline_badge_num {
  background: rgb(231, 7, 7);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 0 0.25rem;
  text-align: center;
  
  font-size: 0.9em;
  min-width: 17px;
  line-height: 19px;
  height: 17px;
}

/* 吹き出し 枠タイトル ----- */
.balloon_title {
  font-weight: normal;
  font-size: 1.6rem;
  text-align: left;
  padding: 15px 12px 0;
  margin-bottom: 15px;
}


/* 非表示 */
.none {
display:none !important;
}
/* float解除 */
.clear {
  clear: both;
}

.width100 {
	width:99%;
}
.width96 {
	width:96%;
}
.width96r {
	width:96%;
	text-align:right;
}
.width80 {
	width:80%;
}

/* ファイルアップロードローディング
--------------------------------- */
.upload_loading {
  width: 128px;
  height: 15px;
  background: url(/common/img/upload_loading.gif) no-repeat;
  margin: 0;
}

/* トグル式ナビゲーションメニュー
--------------------------------- */
.toggle_wrap {
  display: inline-block;
  position: relative;
}
.toggle_wrap a.dot_icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
}
.toggle_wrap a.dot_icon::before {
	font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    content: '\f142';
    font-size: 2rem;
    line-height: normal;
    color: #555;
}
.toggle_content {
  position: relative;
  padding: 0;
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  margin-top: 8px;
  max-width: 300px;
  min-width: 130px;
  position: absolute;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  z-index: 99;
  right: -3px;
  border-radius: 4px;
  box-shadow: 1px 2px 7px rgba(0,0,0,0.3);
}
_:-ms-lang(x), .toggle_content {
  width: 150px; /* IE Edge 対策 */
} 
.toggle_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}
/* .toggle_inner > ul,
.toggle_inner > ul li {
  height: 100%;
} */
/* .jq_toggle_navi ul {
  list-style: none;
  padding: 8px 0;
} */
.toggle_inner ul li ul {
  background: rgb(0,0,0,0.1);
  opacity: 1;
  padding-left: 0.8em;
}
.toggle_inner li a,
.toggle_inner li label {
  color:#fff;
  padding: 9px 13px;
  display: block !important;
  height: auto !important;
  text-decoration: none;
  transition:.25s;
  width: auto !important;
  text-align: left;
}
.toggle_inner li a:hover {
  background: rgb(0,0,0,0.1);
  opacity: 1;
}
/* Font Awesome */
.toggle_inner li i.fas,
.toggle_inner li i.far {
  margin-right: 6px;
  margin-left: -4px;
  color: #fff;
}
/* 左にQRコードボタンを置く */
.toggle_inner li.right_btn {
  position: relative;
  margin-right: 10px;
}
.toggle_inner .scroll_box li.right_btn {
  margin-right: 0px;
}
.toggle_inner li.right_btn a.left {
  margin-right: 1.2em;
  padding-right: 10px;
}
.toggle_inner li.right_btn a.qrcode {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 0;
}
.toggle_inner li.right_btn a.qrcode::after {
	font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  content:'\f029';
  font-size: 1.3em;
}
.tn_btn {
  cursor: pointer;
  border-bottom: none;
}
.tn_btn.store {
  margin-left: 5px;
  color: #ccc;
}
.tn_btn.store i {
  font-size: 2.3rem;
}
.toggle_content.open {
  /* min-height: 500px; */
  visibility: visible;
  opacity:1;
  /* transform:rotate(0); */
}

/* ツールチップ
--------------------------------- */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0px;
}
.tooltip i {
  font-size: 1.3rem;
}
.tooltip i:hover {
  color: var(--main-color);
}
.tooltip span {
  position: absolute;
  z-index: 1;
  visibility: hidden;
  white-space: nowrap;
  padding: 0.5rem 0.8rem;
  transition: opacity 0.5s;
  text-align: left;
  opacity: 0;
  color: #ffffff;
  border-radius: 6px;
  background-color: var(--main-color);
}
.tooltip span.right {
  left: -10px;
  width: auto;
  bottom: 30px;
}
.tooltip span.left {
  right: -10px;
  bottom: 30px;
}
.tooltip span.bottom {
  top: 130%;
  bottom: auto;
}
.tooltip span::after {
  position: absolute;
  content: ' ';
  border: 5px solid transparent;
  border-top-color: var(--main-color);
}
.tooltip span.right::after {
  top: 100%;
  left: 18px;
  margin-left: -5px;
}
.tooltip span.left::after {
  top: 100%;
  right: 18px;
  margin-right: -5px;
}
.tooltip span.bottom::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--main-color);
}
.tooltip:hover span {
  visibility: visible;
  opacity: 1;
}

/* モーダル
--------------------------------- */
#iframe_main .page_title {
  background: #777;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  position: sticky;
  text-align: center;
  z-index: 1;
  top: 0;
}
#iframe_main .page_title h1 {
  color: #fff;
}


/* アプリ一覧カード
--------------------------------- */
.app_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
  overflow: hidden;
  width: calc(100% + 15px);;
	margin-right: -15px;
}
.app_card {
  position: relative;
  width: calc((100% / 3) - 15px);
  margin: 0;
  margin-top: 15px;
  margin-right: 15px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.app_card > a {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 14px;
  min-height: 100%;
  color: #3c3c3c;
  border-bottom: none;
}
.app_card .apps_main {
	display: flex;
	align-items: center;
	margin: 0;
}
.app_card .apps_icon {
  flex: none;
  height: 48px;
  width: 48px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  margin-right: 7px;
  border-radius: 6px;
}
.app_card .apps_icon img {
	border-radius: 6px;
}
.app_card .apps_name {
	font-weight: normal;
	max-width: 70%;
	max-height: 50px;
	overflow: hidden;
	word-break: break-all;
}
.app_card .apps_name span {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #1d1d1d;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.app_card_data {
	display: flex;
	justify-content: space-between;
	margin: 12px 0;
	width: 100%;
}
.app_card_rating {
	color: #777;
	margin: 0;
	font-size: 1.1rem;
}
.app_card_rating span {
	font-size: 1.4rem;
	margin-right: 3px;
	color: #3c3c3c;
}
.app_card_rating:before {
  font-family: "Font Awesome 5 Pro";
  content: '\f005';
  font-weight: 600;
  font-size: 1.4rem;
  margin-right: 3px;
  color: #EFCB03;
}
.app_card_pricing {
  flex: 1;
	font-size: 1.4rem;
	color: #4AA009;
	text-align: right;
}
.app_card_pricing span {
  font-size: 1rem;
  color: #5c5c5c;
  margin-right: 3px;
}
/* 無料 */
.app_card_pricing.price_free {
	color: #999;
}
/*  */
.app_card_text {
	margin: 0;
	margin-bottom: 15px;
	max-width: 100%;
    overflow: hidden;
}
.app_card_text p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #777;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.app_card_foot {
	margin: 0;
	margin-top: auto;
	padding-top: 8px;
    border-top: 1px solid #ddd;
}
.app_card .apps_plan {
	list-style: none;
	font-size: 0;
	text-align: right;
}
.app_card .apps_plan li {
	display: inline-block;
	font-family: Verdana;
	font-weight: bold;
	font-size: 1rem;
	padding: 1px 4px;
	margin-top: 2px;
	border-radius: 2px;
	color: #D1D1D1;
	background-color: #EDEDED;
}
.app_card .apps_plan li:not(:last-child) {
	margin-right: 2px;
}

/* 設定ボタン
----------------------------------- */
.setting_btn {
  text-align: right;
}
.setting_btn a {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 3px 10px 1px 5px;
  border-radius: 13px;
  line-height: inherit;
  text-decoration: none;
  background-color: #eee;
  color: #666;
}
.setting_btn a::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  content : '\f013';
  font-size: 1.2em;
  margin-right: 4px;
  vertical-align: middle;
}

/* タブ表示
----------------------------------- */
#modal_body > .tab_box {
  margin: 1.5em 1em -1em;
}
.tab_box {
	position: relative;
}
.tab_box > h2 {
	color: var(--main-color);
	font-size: 1.2em;
	position: absolute;
	top: 13px;
	left: 10px;
	margin-right: 5px;
}
/* .tab_box > h2.back {
  font-weight: normal;
  font-size: 1.1em;
} */
.tab_box > h2 a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 0.9em;
  margin-right: 10px;
  font-weight: normal;
}
.tab_box > h2 a i {
  margin-right: 5px;
  font-size: 1.3em;
  vertical-align: middle;
}
.tab_box > h2 .title {
  font-weight: bold;
  margin-left: 10px;
}
.tab_box > h2 .status {
  border: 1px solid;
  font-size: 0.75em;
  padding: 0px 5px;
  margin-left: 10px;
  border-radius: 4px;
  vertical-align: middle;
}

.tab_box .tabs {
	text-align: right;
	height: auto;
	padding: 0px;
	background: none;
	border: none;
	border-bottom: 2px solid var(--main-color);
	border-radius: 0;
	background-color: #ffffff;
	padding-top: 1rem;
  margin-bottom: 1.5em;
}
.tab_box .tabs.left {
  text-align: left;
}
.tab_box .tabs li {
	list-style: none;
	border-bottom: 0 !important;
	white-space: nowrap;
	
	border: none;
	border-radius: 0.4rem 0.4rem 0px 0px;
	display: inline-block;
	float: none;
	position: static;
	margin: 0px 0px -5px !important;
	padding: 2px;
	top: 1px;
}
.tab_box .tabs li.active {
	background: var(--main-color);
}
.tab_box .tabs li.disabled a {
  color: #ccc;
  pointer-events: none;
}
.tab_box .tabs li.hidden {
  display: none;
}
.tab_box .tabs li + li {
	margin-left: 5px !important;
}

.tab_box .tabs li a {
	font-size: 1.2rem;
	padding: 0.5rem 1rem 0.3rem;
	color: #9c9c9c;
	min-width: 120px;
	text-align: center;
	font-weight: normal;
	float: left;
	text-decoration: none;
}
.tab_box .tabs li.active a {
	color: #fff;
	cursor: text;
}
.tab_box .tabs li.ui-state-active a i,
.tab_box .tabs li.active a i {
  color: #fff;
}
/* タブ直下のmsgbox */
.tab_box > .msgbox {
  margin-top: 10em;
}



/* 項目種別アイコン
----------------------------------- */
i.field_icon {
  color: #c1c1c1;
  margin-right: 6px;
}
li.field_line:hover i.field_icon {
  color: var(--works-color);
}
th.field_icon,
td.field_icon {
  padding-left: 30px !important;
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 20px;
}
p.field_icon {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: #C1C1C1;
  font-size: 1.4em;

  display: inline-block;
  width: 24px;
  height: 20px;
  vertical-align: middle;
}
th > p.field_icon {
  margin: -2px 5px -2px -4px;
}
td > p.field_icon {
  margin: 0 5px 0 -4px;
}
p.field_icon.icon_name::before {
  content: "\f5b7";
	/* background-image: url(/img/field/name.png); */
}
p.field_icon.icon_number::before {
  content: "\f095";
	/* background-image: url(/img/field/number.png); */
}
p.field_icon.icon_email::before {
  content: "\f0e0";
	/* background-image: url(/img/field/email.png); */
}
p.field_icon.icon_url::before {
  content: "\f0ac";
	/* background-image: url(/img/field/url.png); */
}
p.field_icon.icon_zip::before {
  content: "\e5bb";
	/* background-image: url(/img/field/zip.png); */
}
p.field_icon.icon_pref::before {
  content: "\f277";
	/* background-image: url(/img/field/pref.png); */
}
p.field_icon.icon_add::before {
  content: "\f3c5";
	/* background-image: url(/img/field/add.png); */
}
p.field_icon.icon_pwd::before {
  content: "\e422";
	/* background-image: url(/img/field/pwd.png); */
}
p.field_icon.icon_user::before {
  content: "\f007";
	/* background-image: url(/img/field/user.png); */
}
p.field_icon.icon_group::before {
  content: "\f500";
	/* background-image: url(/img/field/group.png); */
}
p.field_icon.icon_calc::before {
  content: "\f64c";
	/* background-image: url(/img/field/calc.png); */
}
p.field_icon.icon_numbering::before {
  content: "\f0cb";
}
p.field_icon.icon_label::before {
  content: "\f07b";
	/* background-image: url(/img/field/label.png); */
}
p.field_icon.icon_text::before {
  content: "\e1bf";
	/* background-image: url(/img/field/text.png); */
}
p.field_icon.icon_textarea::before {
  content: "\e1d8";
	/* background-image: url(/img/field/textarea.png); */
}
p.field_icon.icon_checkbox::before {
  content: "\f14a";
	/* background-image: url(/img/field/checkbox.png); */
}
p.field_icon.icon_radio::before {
  content: "\f192";
	/* background-image: url(/img/field/radio.png); */
}
p.field_icon.icon_select::before {
  content: "\f150";
	/* background-image: url(/img/field/select.png); */
}
p.field_icon.icon_file::before {
  content: "\f574";
	/* background-image: url(/img/field/file.png); */
}
p.field_icon.icon_date::before {
  content: "\f133";
	/* background-image: url(/img/field/date.png); */
}
p.field_icon.icon_hms::before {
  content: "\f017";
	/* background-image: url(/img/field/hms.png); */
}
p.field_icon.icon_num::before {
  content: "\e1bd";
	/* background-image: url(/img/field/num.png); */
}
p.field_icon.icon_tag::before {
  content: "\23";
	/* background-image: url(/img/field/tag.png); */
}
p.field_icon.icon_color::before {
  content: "\f53f";
	/* background-image: url(/img/field/color.png); */
}
p.field_icon.icon_mylist::before {
  content: "\f02e";
	/* background-image: url(/img/field/mylist.png); */
}
p.field_icon.icon_category::before {
  content: "\f802";
	/* background-image: url(/img/field/category.png); */
}
p.field_icon.icon_apps::before {
  content: "\e1cb";
	/* background-image: url(/img/field/apps.png); */
}
p.field_icon.icon_linkage::before {
  content: "\f06e";
	/* background-image: url(/img/field/linkage.png); */
}


/* タブ型ラジオボタン表示
----------------------------------- */
td.radio_tab {
  padding: 6px !important;
}
.radio_tab_wrap {
	display: flex;
}
.radio_tab input {
	display: none;
}
.radio_tab label{
	display: block;
    float: left;
    cursor: pointer;
    /* width: 80px; */
    margin: 0;
    padding: 7px;
    border-right: 1px solid #c3ccd2;
    background: #dfe5e8;
    color: #555e64;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
    transition: 0.1s;
}
.radio_tab label:first-of-type{
	border-radius: 3px 0 0 3px;
}
.radio_tab label:last-of-type{
	border-radius: 0 3px 3px 0;
    border-right: 0px;
}
.radio_tab input[type="radio"]:checked + label {
	background-color: var(--main-color);
	color: #fff;
}
.radio_tab input[type="radio"]:disabled + label {
    color: #bfbfbf;
    background-color: #f3f3f3;
    cursor: auto;
}


/* 住所セットの表示 */
.type_add .map_link .map_icon {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 15px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 7px;
  margin-left: 10px;
}
.type_add .map_link .no_margin {
  margin: 0;
}
/* 0:座標未取得, 1:座標取得済み */
.type_add .map_link .map_icon.off::before {
    content: '\f5a0';
    color: var(--color-gray);
    pointer-events: none;
}
.type_add .map_link .map_icon.on::before {
    content: '\f5a0';
    color: var(--color-green);
}

.table_list .type_add {
  padding-top: 3px;
  padding-bottom: 3px;
}
.table_list .type_add .address_pn {}
.table_list .type_add .address_pf {
  display: inline-block;
}
.table_list .type_add .address_ct {
  display: inline-block;
}
.table_list .type_add .address_no {
  display: inline-block;
}
.table_list .type_add .address_bd {}
.table_list .type_add .address_ad {
  display: inline-block;
}

.table_detail .type_add td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.table_detail .type_add .address_pn {}
.table_detail .type_add .address_pf {
  display: inline-block;
}
.table_detail .type_add .address_ct {
  display: inline-block;
}
.table_detail .type_add .address_no {
  display: inline-block;
}
.table_detail .type_add .address_bd {}
.table_detail .type_add .address_ad {
  display: inline-block;
}


/* -----------------------------------
*** スマートフォン表示設定
----------------------------------- */
/* iPhone XS Max/XR/11/11 Pro Max-横 */
@media screen and (max-width: 896px) {
  .works_apps #container {
    padding-top: 0;
  }
  .works_apps #main {
    min-width: initial;
  }
  /* アプリ一覧 */
  .app_group {
    height: 100%;
  }
  .app_card .apps_name {
    max-height: initial;
  }
  .app_card .app_card_data {
    flex-wrap: wrap;
    margin: 5px 0;
  }
  .app_card .app_card_rating {
    /* display: none; */
    margin-bottom: 10px;
  }
  .app_card .app_card_pricing {
    /* width: 100%; */
    margin-bottom: 10px;
  }
  .app_card .app_card_rating span,
  .app_card .app_card_pricing {
    font-size: 1.3rem;
  }
  .app_card .apps_plan li {
    margin-top: 4px;
  }

  /* モーダル表示 */
	.fancybox-slide {
		padding: 44px 4px 4px !important;
	}
}

/* iPhone 8/7/6s/6-横 */
@media screen and (max-width: 768px) {
  .app_card {
    width: calc((100% / 2) - 15px);
  }
}

/* スマホ-縦 */
@media screen and (max-width: 480px) {
  .app_card {
    width: calc(100% - 15px);
  }
  .app_card_pricing {
    width: 100%;
    flex: none;
  }
}