@charset "utf-8";


/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

figure {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -------------------------------------------------------------- */

body {
  color: #333;
  font: 12px verdana, "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  background: #fff;
  overflow-x: clip;
  /*
	border-top: 5px solid var(--color-main);
	border-bottom: 5px solid var(--color-main);
	*/
  width: 100%;
}

span.error {
  color: #DC143C;
  font-size: 11px;
}


/* リンク設定
------------------------------------------------------------*/
a {
  color: var(--color-main);
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--color-main) 70%, white);
}

a:active,
a:focus {
  outline: 0;
}


/* 全体
------------------------------------------------------------*/
#wrapper {
  position: relative;
}

#mainarea {
  padding: 0 5px;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

li a {
  display: block;
}

/* リストのリンクはブロックでクリック可能とする */

.hide,
.tdhideOpportunity {
  display: none;
}




button[onclick="alertWWOk();"],
button[onclick="alertWWClose();"] {
  margin-top: 10px;
}


/*************
/* ヘッダー
*************/
h1 {
  font-size: 12px;
  line-height: 1.6;
  font-weight: normal;
}

#header {
  /* overflow-x: hidden; */
  width: calc(100% - var(--topnav-width));
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;

  &.closed-header {
    width: calc(100% - var(--topnav-width-collapse));
  }
}


/*************
/* ロゴ
*************/
#header .logo {

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0px;
  padding-bottom: 8px;
  padding-top: 15px;
  padding-left: 32px;
  padding-right: 10px;


}

.logo a {
  /*
	font-size: 20px;
	*/
  font-weight: bold;
  line-height: 1;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}


.logo span {
  font-size: 12px;
  padding-right: 12px;
  font-weight: normal;
}

.info {
  float: right;
  padding: 20px 0;
}

.tel strong {
  font-size: 20px;
  font-weight: bold;
}

/**************************
/* トップナビゲーション
**************************/
ul#topnav {
  clear: both;
  overflow: hidden;
  margin: 0 auto 0 1px;
  background: var(--color-main);
  border-bottom: var(--color-accent) solid 4px;
}

* html ul#topnav {
  height: 1%;
}

#smart-topmenu {
  display: none;
}

ul#topnav li {
  float: left;
}

ul#topnav a {
  width: 146px;
  font-size: 12px;
  display: block;
  padding: 5px 0 20px 10px;
  color: #fff;
  border-left: 1px solid #fff;
}

ul#topnav li:first-child a {}

ul#topnav li:last-child a {
  width: 145px;
}

ul#topnav li.active a,
ul#topnav a:hover {
  background: var(--color-border);
}

ul#topnav-sub {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  align-items: center;
  padding-left: 32px;
  background: var(--color-accent);

  @media screen and (max-width: 768px) {
    flex-wrap: wrap;
    padding-left: 0;
  }
}


ul#topnav-sub {
  height: 1%;
}

ul#topnav-sub li {
  /* border-left: 1px solid #fff; */
  width: 20%;
  transition: background .1s;

  &:not(&:last-of-type) {
    border-right: 1px solid #fff;
  }

  @media (any-hover: hover) {
    &:hover {
      background: #f09061;
    }
  }

  @media screen and (max-width: 768px) {
    width: 19.5%;
  }
}

ul#topnav-sub a {
  width: 100%;
  font-size: 12px;
  display: block;
  padding: 10px 0 10px 10px;
  color: #fff;

  @media screen and (max-width: 768px) {
    padding: 10px 0 10px 16px;
    max-width: 100%;
    width: auto !important;
  }


}

ul#topnav-sub li:first-child a {
  border: 0;
}

ul#topnav-sub li:last-child a {
  width: 145px;
}

ul#topnav-sub li.active {
  background: #e4895c;
}


/**************************
/* メイン画像（トップページ+サブページ）
**************************/
#mainBanner {
  clear: both;
  line-height: 0;
}

#mainBanner.inner {
  position: relative;
}

