/************************** common ***************/
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
/**
	min-width: 1280px;
**/
}
.container {
/***
  width: 825px;
***/
}
.min {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝L", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
img {
  max-width: 100%;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
  word-break: break-all;
}
a {
  transition: .5s;
  text-decoration: none;
  color: inherit;
}
a:focus, *:focus {
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.5;
  color: inherit;
}
p, h2, h3 {
  color: #333;
}
body {
  margin-top: 110px;
}
/** font-size **/
.fontS {
  font-size: 12px;
}
.fontM {
  font-size: 14px;
}
.fontMM {
  font-size: 16px;
}
.fontL {
  font-size: 18px;
}
.fontLL {
  font-size: 26px;
}
/** border **/
.gray_border5 {
  border-bottom: 5px solid #F2F2F2;
}
/** bg **/
.blue_bg {
  background: #F6F9FC;
}
.shadow_box {
  box-shadow: rgba(100, 100, 111, 0.15) 2px 2px 4px 1px;
  overflow: hidden;
}
.radius5 {
  border-radius: 5px;
}
/** ttl **/
/** color **/
.gray_fc {
  color: #7B8796;
}
.error_txt {
  color: #DE3D3D;
}
.message_txt {
  color: #28a745;
}
/** btn **/
.btn_pattern01 {
  background-color: #00A7DB;
  border-color: #00A7DB;
  color: #fff;
  padding: 10px 30px;
  transition: .5s;
  border-radius: 4px;
  white-space: nowrap;
}
.btn_pattern01:hover {
  color: #fff;
}

.btn_pattern02{
  background-color: #DBDBDB;
  border-color: #DBDBDB;
  color: #333;
  padding: 10px 30px;
  transition: .5s;
  border-radius: 4px;
  white-space: nowrap;
}

.btn_right{
  float:right;
  padding: 5px 30px;
}
.btn_area {
  display: flex;
}
.btn_area.beside3 {
  display: flex;
  justify-content: space-between;
}
.btn_area div {
  padding-right: 30px;
}
.btn_area.beside3 div {
  padding-right: 0;
}
.btn_area div:last-child {
  padding-right: 0;
}
.prev_btn a, .next_btn a, .preview_btn a, .del_btn a {
  display: block;
  width: 255px;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
}
.prev_btn a {
  background: #DBDBDB;
  color: #333333;
}
.next_btn a {
  background: #FF8D2C;
  color: #fff;
}
.preview_btn a {
  background: #333333;
  color: #fff;
}
.del_btn a,
.del_btn_red {
  background: #FF3333;
  color: #333333;
}

.btns a{
	width:200px;
}

/** fadein **/
/** header **/
.header_fix {
  position: fixed;
  top: 0;
  width: 100%;
/***
	min-width: 1280px;
***/
  background: #fff;
  z-index: 999;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 8px 0px;
}
.logo_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 40px;
  border-bottom: 1px solid #EBEBEB;
}
.logo_area ul li {
  height: 25px;
}
.logo_area ul li:first-child {
  padding-right: 45px;
}
.logo_area ul, .nav_area ul {
  display: flex;
  align-items: center;
}
.nav_area ul li .menu {
  padding: 15px 0;
}
.nav_area ul li .menu span {
  border-right: 1px solid #EBEBEB;
  padding: 5px 35px;
}
.nav_area ul li {
  color: #00A7DB;
  position: relative;
}
.nav_area ul li.active::after {
  content: "";
  position: absolute;
  background: #00A7DB;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  z-index: 999;
}
.nav_area ul li {
  position: relative;
  cursor: pointer;
}
.nav_area ul li .contents {
  position: absolute;
  top: 51px;
  left: 0;
  background: #fff;
  border: 1px solid #EDEDED;
  height: auto;
  padding: 20px 15px;
  display: none;
}
.nav_area ul li .contents a {
  display: block;
  padding-bottom: 20px;
  white-space: nowrap;
  color: #333;
}
.nav_area ul li .contents a.active {
  color: #00A7DB;
}
.nav_area ul li .contents a:last-child {
  padding-bottom: 0;
}
/** サイドメニュー **/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  position: fixed;
  z-index: 99;
  top: 110px;
  right: -330px;
  width: 340px;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
  box-shadow: rgba(100, 100, 111, 0.1) -7px 0px 8px 0px;
}
.open #g-nav {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
.open #g-nav #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 340px;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*メニュー内のレイアウト設定*/
#g-nav .submenu_link {
  display: flex;
  align-items: center;
}
#g-nav .submenu_link .txt_area {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#g-nav .submenu_link .txt_area .num span {
  background: #00A7DB;
  color: #fff;
  border-radius: 100px;
  padding: 0px 10px;
}
/*========= ボタンのためのCSS ===============*/
#g-nav .side_btn {
  position: relative;
  height: 100vh;
  padding: 40px 15px;
}
#g-nav .side_btn .openbtn1 {
  position: absolute;
  left: -30px;
  top: 40%;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  cursor: pointer;
  width: 34px;
  height: 55px;
  background-image: url("../img/side_btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}
/*×に変化*/
.openbtn1 span {
  display: block;
  transition: all .4s;
  position: relative;
}
.openbtn1 span:before {
  position: absolute;
  content: "";
  top: 24px;
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
.open .openbtn1 span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
/** contents **/
.main_board {
  width: 100%;
/***
	min-width: 1280px;
***/
  transition: .5s;
}
.open .main_board {
/***
  width: 73%;
***/
}
.dash_box .apexcharts-toolbar {
  display: none;
}
.dash_box {
  position: relative;
}
.dash_box .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.dash_box .close_btn span {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}
.dash_box .close_btn span::before, .dash_box .close_btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 1px;
  height: 15px;
  background: #333;
}
.dash_box .close_btn span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.dash_box .close_btn span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.dash_box .table_area {
  margin-left: 10px;
}
.dash_box ul.text_list {
  display: flex;
  padding-left: 15px;
}
.dash_box ul.text_list li {
  padding-right: 10px;
  margin-bottom: 10px;
}
.dash_box ul.text_list li:last-child {
  margin-bottom: 0px;
}
.dash_box ul.text_list.alert_icon {
  position: relative;
}
.dash_box ul.text_list.alert_icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #DE3D3D;
  width: 7px;
  height: 7px;
  border-radius: 20px;
}
.dash_box .scroll_area {
  max-height: 80px;
  overflow-y: scroll;
}
.dash_box .swiper-button-next, .dash_box .swiper-button-prev {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  -webkit-filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
}
.apexcharts-canvas {
    margin: 0 auto;
}
.apexcharts-text tspan {
    font-size: 9px;
}
.apexcharts-pie {
    transform: scale(.65);
}
.apexcharts-datalabels {
    display: none;
}
.apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
    line-height: 1;
}
.apexcharts-legend.apexcharts-align-center.apx-legend-position-right {
}
.help_btn {
  cursor: pointer;
}
.help_box {
  border: 1px solid #DBDBDB;
  padding: 15px;
  line-height: 21px;
  display: none;
}
/* form_area */
.form_area .form-control, .form_area .custom-select {
  border: 1px solid #F1F1F6;
  font-size: 12px;
  word-break: break-all;
}

