@charset "UTF-8";
/* **************************************
CSS Information

Site URL:
File name:  manager_style.css
Summary:  管理者イメージ用
Created:  2022/10/13
************************************** */
/*=======================================
	Headline
=======================================*/
/*------------------------------
	Heading
-------------------------------*/
/* Subheading-------------*/

/*=======================================
	root
=======================================*/
:root {
    --system-rigth-color: #b8f1b6;
    --system-color: #41b076;
    --system-dark-color: #1a2620;
    --system-point-R-color: #fffdef;
    --system-point-color: #a5f3a0;
    --system-btn-shadow: #337e1b;
    --system-btn-shadow02:#dde656;
    --system-btn-border: #405b3a;
    --system-table-border: #364937;
    --system-blue: #abecff;
    --system-yellow: #fff8be;
    --system-logo-color:#249c95;
    --system-dark-logo-color: #135254;
     /* #fbfcdd; */
    --system-deep-yellow:#ffcc2c;
    --system-dark-green: #364937;
    --system-night-green:#cbddca;
    --system-light-gray: #eceff0;
    --table-header-gray: #ececec;
    --system-back-gray: #f8f8f8;
    --system-dark-yellow: #978d0b;

    --system-font-size:1.5rem;
    --system-result-font-size:1.2rem;
    --system-btn-font-size:1.8rem;
    /* --system-font-large-size:2.0rem; */
    --system-font-large-size:1.5rem;
    --system-font-family: "ヒラギノ角ゴシック", Arial, sans-serif;
    --system-msggroup-font-family: "ヒラギノ角ゴシック", Arial, cursive;

    --sidebar-font-size:1.5rem;

}

/* ローカルフォント */
@font-face {
	font-family: 'MyFont-R';
	src: url(../font/MPLUSRounded1c-Regular.ttf);
}
@font-face {
	font-family: 'MyFont-M';
	src: url(../font/MPLUSRounded1c-Medium.ttf);
}
@font-face {
	font-family: 'MyFont-B';
	src: url(../font/MPLUSRounded1c-Bold.ttf);
}

/*=======================================
	default
=======================================*/
html {
    height: 100%;
	font-size: 62.5%; /* 10px */
}
body {
    margin: 0;
    padding: 0;
    font-weight: bold;
    background-color: white;
    position: relative;
    /* height:100%; */

}

@media screen and (max-width: 768px) {
	body {
	  min-width: auto;
	}
}
/*------------------------------
	responsive
-------------------------------*/
.pc {display: inherit;}
.sp {display: none;}

@media screen and (max-width: 768px) {
	.pc {display: none;}
	.sp {display: inherit;}
}

/*------------------------------
	other
-------------------------------*/
/* label {cursor: pointer;} */
strong {font-weight: bold;}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.width70 {width: 70px;}
/* .searchTable2 th 色分け時使用 */
.bgDarkLogo {background: var(--system-dark-logo-color);}

/*=======================================
	ヘッダー
=======================================*/
.header {
  font-size: var(--system-font-size);
  /* position: fixed; */
  position: sticky;
  top: 0;
  left:0;
  right:0;
  /* width: calc(100% - 32px); */
  /* height: 82px; */
  background: linear-gradient(75deg, #fff 28rem, var(--system-logo-color) 100rem, var(--system-dark-logo-color)160rem);
  /* background: var(--system-logo-color); */
  color: var(--system-dark-logo);
  display: flex;
  flex-wrap: wrap;
  /* gap: 2rem; */
  align-items: center;
  padding: 10px;
    /* border-bottom: #000 solid 2px; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 9000;
  /* justify-content: end; */
    justify-content: space-between; /* 左寄せと右寄せの間にスペースを作る */
}
/*
.header-a {
    width:15rem;
    height:4rem;
    display: flex;
}
*/

.header-a {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}
.header-a button {
    z-index: 10;
    position: relative;
    background: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.header-img {
    position: relative;
  /* content: url(../picture/工事まいすたぁ_ロゴ[60px×148px].png); */
  /* content: url(../storage/img/mystar_logo.png); */
  /* mix-blend-mode: multiply; */
  /* display: inline-block; */
  /* vertical-align: middle; */
  width: 15rem;
  height: 6rem;
/*  top: 0;
  left: 10px;
*/
}

.header p {
  width: 20rem;
  height: 4rem;
  margin: 0;
}

.content.shrink {
    margin-left: 0;
}

/*=======================================
  メニュードロップ
=======================================*/

.header .nav-links {
  display: flex;
  align-items: center;
  margin-bottom: auto;
  justify-content: end;
  background: #fff;
  border-top: double 4px var(--system-dark-logo-color);
  border-bottom: double 4px var(--system-dark-logo-color);
  position: relative;
  box-shadow: 0px 4px 4px 0px rgb(28 36 31 / 35%);
}

.header .nav-links a {
  color: var(--system-dark-logo-color);
  text-decoration: none;
  position: relative;
  width: max-content;
}
.header .header-inputs {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 0.5rem; /* テキストボックスの間隔 */
    /* margin-left: 5rem; */
    margin-right: auto; /* ロゴからの間隔 */
    align-items: center; /* フォーム内の入力欄を中央揃え */
    align-self: flex-start; /* ヘッダー全体内で左寄せ */
    flex-shrink: 0; /* テキストボックスのサイズが縮まないように */
}

/* テキストボックス自体のスタイル */
.header .text-input {
    width: 200px; /* 必要に応じて調整 */
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: var(--system-font-size);
}

/*  */

#dropmenu { position: relative; z-index: 7; }
#dropmenu li ul li{
  overflow: hidden;
  height: 0;
  transition: .4s;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
}
.dropmenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dropmenu:before, .dropmenu:after {
  content: "";
  display: table;
}
.dropmenu:after {
  clear: both;
}
.drop-header a img {
  content: url(../picture/setting.png);
  /* content: url(../storage/img/kkrn_icon_user_1.png); */
}
.drop-header {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 22px;
  height: 40px;
}

/* .drop-header:hover {
  background: #f2f0644f;
} */

.drop-content {
  list-style: none;
  position: absolute;
  margin: 0;
  padding: 0;

  top: 45px;
  right: 0;
  background-color: #1e5d5aba;
  color: white;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0);
  z-index: 1000;
  min-width: 120px;
  border-radius: 0rem 0rem 1rem 1rem;
  width: 100%;

  font-size: 1.5rem;
}
.dropmenu li ul li {
  width: 100%;
  display: flex;
  justify-content: end;
}

/* メニューボタン */
.dropmenu li ul li a {
  padding: 0.5rem 2rem;
  text-align: right;
  border-radius: 10rem;
  margin-right: 1rem;
}

/*== ボタン共通設定 */
.dropbtn{
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  border-radius: none;
}

/*ボタン内spanの形状*/
.dropbtn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: white;
}

/*== 背景が流れる（左から右） */
.menu-selectShort:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 15px;
  left: 5px;
  z-index: 2;
  /*色や形状*/
  /* 元 */
  /* background:var(--system-deep-yellow); */
    /* 黄系 */
    background: #ffc926c7;
    /* 緑系 */
    /* background: #80e69bbc; */
  /*背景色*/
  width: 85%;
  height: 30%;
  border-radius: 3rem;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.menu-selectLong:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 15px;
  left: 12px;
  z-index: 2;
    /*色や形状*/
  background:var(--system-deep-yellow);/*背景色*/
  width: 86%;
  height: 30%;
  border-radius: 3rem;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.menu-selectShort:hover:before,
.menu-selectLong:hover:before {
  transform-origin:left top;
  transform:scale(1, 1);
}

/*  */