#mainBanner img {
  max-width: 100%;
  height: auto;
}

.slogan {
  position: absolute;
  max-width: 100%;
  height: auto;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  line-height: 1.4;
  z-index: 100;
  color: var(--color-main);
  background: url(images/tp.png);
}

.subImg.slogan {
  left: auto;
  right: 10px;
}

.slogan h2 {
  padding-bottom: 5px;
  font-size: 20px;
}

.slogan h3 {
  font-size: 14px;
}



/**************************
/* グリッド
**************************/
.gridWrapper {
  clear: both;
  padding: 0;
  display: flex;
}

td {
  word-break: break-all;
}

#footer .gridWrapper {
  text-align: center;
}


* html.gridWrapper {
  height: 1%;
}

#mainarea .grid {
  float: left;
  background: #f4f4f4;
  border-right: 1px solid #fff;
  padding: 0px;
}

#mainarea .grid div {
  padding: 0px 5px;
}

.grid-100 {
  width: 100%;
}

.grid table {
  width: inherit;
}

.grid table td {
  border-bottom: 1px solid #dbdbdb;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 2px;
}

.colDark,
.colLight {
  padding-bottom: 10px;
  min-height: 300px;

}

.colDark h3,
.colLight h3 {
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background: var(--color-border);
}

.colDark h3 {
  background: var(--color-main);
}

.grid p {
  padding: 6px 10px;
  /* ウェジット */
  border-top: 1px solid #fff;
  border-bottom: 1px solid #dbdbdb;
}

.grid p:first-child {
  border-top: 0;
}

.grid p:last-child {
  border-bottom: 0;
}


.grid ul {
  padding: 5px 10px;
}

#mainarea .grid li {
  padding: 6px 0;
  /* 管理メニュー等 */
  list-style-position: inside;
  list-style-type: none;

  &:not(&:last-of-type) {
    border-bottom: 1px solid #dbdbdb;
  }
}

.grid li:first-child {
  border-top: 0;
}

.grid li:last-child {
  border-bottom: 0;
}

.grid li.active a {
  color: var(--color-accent);
}

.gridWrapper img {
  max-width: 100%;
  height: auto;
}


.w20 {
  width: 20px;
}

.w21 {
  width: 21px;
}

.w22 {
  width: 22px;
}

.w23 {
  width: 23px;
}

.w24 {
  width: 24px;
}

.w25 {
  width: 25px;
}

.w26 {
  width: 26px;
}

.w31 {
  width: 31px;
}

.w32 {
  width: 32px;
}

.w39 {
  width: 39px;
}

.w40 {
  width: 40px;
}

.w45 {
  width: 45px;
}

.w50 {
  width: 50px;
}

.w54 {
  width: 54px;
}

.w60 {
  width: 60px;
}

.w63 {
  width: 63px;
}

.w64 {
  width: 64px;
}

.w69 {
  width: 69px;
}

.w70 {
  width: 70px;
}

.w73 {
  width: 73px;
}

.w74 {
  width: 74px;
}

.w75 {
  width: 75px;
}

.w80 {
  width: 80px;
}

.w84 {
  width: 84px;
}

.w85 {
  width: 85px;
}

.w90 {
  width: 90px;
}

.w94 {
  width: 94px;
}

.w95 {
  width: 95px;
}

.w100 {
  width: 100px;
}

.w103 {
  width: 103px;
}

.w114 {
  width: 114px;
}

.w120 {
  width: 120px;
}

.w121 {
  width: 121px;
}

.w125 {
  width: 125px;
}

.w130 {
  width: 130px;
}

.w134 {
  width: 134px;
}