.form-control{
  min-height: calc(2.25rem + 2px);
  height:auto;
}

.form_area .btn.btn_pattern01:hover {
  color: #fff;
  opacity: 0.5;
}
.form_area .required {
  background: #DE3D3D;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  padding: 0 3px;
  margin-left: 3px;
}
.form_area .prefectures .form-check {
  width: 65px;
  margin-bottom: 10px;
  margin-right: 7px;
}
.thumbnail_select {
  position: relative;
  display: table;
}
.thumbnail_select button.close_btn {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 9;
  cursor: pointer;
  background: none;
  box-shadow: none;
  border: none;
}
.thumbnail_select .img_area {
  position: relative;
  width: 160px;
  height: 109px;
  overflow: hidden;
  box-shadow: 0 0 6px #ccc;
}
.form_area .thumbnail_select .img_area img {
  position: absolute;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ui-widget.ui-widget-content {
  z-index: 99 !important;
  display: none;
}
.form_area #content1_class, .form_area #content2_class {
  display: none;
  clear: both; /* floatを解除 */
  overflow: hidden;
}
.form_area label.form-check-label {
  vertical-align: middle;
}
.sbh1, .sbh2 {
  display: none;
}
input[type="radio"]:checked#sbh1 ~ div.sbh1 {
  display: block;
}
input[type="radio"]:checked#sbh2 ~ div.sbh2 {
  display: block;
}
#thumbnail {
  height: 100px;
  max-width: 100px;
  margin: 10px;
  border: solid thin lightgray;
  border-radius: 5px;
}
/* 一覧ページ */
.detail_sum_area {
  min-width: 880px;
}
.detail_sum_area .ttl_list {
  color: #ACB8C7;
  display: flex;
  align-items: center;
}
.detail_sum_area .ttl_list li {
  text-align: center;
  padding: 0 10px;
}
.detail_sum_area ul.detail_link {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px 0;
  border-radius: 5px;
  margin-bottom: 5px;
}
.detail_sum_area .detail_link li {
  padding: 0 4px;
}
.detail_sum_area .btn_pattern01 {
  padding: 10px 20px;
}
.tab_area {
  background: #E6EBF0;
}
.tab_area_in {
  background: #F6F9FC;
}