.dropdown__lists {
  transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
  transform-origin: center top;/*変形を適応する基準をtopとする*/
  transition: all .3s;/*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.gnavi__list:hover .dropdown__lists {
  transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
/*  */

/* .settings-icon {
    display: flex;
    align-items: center;
    // background-color: green;
    max-width: auto;
    cursor: pointer;
    // カーソルを指の形に変更
} */

.dropdown img {
    height: 30px;
}


.main {
    /* display: flex; */
    flex-direction: row;
    flex-grow: 1;
  }

/*=======================================
  サイドバー
=======================================*/
.sidebar {
    font-size: var(--sidebar-font-size);
    width: 200px;
    background: #eee; /* 背景色を薄めのグレーに変更 */
    color: white;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    z-index: 999;
    transform: translateX(0);
    /* padding: 10px; */
    overflow-y:scroll;
    border-right:solid 1px #000;
}

.sidebar.hidden {
    transform: translateX(-200px);
}

.sidebar-menu {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.sidebar-header {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    padding: 10px 5px;
    border-bottom: 1px solid #555;
    cursor: default;
    white-space: nowrap; /* タイトルが折り返されないようにする */
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 10px;
}

.sidebar-item {
    padding-left: 8px; /* インデント調整 */
}

.sidebar-link {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 1.4rem; /* 項目の文字サイズ */
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.2s;
    overflow: hidden;
    white-space: nowrap; /* 項目が折り返されないようにする */
}

.sidebar-link:hover {
    background: #ddd;
}

main {
    margin-left: 0;  /* 初期状態ではサイドバーが隠れているので特に影響なし */
    transition: margin-left 0.3s ease; /* アニメーション効果 */
}

main.shifted {
    margin-left: 250px;  /* サイドバー表示時にメインコンテンツを縮める */
}

.user-name {
    margin-left: 10px;
    /* Space between the icon and the name */
    white-space: nowrap;
    /* Prevents text from wrapping */
    /* Ensures text is visible on dark background */
}

.user-box {
  background: var(--system-logo-color); border-radius: 20px 20px 0px 0px; padding: 2rem 4rem; border: 1.5px solid var(--system-table-border);
  color: white;
}
.user-box2 {
  background: var(--table-header-gray); border-radius: 20px 20px 0px 0px; padding: 2rem 4rem; border: 1.5px solid var(--system-table-border);
}
.user-box-small {
  display: flex; flex-wrap: wrap; gap:1rem; margin-top: 1rem;
}
.user-box-detail {
  display: flex; height: 3rem; font-size: 1.6rem; background: var(--system-dark-logo-color); border-radius: 3rem;
}

@media screen and (max-width: 768px) {}


/*=======================================
	フッター
=======================================*/
footer {
  height: 10rem;
}

/*=======================================
	contents
=======================================*/
.content {
    /* margin-top: 80px; */
    /* Same height as header */
    padding: 20px;
    /* background-color: white; */
   /* background: #ECFADC; */
   position: relative;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   /* height:100%; */
   /* transition: margin-left 0.3s ease-in-out; */
   /* margin-top: 100px; */
   margin-left: 200px;
    /* 下段のフレーム部分の背景色 */
}

.loginContent {
    padding: 20px;
   position: relative;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

@media screen and (max-width: 787px) {
  .content {padding: 0px; margin-left: 0px;}
}

@media screen and (max-width: 768px) {}

/*=======================================
　全ページ共通項目
=======================================*/

/* .inner {
	margin-bottom: 30px;
} */

.btnbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
  margin: 2% 5%;
}

.btnboxR {
	display: flex;
	justify-content: right;
	flex-wrap: wrap;
  margin: 2% 5%;
}

/* 必須項目 */
.required {
  position: relative;
}

/* 要素の前に位置 */
.required-left::before {
  position: absolute;
  content: '*';
  color: red;
}

/* 要素の後に位置 */
.required-right::after {
  position: absolute;
  content: '*';
  color: red;
}

/*  */

/* フォーカス時枠線消し */
input:focus, textarea:focus, select:focus {
  outline: none;
}

/*  */

/* ボタンレイアウト */
button {
  border:none;
  background-color: transparent;
}

.bbtn,
a.bbtn,
button.bbtn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/* 3Dボタン */
/* 00 厚め */
/* googleマップボタン */
a.btn-custom00,
button.btn-custom00 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom00:before,
button.btn-custom00:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 6rem;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.15rem, -1rem);
  transform: translate3d(0, 0.15rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  background: #8a821f;
  /* background: #8a821f; */
  -webkit-box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom00:after,
button.btn-custom00:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom00-front {
  position: relative;
  display: block;
  padding: 0.2rem 1rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  /* font-size: var(--system-font-size); */
  font-size: 1.4rem;
  width: 4rem;
}
.btn-custom00-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom00:hover,
button.btn-custom00:hover {
  -webkit-transform: translate(0, 0.1rem);
  transform: translate(0, 0.01rem);
}

a.btn-custom00:hover:before,
button.btn-custom00:hover:before {
  -webkit-transform: translate3d(0, 0.01rem, -1rem);
  transform: translate3d(0, 0.01rem, -1rem);
  -webkit-box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom00:active,
button.btn-custom00:active {
  -webkit-transform: translate(0rem, 0.25rem);
  transform: translate(0rem, 0.25rem);
}

a.btn-custom00:active:before,
button.btn-custom00:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* 01 厚め */
/* 検索、クリア、戻る */
a.btn-custom01,
button.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom01:before,
button.btn-custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.45rem, -1rem);
  transform: translate3d(0, 0.45rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:after,
button.btn-custom01:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 0.3rem 0.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 10rem;
}
.btn-custom01-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom01:hover,
button.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

a.btn-custom01:hover:before,
button.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.2rem, -1rem);
  transform: translate3d(0, 0.2rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:active,
button.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.45rem);
  transform: translate(0rem, 0.45rem);
}

a.btn-custom01:active:before,
button.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* 01-h メニュー薄め */
/* DLボタン */
a.btn-custom01-h,
button.btn-custom01-h {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom01-h:before,
button.btn-custom01-h:before {

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.45rem, -1rem);
  transform: translate3d(0, 0.45rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  background: #8a821f;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01-h:after,
button.btn-custom01-h:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom01-h-front {
  position: relative;
  display: block;
  padding: 0.3rem 0.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 14rem;
}
.btn-custom01-h-front:hover {
  background: #f4f4f4;
}

a.btn-custom01-h:hover,
button.btn-custom01-h:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

a.btn-custom01-h:hover:before,
button.btn-custom01-h:hover:before {
  -webkit-transform: translate3d(0, 0.2rem, -1rem);
  transform: translate3d(0, 0.2rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01-h:active,
button.btn-custom01-h:active {
  -webkit-transform: translate(0rem, 0.45rem);
  transform: translate(0rem, 0.45rem);
}

a.btn-custom01-h:active:before,
button.btn-custom01-h:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* 02 薄め */
/* テーブルボタン「詳細、削除」 */
a.btn-custom02,
button.btn-custom02 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom02:before,
button.btn-custom02:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.15rem, -1rem);
  transform: translate3d(0, 0.15rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom02:after,
button.btn-custom02:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom02-w-front {
  position: relative;
  display: block;
  padding: 0.1rem 1rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 4rem;
}
.btn-custom02-w-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom02:hover,
button.btn-custom02:hover {
  -webkit-transform: translate(0, 0.01rem);
  transform: translate(0, 0.01rem);
}

a.btn-custom02:hover:before,
button.btn-custom02:hover:before {
  -webkit-transform: translate3d(0, 0.01rem, -1rem);
  transform: translate3d(0, 0.01rem, -1rem);
  -webkit-box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom02:active,
button.btn-custom02:active {
  -webkit-transform: translate(0rem, 0.25rem);
  transform: translate(0rem, 0.25rem);
}

a.btn-custom02:active:before,
button.btn-custom02:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}
/*  */

.btn-custom02-front {
  position: relative;
  display: block;
  padding: 0.3rem 0.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-result-font-size);
  width: 5rem;
}
.btn-custom02-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

/*  */

/* 02-h 薄め */
/* 濃いヘッダ―用「移動、追加」 */
a.btn-custom02-h,
button.btn-custom02-h {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom02-h:before,
button.btn-custom02-h:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.15rem, -1rem);
  transform: translate3d(0, 0.15rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom02-h:after,
button.btn-custom02-h:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom02-h-front {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 5rem;
}
.btn-custom02-h-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom02-h:hover,
button.btn-custom02-h:hover {
  -webkit-transform: translate(0, 0.01rem);
  transform: translate(0, 0.01rem);
}

a.btn-custom02-h:hover:before,
button.btn-custom02-h:hover:before {
  -webkit-transform: translate3d(0, 0.01rem, -1rem);
  transform: translate3d(0, 0.01rem, -1rem);
  -webkit-box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom02-h:active,
button.btn-custom02-h:active {
  -webkit-transform: translate(0rem, 0.25rem);
  transform: translate(0rem, 0.25rem);
}

a.btn-custom02-h:active:before,
button.btn-custom02-h:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* 03 メニュー */
/* トップ画面ボタン */
a.btn-custom03,
button.btn-custom03 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
  width: 90%;
}

a.btn-custom03:before,
button.btn-custom03:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.35rem, -1rem);
  transform: translate3d(0, 0.35rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.4rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.4rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom03:after,
button.btn-custom03:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom03-front {
  position: relative;
  display: block;
  padding: 1rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-btn-font-size);
}
.btn-custom03-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom03:hover,
button.btn-custom03:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

a.btn-custom03:hover:before,
button.btn-custom03:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom03:active,
button.btn-custom03:active {
  -webkit-transform: translate(0rem, 0.45rem);
  transform: translate(0rem, 0.45rem);
}

a.btn-custom03:active:before,
button.btn-custom03:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* 04 厚め */
/* 検索、クリア、戻る */
a.btn-custom04,
button.btn-custom04 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom04:before,
button.btn-custom04:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.45rem, -1rem);
  transform: translate3d(0, 0.45rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom04:after,
button.btn-custom04:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom04-front {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 9rem;
}
.btn-custom04-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom04:hover,
button.btn-custom04:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

a.btn-custom04:hover:before,
button.btn-custom04:hover:before {
  -webkit-transform: translate3d(0, 0.2rem, -1rem);
  transform: translate3d(0, 0.2rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom04:active,
button.btn-custom04:active {
  -webkit-transform: translate(0rem, 0.45rem);
  transform: translate(0rem, 0.45rem);
}

a.btn-custom04:active:before,
button.btn-custom04:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}



/*  */

/* 05 薄め */
/* 戻るボタン「エラー画面」 */
a.btn-custom05,
button.btn-custom05 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 1.2rem;
}

a.btn-custom05:before,
button.btn-custom05:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.15rem, -1rem);
  transform: translate3d(0, 0.15rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom05:after,
button.btn-custom05:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom05-w-front {
  position: relative;
  display: block;
  padding: 0.1rem 1rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 4rem;
}
.btn-custom05-w-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-custom05:hover,
button.btn-custom02:hover {
  -webkit-transform: translate(0, 0.01rem);
  transform: translate(0, 0.01rem);
}

a.btn-custom05:hover:before,
button.btn-custom02:hover:before {
  -webkit-transform: translate3d(0, 0.01rem, -1rem);
  transform: translate3d(0, 0.01rem, -1rem);
  -webkit-box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.15rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom05:active,
button.btn-custom02:active {
  -webkit-transform: translate(0rem, 0.25rem);
  transform: translate(0rem, 0.25rem);
}

a.btn-custom05:active:before,
button.btn-custom02:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}
/*  */

.btn-custom05-front {
  position: relative;
  display: block;
  padding: 0.1rem 1.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-font-size);
  width: 15rem;
}
.btn-custom05-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

/*  */

/* 05 m2008 */
/* >, < */
a.btn-primary,
button.btn-primary {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 4rem;
}

a.btn-primary:before,
button.btn-primary:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  /* width: 100%; */
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.45rem, -1rem);
  transform: translate3d(0, 0.45rem, -1rem);

  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fffff8; */
  background: #8a821f;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-primary:after,
button.btn-primary:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-primary-front {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid var(--system-dark-yellow);
  border-radius: inherit;
  /* background: #fff100; */
  background: #ffffff;
  font-size: var(--system-btn-font-size);
  width: 1rem;
}
.btn-primary-front:hover {
  /* background: #dff1e5; */
  background: #f4f4f4;
}

a.btn-primary:hover,
button.btn-primary:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
}