.w135 {
  width: 135px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w155 {
  width: 155px;
}

.w159 {
  width: 159px;
}

.w170 {
  width: 170px;
}

.w175 {
  width: 175px;
}

.w180 {
  width: 180px;
}

.w185 {
  width: 185px;
}

.w189 {
  width: 189px;
}

.w199 {
  width: 199px;
}

.w200 {
  width: 200px;
}

.w203 {
  width: 203px;
}

.w211 {
  width: 211px;
}

.w219 {
  width: 219px;
}

.w220 {
  width: 220px;
}

.w224 {
  width: 224px;
}

.w225 {
  width: 225px;
}

.w235 {
  width: 235px;
}

.w240 {
  width: 240px;
}

.w250 {
  width: 250px;
}

.w275 {
  width: 275px;
}

.w300 {
  width: 300px;
}

.w320 {
  width: 320px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w440 {
  width: 440px;
}

.w500 {
  width: 500px;
}

.w600 {
  width: 600px;
}

.w750 {
  width: 750px;
}

.w770 {
  width: 770px;
}

.w780 {
  width: 780px;
}



/* フッター内のグリッド(3カラム) */
#footer .grid {
  background: unset;
}

#footer .grid p.logo {
  float: left;
}

#footer .col3 ul {
  margin: 0 0 10px 5px;
}

#footer .col3 li {
  padding: 0 7px 0 5px;
  margin-bottom: 3px;
  list-style: none;
  border-bottom: 0;
  display: inline-block;
  border: 0;
}


/*************
メイン コンテンツ
*************/
section.content {
  margin-bottom: 1px;
  font-size: 14px;

}

* html section.content {
  height: 1%;
}

section.content article {
  padding: 10px;
  overflow: hidden;
  background: #f4f4f4;
}

* html section.content article {
  height: 1%;
}

section.content p {
  margin-bottom: 5px;
}

h3.heading,
#sub .grid h3 {
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background: var(--color-border);
  margin-bottom: 3px;
  line-height: 30px;
}

h3.heading img {
  display: inline;
  padding: 0px 10px 0px 0px;
  width: 20px;
  vertical-align: middle;
}

h4.heading {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
}

#main h2.main-title {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 3px;
  margin-bottom: 5px;
}

#main h3.heading,
#sub .col2 h3 {
  background: var(--color-main);
}

.alignleft {
  float: left;
  clear: left;
  margin: 3px 10px 10px 1px;
}

.alignright {
  float: right;
  clear: right;
  margin: 3px 1px 10px 10px;
}

img.frame,
#gallery img {
  border: 3px solid var(--color-main);
}

#gallery.gridWrapper {
  padding: 0;
}

#gallery.grid {
  border: 0;
  background: none;
}

#gallery img {
  margin: 5px;
}

section#gallery {
  overflow: visible;
}

section#main {
  padding-bottom: 20px;
  width: calc(100% - 355px);
}

section#main1 {
  padding-bottom: 20px;
}

.aligncenter {
  margin: 0 auto;
}

.submitDet {
  float: right;

}

.aligncenter .submit input,
.aligncenter button,
.submitDet {
  padding: 5px 10px;
  font-size: 14px;
  color: #FFF;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 2px 5px 3px -2px rgba(192, 192, 192, 0.8);
  background: #A9A9A9;
}

table.aligncenter {
  padding-top: 6px;
}

a.submitDet {
  display: inline-block;
  float: left;
  color: #FFF;
}

div.right-button {

  float: right;
  margin-right: 3px;
  margin-top: -39px;
  margin-bottom: 0px;
  height: 30px;
  width: 30px;
}

div.right-button button {

  padding: 3px 6px;
  font-size: 12px;
  color: #FFF;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 2px 5px 3px -2px rgba(192, 192, 192, 0.8);
  background: #A9A9A9;

}

div.right-button button:hover {
  box-shadow: 1px 2px 2px -1px rgba(192, 192, 192, 0.8);
  background: #898989;
}

a.submitDet:hover {
  float: left;
  color: #FFF;
}

.aligncenter .submit input:hover,
.aligncenter button:hover,
.submitDet:hover {
  box-shadow: 1px 2px 2px -1px rgba(192, 192, 192, 0.8);
  background: #898989;
}