.tab_area ul.tab_list {
  display: flex;
  font-size: 14px;
}
.tab_area ul.tab_list li {
  position: relative;
}
.tab_area ul.tab_list li a.tab_innner, .tab_area ul.tab_list li p {
  display: block;
  background: #00A7DB;
  color: #fff;
  min-width: 100px;
  padding: 12px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  margin-right: 5px;
}
.tab_area_in ul.tab_list li a.tab_innner, .tab_area_in ul.tab_list li p {
  border-radius: 5px;
}
.tab_area ul.tab_list li.active a.tab_innner {
  background: #F6F9FC;
  color: #333;
}
.tab_area_in ul.tab_list li.active a.tab_innner {
  border:1px solid #333;
}
.tab_area ul.tab_list li a.tab_innner:hover {
  opacity: inherit;
}
.tab_area ul.tab_list li:last-child p {
  min-width: 50px;
}
.tab_area ul.tab_list li .contents {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border: 1px solid #EDEDED;
  padding: 20px 15px 0 15px;
  z-index: 99;
  display: none;
}
.tab_area ul.tab_list li .contents a {
  display: block;
  white-space: nowrap;
  margin-bottom: 20px;
}
.tab_area ul.tab_list li .contents a.active {
  color: #00A7DB;
}
@media (max-width: 1350px) {
  .open .main_board {
/***
    width: 880px;
***/
  }
}
@media (max-width: 992px) {}

.band{
	margin-bottom: 10px;
	border-bottom: 2px solid #b4d7fb;
	width: 100%;
	padding-bottom: 5px;
}

.center{
  text-align: center;
}
.right{
  text-align: right;
}