a.btn-primary:hover:before,
button.btn-primary:hover:before {
  -webkit-transform: translate3d(0, 0.2rem, -1rem);
  transform: translate3d(0, 0.2rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-primary:active,
button.btn-primary:active {
  -webkit-transform: translate(0rem, 0.45rem);
  transform: translate(0rem, 0.45rem);
}

a.btn-primary:active:before,
button.btn-primary:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

/*  */

/* ボタンレイアウト */
.btn,
a.btn,
button.btn {
  font-size: var(--system-font-size);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  /* padding: 1rem 4rem; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/* ボタンのフォーマット */
.under-button-single {
  margin:20px auto;
  width: 100%;
  max-width: 95%;
  display: flex;
  justify-content: flex-end; /* ボタンを右端に配置 */
  align-items: center;
}

.under-button-multi {
  margin:20px auto;
  width: 100%;
  max-width: 92.5%;
  /* max-width: 95%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-wrap: wrap;
  gap: 3rem;
}

.under-button-multi .left-buttons,
.under-button-multi .right-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}


/* 検索条件 */
.search-wapper {
  padding: 10px 0px;
}

.search-section {
  margin:auto;
  /* margin-bottom: 20px; 削除*/
  width: 100%;
  max-width: 95%;
  position: relative;
}

.search-section::after {
  position: absolute;
  content: '';
  background-color: white;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  top: -15px;
  left: -20px;
  z-index: -1;
}

.search-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.search-row-box {
  display: inline-grid;
  width: 100%;
  gap: 1rem 0rem;
}

.search-row {
  display: flex;
  align-items: center;
  /* margin-bottom: 10px; */
  margin-left: 20px;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}

.search-row div {
  display: flex;
  align-items: center;
}

.search-row .sreach-date {width:28.5rem; margin-right:20px;}

.search-header label {
  width: 100%; /* ラベルの幅を指定 */
  margin-right: 10px;
  font-size:var(--system-font-large-size);
}

.search-row label {
  display: inline-block;
  width: 80px; /* ラベルの幅を指定 */
  font-size:var(--system-font-size);
}
.search-row-long label {width:120px;}

.search-row .progress {
  /* width:285px; */
  width: 28.5rem;
  margin-right:20px;
}

.search-row .name {
  /* width:285px; */
  width: 28.5rem;
  margin-right:20px;
}

.search-row input[type="text"] {
  /* width: 200px; テキスト入力欄の幅を統一 */
  /* width: 285px; */
  width: 28.5rem;
  padding: 0 5px;
  border: 1px solid var(--system-btn-border);
  border-radius: 5px;
  margin-right:20px;
}
.search-row input[type="date"]:last-of-type {margin-right:20px;}

/* 結果ヘッダー */
.result-section {
  margin:auto;
  margin-bottom: 10px;
  width: 100%;
  max-width: 95%;
}

.result-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width:100%;
}

.result-row label {
  max-width: 120px; /* ラベルの幅を指定 */
  min-width: 60px;
  margin-right: 10px;
  font-size:var(--system-font-large-size);
}

.result-left {
  display: flex;
  align-items: center;
  gap: 10px; /* ラベル間の隙間 */
}

.searchTable th, td {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

.result-right {
  display: flex;
  align-items: center;
  margin-left:auto;
  gap: 5px; /* ラベルと選択リスト間の隙間 */
}

/* 検索結果テーブルレイアウト */
.searchTable_flame {
  width: 100%;
  max-width: 95%;
  min-width:50%;
  height: 400px;
  overflow-y: auto;
  margin: auto;
  background-color: ghostwhite;
  border-radius: 5px;
  border: solid 1px #000;
  /* box-shadow:4px 4px 0px 0px var(--system-btn-border); */
}
.searchTable {
  font-size:var(--system-result-font-size);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border-radius: 5px;
  text-align: center;
}
.searchTable tr:nth-child(odd) {
  background-color: #ffffff;
}
.searchTable tr:nth-child(even) {
  background-color: var(--system-light-gray);
}
.searchTable tbody tr {
  border: 1px solid;
  border-left: none;
  border-right:none;
  background-color: #fff;
}
/* 「最終行」の下線非表示 */
/* .searchTable tbody tr:nth-last-child(1) {
  border-bottom: none;
} */
.searchTable th {
  padding: 0.5em; /* ここで縦線を追加 */
  background-color: var(--system-logo-color);
  color: white;
  font-weight: bold;
  text-align: center;
  border-right: solid 1px #000;
  border-bottom:solid 1px #000;
  position: relative;
}
.searchTable th:nth-last-child(1) {
  border-right:none;
}
/* theadの下線 */
/* .searchTable th::after {
  position: absolute;
  content: '';
  top: -1px;
  left:0;
  width: 100%;
  height: 100%;
  border-bottom: #000 solid 1px;
} */
.searchTable td {
  padding: 0.3rem 0.5em; /* ここで縦線を追加 */
  border-right: solid 1px #000;
}
.searchTable tr:first-child {
  border-top:none;
}
.searchTable tr td:nth-last-child(1) {
  border-right:none;
}

.searchTable_flame2 {
  display: none;
}

@media screen and (max-width: 1230px) {
  .ADDRESS {width: 100px;}
  .CUSTOMER {width:200px;}
}

@media screen and (max-width: 787px) {
  .ADDRESS {    width: 80px;  }
  .CUSTOMER {width:200px;}
}

@media screen and (max-width: 460px) {
  .paddingR20 {padding-right: 20px;}
}

@media screen and (max-width: 787px) {
  .searchTable_flame {
    display: none;
  }

  .searchTable_flame2 {
    display:block;
    width: 100%;
    max-width: 90%;
    min-width:50%;
    height: 400px;
    overflow-y: auto;
    margin:auto;
    background-color: ghostwhite;
    border-radius: 0 5px 5px 5px;
    border: solid 1px #000;
  }

  .searchTable2 {
    font-size:var(--system-result-font-size);
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    border-radius: 0;
    text-align: left;
  }

  .searchTable2 th, .searchTable2 td {
    /* display: block; */
    border: 0;
    border: solid 1px var(--system-btn-border);
    padding: 0.5em;/* ここで縦線を追加 */

    color: black;
    font-weight: bold;
  }

  .searchTable2 th {
    background-color: var(--system-logo-color);
    color: white;
    font-weight: bold;
    text-align: center;
    width: 13rem;
    border-left: none;
  }
  .searchTable2 td {
    border-right: none;
  }
  .searchTable2 tr:first-child th,
  .searchTable2 tr:first-child td {
    border-top: none;
  }

  .searchTable2 tr {
    background-color: #fff;
  }
  .searchTable2 tr:nth-child(even) {
    background-color: var(--system-light-gray);
  }
}
.searchTable a,
.searchTable2 a {
  text-decoration: none;
}

/*  */

button.btn-border,
a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0 #000;
  box-shadow: 4px 4px 0 #000;
}

button.btn-border:hover,
a.btn-border:hover {
  -webkit-box-shadow: -4px -4px 0 #000;
  box-shadow: -4px -4px 0 #000;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
*::-webkit-scrollbar-thumb {
  background-color: #bbbbbb;
  border-radius: 50px;
}

/*------------------------------
	ログイン画面用
-------------------------------*/

@keyframes slideinTop {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateY(-3rem);
  }
  10% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateY(-3rem);
  }
  60% {
    opacity: 1;
    transform: translateY(0rem);
  }
}

/* 緑box - 任意font */
.logingroup {
	border: 1px solid #000000;
	padding: 4rem 1rem 6rem 1rem;
  border-radius:10px;
  box-shadow:4px 4px 0px 0px var(--system-dark-logo-color);
  margin-bottom: 20px;
  width: 28%;
  min-width: 36rem;
  margin: 3rem auto;
  background: #249c956e;
  font-family: 'MyFont-M';
}
.logintitle {
	width: 26rem;
  font-weight: bold;
  background-color: #fff;
  border-radius: 3rem;
  text-align: center;
  font-size: 3rem;
  margin: 2rem auto 3rem auto;
  font-family: 'MyFont-B';
}

/* ---- */

.login {
  display: flex;
  justify-content: right;
  padding: 3rem 2rem;
}

.loginError {
	text-align:center;
}

.logindetailbox {
  display: grid;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: var(--system-font-size);
}
.logindetailbox:nth-last-of-type(1) {
  margin-top: 4rem;
}

/* 背景イメージ */
.loginbg{
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2
}
.loginbg::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent 0 15%, #fff 70%), url('../storage/img/298710901_m.jpg') no-repeat;
  background-position: center;
  opacity:60%;
  filter:saturate(0.5);
  z-index: -2;
  background-size: cover;
}

/*------------------------------
	メニュー画面用
-------------------------------*/
.msggroup {
	border: 1px solid #000000;
	padding: 5px;
	background-color: #FFFFFF;
    border-radius: 1rem;
    margin:auto;
    width:90%;
}

.bulletinBoardGroup {
	border: 1px solid #000000;
	padding: 5px;
	background-color: #FFFFFF;
    border-radius: 1rem;
    margin:auto;
    margin-bottom:10px;
    height:200px;
    width:90%;
}

.noReadChatMsgGroup {
	border: 1px solid #000000;
	padding: 5px;
	background-color: #FFFFFF;
    border-radius: 1rem;
    margin:auto;
    margin-bottom:10px;
    height:200px;
    width:90%;
}

.systemMmsgGroup {
	border: 1px solid #000000;
	padding: 5px;
	background-color: #FFFFFF;
    border-radius: 1rem;
    margin:auto;
    height: 120px;
    width:90%;
}

.noMsgContent {
    overflow-y:scroll;
    width:80%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left:10px;
}

.msgContent {
    overflow-y:scroll;
    width:80%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left:10px;
    /* border-bottom:1px solid black; */
}

.menugroupbox {
  display: inline-flex; flex-wrap: wrap; justify-content: center; width:100%;
}

.menugroup {
	border: 1px solid #000000;
	padding: 30px 10px;
  border-radius:10px;
  box-shadow:4px 4px 0px 0px #8a821f;
  margin-bottom: 20px;
  width: 28%;
  min-width: 30rem;
  margin: 0 auto 3rem auto
}

.grouptitle {
	width: 140px;
	font-size: 3rem;
	color: #0D1632;
	font-weight: bold;
}

.grouptitle2 {
	width: 103px;
	font-size: 2.2rem;
	font-weight: bold;
}
.grouptitle3 {
	width: 150px;
	font-size: 2.2rem;
	font-weight: bold;
}

.bulletinBoardTitle {
    width: 140px;
    font-size: 2.2rem;
    font-weight: bold;
}

.noReadChatTitle {
    width: 180px;
    font-size: 2.2rem;
    font-weight: bold;
}

.systemTitle {
    width: 340px;
    font-size: 2.2rem;
    font-weight: bold;
}

.grouptitle4 {
	width: 380px;
	font-size: 2.2rem;
	font-weight: bold;
}

.items {
	/* display: flex;
	justify-content: space-between; */
	flex-wrap: wrap;
	/* margin-bottom: 10px; */
}
.items1 {
  font-family: var(--system-msggroup-font-family);
  font-size: var(--system-font-size);
  height:95%;
}

.item1 {
	width: 30%;
	height: 2.2rem;
}

.item2 {
	width: 50%;
	height: 50px;
}

.item3 {
	width: 33%;
	height: 50px;
}

.item4M {
	width: 24%;
	text-align: center;
	display: flex;
}

.item4 {
	width: 24%;
	text-align: center;
}

.item4-menu {
	text-align: center;
  margin-bottom: 20px;
  margin: 0 auto 20px;
}
/* .item4-menu {
	width: 25%;
	height: 50px;
	text-align: center;
} */

.item4 .btn {
	width: 82%;
	text-align: center;
}

.item4 .auth_btn_h {
	width: 82%;
	text-align: center;
}

.item4 .auth_btn_t {
	width: 82%;
	text-align: center;
}

.item4 .auth_btn_k {
	width: 82%;
	text-align: center;
}

.item4 .auth_btn_m {
	width: 82%;
	text-align: center;
}

.item4-menu .btn {
	width: 82%;
	text-align: center;
}

.item4-menu .auth_btn_h {
	width: 82%;
	text-align: center;
}

.item4-menu .auth_btn_t {
	width: 82%;
	text-align: center;
}

.item4-menu .auth_btn_k {
	width: 82%;
	text-align: center;
}

.item4-menu .auth_btn_m {
	width: 82%;
	text-align: center;
}

/*
  顧客詳細画面
*/
.customerDetail {
  font-size:var(--system-font-size);
  width:100%;
  max-width:90%;
  margin:auto;
  padding: 2rem 3rem 2rem 1rem;
  border-radius: 2rem;
  background: white;
  border: 1px solid #000;
}

.detailRowBox {
  display: flex; flex-wrap: wrap;
  column-gap: 6rem;
}
.detailRowBoxRe {
  display: flex; flex-wrap: wrap-reverse;
  column-gap: 6rem;
}

.customerDetail .detailRow {
  display: flex;
  align-items: center;
  border-bottom: #000 1px solid;
  align-items: stretch;
}

.customerDetail .detailRow .detailHeader1,
.customerDetail .detailRow .detailHeader2 {
    background-color : var(--table-header-gray);
    color: black;
    width: 115px;
    position: relative;
    border-radius:5px 0 0 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
  }

.customerDetail .detailRow .detailValue1,
.customerDetail .detailRow .detailValue2 {
    flex: 1;
    padding: 0px 20px;
    width: 24rem;
    overflow-wrap: anywhere;
    margin: auto 0;
  }

.detailValue1-mail {
  flex: 1;
  padding: 0px 20px;
  width: 24rem;
  overflow-wrap: anywhere;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  margin: auto 0;
}

/* スクロールバー */
.detailValue1-mail::-webkit-scrollbar {
  display: none;
}

.detailValue1-constact-hope-date {
  flex: 1;
  padding: 0px 20px;
  overflow-wrap: anywhere;
  width: 24rem;
  height: 4rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.detailValue1-Remark {
  flex: 1;
  padding: 0px 20px;
  overflow-wrap: anywhere;
  width: 100%;
  height: 4rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.constructionInfo .detailValue1-contents {
  flex: 1;
  /* padding: 0px 20px; */
  overflow-wrap: anywhere;
  /* width: 24rem; */
  max-height: 10rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.constructionInfo .detailValue1-address {
  flex: 1;
  padding: 0rem 2rem;
  overflow-wrap: anywhere;
  width: 100%;
  height: 4rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.constructionInfo .detailValue1-buildin-name {
  flex: 1;
  /* padding: 0px 20px; */
  overflow-wrap: anywhere;
  /* width: 24rem; */
  max-height: 10rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.constructionInfo .detailValue1-notes {
  flex: 1;
  /* padding: 0px 20px; */
  overflow-wrap: anywhere;
  /* width: 24rem; */
  max-height: 10rem;
  white-space: normal;
  overflow-y: scroll;
  word-break: break-all;
  align-self: center;
}

.customerDetail .detailRow .detailHeader1::after,
.customerDetail .detailRow .detailHeader2::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    /* // Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
}

/* チャット入力・参照 */
.customerDetail .detailRow .chatDetailHeader1 {
  position: relative;
}

.chatDetailHeader1::before {
  position: absolute;
  content: '';
  background-image:url('/storage/app/public/img/kkrn_icon_user_1.png');
  background-size: contain;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* margin-top: 0.5rem; 削除 */
  transform: translateY(-5px);
  background: rgb(180, 237, 209); /* 削除 */
}

.chatDetailHeader1 input[type="text"] {
  font-size: 3rem; color: white;
  width: 30%;
  background: var(--system-dark-logo-color);
  border: 1px solid #000;
  font-weight: bold;
  padding: 0.5rem;
}

.chatDetailHeader2 {
  color: white;
  padding-left: 1rem;
  align-content: center;
}

.chatDetailValue2 {
  color: white;
  padding-right: 1rem;
  align-content: center;
}

.chatDetailValue2 input[type="text"] {
  color: white;
   background: var(--system-logo-color);
   border: 1px solid var(--system-dark-logo-color);
 }

/*  */
.chatDetailHeader2Mini {
  color: white;
  padding-left: 1rem;
  align-self: center;
  min-width: 5rem;
}

.chatDetailHeader2Short {
  color: white;
  padding-left: 1rem;
  align-self: center;
  min-width: 7rem;
}

.chatDetailHeader2Long {
  color: white;
  padding-left: 1rem;
  align-self: center;
  min-width: 8rem;
}

.chatDetailValue2Mini,
.chatDetailValue2Short,
.chatDetailValue2Long {
  display: grid;
  color: white;
  padding-right: 1rem;
  align-content: center;
}

.chatDetailValue2Mini label,
.chatDetailValue2Short label,
.chatDetailValue2Long label {
  display: block;
  overflow-wrap: anywhere;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.chatDetailValue2Mini label::-webkit-scrollbar,
.chatDetailValue2Short label::-webkit-scrollbar,
.chatDetailValue2Long label::-webkit-scrollbar {
  display: none;
}

/**
  施工一覧テーブル
**/
.const-section {
  /* margin-left:100px; */
  margin:auto;
  margin-bottom: 10px;
  width: 100%;
  max-width: 90%;
}

.const-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.const-row label {
  width: 120px; /* ラベルの幅を指定 */
  margin-right: 10px;
  font-size:var(--system-font-size);
}


/* 施工一覧の切り替えタブ */
  .constListTab {
    display:flex;
    overflow: hidden;
    margin: 0% 5%;
    border:none;
  }

  .constListTab button {
    background-color: white;
    font-size:var(--system-font-size);
    float: left;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    width:200px;
    font-weight:bold;
    transform: translateY(9px);
    height: 4rem;
  }

  .tablinks {
    background-color: var(--system-color);
    border-radius : 20px 20px 0 0;
    border-left:solid 1px var(--system-btn-border);
    border-top:solid 1px var(--system-btn-border);
    border-right: solid 1px var(--system-btn-border);
  }

  .tablinks:hover {
    background-color: #ccc;
    transform: translateY(0px);
  }

  .constListTab button.active {
    border-radius : 20px 20px 0 0;
    padding: 10px 15px;
    background-color: var(--system-dark-color) ;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 1);
    color:white;
    transform: translateY(0px);
  }

  /* .constListTab button.active::after {
    position: absolute;
    content: '';
  } */

/* 施工一覧テーブルレイアウト */
.constructTable_flame {
  width: 100%;
  max-width: 90%;
  min-width:50%;
  height: 300px;
  overflow-y: auto;
  margin: 0% 5%;
  background-color: ghostwhite;
  border-radius: 0 5px 5px 5px;
  border: solid 1px #000;
  /* box-shadow:4px 4px 0px 0px var(--system-btn-border); */
}

.constructTable {
  font-size:var(--system-font-size);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border-radius: 0 5px 5px 5px;
  text-align: center;
}
.constructTable tr:nth-child(odd) {
  background-color: #ffffff;
}
.constructTable tr:nth-child(even) {
  background-color: var(--system-light-gray);
}
.constructTable tbody tr {
  border: 1px solid;
  border-left: none;
  border-right: none;
  background-color: #fff;
}
/* 「最終行」の下線非表示 */
/* .constructTable tbody tr:nth-last-child(1) {
  border-bottom: none;
} */
.constructTable thead th {
  padding: 0.5em; /* ここで縦線を追加 */
  background-color: var(--system-logo-color);
  /* background-color: #fff5ab; */
  color: white;
  font-weight: bold;
  text-align: center;
  border-right: var(--system-btn-border) 1px solid;
  position: relative;
}
.constructTable th:nth-last-child(1) {
  border-right:none;
}

/* theadの下線 */
.constructTable th::after {
  position: absolute;
  content: '';
  top: -1px;
  left:0;
  width: 100%;
  height: 100%;
  border-bottom: #000 solid 1px;
}
.constructTable td {
  padding: 0.3rem 0.5em; /* ここで縦線を追加 */
  border-right: solid 1px #000;
}
.constructTable tr:first-child {
  border-top:none;
}
.constructTable tr td:nth-last-child(1) {
  border-right:none;
}


.constructTable_flame2 {
  display: none;
}
@media screen and (max-width: 787px) {
  .constructTable_flame {
    display: none;
  }

  .constructTable_flame2 {
    display:block;
    width: 100%;
    max-width: 90%;
    min-width:50%;
    height: 400px;
    overflow-y: auto;
    margin:auto;
    background-color: ghostwhite;
    border-radius: 0 5px 5px 5px;
    border: solid 1px #000;
    /* box-shadow:4px 4px 0px 0px var(--system-btn-border); */
  }

  .constructTable2 {
    font-size:var(--system-font-size);
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    border-radius: 0;
    text-align: left;
  }

  .constructTable2 th, .constructTable2 td {
    /* display: block; */
    border: 0;
    border: solid 1px #000;
    padding: 0.5em;/* ここで縦線を追加 */

    color: black;
    font-weight: bold;
  }

  .constructTable2 th {
    background-color: var(--system-logo-color);
    color: white;
    font-weight: bold;
    text-align: center;
    width: 13rem;
    border-left: none;
  }

  .constructTable2 td {
    border-right: none;
  }

  .constructTable2 tr:first-child th,
  .constructTable2 tr:first-child td {
    border-top: none;
  }
  .constructTable2 tr {
    background-color: #fff;
  }
  .constructTable2 tr:nth-child(even) {
    background-color: var(--system-light-gray);
  }

  .constructTable2 tbody:nth-child(even) th {
    background-color: var(--system-dark-logo-color);
  }
}

/*------------------------------
　施工詳細画面
------------------------------*/
/*
  顧客詳細画面
*/
.customerInfo {
  font-size:var(--system-font-size);
  width:100%;
  max-width:90%;
  margin:auto;
  position: relative;
}

.customerInfo .detailRow {
  display: flex;
  align-items: center;
  height: 30px;
  margin-bottom: 10px;
}

  .customerInfo .detailHeader1,
  .customerInfo .detailHeader2 {
    width: 150px;
    position: relative;
    background-color : var(--system-logo-color);
    color: white;
    border-radius: 15px 0 0 15px;
    padding: 5px 5px 5px 15px;
  }

  .customerInfo .detailValue1,
  .customerInfo .detailValue2 {
    background-color:white;
    flex: 1;
    padding-left: 20px;
  }

  .customerInfo .detailHeader1::after,
  .customerInfo .detailHeader2::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px; /* Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
  }

.constructionInfo {
  /* display:grid; */
  font-size:var(--system-font-size);
  width:100%;
  max-width:90%;
  margin:auto;
  grid-template-columns: repeat(14, 1fr); /* Adjusted for equal width */
  /* padding: 10px; */
  position: relative;

  display: flex;
  flex-wrap: wrap;
}

.constructionInfo .detailHeader {
    position: relative;
    background-color : var(--table-header-gray);
    /* border-radius:5px 0 0 5px; */
    padding-left: 5px;
    padding: 1rem;
    /* border: 1px solid var(--system-btn-border); */
    text-align: center;
    vertical-align: middle;

    width: 30%;
    /* min-width: 14rem; */
    min-width: 18rem;
    max-width: max-content;
  }

.constructionInfo .single {
    grid-column:span 2;
}
.constructionInfo .detailValue {
    padding: 1rem 2rem;
    text-align:left;
    display: block; /* Add Flexbox */
    align-items: center; /* Center vertically */
    justify-content: left; /* Center horizontally */
    flex-wrap: wrap;
    column-gap: 1rem;
    width: 50%;
}

.constructionInfo .detailValue input[type='text'] {
  width: 100%;
}
.constructionInfo .detailValue input[type='date'],
.constructionInfo .detailValue input[type='number'],
.constructionInfo .detailValue input[type='input'] {
  width: 15rem;
  /* height: 3rem; */
}
.constructionInfo .detailValue select {
  width: auto;
  min-width: 15rem;
  /* height: 3rem; */
  font-size: var(--system-font-size);
  border-color: #000;
}
.constructionInfo .detailValue textarea {
  width: 100%;
  padding: 0.5rem;
}
.constructionInfo .multiBox .multiValue input[type='text'],
.constructionInfo .multiValue2 input[type='text'] {
  width: 15rem;
}
.constructionInfo .multiBox .multiValue input[type='email'],
.constructionInfo .multiValue2 input[type='email']  {
  width: 100%;
}
.multiBox .multiValue .validate {
  max-width:39rem;
}

.constructionInfo .detailValue > div {
    display: table-cell; /* Add table-cell display */
    vertical-align: middle; /* Vertically align content */
}

.constructionInfo .value {
    grid-column:span 12;
}

.constructionInfo .value-left,
.constructionInfo .value-right {
    grid-column:span 6;
    width: 45%;
}
.constructionInfo .multiBox{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.constructionInfo .multiHeader {
    grid-column:span 2;
    width: 22rem;
}

.constructionInfo .multiHeader::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px; /* Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
}


.constructionInfo .multiHeader2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; /* Adjust to align with the value */
  height: 100%;
  width: 1px;
  background-color: #000;
}

.constructionInfo .multiHeader2::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px; /* Adjust to align with the value */
  height: 100%;
  width: 1px;
  background-color: #000;
}

@media screen and (max-width: 1100px) {
  .constructionInfo .multiBox{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
  }

  .constructionInfo .multiHeader2,
  .constructionInfo .multiValue2 {
    border-top: 1px solid #000;
    width: 100%;
  }

  .constructionInfo .multiHeader2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Adjust to align with the value */
    height: 100%;
    width: 0px;
    background-color: #000;
  }

  .constructionInfo .multiHeader::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px; /* Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
  }

  .constructionInfo .multiValue {
    grid-column:span 5;
}
}

.constructionInfo .multiValue {
    grid-column:span 5;
}

.constructionInfo .single::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px; /* Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
  }

.constructionInfo .sub::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px; /* Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
  }




/*------------------------------
　実績報告画面
------------------------------*/
  /*
    実績詳細テーブル
  */
  .recordDetail {
    font-size:var(--system-font-size);
    width:100%;
    max-width:90%;
    margin:auto;
    background: white;
  }

  .recordDetail .detailRowBox {
    column-gap: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, 422px);
  }

  .recordDetail .detailRow {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    margin-bottom: -1px;
    margin-right: -1px;
  }

  .recordDetail .detailRow .detailHeader {
    background-color : var(--table-header-gray);
    color: black;
    width: 115px;
    position: relative;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recordDetail .detailRow .detailHeader::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    /* // Adjust to align with the value */
    height: 100%;
    width: 1px;
    background-color: #000;
  }

  .recordDetail .detailRow .detailValue {
    flex: 1;
    padding: 0px 20px;
    width: 24rem;
    overflow-wrap: anywhere;
    margin: auto 0;
  }

  .recordDetail .detailValue {
    flex: 1;
    padding: 0px 20px;
    width: 24rem;
    overflow-wrap: anywhere;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    margin: auto 0;
  }
  /* スクロールバー */
  .recordDetail .detailValue::-webkit-scrollbar {
    display: none;
  }

/* 報告書テンプレート */
  .recordInfo {
    /* display:grid; */
    font-size:var(--system-font-size);
    width:100%;
    margin:0;
    grid-template-columns: repeat(14, 1fr); /* Adjusted for equal width */
    /* padding: 10px; */
    position: relative;

    display: flex;
    flex-wrap: wrap;
  }

  .recordInfo .detailHeader {
    position: relative;
    background-color : var(--table-header-gray);
    /* border-radius:5px 0 0 5px; */
    padding-left: 5px;
    padding: 1rem;
    /* border: 1px solid var(--system-btn-border); */
    text-align: center;
    vertical-align: middle;

    width: 30%;
    /* min-width: 14rem; */
    min-width: 18rem;
    max-width: max-content;
  }

  .recordInfo .detailValue {
    margin: 10px 20px;
    text-align:left;
    display: block; /* Add Flexbox */
    align-items: center; /* Center vertically */
    justify-content: left; /* Center horizontally */
    flex-wrap: wrap;
    gap: 1rem;
}

.recordInfo .detailValue select {
  width: 18rem;
  /* height: 3rem; */
  font-size: var(--system-font-size);
  border-color: #000;
}
.recordInfo .detailValue textarea {
  /* width: 100%; */
  width: 95%;
  height:125px;
  padding: 0.5rem;
}

/*------------------------------
　チャット画面
------------------------------*/
#chatList {
    width: 100%;
    height: 60vh;
    overflow-y: auto;
    border: 1px solid var(--system-dark-color);
    border-radius:0px 0px 10px 10px;
    padding: 1% 0%;
    background: white;
}
#inputArea {
    width: 80%;
    /* height: 100px; */
    /* margin-top: 10px; */
    margin: auto;
    display: flex;
    /* flex-direction: column; */
}
.textarea-container {
    flex: 1;
}
.input_form {
    width: 100%;
    resize: none;
    overflow-y: scroll;
    resize: none;
    outline: none;
    border-radius: 10px 10px 0px 0px;
    padding: 1rem;
    border-bottom: none;
}
#upFile {
    width: 20%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}