.table .submit input,
.table button,
.change-d button,
.customSetButton {

  padding: 3px 4px;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  border-radius: 4px;
  box-shadow: 2px 5px 3px -2px rgba(192, 192, 192, 0.8);
  background: #A9A9A9;
}

.change-d button {
  height: 30px;
}

.table .submit input:hover,
.table button:hover,
.change-d button:hover {
  box-shadow: 1px 2px 2px -1px rgba(192, 192, 192, 0.8);
  background: #898989;
}



button.close {

  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0
}

.dialog-close-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #FFF;
  padding: 2px 6px;
  z-index: 99991;
  font-weight: bold;
  font-size: 24px;
  background: transparent;
  border: none;
}

.dialog-close-button:hover {}

#dialogView_wrapper {
  position: fixed;
  /*
	z-index: 100001;
	*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /*
	background-color: rgba(0, 0, 0, 0.5); 
	*/
}

#dialogView_background {
  display: none !important;
}

#dialogView {
  width: 50%;
  height: 90%;
  background-color: #f3f3f3;
  padding: 0;
  margin: 0;
  border: solid 1px #000000;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  box-sizing: border-box;
  z-index: 99995 !important;
}

@media screen and (max-width: 768px) {
  #dialogView {
    width: 100%;
    height: 100%;
  }
}

#dialogView_wrapper,
#dialogView_background {

  -webkit-tranzition: all 0.3s;
  -moz-tranzition: all 0.3s;
  transition: all 0.3s;
}

#dialogView h3.top-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 10px;
  background-color: var(--color-border);
  color: white;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}

#dialogView .submit-form {
  background-color: var(--color-border);
  margin: 0;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  padding: 2px 0 3px 0;


}

#dialogViewDiv {
  height: calc(100% - 120px);
  overflow: auto;
  margin: 51px 0 0 0;
  padding: 10px;
}

.dialogView_footer {
  background: var(--color-border);
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  padding: 0;


}

#dialogView .save-message {
  margin-top: -10px;
}


.m10 {
  margin: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.listWindow {

  margin: 0;
  height: 105px;
  width: 90%;
  display: none;
  overflow: hidden;
}

.listWindow .close {


  float: right;
  height: 10px;
  padding: 0;
  margin: 0;
  font-size: 9px;
  cursor: pointer;
}

.listWindow .close button {
  padding: 1px 3px;
  margin: 0;
}

.listWindow .list {

  background: #DFDFDF;
  border: solid 2px #000000;
  padding: 1px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);
  height: 80px;
  overflow: auto;
  margin: 0px 0 0 0;
  padding: 5px;
}

.form-detail {

  background: #F5F5F5;
  border: solid 2px #000000;
  padding: 1px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);
  overflow: auto;
  margin: 0px 0 0 0;
  padding: 5px;

}

.form-detail .close {

  float: right;
  padding: 5px;
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -2px;
}

.form-index {

  /* bring your own prefixes */

  top: 50%;
  left: 50%;

  height: auto;

  transform: translate(-50%, -50%);
  -ms-transform: translate(-100%, -100%);
  background: #F5F5F5;
  border: solid 2px #000000;
  padding: 1px;
  width: auto;
  min-width: 300px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);
  overflow: auto;
  margin: 0px 0 0 0;
  padding: 0px 0px 15px 0px;
  position: fixed;

}

.form-index form {
  margin-top: 40px;
}

.form-index .close-dialog {
  padding: 5px;
  margin: 0;
  font-size: 15px;
  cursor: pointer;
  top: 4px;
  right: 7px;
  position: absolute;
}

.form-index .close-dialog button {
  -webkit-appearance: none;
  padding: 3px 6px;
  font-size: 18px;
}

.listMenu {
  z-index: 100000000;
  background: #DFDFDF;
  border: solid 2px #000000;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);
  overflow: auto;
  /*
	max-height:80px;
	*/
  width: 200px;
  display: none;
  position: absolute;
  top: 95px;

}


