@charset "utf-8";

.fit-content {
  width: fit-content;
}

.h-fit-content {
  height: fit-content;
}
/* =============================================
  d-flex
============================================= */
/* 左寄せ */
.flex-justify-start {
  display: flex;
  justify-content: flex-start;
}

/* 右寄せ */
.flex-justify-end {
  display: flex;
  justify-content: flex-end;
}

/* 左右余白均等 */
.flex-justify-space-around {
  display: flex;
  justify-content: space-around;
}

/* 両端配置 左右余白均等*/
.flex-justify-space-between {
  display: flex;
  justify-content: space-between;
}

/* =============================================
  タグ設定
============================================= */
a {
  color: #444444;
  text-decoration: none;
}

* {
  font-family: 'メイリオ', Meiryo, Arial !important;
}

footer {
  position: sticky;
  top: 100vh;
  width: 100%;
  height: 80px;
  background: white;
}

.form label {
  display: block;
  text-wrap: nowrap;
}

.form input {
  display: block;
}

body {
  /*  overflow-x: hidden; */
}

/* =============================================
  共通設定
============================================= */
.form-container {
  background-color: white;
  border-radius: 10px;
  padding-top: 2em;
  padding-bottom: 1em;
  padding-left: 15%;
  padding-right: 15%;
}

.form {
  margin-top: 5em;
}

.header {
  width: 100%; /* ヘッダーの横幅を指定する */
}

.header-menu {
  position: absolute; /* ヘッダーを固定する */
  top: 0; /* 上部から配置の基準位置を決める */
  left: 0; /* 左から配置の基準位置を決める */
  width: 100%; /* ヘッダーの横幅を指定する */
  height: 70px; /* ヘッダーの高さを指定する※mainタグのmargin-topと合わせる */
}

.header-padding {
  padding: 10px;
}

.header-aside-padding {
  padding: 5px 0px 35px 0px;
}

.title h1 {
  font-size: 2em;
  display: flex;
  justify-content: center;
}

.main {
  background-color: rgb(180, 181, 184);
  padding-top: 1.5rem !important;
  padding-bottom: 1em;
  padding-left: 15%;
  padding-right: 15%;
}

.login {
  margin-top: 5em;
}

.parent {
  position: relative;
}

.child {
  position: absolute;
}