/* #file-input {
flex: 0 0 100px;
} */
.chat-area ::-webkit-file-upload-button {
  content: '';
  display: block;
  border: none;
  border-image-slice: 1;
  text-align: center;
  width: 5rem;
  height: 14rem;

  background: url('../storage/img/upfile.png') no-repeat center / 3.8rem;
  background-position: 0.7rem 1.1rem;
  filter: invert();
}

.constructionInfo ::-webkit-file-upload-button {
  content: '';
  display: block;
  border: 1px solid #000;
  text-align: center;
  padding: 2rem;
  transform: translate(-1rem, -1.8rem);
}


.constructionInfo ::-webkit-file-upload-button:hover {
  background: #d0d0d0;
}

::-webkit-file-upload-button:hover {
  cursor: pointer;
}

.chat-container {
display: flex;
flex-direction: column;
align-items: center;
}
.chat-bubble {
max-width: 80%;
margin: 10px;
/* padding: 10px 20px; */
position: relative;
word-wrap: break-word;
font-size: var(--system-font-size);
}
.chat-bubble.right {
/* background-color: lightgreen; */
color: black;
align-self: flex-end;
margin-right: 40px;
max-width:45%;
border-radius: 20px 20px 0px 20px;
}
.chat-bubble.left {
/* background-color: #f0f0f0; */
/* background-color: var(--system-night-green); */
align-self: flex-start;
margin-left: 40px;
max-width:45%;
border-radius: 20px 20px 20px 0px;
}
.chat-bubble-detail-R {
  background-color: #98ceba;
  color: black;
  align-self: flex-end;
  border-radius: 20px 20px 0px 20px;
  padding: 10px 20px;
  position: relative;
}
.chat-bubble-detail-L {
  background-color: #cde0d8;
  color: black;
  align-self: flex-end;
  border-radius: 20px 20px 20px 0px;
  padding: 10px 20px;
}
.edit-button-icon {
  position: relative;
  border-radius: 50%;
  background: var(--system-dark-color);
  width: 0.3rem;
  height: 0.3rem;
}
.edit-button-icon::before {
  position: absolute;
  content: '';
  border-radius: 50%;
  background: var(--system-dark-color);
  width: 0.3rem;
  height: 0.3rem;
  top: -5px;
  left: 0;
}
.edit-button-icon::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  background: var(--system-dark-color);
  width: 0.3rem;
  height: 0.3rem;
  bottom: -5px;
  left: 0;
}
.edit-button {
  /* background-image: url(''); */
  /* background-color: skyblue; */
  width: 15%;
  height: 100%;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  text-align: -webkit-right;
}
.edit-box {
  position: absolute;
  display: none;
  right: -3rem;
  width: 10rem;
  bottom: -1rem;
  gap: 1rem;
}