.listWindowAnal {

  margin: 0;

  width: 90%;
  display: none;
  overflow: hidden;

}


.listWindowAnal table {


  border: solid 2px #000000;
  padding: 1px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);

  overflow: auto;
  margin: 0px 0 0 0;
  padding: 5px;

}

.listWindowAnal .close {
  float: right;
  height: 20px;
  padding: 0;
  margin: 0;
  font-size: 20px;
  cursor: pointer;
}

.listWindowAnal .close button {
  padding: 1px 3px;
  margin: 0;
}

.red {
  color: red;
}

.pank {
  display: none;
}

.align-right {
  display: none;
}

#searchDialogForm {
  display: none;
  position: fixed;
  top: 15px;
  right: 80px;
  z-index: 777777777;
  width: 250px;
}

.otherDialogForm,
.firstDialogForm {

  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999995 !important;
  width: 50%;
  height: 90%;
  transform: translate(-50%, -50%);
  background-color: #f3f3f3;
  padding: 0px;
  margin: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 1px #1f1b1b;
  overflow: hidden;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {

  .otherDialogForm,
  .firstDialogForm {
    width: 100%;
    height: 100%;
  }
}


.otherDialogForm .viewForm,
.firstDialogForm .viewForm {
  height: calc(100% - 120px);
  overflow: auto;
  margin: 51px 0 0 0;
  padding: 10px;
}

.otherDialogForm a.close,
.firstDialogForm a.close,
.form-index .close {

  position: fixed;
  top: 0px;
  right: 15px;

  color: #FFF;
  padding: 1px 6px;
  z-index: 9999992;
  font-weight: bold;
  font-size: 24px;
}

.otherDialogForm h3.top-heading,
.firstDialogForm h3.top-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}


.otherDialogForm .submit-form,
.firstDialogForm .submit-form {
  background-color: var(--color-border);
  margin: 0;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  padding: 2px 0 3px 0;
  overflow: hidden;
}

.listWindow2 {

  display: none;
  position: fixed;
  top: 0;
  right: 0px;
  width: 420px;
  height: 100%;
  background-color: #FFF8DC;
  color: #000;
  padding: 10px 10px;
  padding-top: 50px;

  border: 3px solid #CCC;
  z-index: 99999999;
  -webkit-tranzition: all 0.3s;
  -moz-tranzition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 700px) {
  .listWindow2 {
    width: 95%;

  }
}

.listWindow2 .close {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 10px;
  padding: 0;
  margin: 0;
  font-size: 9px;
  cursor: pointer;
}

.listWindow2 .list {
  background-color: #FFF8DC;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 90%;
  overflow: auto;
  margin: 7% 0 0 0;
  padding: 3px;
}

.listWindow2 .list a {
  margin-bottom: 10px;
  padding: 0;
  font-size: 12px;
}

.overflow_none {
  overflow: hidden;
}

.newdelete {
  top: 0px;
  left: 0%;
  position: fixed;
  width: 100%;
  height: auto;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  z-index: 9999999;
  overflow: hidden;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAoCAYAAAAPOoFWAAAAGXRFW…lIN+2qKRyCND0bhqSYCyTB3CAOc4WusBEIpkeBuPgJMAAX8Hs1NfqHRgAAAABJRU5ErkJggg==) left top repeat-x scroll rgb(242, 242, 242);
  border-radius: 0px 0px 5px 5px;
  border-bottom: 2px solid rgb(204, 204, 204);
  border-left: 2px solid rgb(204, 204, 204);
  border-right: 2px solid rgb(204, 204, 204);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  border-top-color: rgb(204, 204, 204);
  color: rgb(68, 68, 68);
  display: none;
  text-align: center;
}

.excelImp {
  z-index: 5555555;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-100%, -100%);
  background: #F5F5F5;
  border: solid 2px #000000;
  padding: 1px;
  width: auto;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 2px 7px 5px 2px rgba(0, 0, 0, 0.6);
  position: fixed;
  display: none;
}