/*モーダルを開くボタン*/
.modal-open{
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index:20;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
.modal-wide{
	max-width: 90%;
}
.modal-scroll{
	max-height: 300px;
	overflow: auto;
	margin-bottom:10px;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}
.modal-content p{
	margin-bottom:10px;
}

/* 幅設定 */
.width20p{
	width:20%;
	display:inline;
}
.width30p{
	width:30%;
	display:inline;
}
.width40p{
	width:40%;
	display:inline;
}
.width50p{
	width:50%;
	display:inline;
}
.width60p{
	width:60%;
}
.width70p{
	width:70%;
}
.width80p{
	width:80%;
}
.width90p{
	width:90%;
}
.width100p{
	width:100%;
}
.div-border{
	border:1px solid #333;
	border-radius: 5px;
	padding:10px;
}
.mt10{
	margin-top:10px;
}
.mt15{
	margin-top:15px;
}
.mt20{
	margin-top:20px;
}
.mt30{
	margin-top:30px;
}
.ml10{
	margin-left:10px;
}
.ml15{
	margin-left:15px;
}
.ml20{
	margin-left:20px;
}
.ml30{
	margin-left:30px;
}
.mr10{
	margin-right:10px;
}
.mr15{
	margin-right:15px;
}
.mr20{
	margin-right:20px;
}
.mr30{
	margin-right:30px;
}
.mb10{
	margin-bottom:10px;
}
.mb15{
	margin-bottom:15px;
}
.mb20{
	margin-bottom:20px;
}
.mb30{
	margin-bottom:30px;
}


.pagenation{
	width:100%;
	font-size: 14px;
}

.pagenation span{
	display:inline-block;
	width:25px;
	border:1px solid #000;
	text-align:center;
}

.pagenation span.current{
	background-color:#00A7DB;
	color:#fff;
}

.linecnt{
	display:inline-block;
	width:200px;
}

.pagemove{
	display:inline-block;
	width:620px;
	text-align:center;
}

.rtn_div{
	width:100%;
}
.detail_title{
	width:100%;
	display: flex;
	border-bottom:1px solid #999;
}
.detail_type{
	width:50%;
}
.detail_time{
	width:50%;
	text-align:right;
	padding-right:10px;
}

.btn_small a{
	width:170px;
}

.omit{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bold{
	font-weight:bold;
}

.color_black{
	color:black !important;
}
.color_red{
	color: #DE3D3D !important;
}
.color_orange{
	color: #FF8D2C !important;
}

.chat-div{
	border-bottom: 1px dashed #ccc;
}
.chat-area{
  display: flex;
}
.chat-send{
	flex-basis:15%;
	max-width:100px;
}
p.chat-message{
	padding-left:1em;
	position:relative;
	flex-basis:85%;
}
p.chat-message:before{
	content:" > ";
	position:absolute;
	left:0;
	top:0;
}
.underline{
	text-decoration: underline;
}

/*  */
.user_info{
	margin: 10px auto;
	width:90%;
	padding:0px 10px;
}

.user_info .col-10{
	padding-left:5px;
	display: flex;
	border-bottom: 1px solid #ccc;
}

.user_info .title{
	white-space:nowrap;
	margin-right:10px;
}
.user_info .title_name{
	white-space:nowrap;
	margin-left:10px;
	margin-right:10px;
}

.user_info .value{
	word-break: break-all;
}
.user_info .value_name{
	word-break: break-all;
}

.height60{
	height: 60px;
}


.add_table
,.list_table{
	width:90%;
	margin:0px auto;
}
.add_table th,.add_table td
,.list_table th,.list_table td{
	border:1px solid #000;
	padding:10px;
}
.add_table .list_td{
	display:none;
}
.list_table .add_td{
	display:none;
}
#master-tbody tr:first-child {
	display: none;
}
.upListDummy,.downListDummy{
	display:none;
}

#master-tbody tr:nth-child(2) .upList {
	display: none;
}
#master-tbody tr:nth-child(2) .upListDummy {
	display: inline;
}

#master-tbody tr:last-child .downList {
	display: none;
}
#master-tbody tr:last-child .downListDummy {
	display: inline;
}

.list_table #master-tbody tr:hover
,.add_table tbody tr:hover{
	background-color:#c6eaf5;
}
input[type="text"].form-control
,select.custom-select
,select.form-control
,textarea.form-control{
  border: 1px solid #787878 !important;
}
.tablecell{
    padding: 20px;
    vertical-align: middle;
    display: table-cell;
    background-color:#fff;
}

.form-in-col-outer .form-in-col{
	display:inline-block;
	width:30%;
}
.inlineblock{
	display:inline-block;
}
.overlogo{
	height: 60px;
	width: 185px;
	text-align: right;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #ff0000;
	font-weight: bold;
}