/* //		  .chat-bubble.right::after {
//		    content: "";
//		    position: absolute;
//		    top: 10px;
//		    right: -10px;
//		    border-width: 10px;
//		    border-style: solid;
//		    border-color: green transparent transparent transparent;
//		  }
//		  .chat-bubble.left::after {
//		    content: "";
//		    position: absolute;
//		    top: 10px;
//		    left: -10px;
//		    border-width: 10px;
//		    border-style: solid;
//		    border-color: #0000ff transparent transparent transparent;
//		  } */
.chat-box {
  margin: 0% 10%; height: 30rem;
  /* border: solid 1px #000; */
  /* border-radius: 1rem 3rem 1rem 1rem; */
}
.chat-area {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  height: 10rem;
}
.chat-label-box {
  display: flex;
  flex-wrap: wrap;
}
.chat-label-name {
font-size: 1em;
display: block;
margin-bottom: 5px;
}
.chat-label-time {
  font-size: 0.85em;
  display: block;
  margin-bottom: 5px;
  padding-top: 7px;
  }
.chat-select {
  border: 1px solid var(--system-btn-border);
  border-radius: 6px;
  height: 4rem;
  width: auto;
  font-size: large;
}
#drop-zone {
  /* width: 60%; */
  height: 180px;
  border: 0.1rem dashed var(--system-dark-color);
  border-radius: 0px 0px 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #555555;
  /* //            margin: 10px 0; */
  cursor: pointer;
  font-size:0.7em;
  padding: 0;
}
#drop-zone.dragover {
border-color: #333333;
color: #333333;
}
#preview {
  flex: 1;
  /* //		    border: 1px solid #ccc; */
  border: none;
  margin-bottom: 10px;
}
.preview {
display: flex;
flex-wrap: wrap;
margin-top: 20px;
/* max-height: calc(90% - 220px); */ /* Adjust according to the drop zone height and margins */
max-height: 200px;
overflow-y: auto;
}
.preview img {
width: 100px;
height: 56.25px; /* 16:9 アスペクト比の高さ (100px * 9 / 16) */
margin: 10px;
object-fit: cover;
}
#preview img {
	width:100px;
	border:1px solid #cccccc;
}
.container {
display: flex;
width: 40%;
}
.button-container {
display: flex;
justify-content: flex-end;
}
.form-group {
display: flex;
flex-direction: column;
width: 30%;
}
.textarea-container {
width: 90%;
}
.thumbnail-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.thumbnail-container img {
width: 100px;
height: 56.25px; /* 16:9 アスペクト比の高さ (100px * 9 / 16) */
object-fit: cover;
border: 1px solid #ccc;
border-radius: 5px;
}