.seachDialog {
  height: auto;
  padding: 1px;
  width: 100%;
  position: relative;
  display: none;
}

.excelImp table {
  margin: 50px 20px;
}

.widget-search {
  display: none;
  border: 1px solid #000;
  background-color: #CCC;
  z-index: 99998;
  padding: 10px;
  margin: 0;
}

span.label-header {
  font-size: 20px;
  margin-left: 0px;
  padding-right: 12px;
  color: red;
}

span.label-companyname {
  font-size: 20px;
  margin-left: 0px;
  padding-right: 12px;
}

div.label-footer {
  font-size: 14px;
  float: right;
  margin-top: -35px;
  margin-right: 25px;
}

.has-right-bar {
  .wrapper-right {
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
  }
}

.right-side-view {
  display: none;
  width: 450px;
  height: 100%;
  background-color: #fdfdfd;
  color: #000;
  border: 3px solid #CCC;
  z-index: 99997;

  &.new {
    display: block;
    position: fixed;
    width: clamp(330px, 25vw, 450px);
    border: none;
    box-shadow: 1px 1px 1px 1px #e9e9e9;

    .header-tab {
      height: 100%;
      display: flex;
      align-items: flex-end;
      gap: 6px;
      padding-left: 12px;

      .header-tab-item {
        cursor: pointer;
        padding: 2px 10px 0;
        padding-bottom: 0;
        border-radius: 6px 6px 0 0;
        line-height: 1.7;
        box-shadow: 0px 3px 0px 0px #ddd;

        &.is-active {
          background-color: #FDFDFD;
          box-shadow: 0px 2px 0px 0px #1f1b1b;
        }

        @media (any-hover: hover) {
          &:hover {
            background-color: #FDFDFD;
            box-shadow: 0px 3px 0px 0px #FDFDFD;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 600px) {
  .right-side-view {
    width: 100%;
  }
}

.right-side-view .head-side {

  background-color: #DDD;
  height: 28px;
  padding-bottom: 3px;
  width: 100%;
  color: #000;
  font-size: 13px;
  margin: 0;
  text-align: center;
}

.right-side-view .head-side p {
  padding-top: 10px;
}

.right-side-view .head-side a.sidedelete {
  position: absolute;
  right: 15px;
  top: 2px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  padding: 0;
  margin: 0;
}

.right-side-view .head-side a.sidesearch {
  position: absolute;
  right: 54px;
  top: 7px;
  text-decoration: none;

}


.right-side-view .head-side a.sidemenu {
  position: absolute;
  left: 11px;
  top: 0px;
  text-decoration: none;

}


.right-side-view .form-side {
  position: absolute;
  left: 10px;
  bottom: 12px;
  width: 100%;
  height: 15%;
  overflow-y: auto;
}

.right-side-view .form-side textarea {
  width: 285px;
  height: 50px;
}

.right-side-view .form-side button {
  margin-bottom: 0px;
}

.right-side-view .view-side {
  padding: 15px 10px 15px 15px;
  margin-top: 0px;
  height: calc(100% - 175px);
  color: #000;
  overflow-y: auto;

  &::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
  }

  &::-webkit-scrollbar-track {
    background-color: transparent;
  }


  @media (any-hover: hover) {
    &:hover {
      &::-webkit-scrollbar {
        width: 8px;
      }

      &::-webkit-scrollbar-thumb {
        visibility: visible;
        background-color: #ccc;
        border-radius: 100px;
      }

      &::-webkit-scrollbar-track {
        margin-top: 4px;
        margin-bottom: 4px;
      }
    }
  }
}

.footer-side {
  position: fixed;
  bottom: 0;
  right: 3px;

  background-color: #DDD;
  height: 40px;
  width: 50%;
}

@media screen and (max-width: 600px) {
  .footer-side {
    width: 100%;
    height: 40px;
  }
}

.icon-right-side-link {

  display: table-cell;
  width: 30px;
  height: 30px;
  padding: 0px;

  padding-left: 9px;
  cursor: pointer;
  font-size: 8px;
  margin-right: 20px;
  margin-left: 10px;
  color: var(--color-main);
  font-weight: bold;
  text-align: center;


}

.icon-right-side-link-2 {
  padding: 0px;
  padding-left: 9px;
  cursor: pointer;
  z-index: 99999;
  font-size: 8px;
  margin-right: 20px;
  margin-left: 10px;
  color: var(--color-main);
  font-weight: bold;
  text-align: center;
}

.right-side-top {
  cursor: pointer;
  width: 41px;
  height: 42px;
  background-color: #FDFDFD;
  color: #000;
  border: 1px solid #CCC;
  font-size: 27px;

  margin-left: 5px;
  margin-right: 5px;
  border-radius: 7px;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.todo-right-side-style {
  background-color: #f1f9fc;
  border: 2px solid #CCC;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.1);
  word-break: break-all;
}

.todo-right-side-style-footer {
  margin-top: 10px;
  border-top: 1px solid #CCC;
  width: 100%;
  padding: 10px 0px 1px 0px;
  min-height: 15px;

}

.todo-right-side-style-footer-link {
  float: right;

}

#timeline-right-size-search {
  display: none;
  position: absolute;
  top: 40px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  min-height: 100px;
  border: 1px solid #000;
  background-color: #d9d9d9;
  z-index: 99998;
  padding: 12px;
  padding-bottom: 24px;
  margin: 0;
}

#right-size-menu {
  display: none;
  position: absolute;
  top: 41px;
  width: calc(100% - 55px);
  left: 10px;
  min-height: 50px;
  border: 1px solid #000;
  background-color: #DEDEDE;
  z-index: 99999;
  padding: 10px;
  margin: 0;
}

.sidetitledate {
  font-size: 20px;
  padding: 10px 0;
  display: block;
}

.dialogdetailotherinfo {

  font-weight: bold;
}

.vertical-middle {
  vertical-align: middle !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

@media (max-width: 575.98px) {
  .u-fs-13-sm {
    font-size: .87rem !important;
  }
}

.u-fs-14 {
  font-size: 14px !important;
}

@media (max-width: 575.98px) {
  .u-fs-14-sm {
    font-size: .93rem !important;
  }
}

.u-fs-15 {
  font-size: 15px !important;
}

@media (max-width: 499.98px) {
  .u-fs-15-sm {
    font-size: 1rem !important;
  }
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.w-fit {
  width: fit-content;
}

.offcanvas-fill {
  width: 100% !important;
}

.offcanvas-700 {
  max-width: 700px !important;
  width: 100% !important;
}

.offcanvas-600 {
  max-width: 600px !important;
  width: 100% !important;
}

.offcanvas-500 {
  width: 500px !important;

  @media (max-width: 575.98px) {
    width: 100% !important;
  }
}

.offcanvas-450 {
  width: 450px !important;

  @media (max-width: 449.98px) {
    width: 100% !important;
  }
}

.offcanvas-btn {
  border: 1px solid var(--color-main);
  padding: 2px 24px 2px 16px !important;
  border-radius: 16px;

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
      color: var(--color-main);
      background: #f4f4f4;
    }
  }

  &.no-icon {
    padding: 2px 16px !important;
  }
}

.offcanvas-btn-sm {
  border: 1px solid var(--color-main);
  border-radius: 16px;
  padding: 1px 18px 0 11px !important;

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
      color: var(--color-main);
      background: #f4f4f4;
    }
  }
}

.offcanvas-btn-xs {
  border: 1px solid var(--color-main);
  border-radius: 16px;
  padding: 0 12px 0 8px !important;

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
      color: var(--color-main);
      background: #f4f4f4;
    }
  }
}