.bottom {
  bottom: 0;
}
/* =============================================
  横幅 縦幅
============================================= */
.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-24 {
  width: 24%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.h-80 {
  height: 80%;
}

.w-90 {
  width: 90%;
}

.h-90 {
  height: 90%;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.flex-1 {
  flex: 1;
}

.mt-5em {
  margin-top: 5em;
}

/* =============================================
  フォントサイズ
============================================= */
.fs-4em {
  font-size: 4em;
}

.fs-3em {
  font-size: 3em;
}

.fs-2_5em {
  font-size: 2.5em;
}

.fs-2em {
  font-size: 2em;
}

.fs-1_5em {
  font-size: 1.5em;
}

.fs-1em {
  font-size: 1.0em;
}

.fs-0_9em {
  font-size: 0.9em;
}

.fs-0_8em {
  font-size: 0.8em;
}

/* =============================================
  文字色
============================================= */
.text-white {
  color: white;
}

.text-blue {
  color: blue;
}

.text-red {
  color: red;
}

.text-black {
  color: black;
}

.text-no-dl {
  color: rgb(168, 169, 172);
}

/* =============================================
  ボタンサイズ(btn-縦-横)
============================================= */
.btn-25-80 {
  height: 25px;
  width: 80px;
}

.btn-40-100 {
  height: 40px;
  min-width: 100px;
}

/* =============================================
  間隔
============================================= */
.btn-margin-left {
  margin-left: 10px;
}

.btn-margin-top {
  margin-top: 10px;
}

.legend-margin-top {
  margin-top: 20px;
}

.header-username-margin-left {
  margin-left: 10px;
}
/* =============================================
  ボタン枠 背景(btn-枠線色-hover色)
============================================= */
/* 枠白ボタン */
.btn-white {
  border: 1px solid;
  border-radius: 3px;
  background: transparent;
  color: white;
  text-align: center;
  padding: 5px;
  cursor: pointer;
}

/* 枠白ボタン hover:黒 */
.btn-white-hover-black {
  border: 1px solid;
  border-radius: 3px;
  background: transparent;
  color: white;
  text-decoration: none !important;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-white-hover-black:visited {
  background: transparent;
  color: white;
  text-decoration: none;
}

.btn-white-hover-black:hover {
  background: white;
  color: black;
  text-decoration: none;
  text-align: center;
}

.btn-white-hover-black:focus {
  border: 2px solid black;
  outline: none;
}

/* 枠黒ボタン hover:黒*/
.btn-black-hover-black {
  border: 1px solid;
  border-radius: 3px;
  background: transparent;
  color: black;
  text-decoration: none !important;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-black-hover-black:visited {
  background: transparent;
  color: black;
  text-decoration: none;
}

.btn-black-hover-black:hover {
  background: black;
  color: white;
  text-decoration: none;
  text-align: center;
}

/* =============================================
  プルダウン
============================================= */
.pulldown-white-left {
  border: 1px solid;
  border-radius: 3px;
  background: transparent;
  color: white;
  text-align: center;
  cursor: pointer;
  appearance: none;
  min-width: 100px;
}

.pulldown-white-left:focus {
  border: 2px solid black;
  outline: none;
}
/* =============================================
  背景
============================================= */
.bg-mutoh {
  background-color: rgb(31, 20, 93);
}

.bg-grey {
  background-color: rgb(180, 181, 184);
}

.bg-blue {
  background-color: blue;
}

.bg-white {
  background-color: white;
}

.bg-login {
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-new-ver {
  background-color: rgb(204, 237, 252);
}

/* =============================================
  下線 縦線
============================================= */
.border-red {
  border-color: red;
}

article.login {
  border-right-style: none;
  color: white;
}

/* =============================================
  その他
============================================= */

/* 回り込み解除 */
.clear-l {
  clear: left;
}

/* カーソル */
.cursorPointer {
  cursor: pointer;
}

.menu-img {
  width: 65px;
}

/* =============================================
  画面固有 特殊
============================================= */
/* メニュータブ関連 */
.menuTab {
  white-space: nowrap;
  /*font-size: clamp(1.0rem, calc(0.20vw + 1.0rem), 1.5rem);*/
  font-color: rgb(31, 20, 93);
  bottom: 20px;
  position: static;
  font-size: small;
}

.menuTab_Mock {
  transform: translateX(-43%);
}
/* Mock 992～ */
@media screen and (min-width: 992px) {
  .menuTab_Mock {
    transform: translateX(-43%);
  }
}

/* Mock 1024～ */
@media screen and (min-width: 1024px) {
  .menuTab_Mock {
    transform: translateX(-41%);
  }
}

/* Mock 1440～ */
@media screen and (min-width: 1440px) {
  .menuTab_Mock {
    transform: translateX(-21%);
  }
}

.defaultMenuTabItem {
  white-space: nowrap;
  position: absolute;
  z-index: 10;
  min-width: -webkit-fill-available;
}

@media screen and (min-width: 1440px) {
  .defaultMenuTabItem {
    white-space: nowrap;
    position: absolute;
    z-index: 10;
    min-width: -webkit-fill-available;
  }
}

.menuTabItem {
  background-color: rgb(51, 51, 51);
  border-radius: 3px;
  width: auto;
  min-width: 160px;
  padding: 10px;
  margin-top: 10px;
  position: relative;
  bottom: 0;
}

.menuTabItem>li>a {
  color: white;
  display: block;
  text-decoration: none;
}

.menuTabItem>li>a:hover {
  text-decoration: underline;
}

.menuTabItem_sptb {
  background-color: rgb(51, 51, 51);
  border-radius: 3px;
  width: auto;
  min-width: 100.25%;
  padding: 10px;
  position: relative;
}

.menuTabItem_sptb>li>a {
  color: white;
  display: block;
  text-decoration: none;
}

.menuTabItem_sptb>li>a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 410px) {

  .menuTabItem_sptb_VerteLith {
    white-space:normal;
    padding: 6px 0px 6px 10px !important;
  }

  .menu_status_detail{
    width:100%;
  }

  .menu_addAPrinter {
    min-width: 50%
  }

  .menu_NewsReleaseTab {
  	padding-left:0 !important;
  }
}

.onMouseBorder li>div>p {
  border-bottom: 2px solid transparent;
  margin: 0;
}

.onMouseBorder li:hover>div>p {
  border-bottom: 2px solid rgb(31, 20, 93);
}

/* Login画面お知らせスクロール */
.loginScroll {
  overflow-y: scroll;
  background-color: white;
  width: 80%;
  height: 100px;
}

/* お知らせ情報画面お知らせスクロール */
.newsInformationScroll {
  overflow-y: scroll;
  background-color: white;
  width: 100%;
}

/* メニュー画面Application欄 */
.application>div dt {
  height: 10rem;
  /* padding: 4rem; */
}

.application>div dd {
  height: 20rem;
  padding: 4rem;
}

@media screen and (max-width: 767px) {
  .application>div:nth-child(n+2) {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .download>li:nth-child(n+3) {
    margin-top: 3rem;
  }
}

/* =============================================
  既存css
============================================= */
.input_table1 {
  border-collapse: separate;
  border: 0px #EDEDED solid;
}

.input_table1 th {
  background-color: #EDEDED;
  text-align: left;
  color: #333333;
  border: 0px #333333 solid;
  border-collapse: separate;
  border-spacing: 2px;
  height: 30px;
  font-family: 'メイリオ', Meiryo, Arial;
  font-size: 12px;
  font-weight: bold;
}

.input_table1 td {
  background-color: #EDEDED;
  text-align: left;
  color: #333333;
  border: 0px #333333 solid;
  border-collapse: separate;
  border-spacing: 2px;
  font-family: 'メイリオ', Meiryo, Arial;
  font-size: 12px;
}

.main_hr {
  color: #FFFFFF;
  width: 95%;
  height: 3px;
}

.disp_header_str_border {
  border-bottom: 1px solid #6699CC;
  color: #003366;
  font-size: 12pt;
  font-weight: bold;
  margin: 8px 25px;
  text-align: justify;
}

/* =============================================
  レスポンシブ
============================================= */
/* 個別特殊ケース */
@media screen and (max-width: 575px) {
  /* スライダー */
  .slider_width {
    max-width: 100vw;
  }
}

/* スマホ ～767 */
@media screen and (max-width: 767px) {
  /* アクティベーションコード申請/ユーザ登録文言専用 */
  .inputGuserRegisterInfoTitle {
    font-size: 16px !important;
  }
  .display-sp {
    /* レスポンシブ対応(スマホ) */
    display: block !important;
  }
  .display-tb {
    /* レスポンシブ対応(タブレット) */
    display: none !important;
  }
  .display-pc {
    /* レスポンシブ対応(PC) */
    display: none !important;
  }
  .display-sptb {
    /* レスポンシブ対応(スマホ・タブレット) */
    display: block;
  }
  .c-hamburger-menu_menuList {
    width: 80%;
  }
  #hamburger_menu:checked ~ .c-hamburger-menu_menuList {
    transform: translateX(25%);
    transition: 0.3s;
  }
  .slider_height {
    height: 300px;
  }
}

/* タブレット 768～ */
@media screen and (min-width: 768px) {
  /* アクティベーションコード申請/ユーザ登録文言専用 */
  .inputGuserRegisterInfoTitle {
    font-size: 20px !important;
  }
  .display-sp {
    /* レスポンシブ対応(スマホ) */
    display: none !important;
  }
  .display-tb {
    /* レスポンシブ対応(タブレット) */
    display: block !important;
  }
  .display-pc {
    /* レスポンシブ対応(PC) */
    display: none !important;
  }
  .display-sptb {
    /* レスポンシブ対応(スマホ・タブレット) */
    display: block;
  }
  .slider_height {
    height: 300px;
  }
}

/* PC 992～ */
@media screen and (min-width: 992px) {
  /* アクティベーションコード申請/ユーザ登録文言専用 */
  .inputGuserRegisterInfoTitle {
    font-size: 25px !important;
  }
  .display-sp {
    /* ヘッダレスポンシブ対応(スマホ・タブレット) */
    display: none !important;
  }
  .display-tb {
    /* ヘッダレスポンシブ対応(タブレット) */
    display: none !important;
  }
  .display-pc {
    /* ヘッダレスポンシブ対応(PC) */
    display: block !important;
  }
  .display-sptb {
    /* レスポンシブ対応(スマホ・タブレット) */
    display: none !important;
  }
}

/* =============================================
  ログイン画面ハンバーガーメニュー
============================================= */
.c-header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.c-header_logo {
  color: #000;
  min-width: 80px;
  text-decoration: none;
}

.c-header_list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header_list-item {
  list-style: none;
  text-decoration: none;
}

.c-header_list-link {
  color: #000;
  display: block;
  margin-right: 10px;
  text-decoration: none;
  padding: 10px 0px;
}

.c-header_list-link:hover {
  filter: opacity(0.6);
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-hamburger-menu_list {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(200%);
    transition: 0.3s;
    top: 100%;
    width: 60%;
    align-items: end;
    z-index: 100;
  }
  #hamburger:checked ~ .c-hamburger-menu_list {
    transform: translateX(67%);
    transition: 0.3s;
  }
}

.c-hamburger-menu_input {
  display: none;
}

.c-hamburger-menu_bg {
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu_bg {
  display: block;
}

.c-hamburger-menu_button {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-hamburger-menu_button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
}

.c-hamburger-menu_button-mark {
  background-color: white;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 20px;
}

@media screen and (max-width: 767px) {
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
}
/* =============================================
  メインメニュー画面ハンバーガーメニュー
============================================= */
.c-header_Menu {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.c-header_logo_Menu {
  color: #000;
  min-width: 80px;
  text-decoration: none;
}

.c-header_list_Menu {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header_list-item_Menu {
  list-style: none;
  text-decoration: none;
  margin: 5px 0;
}

.c-header_list-link_Menu {
  color: white;
  display: block;
  margin-right: 10px;
  text-decoration: none;
  padding: 10px 0px;
}

/*. c-header_list-link_Menu:hover {
  filter: opacity(0.6);
} */
.c-hamburger-menu_Menu {
  position: relative;
}

.c-hamburger-menu_input_Menu {
  display: none;
}

.c-hamburger-menu_bg_Menu {
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger_Menu:checked ~ .c-hamburger-menu_bg_Menu {
  display: block;
}

.c-hamburger-menu_button_Menu {
  display: none;
}

.c-hamburger-menu_button-mark_Menu {
  background-color: white;
  display: block;
  height: 1px;
  transition: 0.3s;
  width: 20px;
}

@media screen and (max-width: 991px) {
  .c-hamburger-menu_list_Menu {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(200%);
    transition: 0.3s;
    top: 100%;
    width: 60%;
    align-items: end;
    z-index: 100;
  }
  #hamburger_Menu:checked ~ .c-hamburger-menu_list_Menu {
    transform: translateX(67%);
    transition: 0.3s;
  }
  .c-hamburger-menu_button_Menu {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
  #hamburger_Menu:checked
    ~ .c-hamburger-menu_button_Menu
    .c-hamburger-menu_button-mark_Menu:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger_Menu:checked
    ~ .c-hamburger-menu_button_Menu
    .c-hamburger-menu_button-mark_Menu:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger_Menu:checked
    ~ .c-hamburger-menu_button_Menu
    .c-hamburger-menu_button-mark_Menu:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
  .c-hamburger-menu_menuButton {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 32px;
  }
  .c-hamburger-menu_menuList {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(200%);
    transition: 0.3s;
    top: 100%;
    width: 60%;
    align-items: end;
    z-index: 100;
  }
  .c-hamburger-menu_menuButton-mark {
    background-color: white;
    display: block;
    height: 1px;
    transition: 0.3s;
    width: 20px;
  }
  #hamburger_menu:checked ~ .c-hamburger-menu_menuList {
    transform: translateX(67%);
    transition: 0.3s;
  }
  #hamburger_menu:checked
      ~ .c-hamburger-menu_menuButton
      .c-hamburger-menu_menuButton-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger_menu:checked
      ~ .c-hamburger-menu_menuButton
      .c-hamburger-menu_menuButton-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger_menu:checked
      ~ .c-hamburger-menu_menuButton
      .c-hamburger-menu_menuButton-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
}

/* スマホ ～767 */
@media screen and (max-width: 767px) {
  .c-hamburger-menu_list_Menu {
    width: 100%;
    padding: 10px;
  }
  #hamburger_Menu:checked ~ .c-hamburger-menu_list_Menu {
    transform: translateX(0%);
  }
}
/* =============================================
  スライダーのためのcss
============================================= */
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  max-width: 95%;
  height: auto !important;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 18px;
  width: 18px;
  z-index:10;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -2.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-arrow:before {
  content: "" !important;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.slick-prev.slick-disabled, .slick-next.slick-disabled {
  opacity: .3;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 1;
}

/* スマホ・タブレット ～991 */
@media screen and (max-width: 991px) {
  .slider_margin {
    margin-bottom: 30px;
  }
}