.friendBtn {
  font-size: var(--system-font-size);
  width: fit-content;
  border: solid 1px;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--system-logo-color);
  border: none;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 1);
}

.friendBtn img {
  /* チャット投稿ボタンimg位置 */
  transform: translate(-1px, 3px);
  filter: invert(1);
}

.friendBtn:hover {
  background-color: #28625f;
  cursor: pointer;
}

.friendBtn-file {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: none;
  border: none;
}

.friendBtn2 {
  font-size: var(--system-font-size);
  width: fit-content;
  border: solid 1px #000;
  width: 14rem;
  height: 3rem;
  padding: 0.2rem 0.5rem;
  background-color: var(--table-header-gray);
}

/*------------------------------
 写真一覧
------------------------------*/

.photoDetailHeader {
  width:80%; margin:auto; text-align:left; font-size: var(--system-font-size);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  /* border: solid 1px #000; */
}

.photoSection {
  margin:0% 5%;
  border-top:var(--system-table-border) 4px solid;
  border-bottom:var(--system-table-border) 4px solid;
}

.photoHeader {
  display:flex;
  font-size:15pt; font-weight:bold; margin: 1rem;
  width: 30rem;
}

.photoSection .L,
.photoSection .M,
.photoSection .S {
  position: relative;
}


.L::after {
  position: absolute;
  content: '';
  background: #a5d3d0;
  width: 120%;
  height: 60%;
  top: 1rem;
  left: -0.7rem;
  z-index: -1;
  border-radius: 10rem;
}
.M::after {
  position: absolute;
  content: '';
  background: #a5d3d0;
  width: 105%;
  height: 2rem;
  /* height: 60%; */
  top: 1rem;
  left: -0.7rem;
  z-index: -1;
  border-radius: 10rem;
}
.S::after {
  position: absolute;
  content: '';
  background: #a5d3d0;
  width: 80%;
  height: 60%;
  top: 1rem;
  left: -0.7rem;
  z-index: -1;
  border-radius: 10rem;
}