.offcanvas-close-wrapper {
  position: sticky;
  top: 0;
  right: 16px;
  z-index: 100;
  background: #E9ECEF;

  .btn-close {
    margin-top: 12px;
  }
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

/* ページ全体のスクロールを防止 */
body.offcanvas-open {
  overflow: hidden;
}

.offcanvas-maximized {
  width: 100% !important;
  max-width: initial !important;

  .date,
  .date-title {
    max-width: 180px;
  }

  author,
  .author-title {
    flex: 1;
  }

  .other,
  .other-title {
    margin-left: auto;
  }

  @media (min-width: 992px) {
    .offcanvas-wrapper {
      display: flex;
      gap: 20px;

      .offcanvas-sidebar {
        width: 25%;
        min-width: 340px;
      }

      .offcanvas-contentarea {
        flex: 1;
        margin-top: 8px;
      }
    }
  }

  .offcanvas-contentarea.row>* {
    padding-inline: 6px;
  }

  .maximized-none {
    display: none;
  }
}

.offcanvas-minimized {
  .minimized-none {
    display: none;
  }

  .offcanvas-sidebar {
    width: 100% !important;
  }
}

.btn-maxsize {
  background: transparent;
  color: #000;
  opacity: .6;
  padding: 0;
  border: 0;
  margin-top: 2px;
  max-height: 18px;
  max-width: 18px;

  .icon {
    font-size: 20px;
    font-variation-settings:
      'wght' 300
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 1;
    }
  }
}