.photoDiv {
  position:relative;
  float:left;
  text-align:center;
  margin:1rem;
  min-height: 10rem;
  /* display: flex; */
}

.photoDiv label {
  font-size: var(--system-font-size);
  font-weight: normal;
  text-align: center;
  width: 100%;
}

.photoDiv img {
  transition: transform .6s ease; /* ゆっくり変化させる */
  border-radius: 1rem;
  height: 120px;
}

.photoDiv img:hover {
  transform: scale(1.1);/* 拡大 */
}

.mt-2 {
  font-size:10pt; margin-top:0.3rem;
}
/*------------------------------
 validate error
------------------------------*/
.validate.error {
    color: red;
    font-size: 12pt;
    max-width: 100%; /* メッセージの最大幅を入力フィールドに合わせる */
    font-weight: normal;
    display: block; /* ブロック要素にして折り返し可能にする */
    word-wrap: break-word; /* 長い単語があれば折り返す */
    /* margin-top: 0.5rem; */
    /* メッセージと入力フィールドの間に余白を追加 */
}

/** 施工検索画面 */
.containts .constList {
	font-size:10pt;
}

a.truncate-text,
div.truncate-text,
td.truncate-text {
    white-space: nowrap;        /* テキストを1行で表示する */
    overflow: hidden;           /* 幅を超えた部分を隠す */
    text-overflow: ellipsis;    /* 超過したテキストに「...」を表示する */
/*    max-width: 200px;  */         /* 必要に応じて幅を指定 */
}

/*  */

/* 実績報告テーブルレイアウト */
.M3003Table_flame {
  width: 100%;
  max-width: 90%;
  min-width:50%;
  height: 700px;
  overflow-y: auto;
  margin: 0% 5%;
  background-color: ghostwhite;
  border-radius: 5px;
  border: solid 1px #000;
  /* box-shadow:4px 4px 0px 0px var(--system-btn-border); */
}

/** 実績報告書作成画面 */
.reportTable {
  font-size:var(--system-font-size);
  border-collapse: collapse;
  /* table-layout: fixed; */
  width: 100%;
  border-radius: 5px;
  text-align: center;
}
.reportTable tr:nth-child(odd) {
  background-color: #ffffff;
}
.reportTable tr:nth-child(even) {
  background-color: var(--system-light-gray);
}
.reportTable tbody tr {
  border: 1px solid;
  border-left: none;
  border-right:none;
  background-color: #fff;
}
.reportTable th {
  padding: 0.5em; /* ここで縦線を追加 */
  background-color: var(--system-logo-color);
  color: white;
  font-weight: bold;
  text-align: center;
  border-right: solid 1px #000;
  border-bottom:solid 1px #000;
  position: relative;
}
.reportTable th:nth-last-child(1) {
  border-right:none;
}
.reportTable td {
  padding: 0.3rem 0.5em; /* ここで縦線を追加 */
  border-right: solid 1px #000;
}
.reportTable tr:first-child {
  border-top:none;
}
.reportTable tr td:nth-last-child(1) {
  border-right:none;
}
.reportTable .validate {text-align: left;}

.reportDiv {display:flex; justify-content:center; gap:1rem;}

/*------------------------------
	prefecture_modal
-------------------------------*/
.prefecture_modal {
	display: none;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.prefecture_modal_content {
	margin: 10% auto;
	padding: 20px;
	overflow: hidden;
	box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
	border-radius: 10px 10px 10px 10px;
	/* width: 300px;
	height: 150px; */
	width: 65%;
	height: 65%;
	-webkit-animation-name: modalopen;
	animation-name: modalopen;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	background-color: #f5f5f5;
}

.user_entry_label {
	display:inline-flex;
	/* font-size: 1rem; */
	/* font-weight: bold; */
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	vertical-align:middle;
}

.user_edit_radio {
	height:30px;
	display:inline-flex;
	/* font-size: 1rem; */
	/* font-weight: bold; */
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	vertical-align:middle;
}

/* input[type="checkbox"] {
	transform: scale(2);
	margin: 0 16px 0 0;
} */

.modalButtonDiv {width:100%; display:flex; justify-content:space-around;}

/*------------------------------
	heading
-------------------------------*/
.margin5 {
  margin-left: 5%;
}
.margin10 {
  margin-left: 10%;
  font-size: var(--system-font-large-size);
}

.marginTB5 {
  margin: 5rem 0rem;
}

/* .contents h1 {
	position: relative;
	margin: 0 0 30px;
	padding: 10px 0;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 3px solid #c17e14;
} */
/* .contents h1::before {
	position: absolute;
	content: '';
	background: #c17e14;
	bottom: 0;
	left: calc(50% - 30px);
	width: 80px;
	height: 3px;
} */
/* .contents h2 {
	margin: 0 0 20px;
	padding: 7px 15px 7px 20px;
	font-size: 2.4rem;
	font-weight: bold;
	background: #fff5e3;
	position: relative;
}
.contents h2::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 26px;
	margin: -13px 0 0;
	/* background: #c17e14; */
/* } */
.contents h3 {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 0 0 20px;
	padding: 0 0 0;
	border-bottom: 2px solid #ccc;
	position: relative;
}
.contents h3::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #c17e14;
} */

.user_import_btn {
	margin-top: 2rem;
}

@media screen and (max-width: 768px) {}

/*------------------------------
	paragraph
-------------------------------*/
.contents p {
	margin: 0 0 2rem 0;
	/* *zoom: 1; */
	line-height: 2;
}
.contents p::before,
.contents p::after {
	content: " ";
	display: table;
}
.contents p::after {
	clear: both;
}
@media screen and (max-width: 768px) {}
/*------------------------------
	table
-------------------------------*/
.contents table {
	/* margin-bottom: 30px; */
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e6e6e6;
}
.contents th {
	padding: 10px;
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	vertical-align: middle;
	background: #f5f5f5;
	text-align: center;
	white-space: nowrap;
}
.contents td {
	padding: 10px;
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	vertical-align: middle;
}

.contents th.userEdit {
	width: 10em;
	height:20px;
	text-align: center;
}

.contents .userEdit {
	height: 500px;
	overflow: auto;
	margin-bottom:20px;
}

.contents .passwordTable {
	border: none;
}

.contents .passwordTable tr td {
	border: none;
}

.contents .userEditTable {
	width:90%;
	margin: auto;
}

.contents .userDetailTable th.userDetailItem {
	/* text-align:right; */
	width: 20%;
}