.collapse {
  display: none;
}

.collapse-content {
  transition: height 0.1s;
}

.collapse.show {
  display: block;
}

.collapsing {
  position: relative;
  height: auto;
  overflow: hidden;
  transition: clip-path 0.35s ease;
}

.detail-wrapper {
  .detail-sidebar {
    min-width: 340px;
  }

  .detail-contentarea {

    .date,
    .date-title {
      min-width: 160px;
    }
  }
}

.material-symbols-outlined {
  &.icon-w400 {
    font-variation-settings:
      'wght' 400
  }

  &.icon-w300 {
    font-variation-settings:
      'wght' 300
  }
}

.listen-table {
  width: 100%;
  border-collapse: separate;

  tr {
    &:first-of-type {
      background: var(--color-main);
      color: #fff;
    }

    th {
      padding: 8px 5px;
    }

    td {
      padding: 8px 5px;
      border-bottom: 1px solid #ddd;
    }
  }
}

.x-scroll {
  overflow-x: auto;

  .table_v3, .table_ver2 {
    width: 100%;

  }

}

@media (max-width: 1399.98px) {
  .x-scroll {
    .table_v3, .table_ver2 {
      width: 850px;
    }
  }
}

input[type="date"] {
  position: relative;
  min-width: 168px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}

.text-underline {
  text-decoration: underline;
}

.offcanvas {
  z-index: 1045;
}

.offcanvas-backdrop {
  z-index: 1044;
}

.btn-hover-dark {
  @media (any-hover: hover) {
    &:hover {
      background: #ebebeb !important;
    }
  }
}

.btn-form-clear {
  position: absolute;
  top: 5px;
  right: 9px;
  padding: 0;
  border: 0;
  background-color: initial;
  width: fit-content;
  line-height: 1;
  z-index: 1000;
}

.list-pagination {
  .pagination {
    display: flex;
    gap: 8px;
  }

  li {
    border: 1px solid #e7e7e7;

    a {
      padding: 10px 14px;
      border-radius: 3px;
      color: #A9A9A9;

      @media (any-hover: hover) {
        &:hover {
          background: #a7dbf0;
          color: var(--color-main);
        }

      }
    }

    &.active {
      a {
        cursor: default;
        pointer-events: none;
        border: 1px solid #e7e7e7;
        background: #e7e7e7;
        color: #A9A9A9;
        background: #a7dbf0;
        color: var(--color-main);
      }
    }
  }
}

.flex-center {
  align-items: center;
  justify-content: center;
}