.contents .userExamHistoryTable {
	height:500px;
	overflow: auto;
	margin:0 0 20px 0;
}

.contents .userExamHistoryTable .userExamHistoryHeader {
	position: sticky;
	top:-1px;
	text-align: center;
	background: #f5f5f5;
}

.contents .userEditHistoryTable {
	height:500px;
	overflow: auto;
	margin:0 0 20px 0;
}

.contents .mailSendHistoryTable {
	height:500px;
	overflow: auto;
	margin:0 0 20px 0;
}

.contents .mailSendHistoryTable .mainText {
	  overflow: hidden;
	  white-space: nowrap;
	  text-overflow: ellipsis;
}

.contents .mailSendHistoryTable .userMailSendHistoryHeader {
	position: sticky;
	top:-1px;
	text-align: center;
	background: #f5f5f5;
}

.contents .templateMailList {
	height:500px;
	overflow-y: scroll;
}

.contents .templateMailList .templateMailListTable {
	width:90%;
	margin: auto;
}

/* .userList {
	height:500px;
	overflow-y: scroll;
}

.userList .userListTable {
	width:90%;
	margin: auto;
}

.contents .userListCheckBox {
	text-align:center;
}
.contents .userListExamCount {
	text-align:right;
}
.contents .userListTotalPoint {
	text-align:right;
}
.contents .userListExamResult {
	text-align:center;
	width:80px;
}

.contents .userListDetail {
	width:100px;
	position: sticky;
	top:-1px;
	z-index:3;
} */

.constructionList {
	height:500px;
	overflow-y: scroll;
}

.constructionList .constructionListTable {
	width:90%;
	margin: auto;
}

.contents .constructionListCheckBox {
	text-align:center;
}

.contents .appLogList {
	height:500px;
	overflow-y: scroll;
}

.contents .appLogList .appLogListTable {
	width:90%;
	margin: auto;
}

/* .contents .userList .userListTable .mailContents {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
} */

.contents .tableButton {
	width:70px;
	position: sticky;
	top:-1px;
	z-index:3;
}

.contents .userListButton {
	width:80px;
}

.contents .appLogList .appLogListTable .paymentCode {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.contents .examListTestCode {
	width:80px;
}
.contents .examListPeriod {
	text-align:center;
	width:400px;
}
.contents .examListExamNo {
	width: 120px;
	text-align:center;
}
.contents .examListExamName {
	text-align:center;
}

.contents .examList {
	height:500px;
	overflow-y: scroll;
}

.send_mail_form {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.send_mail_inner {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	width:300px;
	/* margin-bottom: 30px; */
}

/* ======================= */
/* 検索一覧テーブル */
/* ======================= */
/* .box2 .searchTable {
	white-space: nowrap;
	background-color: none;
	border-style: hidden;
	font-size: var(--system-font-size-ctl);
}

.box2 .searchTable th {
	text-align: left;
	padding: 0rem 2rem 0rem 0.4rem;
	margin: 0 auto;
	vertical-align: middle;
	border-style: hidden;
	height: 2.4rem;
	background-color: none;
	font-weight: bold;
	font-size: var(--system-font-size-ctl);
	width: 150px;
	border: none;
}

.box2 .searchTable td {
	padding: 0rem 2.5rem 0rem 0.4rem;
	margin-right: 60px;
	vertical-align: middle;
	border-style: hidden;
	height: 2.4rem;
	background-color: none;
	font-weight: bold;
	font-size: var(--system-font-size-ctl);
	border: none;
} */

@media screen and (max-width: 768px) {}
/*------------------------------
	button
-------------------------------*/
.menubtn {
	width:120px;
}

a.btn.detailBtn {
	width:80px;
	min-width:80px;
}

button.btn.detailBtn {
	width:80px;
	min-width:80px;
}
.contents .search {
	margin-top: -30px;
}

.contents .userDetailTable {
	  width:100%;
}

.contents .userDetailTable th {
	width: 150px;
}

/* .contents .userDetailTable .userDetailItem {
	  width:150px;
} */

.pagination {
  justify-content: center;
}

.page-item.active .page-link {
  z-index:1;
}

/*=======================================
	form
=======================================*/
input {padding: 0rem 0.5rem;}
textarea {display: block;}

input,
textarea {
  border: 1px solid var(--system-dark-color);
	background-color: #fff;
	border-radius: 6px;
  font-size: var(--system-font-size);
  box-sizing: border-box;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
	width: 100%;
}

input[type="date"] {
	width:auto;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
.constructionInfo .detailValue input[type='date'],
.constructionInfo .detailValue input[type='number'],
.constructionInfo .detailValue input[type='input'] {
  height: 2.7rem;
}

input[type="radio"] {
	transform: scale(2);
	margin: 0 16px 20px 0;
}
input[type="checkbox"] {
	transform: scale(1.4);
  vertical-align: middle;
	/* margin: 0 6px 0 0; */
}
/* input[type="file"] {
	border: none;
} */
input[type="submit"] {
	display: block;
	margin: 0 auto;
}
select {
	padding: 0px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
  cursor: pointer;
  height: 2.7rem;
}

/* #resultLimitId {direction: rtl;} */

@media screen and (max-width: 768px) {}


/*=======================================
	footer
=======================================*/
.footer {
	padding: 40px 0;
}
.footer_copy {
	text-align: center;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {}

/*=======================================
	module
=======================================*/
.managerHeader2 {
  font-size: 15pt;
  display: flex;
  flex-wrap: wrap;
  margin: 0% 5%;
}
.managerHeader2 p {margin: 1rem 0rem;}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.tac {text-align: right;}

#modal-content {
    width:100%;
    height: 100%;
    margin: 0;
    padding: 10px 20px;
    border: 2px solid #aaa;
    position: fixed;
    display: none;
    z-index: 2;
}

#modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.50);
}

.modalWrapper2 {
    position: fixed;
    top: 50%;
    left: 50%;
    /* height: 30%;
    width: 30%; */
    height: 27rem;
    width: 45rem;
    padding: 20px 30px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    overflow: auto; /* スクロールバーを表示させる */
    border-radius: 2rem;
}

/* モーダルのコンテンツ部分 */
.modalBodyCustom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

/* 左右のリストとボタンを中央に配置 */
.modalBodyCustom > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* フッターのボタン */
.modalFooterCustom {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding-top: 10px;
}

/* .modalFooterCustom button {
    width: 100px;
    height: 40px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
} */

/* .modalFooterCustom button:hover {
    background-color: #0056b3;
} */

/*=======================================
	Headline
=======================================*/
/*------------------------------
	Heading
-------------------------------*/
/* Subheading-------------*/


/* パスワード入力欄のスタイル
*/
.password-container {
    position: relative;
    width: 60%;
    margin: auto;
    font-size: var(--system-font-size);
}

.manage_password_container {
    position: relative;
    width: 60%;
    /* margin: auto; */
    /* margin-right:20px; */
    font-size: var(--system-font-size);
}

#fieldPassword {
    border-width: thin;
    border-style: solid;
    width: 200px;
}

.input-wrapper {
    position: relative;
}

.buttonEye {
    position: absolute;
    right: 10px;
    /* テキストボックス内の右端からの位置 */
    top: 50%;
    transform: translateY(-50%);
    /* 垂直方向の中央に配置 */
    cursor: pointer;
}

.focused-select {
    border: 2px solid #007BFF;      /* フォーカス時の枠線色 */
    background-color: #e6f7ff;      /* フォーカス時の背景色 */
}

.focused-checkbox {
    outline: 2px solid #007BFF;        /* チェックボックスのフォーカス時のアウトライン */
    outline-offset: 2px;               /* アウトラインのオフセット */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);  /* チェックボックスのフォーカス時の影 */
    border-radius: 4px;                /* 四隅を少し丸くして強調 */
}

/* 共通ボタンスタイル */
.fc-button {
    border-radius: 10px; /* 角を丸くする */
    background-color: #007bff; /* ボタンの背景色 */
    color: white; /* テキストカラー */
    border: none; /* 枠線なし */
    padding: 8px 12px; /* 内側の余白 */
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* ホバー時のスムーズな変化 */
}

/* ホバー時 */
.fc-button:hover {
    background-color: #0056b3;
}

/* アクティブ時 */
.fc-button:active {
    background-color: #003f7f;
}

/* 前月・翌月ボタンの個別デザイン */
.fc-prevButton-button,
.fc-nextButton-button {
    border-radius: 20px; /* さらに丸みをつける */
    background-color: #28a745; /* 緑系の色 */
}

.fc-prevButton-button:hover,
.fc-nextButton-button:hover {
    background-color: #218838;
}

/* 当月ボタンのデザイン */
.fc-today-button {
    font-weight: bold;
    background-color: #17a2b8; /* 青緑系 */
}

.fc-today-button:hover {
    background-color: #138496;
}

/* 週/月切り替えボタン */
.fc-weekBtn-button,
.fc-monthBtn-button {
    background-color: #ffc107; /* 黄色系 */
    color: black;
}

.fc-weekBtn-button:hover,
.fc-monthBtn-button:hover {
    background-color: #e0a800;
}
