@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

/* iOS用フォームCSSリセット */
input, textarea, select, button, input[type="date"] {
  font-family: inherit; /* フォントファミリーを継承 */
  font-size: 100%; /* フォントサイズをリセット */
  font-weight: normal; /* フォントの太さをリセット */
  margin: 0; /* マージンをリセット */
  padding: 0; /* パディングをリセット */
  border: none; /* ボーダーを消去 */
  background: transparent; /* 背景色を透明にする */
  -webkit-appearance: none; /* デフォルトの外観をリセット */
  -moz-appearance: none;
  appearance: none;
}

input,
select,
textarea,
button {
  color: initial;
  -webkit-text-fill-color: initial;
}

summary {
  display: block;  /* 矢印のアイコンを非表示にする */
}

/* Safari で三角形のアイコンを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

/* ボタンのスタイルをリセット */
button {
  cursor: pointer; /* カーソルスタイルを変更 */
}

/* チェックボックスとラジオボタンのスタイルをリセット */
input[type="checkbox"], input[type="radio"] {
  -webkit-appearance: none; /* デフォルトの外観をリセット */
  -moz-appearance: none;
  appearance: none;
  margin: 0; /* マージンをリセット */
  padding: 0; /* パディングをリセット */
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: checkbox; /* Safari, Chrome, Edge, Opera */
  appearance: checkbox; /* Firefox */
}

/* input[type="date"]のスタイルをリセット */
input[type="date"] {
  -webkit-appearance: none; /* デフォルトの外観をリセット */
  -moz-appearance: none;
  appearance: none;
  padding: 0; /* パディングをリセット */
  background-color: transparent; /* 背景色を透明にする */
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* フォーカス時のスタイルをリセット */
*:focus {
  outline: none; /* アウトラインを消去 */
}
/* ios リセット end */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #201F1F;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.log_lxc {
  border-top: 3px solid #00a8bd;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.log_lxc .box1 {
  max-width: 300px;
  width: 80%;
  margin: 50px auto 0;
}

.log_lxc .box1 img {
  display: block;
  width: 100%;
}

.log_lxc .box2 {
  max-width: 300px;
  width: 90%;
  margin: 10px auto 0;
  flex: 1;
}

.log_lxc .box2 form p {
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.log_lxc .box2 form input {
  width: 100%;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #F0F2F2;
  border: 0.5px solid #8C8C8C;
  margin-bottom: 15px;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

.log_lxc .box2 form input:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

.log_lxc .box2 form .pass {
  position: relative;
}

.log_lxc .box2 form .pass input {
  width: 100%;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #F0F2F2;
  border: 0.5px solid #8C8C8C;
  margin-bottom: 15px;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

.log_lxc .box2 form .pass input:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

.log_lxc .box2 form .pass span {
  display: block;
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.log_lxc .box2 form .pass .hyde {
  display: none;
}

.log_lxc .box2 form input[type=submit] {
  width: 100%;
  margin: 10px auto 0;
  background-color: #00a8bd;
  border-radius: 6px;
  color: #FFF;
  text-align: center;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

.log_lxc .box2 form input[type=submit]:hover {
  opacity: 0.7;
  box-shadow: 1px 1px 4px #0D0D0D;
}

.log_lxc .box2 .mov_qr {
  margin: 40px auto 30px;
  max-width: 300px;
  width: 90%;
}

.log_lxc .box2 .mov_qr img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.log_lxc .box3 {
  width: 100%;
  background-color: #00a8bd;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
}

.log_lxc .box3 h1 {
  line-height: 1.5;
  font-size: 11px;
}

.log_lxc .box3 h2 {
  line-height: 1.5;
  font-size: 11px;
  margin-top: 3px;
}

.mov_menu {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 9;
  cursor: pointer;
  display: none;
}

.mov_hyde {
  display: none;
}

.mov_menu span {
  display: block;
  font-size: 40px;
}

@media (max-width: 1070px) {
  .mov_menu {
    display: block;
  }

  .mov_hyde {
    display: none;
  }
}

.ass_mov_hyde {
  display: none;
}

@media (max-width: 750px) {
  .ass_mov_hyde {
    display: block;
  }
}

header {
  border-top: 3px solid #00a8bd;
  display: flex;
  box-sizing: border-box;
}

header .lxc01 {
  width: 95%;
  border-bottom: 0.5px solid #00a8bd;
  margin: 0 auto;
  display: flex;
  box-sizing: border-box;
  padding-right: 30px;
  box-sizing: border-box;
}

header .lxc01 .box1 {
  padding: 18px 15px 15px;
  width: 280px;
  box-sizing: border-box;
}

header .lxc01 .box1 a {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.3s;
}

header .lxc01 .box1 a:hover {
  opacity: 0.5;
}

header .lxc01 .box1 a img {
  width: 100%;
  display: block;
}

@media (max-width: 500px) {
  header .lxc01 .box1 {
    width: 250px;
    padding-top: 20px;
  }
}

header .lxc01 .box2 {
  max-width: 1000px;
  width: 100%;
  flex: 1;
  margin-left: 15px;
  padding: 15px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1070px) {
  header .lxc01 .box2 {
    display: none;
  }
}

header .lxc01 .box2 a {
  text-decoration: none;
  color: #0D0D0D;
  line-height: 1.7;
  margin-left: 7px;
  padding: 2px 9px;
  box-sizing: border-box;
  border-radius: 6px;
  transition-property: background-color;
  transition-duration: 0.3s;
}

header .lxc01 .box2 a:hover {
  background-color: #D8F2F0;
}

header .lxc01 .box2 a span {
  font-size: 18px;
  transform: translateY(4px);
}

.sec01 {
  display: flex;
  width: 95%;
  height: auto;
  margin: 0 auto;
  padding: 15px 0 0;
  border-bottom: 0.5px solid #00a8bd;
  box-sizing: border-box;
}

.sec01 .lxc01 {
  width: 280px;
  padding-bottom: 15px;
  box-sizing: border-box;
}

.sec01 .lxc01 .box1 {
  border-right: 0.5px solid #00a8bd;
}

@media (max-width: 930px) {
  .sec01 {
    flex-direction: column;
    border-bottom: none;
  }

  .sec01 .lxc01 {
    width: 100%;
  }

  .sec01 .lxc01 .box1 {
    border-right: none;
  }
}

.sec01 .lxc01 .box1 .hojinyago {
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 700;
  line-height: 1.7;
  padding: 3px 0;
  box-sizing: border-box;
  border-bottom: 0.5px solid #00a8bd;
}

.sec01 .lxc01 .box1 .hojinyago2 {
  display: none;
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 700;
  line-height: 1.7;
  padding: 3px 0;
  box-sizing: border-box;
  border-bottom: 0.5px solid #00a8bd;
}

.sec01 .lxc01 .box1 p {
  line-height: 1.7;
  padding: 3px 0 0 5px;
  box-sizing: border-box;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 15px;
}

.sec01 .lxc01 .box1 .box2 {
  margin: 5px 15px 0;
  height: 100%;
  display: flex;
}

.sec01 .lxc01 .box1 .box2 .me_img {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec01 .lxc01 .box1 .box2 .me_img .circle {
  width: 12px;
  height: 12px;
  background-color: red;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  opacity: 0.8;
}

.sec01 .lxc01 .box1 .box2 .me_icon {
  width: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sec01 .lxc01 .box1 .box2 .me_icon .circle {
  width: 12px;
  height: 12px;
  background-color: red;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  opacity: 0.8;
}

.sec01 .lxc01 .box1 .box2 .me_icon a {
  display: block;
  width: 100%;
  color: #201F1F;
  text-decoration: none;
}

.sec01 .lxc01 .box1 .box2 .me_img a img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.sec01 .lxc01 .box1 .box2 .me_icon a span {
  display: block;
  margin: auto auto;
  font-size: 55px;
}

.sec01 .lxc01 .box1 .box2 .me_info {
  flex: 1;
}

.sec01 .lxc01 .box1 .box2 .me_info .me_name {
  margin-right: 0;
  margin-left: 5px;
}

.sec01 .lxc01 .box1 .box2 .me_info .me_name2 {
  display: none;
  margin-right: 0;
  margin-left: 5px;
}

@media (max-width: 930px) {
  .sec01 .lxc01 .box1 .hojinyago {
    display: none;
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 700;
    line-height: 1.7;
    padding: 3px 0;
    box-sizing: border-box;
    border-bottom: 0.5px solid #00a8bd;
  }
  
  .sec01 .lxc01 .box1 .hojinyago2 {
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 700;
    line-height: 1.7;
    padding: 3px 0;
    box-sizing: border-box;
    border-bottom: 0.5px solid #00a8bd;
  }

  .sec01 .lxc01 .box1 .box2 .me_info .me_name {
    display: none;
    margin-right: 0;
    margin-left: 5px;
  }
  
  .sec01 .lxc01 .box1 .box2 .me_info .me_name2 {
    display: block;
    margin-right: 0;
    margin-left: 5px;
  }
}

.sec01 .lxc02 {
  flex: 1;
  position: relative;
}

.sec01 .lxc02 form input[type=text] {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  margin-left: 20px;
  padding: 10px;
  padding-left: 45px;
  box-sizing: border-box;
  border: none;
  background-color: #F0F2F2;
  border-radius: 6px;
  max-width: 500px;
  width: 100%;
}

.sec01 .lxc02 form input[type=text]:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

.sec01 .lxc02 span {
  position: absolute;
  top: 10px;
  left: 33px;
}

.sec01 .lxc02 form input[type=submit] {
  font-size: 14px;
  line-height: 1.7;
  margin-left: 3px;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #00a8bd;
  color: #FFF;
  width: auto;
  box-sizing: border-box;
  opacity: 1;
  cursor: pointer;
  transition-property: box-shadow,opacity;
  transition-duration: 0.3s;
}

.sec01 .lxc02 form input[type=submit]:hover {
  box-shadow: 1px 1px 3px #0D0D0D;
  opacity: 0.7;
}

.sec01 .lxc02 form .kensaku {
  margin-top: 10px;
  margin-left: 20px;
}

.sec01 .lxc02 form .kensaku label {
  margin-right: 5px;
  line-height: 1.7;
}

.sec01 .lxc02 form .kensaku label input[type=radio] {
  display: inline-block;
  transform: translateY(1px);
  margin-right: 5px;
}

@media (max-width: 930px) {
  .sec01 .lxc02 form input[type=text] {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    width: 70%;
    margin-left: 10px;
    padding-left: 35px;
  }

  .sec01 .lxc02 form input[type=submit] {
    font-size: 13px;
    line-height: 1.5;
    margin-left: 5px;
  }

  .sec01 .lxc02 form .kensaku {
    margin-left: 10px;
  }

  .sec01 .lxc02 span {
    top: 9px;
    left: 20px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .sec01 .lxc02 form .kensaku .mov_kensaku {
    display: none;
  }
}

.sec02 {
  flex: 1;
  display: flex;
  width: 95%;
  margin: 0 auto;
  padding: 15px 0;
  box-sizing: border-box;
}

.sec02_print {
  max-width: 830px;
  width: 95%;
}

.print_sec {
  width: auto;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

nav {
  width: 280px;
  border-right: 0.5px solid #00a8bd;
  box-sizing: border-box;
  padding: 0 15px 10px;
}

nav .lxc01 {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  position: relative;
}

nav .lxc01 form span {
  transform: translateY(5px);
  position: absolute;
  top: 0;
  left: 17px;
}

nav .lxc01 form .tsuchi {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: red;
  color: #FFF;
  text-align: center;
  padding: 5px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 12px;
  top: 0;
  right: 20px;
  display: flex;
  flex-direction: column;
  transform: translateY(2px);
}

nav .lxc01 form .tsuchi .kazu {
  margin: auto auto;
}

nav .lxc01 form input[type=submit] {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 50px;
  color: #201F1F;
  padding-top: 5px;
  padding-bottom: 5px;
  transition-property: background-color;
  transition-duration: 0.3s;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
}

nav .lxc01 form input[type=submit]:hover {
  background-color: #D8F2F0;
}

nav .lxc01 form .refe {
  background-color: #D8F2F0;
}

@media (max-width: 1070px) {
  nav {
    display: none;
  }
}

.mov_nav {
  position: fixed;
  background-color: rgba(18, 174, 189, 0.8);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 20;
  transform: translateX(-200vw);
  transition-property: all;
  transition-duration: 0.3s;
  overflow: auto;
}

.mov_view {
  transform: translateX(0);
}

.mov_nav .mov_close {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 21;
  cursor: pointer;
}

.mov_nav .mov_close span {
  font-size: 40px;
  color: #FFF;
  display: block;
}

.mov_nav .mov_content {
  width: 90%;
  margin: 70px auto;
}

.mov_nav .mov_content .mov_lxc1 {
  width: 250px;
  background-color: #FFF;
  margin: 0 auto 12px;
  border-radius: 6px;
  position: relative;
  transition-property: all;
  transition-duration: 0.3s;
}

.mov_nav .mov_content .mov_lxc1:hover {
  box-shadow: 1px 1px 6px #0D0D0D;
}

.mov_nav .mov_content .mov_lxc1 input[type=submit] {
  display: block;
  width: 100%;
  padding: 9px 45px;
  line-height: 1.5;
  text-align: left;
  border-radius: 0%;
  color: #201F1F;
  font-size: 13px;
  cursor: pointer;
}

.mov_nav .mov_content .mov_lxc1 span {
  display: block;
  position: absolute;
  top: 7px;
  left: 15px;
}

.mov_nav .mov_content .mov_lxc1 .mov_tsuchi {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  top: 2px;
  right: 10px;
  background-color: red;
  display: flex;
  flex-direction: column;
}

.mov_nav .mov_content .mov_lxc1 .mov_tsuchi .mov_count {
  margin: auto auto;
  color: #FFF;
}

main {
  flex: 1;
  padding: 0 30px 15px 15px;
  box-sizing: border-box;
}

.main_print {
  padding: 0;
  position: relative;
}

.main_print .print_close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.main_print .print_close span {
  font-size: 50px;
}

main .p_h1 {
  font-size: 13px;
  text-align: left;
  letter-spacing: 0.15em;
  border-left: 6px solid #00a8bd;
  padding: 2px 0 2px 10px;
}

main .p_h2 {
  font-size: 10px;
  text-align: left;
  line-height: 1.5;
  margin-top: 10px;
}

main .p_h3 {
  font-size: 10px;
  text-align: left;
  line-height: 1.5;
}

main .lxc01 {
  padding: 6px 10px;
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  background-color: #00a8bd;
  border-radius: 3px;
  color: #FFF;
  font-weight: 400;
  position: relative;
}

@media (max-width: 1070px) {
  main {
    padding: 0 0 15px 0;
  }

  main .lxc01 {
    max-width: 100%;
  }
}

main .lxc01 .return {
  position: absolute;
  top: 35px;
  right: 10px;
}

main .lxc01 .return form input {
  display: block;
  width: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc01 .return form input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc01_1 {
  padding: 6px 10px;
  margin-top: 10px;
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  background-color: #FFF;
  border-radius: 3px;
  font-weight: 400;
  position: relative;
}

main .lxc01_1 span strong {
  color: red;
  font-weight: 500;
}

@media (max-width: 1070px) {
  main .lxc01_1 {
    max-width: 100%;
  }
}

main .lxc01_1 .keiji_link {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc01_1 .keiji_link:hover {
  color: red;
}

main .lxc01_1 .mail_i {
  font-size: 17px;
  padding: 0;
  transform: translateY(4px);
  line-height: 0;
}

main .lxc01_1 span {
  padding-right: 8px;
}

main .lxc01_1 .all_v {
  position: absolute;
  top: 0;
  right: 10px;
}

main .lxc01_1 .all_v form input {
  display: block;
  width: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  font-size: 13px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc01_1 .all_v form input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

@media (max-width: 550px) {
  main .lxc01_1 .all_v {
    position: unset;
    margin-top: 15px;
  }

  main .lxc01_1 .all_v form input {
    margin-left: auto;
  }
}

main .lxc01_2 {
  padding: 6px 10px;
  margin-top: 10px;
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  background-color: #FFF;
  border-radius: 3px;
  font-weight: 400;
  position: relative;
}

main .lxc01_2 .ms_box {
  display: flex;
}

main .lxc01_2 .ms_box .box01 input {
  padding: 3px 9px;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
  text-align: center;
  background-color: #8C8C8C;
  color: #FFF;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc01_2 .ms_box .box01 input:hover {
  background-color: red;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc01_2 .ms_box .box02 {
  margin-left: 10px;
}

main .lxc01_2 .ms_box .box02 input {
  padding: 3px 9px;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
  text-align: center;
  background-color: #8C8C8C;
  color: #FFF;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc01_2 .ms_box .box02 input:hover {
  background-color: red;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc01_2 .ms_sakusei {
  position: absolute;
  top: 6px;
  right: 10px;
}

@media (max-width: 530px) {
  main .lxc01_2 .ms_box {
    padding-bottom: 35px;
  }

  main .lxc01_2 .ms_sakusei {
    top: auto;
    right: 10px;
    bottom: 6px;
  }
}

main .lxc01_2 .ms_sakusei input {
  display: block;
  padding: 3px 9px;
  width: auto;
  background-color: #8C8C8C;
  color: #FFF;
  box-sizing: border-box;
  border-radius: 6px;
  text-align: center;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc01_2 .ms_sakusei input:hover {
  background-color: red;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc02 {
  margin: 10px 0;
  max-width: 1000px;
  width: 100%;
  background-color: #F0F2F2;
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .syonin_info {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
}

main .lxc02 .next_copy {
  position: absolute;
  top: 15px;
  right: 10px;
  padding: 6px 9px;
  box-sizing: border-box;
  background-color: red;
  border-radius: 6px;
  color: #FFF;
  display: flex;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

@media (max-width: 570px) {
  main .lxc02 .next_copy {
    display: none;
  }
}

main .lxc02 .on_grey {
  background-color: #8C8C8C;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc02 .next_copy span {
  display: block;
  font-size: 15px;
  margin-right: 5px;
  transform: translateY(0.5px);
}

main .lxc02 .next_copy:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .green_back {
  background-color: #c8f4e9;
}

main .yellow_back {
  background-color: #f3f5d9;
}

main .lxc02 .shift_emp {
  border-left: 6px solid #00a8bd;
  padding-left: 10px;
  line-height: 1.5;
  font-size: 15px;
}

@media (max-width: 1070px) {
  main .lxc02 {
    max-width: 100%;
  }
}

main .lxc02 .pro_lxc {
  display: flex;
}

main .lxc02 .pro_lxc .prof_1 {
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
}

main .lxc02 .pro_lxc .prof_1 span {
  display: block;
  margin: auto auto;
  font-size: 92px;
}

main .lxc02 .pro_lxc .prof_1 img {
  display: block;
  margin: auto auto;
  width: 92px;
  height: 92px;
  border-radius: 3px;
  object-fit: cover;
}

main .lxc02 .pro_lxc .prof_2 {
  flex: 1;
  padding-left: 15px;
}

main .lxc02 .pro_lxc .prof_2 h1 {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 5px;
  font-weight: 500;
}

main .lxc02 .pro_lxc .prof_2 h2 {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 3px;
}

main .lxc02 .kidoku_log {
  margin: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

main .lxc02 .kidoku_box {
  position: absolute;
  bottom: 12px;
  right: 10px;
}

@media (max-width: 530px) {
  main .lxc02 .kidoku_log {
    margin: 6px 0 45px;
    margin-left: 5px;
  }
}

main .lxc02 .kidoku_box form .com_kidoku {
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 form .com_kidoku:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

@media (max-width: 730px) {
  main .lxc02 .box1 .mov_style {
    display: none;
  }
  main .lxc02 .box2 .mov_w {
    margin-right: 80px;
  }
}

main .print_foo {
  margin-top: 0;
}

main .lxc02 h3 {
  font-size: 12px;
  padding-left: 6px;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
  margin-bottom: 10px;
}

main .lxc02 .s_menu01 {
  width: auto;
  display: flex;
}

main .lxc02 .s_menu01 form .indivi_print {
  width: 140px;
  font-size: 12px;
  margin-left: 10px;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  padding: 3px 9px;
  box-sizing: border-box;
  background: #FFF url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .lxc02 .s_menu01 form .indivi_print_button {
  width: auto;
  font-size: 12px;
  margin-left: 5px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 3px;
  padding: 3px 9px;
  box-sizing: border-box;
}

main .lxc02 .s_kensu {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

main .lxc02 .toroku_info {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 5px;
}

main .lxc02 .kidoku_nichiji {
  font-size: 12px;
  line-height: 1.5;
  padding: 0 5px;
}

main .lxc02 .s_menu01 .s_kensu {
  font-size: 12px;
  line-height: 1.5;
  padding: 3px;
  box-sizing: border-box;
}

main .lxc02 .mail_none {
  margin-top: 5px;
  padding: 3px 6px;
  line-height: 1.5;
  font-size: 12px;
}

main .lxc02 .s_menu01 .p_dow {
  display: block;
  width: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #00a8bd;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc02 .s_menu01 .p_none {
  background-color: #8C8C8C;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc02 .s_menu02 {
  font-size: 12px;
}

main .lxc02 .s_menu02 table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.5;
}

main .lxc02 .s_menu02 table tr th {
  width: 85px;
  border: 0.5px solid #201F1F;
  padding: 2px 3px;
  box-sizing: border-box;
}

main .lxc02 .s_menu02 table tr td {
  border: 0.5px solid #201F1F;
  padding: 2px 3px;
  box-sizing: border-box;
}

main .lxc02 .print_title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
  box-sizing: border-box;
  color: #FFF;
  background-color: #595959;
}

main .s_menu01 .p_dow:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .c_color {
  background-color: #DEEFE7;
}

main .lxc02 .box1 {
  width: 100%;
  display: flex;
}

main .lxc02 .box1 h1 {
  width: 78px;
  padding: 3px 6px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

main .lxc02 .box1 h1 .center {
  margin: auto auto;
  font-size: 12px;
}

main .lxc02 .box1 p {
  width: 70px;
  padding: 3px 6px;
  font-size: 13px;
  line-height: 1.5;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 730px) {
  main .lxc02 .box1 p {
    text-align: left;
    padding-left: 15px;
  }
}

main .lxc02 .box1 .foo1 {
  flex: 1;
  text-align: left;
  padding: 3px 15px;
  line-height: 1.5;
}

main .lxc02 .box2 {
  width: 100%;
  margin-top: 10px;
  display: flex;
}

main .lxc02 .emp_foo {
  margin-top: 0px;
}

main .lxc02 a {
  color: #0D0D0D;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 a:hover {
  color: red;
}

main .lxc02 .box2 h1 {
  width: 92px;
  padding: 3px 6px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-size: 13px;
}

main .lxc02 .box2 .hoge {
  width: 78px;
}

main .lxc02 .box2 .hoge_2 {
  width: 100px;
}

@media (max-width: 530px) {
  main .lxc02 .box2 h1 {
    font-size: 12px;
  }

  main .lxc02 .box2 .mov_foo {
    width: 80px;
  }

  main .lxc02 .box2 .hoge {
    width: 70px;
  }

  main .lxc02 .box2 .hoge_2 {
    width: 90px;
  }
}

main .lxc02 .box2 h1 .center {
  margin: auto auto;
  font-size: 12px;
}

main .lxc02 .box2 .yellow {
  color: yellow;
}

main .lxc02 .box2 .red {
  color: red;
}

main .lxc02 .box2 p {
  flex: 1;
  padding: 3px 10px;
  box-sizing: border-box;
  line-height: 1.7;
  font-size: 13px;
}

main .lxc02 .box2 p .t_time {
  display: block;
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 530px) {
  main .lxc02 .box1 h1 {
    width: 70px;
    font-size: 12px;
  }

  main .lxc02 .box2 p {
    padding: 3px 9px;
  }

  main .lxc02 .box2 .mov_w {
    margin-right: 40px;
  }

  main .lxc02 .box1 p {
    padding-left: 9px;
  }
}

main .lxc02 .syosai {
  position: absolute;
  top: 10px;
  right: 10px;
}

main .lxc02 .syosai form .grayout {
  background-color: #8C8C8C;
  opacity: 0.7;
  pointer-events: none;
}

main .lxc02 .fece {
  position: absolute;
  bottom: 15px;
  right: 25px;
}

main .lxc02 .fece span {
  font-size: 45px;
}

main .lxc02 .fece img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 530px) {
  main .lxc02 .fece {
    right: 10px;
  }
  
  main .lxc02 .fece span {
    font-size: 40px;
  }

  main .lxc02 .fece img {
    display: block;
    width: 50px;
    height: 50px;
  }
}

main .lxc02 .fece_2 {
  position: absolute;
  top: 50px;
  right: 20px;
}

main .lxc02 .fece_tyosei {
  position: absolute;
  top: 20px;
  right: 20px;
}

main .lxc02 .fece_2 span {
  font-size: 50px;
}

main .lxc02 .fece_2 img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

main .lxc02 .syosai form input[type=submit] {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  cursor: pointer;
}

main .lxc02 .syosai form input[type=submit]:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc02 .box3 {
  width: 100%;
  margin-top: 10px;
  display: flex;
}

main .lxc02 .t_comment {
  margin: 5px;
  width: auto;
}

main .lxc02 .com_nichiji {
  position: absolute;
  bottom: 22px;
  left: 15px;
  font-size: 12px;
}

@media (max-width: 530px) {
  main .lxc02 .com_nichiji {
    bottom: 55px;
  }

  main .lxc02 .fece_2 {
    top: 45px;
    right: 10px;
  }

  main .lxc02 .fece_tyosei {
    top: 10px;
    right: 10px;
  }
  
  main .lxc02 .fece_2 span {
    font-size: 45px;
  }
  
  main .lxc02 .fece_2 img {
    width: 50px;
    height: 50px;
  }
}

main .lxc02 .t_comment .t_check {
  width: 100%;
  height: 250px;
  font-size: 13px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0.5px solid #59554C;
  background-color: #FFF;
  border-radius: 3px;
}

main .lxc02 .t_comment .t_check:focus {
  outline: none;
}


main .lxc02 .t_comment .com1 {
  display: block;
  width: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  margin-left: auto;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .t_comment .com1:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

@media (max-width: 530px) {
  main .lxc02 .com_nichiji {
    bottom: 52px;
  }

  main .lxc02 .t_comment .mov_com {
    margin-top: 30px;
  }
}

main .lxc02 .komoku {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
}

main .lxc02 .komoku .tit_1 {
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1px);
}

main .lxc02 .komoku .tit_2 {
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1.5px);
}

main .lxc02 form .gazo_1 {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1px);
}

main .lxc02 form .gazo_submit {
  display: inline-block;
}

main .lxc02 .gazo_hyoji {
  position: relative;
}

main .lxc02 .gazo_hyoji .gazo_imge {
  position: absolute;
  top: 0;
  right: 3px;
}

main .lxc02 .gazo_hyoji .gazo_imge .gi {
  display: block;
  font-size: 26px;
  opacity: 0.6;
}

main .lxc02 .gazo_hyoji .t_gazo2 {
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 10px;
  color: #FFF;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .gazo_hyoji .t_gazo2:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .lxc02 .gazo_hyoji .t_gazo3 {
  font-size: 12px;
  display: inline-block;
  margin-left: 5px;
}

main .lxc02 .gazo_hyoji .gazo_sec {
  margin-top: 15px;
}

main .lxc02 .gazo_hyoji .gazo_sec .t_gazo2 {
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: tomato;
  border-radius: 10px;
  color: #FFF;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .gazo_hyoji .gazo_sec .t_gazo2:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .tenpu_view {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
}

main .t_open {
  opacity: 1;
  pointer-events: all;
}

main .tenpu_view .tenpu_lxc {
  max-width: 1000px;
  width: 90%;
  background-color: #FFF;
  margin: auto auto;
  position: relative;
}

main .tenpu_view .tenpu_lxc img {
  display: block;
  width: 100%;
}

main .tenpu_view .tenpu_lxc .t_close {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

main .tenpu_view .tenpu_lxc .t_close span {
  color: #FFF;
  font-size: 40px;
  display: block;
}

main .tenpu_view .tenpu_lxc .t_right {
  position: absolute;
  top: 50%;
  right: 15px;
  cursor: pointer;
}

main .tenpu_view .tenpu_lxc .t_right span {
  color: #FFF;
  font-size: 40px;
  display: block;
  opacity: 0.7;
}

main .tenpu_view .tenpu_lxc .t_left {
  position: absolute;
  top: 50%;
  left: 15px;
  cursor: pointer;
}

main .tenpu_view .tenpu_lxc .t_left span {
  color: #FFF;
  font-size: 40px;
  display: block;
  opacity: 0.7;
}

main .tenpu_view .tenpu_lxc .t_none {
  display: none;
}

@media (max-width: 550px) {
  main .tenpu_view .tenpu_lxc .t_close {
    top: 10px;
    right: 10px;
  }
  
  main .tenpu_view .tenpu_lxc .t_close span {
    font-size: 30px;
  }

  main .tenpu_view .tenpu_lxc .t_right {
    top: 50%;
    right: 10px;
  }
  
  main .tenpu_view .tenpu_lxc .t_right span {
    font-size: 30px;
  }
  
  main .tenpu_view .tenpu_lxc .t_left {
    left: 10px;
  }
  
  main .tenpu_view .tenpu_lxc .t_left span {
    font-size: 30px;
  }
}

main .gs_lxc {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: auto;
  z-index: 15;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
}

main .gs_view {
  opacity: 1;
  pointer-events: all;
}

main .gs_lxc .gs_box {
  max-width: 350px;
  width: 95%;
  margin: auto auto;
  border: 1px solid #0D0D0D;
  background-color: #FFF;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
  transition-property: all;
  transition-duration: 0.3s;
}

main .gs_lxc .gs_mov {
  transform: translateY(0px);
  opacity: 1;
}

main .gs_lxc .gs_box h1 {
  line-height: 1.5;
  text-align: center;
}

main .gs_lxc .gs_box .gs1 {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

main .gs_lxc .gs_box .gs1 .gs_b1 {
  display: block;
  width: 45%;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .gs_lxc .gs_box .gs1 .gs_b1:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

main .gs_lxc .gs_box .gs1 .gs_b2 {
  display: block;
  width: 45%;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .gs_lxc .gs_box .gs1 .gs_b2:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

@media (max-width: 500px) {
  main .lxc02 form .gazo_submit {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
}

main .lxc02 form .gazo_submit .gazo_3 {
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 form .gazo_submit .gazo_3:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .lxc02 .komoku .toki {
  font-size: 10px;
  margin-left: 3px;
  color: #FFF;
}

main .lxc02 .hiari {
  color: yellow;
}

main .tomato_line {
  border: 3px solid tomato;
  box-sizing: border-box;
}

main .lxc02 .komoku_button {
  width: 100%;
  position: relative;
}

main .lxc02 .komoku_button form .jyukyu_button {
  display: block;
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .komoku_button form .jyukyu_button:hover {
  background-color: red;
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc02 .komoku_button .expand {
  position: absolute;
  top: 1px;
  right: 10px;
  pointer-events: none;
}

main .lxc02 .komoku_button .expand span {
  display: block;
  color: #FFF;
}

main .lxc02 .memo {
  width: 100%;
  padding: 10px 10px 0;
  box-sizing: border-box;
  line-height: 1.7;
  font-size: 13px;
}

main .lxc02 .memo a {
  color: #0D0D0D;
  transition: all;
  transition-duration: 0.3s;
}

main .lxc02 .memo a:hover {
  color: red;
}

main .lxc02 .box3 h1 {
  width: 150px;
  padding: 3px 6px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-size: 13px;
}

main .lxc02 .box3 .c_hoge {
  width: 110px;
}

main .lxc02 .box3 .c_jyukyu {
  width: 130px;
  font-size: 12px;
}

main .lxc02 .box3 h1 .center {
  margin: auto auto;
  font-size: 12px;
}

main .lxc02 .box3 p {
  flex: 1;
  padding: 3px 15px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.5;
}

main .lxc03 {
margin: 10px 0;
max-width: 1000px;
width: 100%;
padding: 12px;
box-sizing: border-box;
}

main .lxc03 form .shift_sell {
  padding: 12px;
  border: none;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-size: 13px;
  max-width: 200px;
  width: 100%;
  height: 40px;
  background-color: #c8f4e9;
}

main .lxc03 form .shift_box1 {
  margin: 5px 0 20px;
}

main .lxc03 form .shift_box1 label {
  display: inline-block;
  margin-right: 10px;
}

main .lxc03 form .shift_box1 label .s_checkbox {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
}

main .lxc03 form .shift_box1 label span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

main .lxc03 form .e_name {
  max-width: 600px;
  width: 100%;
  background-color: #D8F2F0;
  border-radius: 3px;
  padding: 12px;
  box-sizing: border-box;
  margin: 10px 0;
}

main .lxc03 form .syusei {
  font-size: 11px;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 530px) {
  main .lxc02 .box3 h1 {
    width: 125px;
    font-size: 12px;
  }
  
  main .lxc02 .box3 .c_hoge {
    width: 100px;
  }

  main .lxc02 .box3 .c_jyukyu {
    width: 120px;
    font-size: 12px;
  }

  main .lxc02 .box3 p {
    padding: 3px 10px;
  }
}

@media (max-width: 500px) {
  main .lxc03 {
    margin-top: 30px;
  }

  main .hoge_01 {
    margin-top: 0px;
  }

  main .mov_hight {
    margin-top: 10px;
  }
}

main .lxc03 p {
  line-height: 1.5;
}

main .tyousei {
  padding: 0 12px;
}

main .lxc03 form section .nenkan {
  font-size: 10px;
  width: auto;
  border: 0.5px solid #201F1F;
  border-radius: 2px;
  padding: 2px;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc03 form section .nenkan:hover {
  background-color: red;
  box-shadow: 1px 1px 3px #201F1F;
  color: #FFF;
}

main .lxc03 form h1 {
  padding: 3px 12px;
  font-weight: 400;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
  font-weight: 500;
}

main .lxc03 h1 {
  padding: 3px 12px;
  font-weight: 400;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
  font-weight: 500;
}

main .lxc03 form .hosoku {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 15px;
}

main .lxc03 form .kakunin {
  padding: 6px 9px;
  box-sizing: border-box;
  margin-left: 5px;
  background-color: #00a8bd;
  color: #FFF;
  text-align: center;
  width: auto;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc03 form .kakunin:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc03 form .foo_1 {
  margin-bottom: 10px;
}

main .lxc03 form .foo_2 {
  margin-top: 10px;
}

main .lxc03 form .k_foo {
  border-left: 6px solid red;
}

main .lxc03 form input {
  display: block;
  padding: 12px;
  border: none;
  background-color: #F0F2F2;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  max-width: 600px;
  width: 100%;
}

main .lxc03 form input[type=date] {
  padding: 12px;
  border: none;
  background-color: #F0F2F2;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
}

main .lxc03 form section .hun {
  display: inline-block;
}

main .lxc03 form section .none {
  display: none;
}

main .lxc03 form .label_box {
  margin: 10px 10px;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}

main .lxc03 form .j_nen {
  display: inline-block;
  width: 50px;
  text-align: center;
}

main .lxc03 form .s_hoge {
  margin-bottom: 20px;
}

main .lxc03 form .s_ser {
  margin-bottom: 0;
  max-width: 200px;
  width: 100%;
  background-color: #F0F2F2;
}

main .lxc03 form .time_box {
  padding-left: 10px;
}

main .lxc03 form .time_box .foo_3 {
  margin-left: 5px;
  width: 80px;
}

main .lxc03 form .time_box .s_hoge2 {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  width: 60px;
  text-align: center;
}

main .lxc03 form .time_box .s_hoge3 {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  width: 80px;
  text-align: center;
}

main .lxc03 form .time_box .zanryo {
  display: inline-block;
  margin-left: 10px;
}

main .lxc03 form .label_box label {
  cursor: pointer;
  margin-right: 12px;
  user-select: none;
}

main .lxc03 form .label_box label input[type=checkbox] {
  display: inline-block;
  padding: 5px;
  box-sizing: border-box;
  line-height: 1.5;
  width: auto;
  margin-right: 5px;
  transform: translateY(1.5px);
  cursor: pointer;
}

main .lxc03 form .label_box2 {
  margin: 10px 10px;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
}

main .lxc03 form .label_box2 label {
  display: block;
  cursor: pointer;
  margin-right: 12px;
  user-select: none;
  display: flex;
  flex-direction: column;
}

main .lxc03 form .label_box2 label input[type=checkbox] {
  display: inline-block;
  padding: 5px;
  box-sizing: border-box;
  line-height: 1.5;
  width: auto;
  margin-right: 5px auto;
  transform: translateY(1.5px);
  cursor: pointer;
}

main .lxc03 form input[type=submit] {
  width: auto;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc03 form input[type=submit]:hover {
  opacity: 0.7;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc03 form .img_info {
  margin-top: 3px;
  line-height: 1.5;
  font-size: 12px;
}

main .lxc03 form .hoge {
  margin-top: 0px;
  margin-bottom: 0px;
}

main .lxc03 form .hogehoge {
  margin-top: 0px;
  margin-bottom: 10px;
}

main .lxc03 form .small {
  max-width: 200px;
  width: 100%;
  height: 42px;
}

main .lxc03 form .small_2 {
  max-width: 250px;
  width: 100%;
  height: 42px;
}

main .lxc03 form .sele {
  pointer-events: none;
  background-color: #DEEFE7;
}

main .lxc03 form .kubun18 {
  margin-left: 10px;
}

main .lxc03 form input:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

main .lxc03 form select {
  padding: 12px;
  border: none;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  max-width: 200px;
  width: 100%;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .lxc03 form select:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

main .lxc03 form section .shift_sonota {
  margin-top: 0;
}

main .lxc03 form .kyuyo_kubun_1 {
  display: inline-block;
  width: 80px;
}

main .lxc03 form .kyuyo_kubun_2 {
  display: inline-block;
  width: 110px;
  text-align: center;
  margin-left: 5px;
}

main .lxc03 form .kyuyo_kubun_3 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

main .lxc03 form .temp_clear {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
  padding: 12px;
  box-sizing: border-box;
  width: fit-content;
  background-color: #F0F2F2;
  border-radius: 3px;
}

main .lxc03 form .temp_clear2 {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
  padding: 12px 16px;
  box-sizing: border-box;
  width: fit-content;
  background-color: #F0F2F2;
  border-radius: 3px;
  margin-left: 5px;
  background-color: #00a8bd;
  color: #FFF;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc03 form .temp_clear2:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc03 form .blue {
  pointer-events: none;
  background-color: #E4EAF2;
}

main .lxc03 form .o_ren {
  max-width: 250px;
}

main .lxc03 form textarea {
  padding: 12px;
  border: none;
  background-color: #F0F2F2;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  max-width: 600px;
  width: 100%;
  height: 300px;
}

main .lxc03 form textarea:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

main .lxc03 form p {
  max-width: 600px;
  width: 100%;
  text-align: right;
  line-height: 1.7;
}

main .lxc03 form h2 {
  max-width: 600px;
  width: 100%;
  background-color: #00a8bd;
  padding: 5px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  color: #FFF;
  border-radius: 3px;
}

main .lxc03 form .k_con {
  background-color: red;
}

main .lxc03 form .autopass {
  display: inline-block;
  padding: 12px;
  box-sizing: border-box;
  width: auto;
  background-color: #00a8bd;
  margin-left: 10px;
  border-radius: 3px;
  color: #FFF;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc03 form .autopass:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc03 form h1 .err {
  margin-left: 6px;
  color: red;
  font-size: 12px;
}

main .lxc03 form .nenrei {
  margin-left: 10px;
}

@media (max-width: 530px) {
  main .lxc03 form .nenrei {
    display: none;
  }
}

main .lxc03 form .red {
  color: red;
}

main .lxc03 form .hyde {
  display: none;
}

main .lxc03 form .off {
  display: none;
}

main .lxc03 form input[type=button] {
  background-color: #00a8bd;
  padding: 6px 12px;
  border-radius: 12px;
  width: auto;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  text-align: center;
}

main .lxc03 form input[type=button]:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc03 form .oshirase_hyde {
  display: none;
}

main .hoge {
  padding: 0px 12px 0px;
}

main .hyde_1 {
  display: none;
}

main .lxc04 {
  max-width: 1000px;
  width: 100%;
  margin-top: 12px;
  padding: 15px 15px;
  box-sizing: border-box;
  background-color: #F0F2F2;
  border-radius: 3px;
  position: relative;
}

@media (max-width: 530px) {
  main .mov_hoge {
    padding: 15px 15px 45px;
  }
}

main .soshin {
  background-color: #E4EAF2;
}

main .lxc04 .mss01 {
  display: flex;
  line-height: 1.5;
  margin-bottom: 5px;
}

main .lxc04 .mss01 .box1 {
  width: 80px;
  text-align: center;
  padding: 3px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #595959;
  color: #FFF;
  display: flex;
  flex-direction: column;
}

main .lxc04 .mss01 .box1 .hoge {
  margin: auto auto;
  padding: 0;
  font-size: 12px;
}

@media (max-width: 530px) {
  main .lxc04 .mss01 .box1 {
    width: 70px;
    font-size: 12px;
  }
}

main .lxc04 .mss01 .box2 {
  padding: 3px 3px 3px 9px;
  flex: 1;
  box-sizing: border-box;
}

main .lxc04 .mss01 .title_up {
  font-weight: 600;
  color: black;
}

main .lxc04 .mss02 {
  line-height: 1.5;
  margin-top: 10px;
  position: relative;
}

main .lxc04 .mss02 input {
  display: block;
  width: 100%;
  text-align: center;
  padding: 3px;
  background-color: #595959;
  color: #FFF;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc04 .mss02 .more {
  position: absolute;
  top: 0;
  right: 15px;
}

main .lxc04 .mss02 .more span {
  color: #FFF;
  display: block;
}

main .lxc04 .mss02 input:hover {
  opacity: 0.7;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc04 .ms_icon {
  position: absolute;
  top: 15px;
  right: 20px;
  pointer-events: none;
}

main .lxc04 .ms_icon span {
  font-size: 40px;
}

main .lxc04 .ms_icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 530px) {
  main .lxc04 .ms_icon {
    top: 15px;
    right: 15px;
  }
  
  main .lxc04 .ms_icon span {
    font-size: 40px;
  }

  main .lxc04 .ms_icon img {
    width: 50px;
    height: 50px;
  }
}

main .lxc04 .mss03 {
  padding: 10px 10px 0;
  margin-top: 6px;
  border-top: 0.5px solid #0D0D0D;
  line-height: 1.5;
}

main .lxc04 .mss03 .mss_temp_a {
  display: block;
  width: fit-content;
  text-decoration: none;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: tomato;
  border-radius: 3px;
  transition-property: all;
  transition-duration: 0.3s;
  margin-top: 6px;
}

main .lxc04 .mss03 .mss_temp_a:first-child {
  display: block;
  width: fit-content;
  text-decoration: none;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: tomato;
  border-radius: 3px;
  transition-property: all;
  transition-duration: 0.3s;
  margin-top: 0px;
}

main .lxc04 .mss03 .mss_temp_a_pic {
  background-color: #00a8bd;
}

main .lxc04 .mss03 .mss_none{
  background-color: #8C8C8C !important;
  pointer-events: none;
}

main .lxc04 .mss03 .mss_temp_a:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc04 .mss03 .mss_temp_a .mss_temp1 {
  vertical-align: middle;
  color: #FFF;
}

main .lxc04 .mss03 .mss_temp_a .mss_temp2 {
  vertical-align: middle;
  color: #FFF;
}

main .lxc04 .mss03 a {
  color: #0D0D0D;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc04 .mss03 a:hover {
  color: red;
}

main .lxc04 .kidoku_box {
  width: 100%;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 10px;
  box-sizing: border-box;
}

main .lxc04 .return_send {
  position: absolute;
  bottom: 12px;
  right: 15px;
}

main .lxc04 .return_send input {
  display: block;
  text-align: center;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc04 .return_send input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc04 .return_send2 {
  position: absolute;
  bottom: 12px;
  right: 75px;
}

main .lxc04 .return_send2 input {
  display: block;
  text-align: center;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc04 .return_send2 input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc05 {
  max-width: 1000px;
  width: 100%;
  margin: 15px 10px 15px;
  opacity: 0;
  animation-name: comp;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes comp {
  0% {
    opacity: 0;
    transform: translateY(9px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

main .lxc05 p {
  line-height: 1.7;
}

main .lxc05 p a {
  color: red;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc05 p a:hover {
  opacity: 0.7;
}

main .date_none {
  max-width: 1000px;
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  line-height: 1.7;
}

main .lxc_shift {
  max-width: 1000px;
  width: 100%;
  margin-top: 12px;
  padding: 15px 15px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  position: relative;
  table-layout: fixed;
  border-collapse: collapse;
}

main .lxc_shift tr th {
  font-size: 13px;
  border: 0.5px solid #201F1F;
  padding: 3px;
  box-sizing: border-box;
}

main .lxc_shift tr td {
  font-size: 13px;
  border: 0.5px solid #201F1F;
  padding: 6px;
  box-sizing: border-box;
  height: 90px;
}

main .lxc_shift tr td .c_day .circle {
  color: red;
  margin-left: 3px;
  animation-name: circle;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

main .lxc_shift tr td .guide {
  color: red;
}

main .lxc_shift tr td .client_guide {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #201F1F;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;

}

main .lxc_shift tr td .client_guide:hover {
  background-color: #c8f4e9;
}

main .lxc06 {
  max-width: 1000px;
  width: 100%;
  margin-top: 12px;
  padding: 15px 15px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #F0F2F2;
  position: relative;
}

main .shift_cle {
  background-color: #c8f4e9;
}

main .shift_cle .tit_1 {
  display: inline-block;
  vertical-align: middle;
}

main .shift_cle .tit_2 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
}

main .lxc06 .shift_person {
  margin-bottom: 10px;
  padding: 3px 6px;
  font-size: 13px;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
}

main .lxc06 .shift_date1 {
  display: inline-block;
  font-size: 13px;
  border: 0.5px solid #595959;
  border-radius: 3px;
  padding: 6px 9px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  width: 70px;
  background: #FFF url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .lxc06 .shift_date2 {
  width: 60px;
}

main .lxc06 .shift_date3 {
  margin-left: 5px;
  padding: 6px 9px;
  text-align: center;
  background-color: #00a8bd;
  color: #FFF;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 .shift_date3:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .lxc06 .shift_date4 {
  font-size: 11px;
}

main .lxc06 .shift_date5 {
  margin-left: 0;
  margin-top: 10px;
}

main .lxc06 .shift_date6 {
  display: block;
  margin-bottom: 10px;
  width: 180px;
  padding: 6px 30px 6px 9px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  background: #FFF url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .lxc06_ass {
  padding-bottom: 30px;
}

main .lxc06 h3 {
  font-size: 12px;
  border-left: 6px solid #00a8bd;
  padding-left: 6px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

main .lxc06 .training_p {
  font-size: 12px;
  line-height: 1.5;
  box-sizing: border-box;
}

@media (max-width: 530px) {
  main .lxc06 .training_p {
    padding-left: 5px!important;
  }
}

main .lxc06 .trans_shimei {
  font-size: 12px;
  border-left: 6px solid #00a8bd;
  padding-left: 5px;
  line-height: 1.5;
}

main .lxc06 .trans_koshin {
  font-size: 12px;
  border-left: 6px solid #00a8bd;
  padding-left: 5px;
  line-height: 1.5;
}

main .lxc06 form .trans_date {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  background-color: #FFF;
  border: 0.5px solid #595959;
  border-radius: 3px;
  padding: 6px 9px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  width: 120px;
  height: 32.5px;
}

main .lxc06 form .trans_date_c {
  margin-top: 0;
}


main .lxc06 form .trans_span {
  display: inline-block;
  vertical-align: middle;
}

main .lxc06 form .trans_sele {
  margin-top: 10px;
  font-size: 12px;
  border: 0.5px solid #595959;
  border-radius: 3px;
  padding: 6px 9px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  width: 200px;
  background: #FFF url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .lxc06 form .trans_b {
  font-size: 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 3px;
  padding: 6px 9px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 5px;
  width: 50px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 form .trans_bb {
  transform: translateY(1px);
}

main .lxc06 form .trans_b:hover {
box-shadow: 1px 1px 3px #201F1F;
opacity: 0.7;
}

main .lxc06 .trans_print {
  margin-top: 0px;
}

main .lxc06 .trans_print form {
  display: inline-block;
  margin-top: 10px;
}

main .lxc06 .trans_print form {
  margin-right: 5px;
}

main .lxc06 .trans_print form .trans_p {
  font-size: 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 6px;
  padding: 6px 9px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  width: auto;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 .trans_print form .trans_p:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.7;
}

main .lxc06 .kidoku_icon {
  position: absolute;
  top: 15px;
  right: 15px;
}

main .lxc06 .kidoku_icon span {
  display: block;
  font-size: 20px;
  opacity: 0.7;
}

main .lxc06 .emp_face {
  position: absolute;
  top: 20px;
  right: 20px;
}

main .lxc06 .emp_face span {
  display: block;
  font-size: 40px;
}

main .lxc06 .emp_face img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

main .lxc06 .hinagata form {
  display: inline-block;
}

main .lxc06 .hinagata form .hina_b {
  width: auto;
  padding: 3px 12px;
  font-size: 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc06 .hinagata form .hina_b:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.7;
}

main .lxc06 .hinagata form .training_b {
  width: auto;
  padding: 3px 12px;
  font-size: 12px;
  background-color: #8C8C8C;
  border-radius: 10px;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc06 .hinagata form .training_b:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

@media (max-width: 530px) {
  main .lxc06 .emp_face {
    top: 15px;
    right: 15px;
  }

  main .lxc06 .emp_face span {
    font-size: 40px;
  }
  
  main .lxc06 .emp_face img {
    width: 50px;
    height: 50px;
  }

  main .lxc06 .kidoku_icon {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

main .green {
  border: 3px solid #00a8bd;
  box-sizing: border-box;
}

main .gray {
  border: 3px solid #595959;
  box-sizing: border-box;
}

main .lxc06 .task_1 {
  display: flex;
  margin-bottom: 6px;
}

main .lxc06 .t_bottom {
  margin-bottom: 10px;
}

main .lxc06 .task_1 h1 {
  line-height: 1.5;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  width: 70px;
  min-width: 70px;
  border-radius: 3px;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

main .lxc06 .task_1 h1 .foo {
  padding: 0;
  margin: auto auto;
  font-size: 12px;
}

@media (max-width: 1070px) {
  main .lxc06 .task_1 h1 {
    padding: 3px 6px;
    width: 65px;
    font-size: 12px;
  }
}

main .lxc06 .task_1 p {
  line-height: 1.5;
  flex: 1;
  padding: 1px 9px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 13px;
}

main .lxc06 .task_1 .sec {
  display: flex;
  flex-wrap: wrap;
}

main .lxc06 .task_1 .sec .ass_p {
  flex: none;
}

main .lxc06 .task_1 p span {
  color: red;
}

main .lxc06 .task_2 {
  line-height: 1.7;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 5px;
  border-top: 0.5px solid #595959;
  font-size: 13px;
}

main .lxc06 .task_2 a {
  color: #0D0D0D;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 .task_2 a:hover {
  color: red;
}

main .lxc06 .training_range {
  line-height: 1.7;
  padding: 10px 15px 0;
  box-sizing: border-box;
  margin-top: 8px;
  border-top: 0.5px solid #595959;
}

main .lxc06 .task_range {
  line-height: 1.7;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 8px;
  border-top: 0.5px solid #595959;
}

main .lxc06 .task_range2 {
  line-height: 1.7;
  padding: 10px 15px;
  box-sizing: border-box;
  margin-top: 8px;
  border-top: 0.5px solid #595959;
}

main .lxc06 .training_komoku {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
  margin-bottom: 6px;
}

main .setsumeigaki {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
  padding-right: 15px;
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
}

@media (max-width: 1070px) {
  main .lxc06 .training_komoku {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  main .lxc06 .task_range2 {
    margin-bottom: 25px;
    padding: 10px;
    padding-left: 5px;
  }

  main .lxc06 .training_range {
    padding: 10px 0px 30px 5px;
  }
  
}

main .lxc06 .task_3 {
  line-height: 1.7;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 8px;
  border-top: 0.5px solid #595959;
  border-bottom: 0.5px solid #595959;
  font-size: 13px;
}

main .lxc06 .word-wrap {
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

main .lxc06 .task_3 a {
  color: #0D0D0D;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 .task_3 a:hover {
  color: red;
}

main .lxc06 .task_3 .temp_a {
  display: inline-block;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.3s;
  padding: 3px 9px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: tomato;
  clear: both;
}

main .lxc06 .task_3 .temp_a:hover {
  text-decoration: none;
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_3 .temp_none {
  background-color: #8C8C8C;
  pointer-events: none;
}

main .lxc06 .task_3 .temp_a .temp1 {
  vertical-align: middle;
  text-decoration: none;
  color: #FFF;
  clear:both
}

main .lxc06 .task_3 .temp_a .temp2 {
  vertical-align: middle;
  text-decoration: none;
  margin-left: 2px;
  color: #FFF;
}

main .lxc06 .task_3 .temp3 {
  color: tomato;
}

main .lxc06 .task_3 .temp_pic {
  display: block;
  max-width: 700px;
  width: 100%;
}

main .lxc06 .task_4 {
  line-height: 1.7;
  font-size: 13px;
  padding: 7px 10px 0;
  box-sizing: border-box;
  margin-top: 5px;
  position: relative;
}

@media (max-width: 530px) {
  main .lxc06 .task_4 {
    padding-bottom: 30px;
  }
}

main .lxc06 .task_4 .box1 {
  position: absolute;
  bottom: -3px;
  right: 0;
}

main .lxc06 .task_4 .box1 input {
  display: block;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc06 .task_4 .box1 input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_4 .keiji_button {
  position: absolute;
  bottom: -3px;
  right: 60px;
}

main .lxc06 .task_4 .keiji_s {
  position: absolute;
  bottom: -3px;
  right: 60px;
}

main .lxc06 .task_4 .keiji_button .sakujyo {
  display: block;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  font-size: 13px;
  color: #FFF;
  text-align: center;
}

main .lxc06 .task_4 .keiji_button .sakujyo:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_4 .keiji_button2 {
  position: absolute;
  bottom: -3px;
  right: 120px;
}

main .lxc06 .task_4 .target2 {
  display: none;
}

main .lxc06 .task_4 .keiji_button2 .sakujyo2 {
  display: block;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  font-size: 13px;
  color: #FFF;
  text-align: center;
}

main .lxc06 .task_4 .keiji_button2 .sakujyo2:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .white_kakunin {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.8);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition-property: all;
  transition-duration: 0.3s;
  overflow: auto;
}

main .kakunin_view {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

main .white_kakunin .kakunin1 {
  max-width: 500px;
  width: 90%;
  margin: auto auto;
  padding: 20px;
  box-sizing: border-box;
  border: 0.5px solid #0D0D0D;
  position: relative;
  background-color: #FFF;
}

main .white_kakunin .kakunin1 h1 {
  color: #FFF;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: #59554C;
  text-align: center;
  border-radius: 3px;
}

main .white_kakunin .kakunin1 p {
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.7;
}

main .white_kakunin .kakunin1 span {
  display: block;
  position: absolute;
  font-size: 50px;
  top: -55px;
  right: 0;
  cursor: pointer;
}

main .lxc06 .task_4 .box1 .kidokuzumi {
  background-color: #59554C;
  color: #FFF;
  pointer-events: none;
  opacity: 0.7;
  font-size: 13px;
  padding: 3px 12px;
  box-sizing: border-box;
}

main .lxc06 .task_button {
  width: auto;
  position: absolute;
  top: 15px;
  right: 15px;
}

main .lxc06 .record_button {
  width: auto;
  position: absolute;
  bottom: 11px;
  right: 15px;
}

main .lxc06 .record_button_2 {
  bottom: 17px;
  right: 15px;
}

main .lxc06 .task_button form .syosai {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  cursor: pointer;
}

main .lxc06 .record_button form .syosai {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  cursor: pointer;
}

main .lxc06 .record_button form .syosai:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .lxc06 .task_button form .syosai:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_button form .hensyu {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  font-size: 13px;
  cursor: pointer;
}

main .lxc06 .record_button form .hensyu {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  font-size: 13px;
  cursor: pointer;
}

main .lxc06 .record_button form .hensyu:hover {
  opacity: 0.7;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_button form .hensyu:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_button form .muko {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #8C8C8C;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  opacity: 0.8;
  pointer-events: none;
}

main .lxc06 .record_button form .muko {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 3px 12px;
  background-color: #8C8C8C;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  opacity: 0.8;
  pointer-events: none;
}

main .lxc06 .task_button2 {
  position: absolute;
  bottom: 11px;
  right: 75px;
}

main .lxc06 .record_button2 {
  position: absolute;
  bottom: 11px;
  right: 75px;
}

main .lxc06 .task_button_bu {
  position: absolute;
  top: 50px;
  right: 15px;
}

main .lxc06 .task_button2 .sakujyo {
  display: block;
  margin: 0 auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}

main .lxc06 .task_button_bu .sakujyo {
  display: block;
  margin: 0 auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}

main .lxc06 .task_button_bu .sakujyo:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .record_button2 .sakujyo {
  display: block;
  margin: 0 auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}

main .lxc06 .task_button3 {
  position: absolute;
  bottom: 11px;
  right: 136px;
}

main .lxc06 .task_button3 .copy {
  display: block;
  margin: 0 auto;
  padding: 3px 12px;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}

main .lxc06 .task_button2 .muko {
  background-color: #8C8C8C;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc06 .record_button2 .muko {
  background-color: #8C8C8C;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc06 .task_button3 .muko {
  background-color: #8C8C8C;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc06 .task_button2 .sakujyo:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .record_button2 .sakujyo:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_button3 .copy:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc06 .task_button2 .kanryozumi {
  display: block;
  margin: 0 auto;
  padding: 3px 9px;
  background-color: #8C8C8C;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
  opacity: 0.8;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  pointer-events: none;
}

main .lxc06 .task_button2 .kanryozumi:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .paging {
  max-width: 1000px;
  width: 100%;
  padding: 15px 15px 10px;
  box-sizing: border-box;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1070px) {
  main .paging {
    max-width: 100%;
  }
}

main .paging a {
  padding: 3px 6px;
  display: block;
  border: 0.5px solid #0D0D0D;
  margin-right: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  color: #0D0D0D;
  transition-property: all;
  transition-duration: 0.3s;
}

main .paging .here {
  background-color: red;
  pointer-events: none;
  color: #FFF;
}

main .paging a:hover {
  background-color: red;
  color: #FFF;
}

main .paging_index {
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 10px;
  text-align: center;
  background-color: #F0F2F2;
  border-radius: 3px;
  font-size: 12px;
}

@media (max-width: 1070px) {
  main .paging_index {
    max-width: 100%;
  }
}

main .comp {
  max-width: 1000px;
  width: 100%;
  margin-top: 10px;
}

main .comp form input {
  display: block;
  margin: 0 15px 0 auto;
  width: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
  color: #FFF;
}

main .comp form input:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .comp form .task_b {
  cursor: pointer;
}

main .white_back {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

main .white_back .w_lxc01 {
  max-width: 350px;
  width: 95%;
  margin: auto auto;
  border: 1px solid #0D0D0D;
  padding: 20px;
  box-sizing: border-box;
  background-color: #FFF;
  transform: translateY(60px);
  opacity: 0;
  transition-property: all;
  transition-duration: 0.1s;
  transition-duration: 0.3s;
}

main .white_back .w_move {
  transform: translateY(0px);
  opacity: 1;
}

main .white_back .w_lxc01 h1 {
  text-align: center;
  line-height: 1.7;
}

main .white_back .w_lxc01 .box {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

main .white_back .w_lxc01 .box .box_1 {
  width: 45%;
}

main .white_back .w_lxc01 .box .box_1 input {
  display: block;
  width: 100%;
  text-align: center;
  padding: 6px;
  background-color: #595959;
  color: #FFF;
  border-radius: 3px;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .white_back .w_lxc01 .box .box_1 input:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #0D0D0D;
}

main .white_back .w_lxc01 .error_p {
  text-align: center;
  font-size: 12px;
  color: red;
  line-height: 1.5;
  margin-bottom: 15px;
}

main .white_back .w_lxc01 .pass_in {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  width: 300px;
  margin: 0 auto;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
}

main .white_view {
  opacity: 1;
  pointer-events: auto;
}

main .white_kakunin {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-delay: 0.3s;
  overflow: auto;
}

main .kakunin_view {
  opacity: 1;
  pointer-events: auto;
}

main .white_kakunin .kakunin1 {
  max-width: 500px;
  width: 90%;
  margin: auto auto;
  padding: 20px;
  box-sizing: border-box;
  border: 0.5px solid #0D0D0D;
  position: relative;
  background-color: #FFF;
}

main .white_kakunin .kakunin1 h1 {
  color: #FFF;
  padding: 3px 9px;
  box-sizing: border-box;
  background-color: #59554C;
  text-align: center;
  border-radius: 3px;
}

main .white_kakunin .kakunin1 p {
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.7;
}

main .white_kakunin .kakunin1 span {
  display: block;
  position: absolute;
  font-size: 50px;
  top: -55px;
  right: 0;
  cursor: pointer;
}

/* サービス提供記録 */
main .s_record {
  max-width: 1000px;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
}

@media (max-width: 500px) {
  main .s_record {
    margin-top: 30px;
  }
}

main .s_record form .hyde_2 {
  display: none;
}

main .s_record form .hyde_3 {
  display: none;
}

main .s_record form .over_box {
  font-size: 12px;
  color: red;
}

main .s_record form .form_box1 .box1 .hyde_4 {
  display: none;
}

main .s_record form .form_box1 .box2 .hyde_5 {
  display: none;
}

main .s_record form .form_box1 .hyde_3 {
  display: none;
}

main .s_record form h1 {
  width: 100%;
  padding: 3px 0 3px 10px;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}

main .s_record form h1 span {
  font-size: 12px;
  color: red;
  margin-left: 5px;
}

main .s_record form h2 {
  max-width: 600px;
  width: 100%;
  padding: 2px 12px;
  box-sizing: border-box;
  line-height: 1.5;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 3px;
  margin-bottom: 20px;
}

main .s_record form .ass_mov_sub {
  width: fit-content;
  padding: 3px 12px;
  border-radius: 10px;
  background-color: #00a8bd;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
  margin-top: 20px;
}

main .s_record form .ass_mov_sub:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .s_record form .ass_mov_text {
  width: 100%;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  padding: 10px;
  box-sizing: border-box;
  height: 150px;
  background-color: #F0F2F2;
}

main .s_record form .ass_mov_text:focus {
  background-color: #FFF;
  border: 0.5px solid #201F1F;
}

main .s_record form input {
  max-width: 600px;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #F0F2F2;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  transition-property: all;
}

main .s_record form input:focus {
  outline: none;
  background-color: #FFF;
  border: 0.5px solid #595959;
}

main .s_record form select {
  max-width: 200px;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  transition-property: all;
  transition-duration: 0.3s;
  margin-bottom: 10px;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .s_record form select:focus {
  outline: none;
  background-color: #FFF;
  border: 0.5px solid #595959;
}

main .s_record form .w_200 {
  max-width: 200px;
}

main .s_record form .hig {
  height: 42px;
  padding: 3px 9px;
  box-sizing: border-box;
}

main .s_record form .form_box1 {
  margin: 10px 0 15px;
  max-width: 600px;
  width: 100%;
  height: auto;
}

main .s_record form .form_box1 .box1 {
  display: flex;
  flex-wrap: wrap;
}

main .s_record form .form_box1 .box1 label {
  display: block;
  padding: 10px 0;
  margin-right: 15px;
  user-select: none;
  cursor: pointer;
}

main .s_record form .form_box1 .box1 label .check {
  margin: 0 3px 0 0;
  padding: 0;
  width: auto;
  transform: translateY(1px);
}

main .s_record form .form_box1 .box1 label .check:focus {
  box-shadow: none;
}

main .s_record form .form_box1 .box1 .bunrui {
  display: flex;
  color: blue;
}

main .s_record form .form_box1 .box1 .bunrui label .radio {
  margin: 0;
  padding: 0;
  width: auto;
  transform: translateY(1px);
  display: inline-block;
}

main .s_record form .form_box1 .box1 .bunrui label .radio:focus {
  box-shadow: none;
}

main .s_record form .form_box1 .box2 {
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
}

main .s_record form .form_box1 .hyde_z {
  display: none;
}

main .s_record form .form_box1 .box2 span {
  display: block;
  line-height: 39px;
  margin-right: 5px;
}

main .s_record form .form_box1 .box2 .w_60 {
  width: 60px;
  margin: 0 5px 0 0;
  text-align: center;
}

main .s_record form .form_box1 .box2 .w_80 {
  width: 80px;
  margin: 0 5px 0 0;
}

main .s_record form .form_box1 .box2 .w_80_1 {
  width: 80px;
  margin: 0 5px 0 0;
  text-align: center;
}

main .s_record form .form_box1 .box2 .w_100 {
  width: 100px;
  margin: 0 5px 0 0;
  text-align: center;
}

main .s_record form .form_box1 .box2 .w_200 {
  width: 200px;
  margin: 0 5px 0 0;
}

main .s_record form .w_250 {
  max-width: 250px;
  margin: 0 0 0 0;
}

main .s_record form .form_box1 .box2 .w_150 {
  width: 150px;
  margin: 0 5px 0 0;
  text-align: center;
}

main .s_record form .form_box1 textarea {
  max-width: 600px;
  width: 100%;
  height: 200px;
  padding: 10px;
  line-height: 1.5;
  font-size: 13px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #F0F2F2;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
}

main .s_record form .form_box1 textarea:focus {
  background-color: #FFF;
  border: 0.5px solid #595959;
  outline: none;
}

main .s_record form .form_box2 {
  margin: 10px 0 20px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

main .s_record form .form_box2 label {
  cursor: pointer;
  margin-right: 15px;
}

main .s_record form .form_box2 label .check2 {
  margin: 0 3px 0 0;
  padding: 0;
  width: auto;
  transform: translateY(1px);
}

main .s_record form .count_box {
  font-size: 12px;
  line-height: 1.5;
  max-width: 600px;
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}

main .s_record form input[type=button] {
  background-color: #00a8bd;
  color: #FFF;
  padding: 3px 12px;
  width: auto;
  border-radius: 10px;
  margin-top: 15px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .s_record form .hyde {
  display: none;
}

main .s_record form input[type=button]:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc1 {
  max-width: 1000px;
  width: 100%;
  margin-top: 10px;
}

main .kotsu_print {
  margin: 10px auto 0;
}

main .kotsu_lxc1 table {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
}

main .kotsu_lxc1 .t_print1 {
  font-size: 10px;
}

main .kotsu_lxc1 table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

main .kotsu_lxc1 table thead tr th {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  background-color: #CFE9EB;
  border-collapse: collapse;
}

main .kotsu_lxc1 table tbody tr td {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  border-collapse: collapse;
  text-align: left;
}

main .kotsu_lxc1 table tbody tr td form .t_sakujyo {
  width: auto;
  padding: 3px 12px;
  text-align: center;
  background-color: tomato;
  border-radius: 10px;
  color: #FFF;
  margin: 5px 0;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc1 table tbody tr td form .t_sakujyo:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc1 table tbody tr td form .t_copy {
  width: auto;
  padding: 3px 12px;
  text-align: center;
  background-color: #00a8bd;
  border-radius: 10px;
  color: #FFF;
  margin: 5px 0;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc1 table tbody tr td form .t_copy:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.7;
}

main .kotsu_lxc1 table tbody tr td form .t_sakujyo2 {
  width: auto;
  padding: 3px 12px;
  text-align: center;
  background-color: #00a8bd;
  border-radius: 10px;
  color: #FFF;
  margin: 6px 0;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc1 table tbody tr td form .t_sakujyo2:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc1 .kotsu_hosoku {
  margin: 5px 0;
  text-align: right;
  line-height: 1.5;
  font-size: 12px;
  padding: 3px;
}

main .kotsu_lxc1 .kotsu_hosoku_2 {
  margin: 5px 0;
  text-align: right;
  line-height: 1.5;
  font-size: 10px;
  padding: 3px;
}

main .kotsu_lxc2 {
  max-width: 1000px;
  width: 100%;
  margin-top: 5px;
}

main .kotsu_print2 {
  margin: 5px auto 0;
}

main .kotsu_lxc2 table {
  max-width: 200px;
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  margin-left: auto;
}

main .kotsu_lxc2 table tr th {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  background-color: #CFE9EB;
  text-align: center;
  border-collapse: collapse;
}

main .kotsu_lxc2 table tr td {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  text-align: right;
  border-collapse: collapse;
}

main .kotsu_lxc3 {
  width: 100%;
  margin-top: 10px;
  display: none;
  position: relative;
}

main .kotsu_lxc3 table {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  table-layout: fixed;
}

main .kotsu_lxc3 table tr th {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  background-color: #CFE9EB;
  border-collapse:collapse;
}

main .kotsu_lxc3 table tr td {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  border-collapse:collapse;
  min-height: 17.5px;
}

main .mov_hosoku {
  margin: 5px 0;
  text-align: right;
  line-height: 1.5;
  font-size: 10px;
  padding: 3px;
  display: none;
}

main .mov_hosoku_2 {
  margin: 5px 0;
  text-align: right;
  line-height: 1.5;
  font-size: 12px;
  padding: 3px;
  display: none;
}

main .kotsu_lxc3 .mov_sakujyo {
  position: absolute;
  width: auto;
  bottom: 25px;
  left: 26px;
}

main .kotsu_lxc3 .mov_sakujyo .mov_sakujyo_b {
  font-size: 12px;
  padding: 3px 12px;
  background-color: tomato;
  color: #FFF;
  text-align: center;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc3 .mov_sakujyo .mov_sakujyo_b:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc3 .mov_copy {
  position: absolute;
  width: auto;
  bottom: 93px;
  left: 26px;
}

main .kotsu_lxc3 .mov_copy .mov_copy2 {
  font-size: 12px;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  text-align: center;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc3 .mov_copy .mov_copy2:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc3 .mov_copy_h {
  position: absolute;
  width: auto;
  bottom: 60px;
  left: 26px;
}

main .kotsu_lxc3 .mov_copy_h .mov_copy_h2 {
  font-size: 12px;
  padding: 3px 12px;
  background-color: #00a8bd;
  color: #FFF;
  text-align: center;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .kotsu_lxc3 .mov_copy_h .mov_copy_h2:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .kotsu_lxc4 {
  max-width: 1000px;
  width: 100%;
  margin-top: 5px;
  display: none;
}

main .kotsu_lxc4 table {
  max-width: 200px;
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  margin-left: auto;
}

main .kotsu_lxc4 table tr th {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  background-color: #CFE9EB;
  text-align: center;
  border-collapse: collapse;
}

main .kotsu_lxc4 table tr td {
  padding: 3px;
  box-sizing: border-box;
  border: 0.5px solid #00a8bd;
  text-align: right;
  border-collapse: collapse;
}

@media (max-width: 1220px) {
  main .kotsu_lxc1 {
    display: none;
  }

  main .kotsu_print {
    display: block;
  }

  main .kotsu_lxc2 {
    display: none;
  }

  main .kotsu_print2 {
    display: block;
  }

  main .kotsu_lxc3 {
    display: block;
  }

  main .kotsu_lxc4 {
    display: block;
  }

  main .kotsu_print3 {
    display: none;
  }

  main .hinagata_hensyu {
    display: block;
  }

  main .mov_hosoku {
    display: block;
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  main .kotsu_print {
    display: none;
  }

  main .kotsu_print2 {
    display: none;
  }

  main .kotsu_print3 {
    display: block;
  }

  main .kotsu_lxc1 .kotsu_hosoku_2 {
    display: none;
  }

  main .mov_hosoku_2 {
    display: block;
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  main .hinagata_hensyu table thead tr .chosei1 {
    width: 100px !important;
  }
  main .hinagata_hensyu table thead tr .chosei2 {
    width: 100px !important;
  }
  main .hinagata_hensyu table thead tr .chosei3 {
    width: 70px !important;
  }
}

.p_close {
  width: auto;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.p_close span {
  display: block;
  font-size: 30px;
}

.print_lxc {
  max-width: 1000px;
  width: 95%;
  box-sizing: border-box;
  margin: 30px auto;
  font-size: 12px;
  position: relative;
}

.print_lxc .p_close {
  position: absolute;
  top: -15px;
  right: 0;
  cursor: pointer;
}

.print_lxc .p_close span {
  font-size: 50px;
}

.print_lxc .print_close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

@media print {
  .print_lxc {
    margin: 15px auto;
  }

  .print_lxc .print_close {
    display: none;
  }

  .main_print .print_close {
    display: none;
  }
}

.print_lxc .print_close span {
  font-size: 50px;
}

.print_lxc_kami {
  font-size: 10px;
}

.print_lxc h1 {
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 700;
  border-left: 6px solid #00a8bd;
}

.print_lxc .p_send {
  margin-top: 15px;
}

.print_lxc .p_send form h3 {
  line-height: 1.5;
  padding: 3px 9px;
  box-sizing: border-box;
  border-left: 6px solid #00a8bd;
}

.print_lxc .p_send form h3 span {
  margin-left: 5px;
  font-size: 12px;
  color: red;
}

.print_lxc .p_send form select {
  padding: 12px;
  border: none;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  max-width: 500px;
  width: 100%;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
  transition-property: all;
  transition-duration: 0.3s;
}

.print_lxc .p_send form .p_submit {
  display: block;
  width: 50%;
  padding: 6px 9px;
  box-sizing: border-box;
  text-align: center;
  background-color: #00a8bd;
  color: #FFF;
  font-weight: 500;
  margin: 20px auto 50px;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
}

.print_lxc .p_send form .p_submit:hover {
  opacity: 0.7;
  box-shadow: 1px 1px 3px #0D0D0D;
}

.print_lxc .p_send form .p_info {
  line-height: 1.5;
}

.print_lxc h2 {
  margin-top: 10px;
  background-color: #00a8bd;
  text-align: center;
  line-height: 1.7;
  padding: 3px;
  box-sizing: border-box;
  font-weight: 500;
  color: #FFF;
}

.print_lxc h4 {
  margin-top: 10px;
  text-align: left;
  line-height: 1.7;
}

.print_lxc .p_box1 {
  margin-top: 15px;
}

.print_lxc .p_box1 table {
  width: 100%;
  table-layout: fixed;
  border-collapse:collapse;
}

.print_lxc .p_box1 table tr th {
  width: 15%;
  padding: 5px 0;
  border: 1px solid #00a8bd;
  vertical-align:middle;
  line-height: 1.7;
}

.print_lxc .p_box1 table tr td {
  width: 85%;
  padding: 5px 10px;
  border: 1px solid #00a8bd;
  vertical-align:middle;
  line-height: 1.7;
}

.print_lxc .p_box1 table tr td .t_time {
  text-align: right;
  margin-top: 10px;
}

.print_lxc .kidoku_time {
  line-height: 1.5;
  margin-top: 10px;
  width: 100%;
  text-align: right;
}

@media (max-width: 620px) {
  .print_lxc .p_box1 table tr th {
    width: 20%;
  }
  
  .print_lxc .p_box1 table tr td {
    width: 80%;
  }
  
}

@media (max-width: 500px) {
  .print_lxc .p_send form select {
    font-size: 12px;
  }

  .print_lxc .p_box1 table tr th {
    width: 25%;
  }
  
  .print_lxc .p_box1 table tr td {
    width: 75%;
  }
}

.w__back {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #FFF;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
}

.w__view {
  opacity: 1;
  pointer-events: all;
}

footer {
  background-color: #00a8bd;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
}

/* おみくじ */

.omikuji {
  text-align: center;
  margin-top: 30px;
  max-width: 1000px;
  width: 100%;
}

.omi_title {
  font-family: 'Yuji Syuku', serif;
  font-size: 20px;
  line-height: 1.7;
}

.omikuji_b {
  padding: 10px 20px;
  font-size: 18px;
}

.omikuji_b img {
  max-width: 220px;
  transition-property: all;
  transition-duration: 0.5s;
}

.omikuji_b img:hover {
  opacity: 0.6;
}

.mienai {
  display: none;
}

.mieru {
  font-family: 'Yuji Syuku', serif;
  margin-top: 15px;
  font-size: 48px;
}

.shake-animation {
  font-family: 'Yuji Syuku', serif;
  margin-top: 15px;
  font-size: 48px;

  animation-name: shake;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(15px);
  }
  75% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);

  }
}

.syainmeibo {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.syainmeibo h1 {
  width: 95%;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin: 30px auto 0;
  background-color: #595959;
  color: #FFF;
}

.syainmeibo .meibo_box {
  width: 95%;
  margin: 10px auto 2px;
  display: flex;
}

.syainmeibo .meibo_box h2 {
  width: auto;
  padding: 3px 0;
  text-align: left;
  box-sizing: border-box;
  font-size: 10px;
}

.syainmeibo .meibo_box h3 {
  flex: 1;
  padding: 3px 0;
  text-align: right;
  box-sizing: border-box;
  font-size: 10px;
}

.syainmeibo table {
  width: 95%;
  margin: 0 auto;
  font-size: 8px;
  line-height: 1.5;
}

.syainmeibo table tr th {
  border: 0.5px solid #201F1F;
  padding: 1px 3px;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
}

.syainmeibo table tr td {
  border: 0.5px solid #201F1F;
  padding: 1px 3px;
  box-sizing: border-box;
  vertical-align: middle;
}

.meibo_none {
  display: block;
}

@media (max-width: 700px) {
  .meibo_none {
    display: none;
  }
}

main .hojin_id {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);
  z-index: 11;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;

  animation-name: syain;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes syain {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}

main .hojin_id .ho_lxc01 {
  max-width: 1000px;
  width: 95%;
  margin: auto auto;
}

main .hojin_id .ho_lxc01 h1 {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

main .hojin_id .ho_lxc01 p {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
}

main .hojin_id a {
  display: block;
  width: 200px;
  margin: 25px auto 0;
  padding: 12px 30px;
  background-color: #00a8bd;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .hojin_id a:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .del_date {
  max-width: 1000px;
  width: 100%;
  margin: 10px 0;
  padding: 0 10px;
  box-sizing: border-box;
}

main .del_date .box1 .sakujyo {
  display: block;
  width: auto;
  margin-left: auto;
  padding: 3px 12px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .del_date .box1 .sakujyo:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .detail_01 {
  max-width: 1000px;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  background-color: #F0F2F2;
  border-radius: 3px;
  margin-bottom: 10px;
}

main .detail_01 details {
  margin-bottom: 10px;
}

main .detail_01 details[open] {
  margin-bottom: 0;
}

main .detail_01 details:last-child {
  margin-bottom: 0;
}

main .detail_01 details summary {
  padding: 10px;
  padding-left: 30px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  transition: all 0.3s ease;
  cursor: pointer;
  list-style: none;
  border-radius: 2px;
}

/* 利用者メニュー */
main .menu_back02 {
  outline: 0px solid #00a8bd;
  outline-offset: 0px;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: 0.2s;
}

main .menu_back {
  outline: 6px solid #00a8bd;
  outline-offset: -3px;
  box-sizing: border-box;
}

main .lxc02 .set_01 {
  padding: 5px 0;
}

main .lxc02 .set_01 details summary {
  font-weight: 500;
  list-style-type: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding-left: 28px;
}

main .lxc02 .set_01 details summary:hover {
  color: red;
}

main .lxc02 .set_01 details summary::before {
  content: url(../img/outline_settings_black_24dp.png);
  position: absolute;
  animation-name: close_01;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(0deg);
}

main .lxc02 .set_01 details[open] summary::before {
  animation-name: open_01;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(120deg);
}

@keyframes open_01 {
  0% {
    transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(0deg);
  }
  100% {
    transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(120deg);
  }
}

@keyframes close_01 {
  0% {
    transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(0deg);
  }
  100% {
    transform: translateX(-28px) translateY(-5.5px) scale(0.9) rotate(-120deg);
  }
}

main .lxc02 .set_01 details .box01 {
  margin-top: 12px;
}

main .lxc02 .set_01 details .box01 ul {
  line-height: 1.7;
  list-style: disc;
  margin-left: 27px;
}

main .lxc02 .set_01 details .box01 ul li {
  padding: 2px 0;
}

main .lxc02 .set_01 details .box01 ul li a {
  text-decoration: none;
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .set_01 details .box01 ul li .pointer {
  cursor: pointer;
}

main .lxc02 .set_01 details .box01 ul li a:hover {
  color: red;
  border-bottom: 0.5px solid red;
}

main .lxc02 .set_01 details .box01 ul li span {
  text-decoration: none;
  color: #201F1F;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .set_01 details .box01 ul li span:hover {
  color: red;
  border-bottom: 0.5px solid red;
}

main .lxc02 .set_01 details .box01 ul li .s_nin {
  cursor: auto;
}

main .lxc02 .set_01 details .box01 ul li .s_nin:hover {
  color: #201F1F;
}

main .lxc02 .set_01 details .box01 ul li .key {
  font-size: 17px;
  transform: translateY(3px);
  margin-left: 3px;
  cursor: auto;
}

main .lxc02 .set_01 details .box01 ul li .key:hover {
  color: #201F1F;
  border: none;
}

main .lxc02 .set_01 details .box01 ul li .s_nin:hover {
  border-bottom: none;
}

/* エンド */

main .detail_01 details summary:hover {
  background-color: #c8f4e9;
  box-shadow: 1px 1px 3px #201F1F;
}

main .detail_01 details .chiki:hover {
  background-color: #f3f4c8;
}

main .detail_01 details:first-child summary::before {
  content: "▶";
  position: absolute;
  margin-right: 6px;
  animation-name: close_02;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transform: translateX(-20px) rotate(0deg);
}

main .detail_01 details summary::before {
  content: "＋";
  position: absolute;
  margin-right: 6px;
  animation-name: close_02;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transform: translateX(-20px) rotate(0deg);
}

main .detail_01 details[open] summary::before {
  animation-name: open_02;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  transform: translateX(-20px) rotate(90deg);
}

main .detail_01 details[open] summary {
  background-color: #c8f4e9;
  box-shadow: 1px 1px 3px #201F1F;
}

main .detail_01 details[open] .chiki {
  background-color: #f3f4c8;
}

@keyframes open_02 {
  0% {
    transform: translateX(-20px) rotate(0deg);
  }
  100% {
    transform: translateX(-20px) rotate(90deg);
  }
}

@keyframes close_02 {
  0% {
    transform: translateX(-20px) rotate(90deg);
  }
  100% {
    transform: translateX(-20px) rotate(0deg);
  }
}

main .detail_01 details ul {
  padding: 10px;
  padding-left: 26px;
  box-sizing: border-box;
  list-style: disc;
  line-height: 1.7;
}

main .detail_01 details ul li {
  padding: 3px 0;
  box-sizing: border-box;
}

main .detail_01 details ul li .target_all_01:hover {
  color: red;
  border-bottom: 1px solid red;
}

main .detail_01 details ul li a {
  text-decoration: none;
  color: #201F1F;
}

main .detail_01 details ul li .none_b {
  text-decoration: none;
  color: #8C8C8C;
  pointer-events: none;
}

main .detail_01 details ul li a:hover {
  color: red;
  border-bottom: 1px solid red;
}

main .detail_01 details .d_lxc01 {
  padding: 0 10px 10px 10px;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  font-size: 12px;
}

main .detail_01 details .d_lxc01:nth-child(2) {
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  font-size: 12px;
}

main .detail_01 details .d_lxc01 .box1 {
  padding: 3px 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 0.5px solid #201F1F;
  width: 130px;
}

main .detail_01 details .d_lxc01 .box1 .center {
  margin: auto auto;
}

main .detail_01 details .d_lxc01 .box2 {
  flex: 1;
  padding: 3px 9px;
}

main .detail_01 details .d_lxc02 {
  padding: 0 10px 10px;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  justify-content: flex-end;
}

main .detail_01 details .last_01 {
  padding-bottom: 0;
}

main .detail_01 details .d_lxc02 a {
  display: block;
  padding: 3px 12px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  color: #201F1F;
  background-color: #D8F2F0;
  width: 80px;
  border: 0.5px solid #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  margin-left: 6px;
}

main .detail_01 details .d_lxc02 a:hover {
  box-shadow: 1px 1px 3px #201F1F;
}

main .detail_01 details .d_lxc02 .del_link {
  display: block;
  padding: 3px 12px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  color: #201F1F;
  background-color: #D8F2F0;
  width: 80px;
  border: 0.5px solid #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  margin-left: 6px;
  cursor: pointer;
}

main .detail_01 details .d_lxc02 .chiki_b {
  background-color: #f3f4c8;
}

main .detail_01 details .d_lxc02 .none_b {
  pointer-events: none;
  background-color: #8C8C8C;
  color: #FFF;
  opacity: 0.8;
}

main .detail_01 details .d_lxc02 .del_link:hover {
  box-shadow: 1px 1px 3px #201F1F;
}

.sec01 .lxc02 form .kensaku .search_sel {
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  padding: 5px 35px 5px 15px;
  box-sizing: border-box;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

.sec01 .lxc02 form .kensaku .search_info {
  display: inline-block;
  font-size: 12px;
}

main .lxc02 .time_date {
  padding: 10px;
  box-sizing: border-box;
  font-size: 20px;
}

main .lxc02 .time_clock {
  padding: 2px 10px 10px;
  box-sizing: border-box;
  font-size: 30px;
}

main .lxc02 .time_card {
  padding: 10px;
  box-sizing: border-box;
  display: flex;
}

main .lxc02 .time_card .card_01 {
  display: flex;
}

main .lxc02 .time_card .card_01 a {
  display: block;
  flex-direction: column;
  margin: auto auto;
  padding: 12px 25px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 6px;
  color: #FFF;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  opacity: 1;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .lxc02 .time_card .card_01 .gray_out {
  pointer-events: none;
  background-color: #8C8C8C;
  opacity: 0.7;
}

main .lxc02 .time_card .card_01 a:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc02 .time_card .card_02 {
  display: flex;
  margin-left: 10px;
}

main .lxc02 .time_card .card_02 a {
  display: block;
  flex-direction: column;
  margin: auto auto;
  padding: 12px 25px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 6px;
  color: #FFF;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  opacity: 1;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .time_card .card_02 .gray_out {
  pointer-events: none;
  background-color: #8C8C8C;
  opacity: 0.7;
}

main .lxc02 .time_card .card_02 a:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc02 .time_icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

main .lxc02 .time_icon span {
  display: block;
  font-size: 40px;
}

main .syukinbo_01 {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #F0F2F2;
}

main .syukinbo_01 .box1 {
  border-left: 6px solid #00a8bd;
  padding: 1px 6px;
  box-sizing: border-box;
  line-height: 1.5;
}

main .syukinbo_01 .red_line {
  border-left: 6px solid red;
}

main .syukinbo_01 .box1 h1 {
  font-size: 12px;
  line-height: 1.5;
}

main .syukinbo_01 .box1 .etsuran_emp {
  margin: 10px 0 3px;
}

main .syukinbo_01 .box1 .etsuran_emp form select {
  padding: 3px 30px 3px 12px;
  width: auto;
}

main .syukinbo_01 .box1 .etsuran_emp form .emp_sentaku {
  width: auto;
  padding: 3px 9px;
  font-size: 12px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #00a8bd;
  color: #FFF;
  text-align: center;
  margin-left: 5px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .s_view {
  display: none;
}

main .syukinbo_01 .box1 .etsuran_emp form .emp_sentaku:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .syukinbo_01 .box1 .shift_emp {
  padding-left: 1px;
  padding-bottom: 10px;
  box-sizing: border-box;
  font-size: 18px;
}

main .syukinbo_01 .box1 form select {
  width: 70px;
  padding: 3px 12px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 3px center / 25px auto;
}

main .syukinbo_01 .box1 form .etsuran {
  width: auto;
  padding: 3px 9px;
  font-size: 12px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #00a8bd;
  color: #FFF;
  text-align: center;
  margin-left: 5px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .syukinbo_01 .box1 form .etsuran:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .syukinbo_01 .box1 form .iPhone_se a {
  margin-left: 5px;
  padding: 3px 6px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition-property: all;
  transition-duration: 0.3s;
}

main .syukinbo_01 .box1 form .iPhone_se a:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .syukinbo_01 .box1 form .iPhone_se {
  display: inline-block;
}

main .syukinbo_01 .box1 form .iPhone_se_mov {
  display: none;
}

main .syukinbo_01 .box1 form .iPhone_se a span {
  font-size: 16px;
  transform: translateY(2px);
}

@media (max-width: 400px) {
  main .syukinbo_01 .box1 form .iPhone_se {
    display: none;
  }
  
  main .syukinbo_01 .box1 form .iPhone_se_mov {
    display: block;
    padding: 10px 0 3px;
    box-sizing: border-box;
  }
}

main .syukinbo_02 {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 10px;
}

main .syukinbo_02 .mitoroku_info {
  padding: 0 10px;
  line-height: 1.5;
  box-sizing: border-box;
}

main .syukinbo_02 table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11px;
  line-height: 1.5;
  border: 2px solid #59554C;
  box-sizing: border-box;
}

main .syukinbo_02 table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

main .syukinbo_02 table thead tr th {
  border: 0.5px solid #59554C;
  background-color: #CFE9EB;
  padding: 2px;
  box-sizing: border-box;
  vertical-align: middle;
}

main .syukinbo_02 table thead tr .settings span {
  font-size: 17px;
  transform: translateY(1.5px);
}

main .syukinbo_02 table tbody tr .settings span {
  font-size: 17px;
  transform: translateY(1.5px);
}

main .syukinbo_02 table tr:hover {
  background-color: #f3f4c8;
}

main .syukinbo_02 table .b_color {
  background-color: rgba(255, 99, 71, 0.134);
}

main .syukinbo_02 table tbody tr td {
  border: 0.5px solid #59554C;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}

main .syukinbo_02 table tbody tr td a {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
}

main .syukinbo_02 table tbody tr td .naiyo_link {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: none;
}

main .syukinbo_02 table tbody tr td .s_toroku {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .syukinbo_02 table tbody tr td .s_del {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .syukinbo_02 table tbody tr td a:hover {
  color: red;
}

main .syukinbo_02 table tbody tr td .naiyo_link:hover {
  color: red;
}

main .syukinbo_02 table tbody tr td .s_toroku:hover {
  color: red;
}

main .syukinbo_02 table tbody tr td .s_del:hover {
  color: red;
}

main .syukinbo_02 table tbody tr td span {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  margin-left: 10px;
  cursor: pointer;
}

main .syukinbo_02 table tbody tr td span:hover {
  color: red;
}

main .syukinbo_02 table tbody tr td .time_color {
  transition-property: none;
  text-decoration: none;
  margin-left: 0px;
  color: #201F1F;
  cursor: auto;
}

main .syukinbo_02 table tbody tr td .time_color:hover {
  color: #201F1F;
}

main .syukinbo_02 table tbody tr td .can {
  transition-property: none;
  text-decoration: none;
  margin-left: 0px;
  color: red;
}

main .syukinbo_02 table tbody tr td .can:hover {
  color: red;
}

main .syukinbo_02 table tbody tr .sat {
  color: blue;
}

main .syukinbo_02 table tbody tr .sun {
  color: red;
}

main .syukinbo_02 table tbody .to_day {
  background-color: rgba(255, 99, 71, 0.134);
}

main .t_mov {
  display: none;
}

main .syukinbo_02 table tbody tr .mov_th {
  background-color: #CFE9EB;
  border: 0.5px solid #201F1F;
}

main .syukinbo_02 table tbody tr .mov_client {
  background-color: blanchedalmond;
  border: 0.5px solid #201F1F;
}

main .syukinbo_02 table tbody tr .mov_emp {
  background-color: skyblue;
  border: 0.5px solid #201F1F;
}

@media (max-width: 1200px) {
  main .t_none {
    display: none;
  }

  main .t_mov {
    display: flex;
    flex-direction: column-reverse;
  }

  main .t_schedule {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }

  main .syukinbo_02 table {
    border: 2px solid;
    margin-bottom: 20px;
  }

  main .syukinbo_02 .shift {
    border: 2px solid;
    margin-bottom: 20px;
  }

  main .syukinbo_02 table:first-child {
    border: 2px solid;
    margin-bottom: 0px;
  }

  main .syukinbo_02 .shift:first-child {
    border: 2px solid;
    margin-bottom: 20px;
  }

  main .syukinbo_02 .shift:last-child {
    border: 2px solid;
    margin-bottom: 0px;
  }

  main .syukinbo_02 table tr:hover {
    background-color: #FFF;
  }
}

main .syukinbo_03 {
  max-width: 1000px;
  width: 100%;
}

main .syukinbo_03 .break_info {
  text-align: right;
  font-size: 11px;
  line-height: 1.5;
}

main .syukinbo_03 .kinmu_info {
  margin-top: 10px;
  font-size: 12px;
}

main .syukinbo_03 .kinmu_info table {
  width: 350px;
  margin-left: auto;
  table-layout: fixed;
  border: 2px solid #59554C;
  box-sizing: border-box;
  border-collapse: collapse;
}

main .syukinbo_03 .kinmu_info table tr th {
  padding: 5px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  background-color: #CFE9EB;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}

main .syukinbo_03 .kinmu_info table tr td {
  padding: 5px;
  box-sizing: border-box;
  border: 0.5px solid #59554C;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}

main .syukinbo_03 .kinmu_info table tr td .red {
  color: red;
  font-weight: 500;
}

main .lxc02 .scheduel_lxc01 {
  border-left: 6px solid #00a8bd;
  padding-left: 6px;
  box-sizing: border-box;
}

main .lxc02 .scheduel_lxc02 {
  margin-top: 10px;
  border-left: 6px solid red;
}

@media (max-width: 1200px) {
  main .lxc02 .Nothing {
    display: none;
  }
}

main .lxc02 .scheduel_lxc01 form .pac_01 .box_01 {
  width: auto;
  font-size: 13px;
  padding: 4px 30px 5px 12px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 3px center / 25px auto;
}

main .lxc02 .scheduel_lxc01 form .pac_01 span {
  margin: 0 3px;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .i_se {
  display: inline-block;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .i_se_mov {
  display: none;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .i_se a {
  margin-left: 5px;
  padding: 3px 3px;
  box-sizing: border-box;
  background-color: #00a8bd;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .i_se a:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .i_se a span {
  font-size: 16px;
  transform: translateY(3px);
}

@media (max-width: 400px) {
  main .lxc02 .scheduel_lxc01 form .pac_01 .i_se {
    display: none;
  }
  
  main .lxc02 .scheduel_lxc01 form .pac_01 .i_se_mov {
    display: block;
    padding: 10px 0;
    box-sizing: border-box;
  }
}

main .lxc02 .scheduel_lxc01 form .pac_01 .schedule_on {
  padding: 4px 8px;
  box-sizing: border-box;
  background-color: #00a8bd;
  border-radius: 3px;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
  font-size: 12px;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .grey {
  padding: 4px 12px;
  box-sizing: border-box;
  background-color: #8C8C8C;
  border-radius: 3px;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  pointer-events: none;
  opacity: 0.8;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .schedule_on:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
}

main .lxc02 .scheduel_lxc01 form .pac_01:last-child {
  margin-top: 10px;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .s_info_01 {
  line-height: 1.5;
  font-size: 12px;
  margin-bottom: 5px;
}

main .lxc02 .scheduel_lxc01 form .pac_01 .s_info_01::before {
  content: '▼';
  margin-right: 3px;
}

main .lxc02 .scheduel_lxc03 {
  border-left: 6px solid #00a8bd;
}

main .lxc02 .scheduel_lxc03 .client_name {
  line-height: 1.5;
  font-size: 16px;
  padding: 0 10px;
  box-sizing: border-box;
}

main .lxc02 .scheduel_lxc03 .client_name span {
  font-size: 13px;
  margin-left: 3px;
}

main .lxc02 .scheduel_lxc03 .sche_date {
  line-height: 1.5;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: 5px;
}

main .lxc02 .setting_01 {
  padding: 5px;
  box-sizing: border-box;
}

main .lxc02 .setting_01 .set_lxc01 {
  box-sizing: border-box;
  padding-bottom: 3px;
  border-bottom: 1px solid #201F1F;
  line-height: 1.5;
}

main .lxc02 .setting_01 .set_lxc01 span {
  font-size: 20px;
  transform: translateY(4px);
}

main .lxc02 .setting_01 .set_lxc01 .set_box1 {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  margin-left: 1px;
}

main .lxc02 .setting_01 .set_lxc02 {
  margin: 10px 0;
}

main .lxc02 .setting_01 .set_lxc02 ul li {
  margin-left: 5px;
  font-size: 13px;
  padding: 3px 0 6px;
  line-height: 1.5;
  box-sizing: border-box;
}

main .lxc02 .setting_01 .set_lxc02 ul li span {
  font-size: 18px;
  margin-left: 3px;
  transform: translateY(3.5px);
}

main .lxc02 .setting_01 .set_lxc02 ul li a {
  text-decoration: none;
  border-bottom: 0.5px solid #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  margin-left: 5px;
}

main .lxc02 .setting_01 .set_lxc02 ul li a:hover {
  border-bottom: 0.5px solid red;
  color: red;
}

main .setting_info {
  margin-top: 10px;
  max-width: 1000px;
  width: 100%;
  text-align: right;
  font-size: 11px;
  line-height: 1.5;
}

main .lxc07 {
  margin: 10px 0;
  max-width: 1000px;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}

main .lxc07 h1 {
  padding: 3px 12px;
  border-left: 6px solid #00a8bd;
  font-weight: 500;
  margin-top: 10px;
}

main .line {
  border-top: 3px solid #00a8bd;
}

main .lxc07 form .torokuzumi {
  background-color: #E4EAF2;
  border-radius: 3px;
  padding: 12px;
  box-sizing: border-box;
  line-height: 1.5;
  margin-top: 10px;
  width: 300px;
  font-size: 12px;
  display: inline-block;
}

main .lxc07 form .toroku_sakujyo {
  display: inline-block;
  margin-left: 3px;
  padding: 12px 15px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #00a8bd;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
}

main .lxc07 form .toroku_sakujyo:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .lxc03 form input[type=button] {
  cursor: pointer;
}

main .lxc03 form h1 span {
  font-size: 12px;
  color: red;
  margin-left: 3px;
}

main .kihon_ichiran {
  position: fixed;
  overflow: auto;
  z-index: 12;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  transition-property: all;
  transition-duration: 0.3s;
  overflow: auto;
}

main .kihon_ichiran .hyde_02 {
  display: none;
}

@media (max-width: 750px) {
  main .kihon_ichiran .hyde {
    display: none;
  }

  main .kihon_ichiran .hyde_02 {
    display: block;
  }
}

main .trigger {
  opacity: 0;
  pointer-events: none;
}

main .kihon_ichiran .ichiran_01 {
  max-width: 1000px;
  width: 95%;
  margin: 70px auto;
}

main .kihon_ichiran .ichiran_mov {
  display: none;
}

@media (max-width: 750px) {
  main .kihon_ichiran .ichiran_01 {
    display: none;
  }

  main .kihon_ichiran .ichiran_mov {
    display: block;
  }
}

main .kihon_ichiran .ichiran_01 table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #59554C;
}

main .kihon_ichiran .ichiran_01 table caption {
  margin-bottom: 15px;
  font-size: 13px;
}

main .kihon_ichiran .ichiran_01 table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

main .kihon_ichiran .ichiran_01 table thead tr {
  background-color: #c8f4e9;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(1) {
  border: 0.5px solid #201F1F;
  width: 60px;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(3) {
  border: 0.5px solid #201F1F;
  width: 60px;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(4) {
  border: 0.5px solid #201F1F;
  width: 90px;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(5) {
  border: 0.5px solid #201F1F;
  width: 90px;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(7) {
  border: 0.5px solid #201F1F;
  width: 90px;
}

main .kihon_ichiran .ichiran_01 table thead tr th:nth-child(8) {
  border: 0.5px solid #201F1F;
  width: 150px;
}

main .kihon_ichiran .ichiran_01 table thead tr th {
  border: 0.5px solid #201F1F;
}

main .kihon_ichiran .ichiran_01 table tbody tr {
  background-color: #FFF;
}

main .kihon_ichiran .ichiran_01 table tbody tr:hover {
  background-color: #f3f5d9;
}

main .kihon_ichiran .ichiran_01 table tbody tr td:nth-child(6) {
  border: 0.5px solid #201F1F;
  padding: 3px;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: left;
}

main .kihon_ichiran .ichiran_01 table tbody tr td {
  border: 0.5px solid #201F1F;
  padding: 3px;
  box-sizing: border-box;
  vertical-align: middle;
}

@media (max-width: 780px) {
  main .kihon_ichiran h1 {
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
  }

  main .kihon_ichiran .ichiran_01 table {
    border: 2px solid #59554C;
    margin-bottom: 20px;
  }

  main .kihon_ichiran .ichiran_01 table tbody tr th {
    border: 0.5px solid #201F1F;
    background-color: #c8f4e9;
  }

  main .kihon_ichiran .ichiran_01 table tbody tr:hover {
    background-color: #FFF;
  }
}

main .kihon_ichiran .close {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 13;
  width: auto;
}

main .kihon_ichiran .close span {
  display: block;
  margin: 0 auto;
  font-size: 45px;
  cursor: pointer;
}

@media (max-width: 750px) {
  main .kihon_ichiran .close span {
    font-size: 30px;
  }
}

main .kihon_ichiran .ichiran_02 {
  width: 95%;
  margin: 50px auto;
}

main .kihon_ichiran .ichiran_02 .ichiran_info {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}

main .kihon_ichiran .ichiran_02 table {
  width: 100%;
  font-size: 11px;
  line-height: 1.5;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 2px solid #59554C;
  box-sizing: border-box;
}

main .kihon_ichiran .ichiran_02 table tr th {
  text-align: center;
  vertical-align: middle;
  border: 0.5px solid #201F1F;
  background-color: #c8f4e9;
  padding: 3px;
  box-sizing: border-box;
}

main .kihon_ichiran .ichiran_02 table tr td {
  text-align: center;
  vertical-align: middle;
  border: 0.5px solid #201F1F;
  background-color: #FFF;
  padding: 5px;
  box-sizing: border-box;
}

main .kihon_ichiran .ichiran_02 table tr td::after {
  content: ' ';
}

main .shikake_01 {
  display: none;
}

main .lxc03 form .count_box {
  font-size: 12px;
  line-height: 1.5;
  max-width: 600px;
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}

main .syukinbo_02 table tbody tr td .bikoran {
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .syukinbo_02 table tbody tr td .bikoran:hover {
  color: red;
  text-decoration: underline;
}

main .biko_back {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 13;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
}

main .biko_back_on {
  opacity: 1;
  pointer-events: all;
}

main .biko_back .biko_lxc {
  max-width: 600px;
  width: 95%;
  margin: auto auto;
  border: 0.5px solid #201F1F;
  background-color: #FFF;
  padding: 15px;
  box-sizing: border-box;
  line-height: 1.5;
  position: relative;
  transform: translateY(30px);
  transition-property: all;
  transition-duration: 0.3s;
}

main .biko_back .biko_lxc_on {
  transform: translateY(0px);
}

main .biko_back .biko_lxc h1 {
  font-size: 14px;
  border-left: 6px solid #201F1F;
  padding-left: 7px;
  box-sizing: border-box;
}

main .biko_back .biko_lxc p {
  margin-top: 6px;
  padding: 0 5px;
  box-sizing: border-box;
}

main .biko_back .biko_lxc .biko_close {
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
}

main .biko_back .biko_lxc .biko_close span {
  display: block;
  font-size: 40px;
}

main .romu_lxc01 {
  max-width: 1000px;
  width: 100%;
  margin: 10px 0 20px;
}

main .romu_mov {
  display: none;
}

@media (max-width: 1200px) {
  main .romu_lxc01 {
    display: none;
  }

  main .romu_mov {
    display: block;
  }
}

main .romu_lxc01 table {
  width: 100%;
  font-size: 11px;
  line-height: 1.7;
  border-collapse: collapse;
  table-layout: fixed;
  border: 2px solid #59554C;
}

main .romu_lxc01 table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

main .romu_lxc01 table thead tr th {
  border: 0.5px solid #201F1F;
  box-sizing: border-box;
  background-color: #c8f4e9;
  text-align: center;
  vertical-align: middle;
  padding: 3px;
}

main .romu_lxc01 table thead tr th span {
  font-size: 17px;
  transform: translateY(1.5px);
}

main .romu_lxc01 table tbody tr td {
  border: 0.5px solid #201F1F;
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 1300px) {
  main .romu_lxc01 table {
    margin-bottom: 20px;
    border: 2px solid #59554C;
  }

  main .romu_lxc01 table tbody tr th span {
    font-size: 17px;
    transform: translateY(1.5px);
  }

  main .romu_lxc01 table tbody tr th {
    border: 0.5px solid #201F1F;
    box-sizing: border-box;
    background-color: #c8f4e9;
    text-align: center;
    vertical-align: middle;
    padding: 3px;
  }
}

main .romu_lxc01 table tbody tr td .torisage {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .romu_lxc01 table tbody tr td .torisage:hover {
  color: red;
}

main .romu_lxc01 table tbody tr td .syo_nin {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .romu_lxc01 table tbody tr td .syo_nin:hover {
  color: red;
}

main .romu_lxc01 table tbody tr td .kakunin {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .romu_lxc01 table tbody tr td .kakunin:hover {
  color: red;
}

main .romu_lxc01 table tbody tr td .hi_nin {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 5px;
}

main .romu_lxc01 table tbody tr td .hi_nin:hover {
  color: red;
}

main .lxc02 form .come_sentaku {
  width: auto;
  margin-top: 7px;
  padding: 5px 35px 5px 10px;
  box-sizing: border-box;
  background-color: #FFF;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 5px center / 25px auto;
}

main .yotei_nashi {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);
  z-index: 10;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
  transform: translateY(60px);
  overflow: auto;
}

main .yotei_on {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}

main .yotei_nashi .dakoku_info {
  border: 1px solid #201F1F;
  padding: 30px 15px;
  box-sizing: border-box;
  background-color: #FFF;
  margin: auto auto;
  max-width: 350px;
  width: 90%;
  text-align: center;
}

main .yotei_nashi .dakoku_info .tojiru {
  margin: 30px auto 0;
  max-width: 200px;
  width: 80%;
  padding: 9px 12px;
  border-radius: 3px;
  text-align: center;
  background-color: #595959;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .yotei_nashi .dakoku_info .tojiru:hover {
  background-color: red;
  box-shadow: 1px 1px 3px #201F1F;
}

main .master_lxc {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition-property: all;
  transition-duration: 0.3s;
  overflow: auto;
}

main .master_up {
  opacity: 1;
  pointer-events: all;
}

main .master_lxc .m_lxc01 {
  max-width: 500px;
  width: 95%;
  margin: auto auto;
  padding: 20px;
  box-sizing: border-box;
  border: 0.5px solid #201F1F;
  background-color: #FFF;
  position: relative;
}

main .master_lxc .m_lxc01 h1 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}

main .master_lxc .m_lxc01 p {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 12px;
  color: red;
}

main .master_lxc .m_lxc01 form .pass_form {
  display: block;
  padding: 10px;
  box-sizing: border-box;
  width: 300px;
  margin: 0 auto;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
}

main .master_lxc .m_lxc01 form .box1 {
  margin-top: 15px;
}

main .master_lxc .m_lxc01 form .box1 .master_sub {
  width: auto;
  padding: 3px 25px;
  background-color: #59554C;
  color: #FFF;
  text-align: center;
  border-radius: 3px;
  display: block;
  margin: 0 auto;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .master_lxc .m_lxc01 form .box1 .master_sub:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

main .master_lxc .m_lxc01 .master_close {
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}

main .master_lxc .m_lxc01 .master_close span {
  font-size: 30px;
}

main .good_lxc {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  transition-property: all;
  transition-duration: 0.6s;
}

.print_lxc .good_lxc {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
}

.print_lxc .good_up {
  animation-name: goodup;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

main .good_up {
  animation-name: goodup;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes goodup {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}

main .good_re {
  opacity: 1;
  pointer-events: all;
  animation-name: goodre;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes goodre {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

main .good_lxc .good_box {
  max-width: 400px;
  width: 95%;
  border: 0.5px solid #201F1F;
  padding: 30px;
  box-sizing: border-box;
  margin: auto auto;
  background-color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  transform: translateY(50px);
  opacity: 0;
}

.print_lxc .good_lxc .good_box {
  max-width: 400px;
  width: 95%;
  border: 0.5px solid #201F1F;
  padding: 30px;
  box-sizing: border-box;
  margin: auto auto;
  background-color: #FFF;
  transform: translateY(50px);
  opacity: 0;
}

main .good_lxc .good_move {
  animation-name: goodup2;
  animation-delay: 0.3s;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes goodup2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
}

main .good_lxc .good_move2 {
  opacity: 1;
  transform: translateY(0px);
  animation-name: goodup3;
  animation-delay: 0.3s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes goodup3 {
  0% {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
  }
}

main .good_lxc .good_box h1 {
  margin-bottom: 30px;
  text-align: center;
}

main .good_lxc .good_box .good_close {
  margin: 0 auto;
  text-align: center;
  width: 120px;
  background-color: #595959;
  padding: 6px;
  border-radius: 3px;
  box-sizing: border-box;
  line-height: 1.7;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .good_lxc .good_box .good_close:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

main .good_lxc .good_box .good_close a {
  width: auto;
  padding: 3px 20px;
  box-sizing: border-box;
  background-color: #59554C;
  color: #FFF;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

.print_lxc .good_lxc .good_box .good_close {
  margin: 0 auto;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
}

.print_lxc .good_lxc .good_box .good_close a {
  width: auto;
  padding: 3px 20px;
  box-sizing: border-box;
  background-color: #59554C;
  color: #FFF;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  font-size: 13px;
}

main .good_lxc .good_box .good_close a:hover {
  background-color: tomato;
  box-shadow: 1px 1px 3px #201F1F;
}

main .shift_lxc01 {
  max-width: 500px;
  width: 100%;
  margin-top: 15px;
  border: 5px solid #00a8bd;
  box-sizing: border-box;
  color: #201F1F;
  border-radius: 15px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .shift_top10 {
  margin-top: 10px;
}

main .shift_lxc01 a {
  display: block;
  padding: 10px 15px;
  box-sizing: border-box;
  cursor: pointer;
}

main .shift_lxc01 a .box_1 {
  display: flex;
}

main .shift_lxc01 a span {
  display: block;
  font-size: 25px;
  line-height: 29px;
}

main .shift_lxc01 a .shift_1 {
  display: block;
  font-size: 16px;
  line-height: 29px;
  padding-left: 5px;
  box-sizing: border-box;
}

@media (max-width: 550px) {
  main .shift_lxc01 a span {
    display: block;
    font-size: 22px;
    line-height: 29px;
  }

  main .shift_lxc01 a .shift_1 {
    display: block;
    font-size: 13px;
    line-height: 29px;
    padding-left: 5px;
    box-sizing: border-box;
  }
}

main .shift_lxc01 a .shift_2 {
  flex: 1;
  text-align: right;
}

main .shift_lxc01:hover {
  background-color: #00a8bd;
  color: #FFF;
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .shift_lxc02 {
  position: fixed;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: auto;
  transition-property: all;
  transition-duration: 0.3s;
}

main .shift_hyde {
  opacity: 0;
  pointer-events: none;
}

main .delay {
  opacity: 0;
  animation-name: dakoku;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  transition-property: all;
  transition-duration: 0.3s;
}

@keyframes dakoku {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

main .shift_lxc02 .cont_01 {
  max-width: 1000px;
  width: 95%;
  margin: 30px auto 30px;
  background-color: #FFF;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  main .shift_lxc02 .cont_01 {
    max-width: 1000px;
    width: 98%;
    margin: 15px auto 15px;
    background-color: #FFF;
    border: 0.5px solid #201F1F;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
  }
}

main .shift_lxc02 .cont_01 .title {
  display: flex;
}

main .shift_lxc02 .cont_01 .title span {
  display: block;
  line-height: 24px;
  color: #00a8bd;
}

main .shift_lxc02 .cont_01 .title .shift_1 {
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding-left: 3px;
  font-weight: 500;
  color: #00a8bd;
}

main .shift_lxc02 .cont_01 .title .shift_2 {
  display: block;
  line-height: 24px;
  flex: 1;
  text-align: right;
  color: #201F1F;
  cursor: pointer;
}

main .shift_lxc02 .cont_01 .contens {
  margin-top: 10px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #F0F2F2;
  line-height: 1.5;
}

main .shift_lxc02 .cont_01 .contens form .emp {
  width: auto;
  border: 0.5px solid #201F1F;
  padding: 4px 35px 4px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
  background: #F0F2F2 url(../img/arrow_drop_down_black_24dp.svg) no-repeat right 7px center / 25px auto;
}

main .shift_lxc02 .cont_01 .contens form .sub_mit {
  width: auto;
  background-color: #00a8bd;
  padding: 4px 12px;
  border-radius: 3px;
  margin-left: 5px;
  color: #FFF;
  transition-property: all;
  transition-duration: 0.3s;
}

main .shift_lxc02 .cont_01 .contens form .sub_mit:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .shift_lxc02 .cont_01 .contens .year_skip {
  display: flex;
  line-height: 1.5;
}

main .shift_lxc02 .cont_01 .contens .year_skip a {
  display: block;
  color: #FFF;
  text-decoration: none;
  background-color: #00a8bd;
  padding: 3px 12px;
  border-radius: 3px;
  margin-right: 5px;
  transition-property: all;
  transition-duration: 0.3s;
}

main .shift_lxc02 .cont_01 .contens .year_skip a:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .shift_lxc02 .cont_01 .shift_main {
  margin-top: 10px;
}

main .shift_lxc02 .cont_01 .shift_info {
  margin-top: 10px;
  padding: 5px 15px;
  box-sizing: border-box;
  line-height: 1.5;
}

main .shift_lxc02 .cont_01 .shift_main table {
  width: 100%;
  border-collapse: collapse;
  border: 0.5px solid #201F1F;
  font-size: 12px;
  line-height: 1.7;
}

main .shift_lxc02 .cont_01 .shift_main table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

main .shift_lxc02 .cont_01 .shift_main table thead tr th {
  border: 0.5px solid #201F1F;
  box-sizing: border-box;
  padding: 2px 0 2px;
  text-align: center;
  vertical-align: middle;
  background-color: #CFE9EB;
}


main .shift_lxc02 .cont_01 .shift_main table thead tr .wid_90 {
  width: 90px;
}

@media (max-width: 550px) {
  main .shift_lxc02 .cont_01 .shift_main table thead tr .wid_90 {
    width: 70px;
  }
}

main .shift_lxc02 .cont_01 .shift_main table thead tr .wid_80 {
  width: 80px;
}

main .shift_lxc02 .cont_01 .shift_main table thead tr .wid_200 {
  min-width: 150px;
}

main .shift_lxc02 .cont_01 .shift_main table thead tr .wid_250 {
  width: auto;
}

main .shift_lxc02 .cont_01 .shift_main table tbody .today {
  background-color: rgba(255, 255, 128, .5)
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr:hover {
  background-color: #F0F2F2;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td {
  border: 0.5px solid #201F1F;
  box-sizing: border-box;
  padding: 6px 3px;
  text-align: center;
  vertical-align: middle;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .yotei {
  padding: 6px 12px;
  text-align: left;
  vertical-align: top;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .yotei .can_cel {
  color: red;
  margin-left: 2px;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .biko {
  padding: 6px 12px;
  text-align: left;
  vertical-align: top;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .red {
  color: red;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .blue {
  color: blue;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td a {
  color: #201F1F;
  transition-property: all;
  transition-duration: 0.3s;
  text-decoration: underline;
  cursor: pointer;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td a:hover {
  color: red;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .s_link {
  padding: 3px 12px;
  box-sizing: border-box;
  text-align: center;
  background-color: #00a8bd;
  color: #FFF;
  border-radius: 10px;
  transition-duration: 0.3s;
  text-decoration: none;
  cursor: pointer;
  margin: 2px 0;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .s_link:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 3px #201F1F;
  color: #FFF;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td strong {
  font-weight: 600;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .es_id {
  display: none;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .dd_id {
  display: none;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .renraku_jiko {
  text-decoration: underline;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr td .renraku_jiko:hover {
  color: red;
}

main .shift_lxc02 .cont_01 .shift_main table tbody tr .mov_set {
  display: none;
}

@media (max-width: 500px) {
  main .shift_lxc02 .cont_01 .shift_main table thead tr .mov_th {
    display: none;
  }

  main .shift_lxc02 .cont_01 .shift_main table tbody tr .mov_td {
    display: none;
  }

  main .shift_lxc02 .cont_01 .shift_main table tbody tr .mov_set {
    display: block;
    text-align: right;
  }

  main .shift_lxc02 .cont_01 .shift_main table tbody tr .s_up {
    margin-top: 15px;
  }

  main .shift_lxc02 .cont_01 .shift_main table tbody tr .mov_set .s_link {
    padding: 3px 12px;
    box-sizing: border-box;
    text-align: center;
    background-color: #00a8bd;
    color: #FFF;
    border-radius: 10px;
    transition-duration: 0.3s;
    text-decoration: none;
    cursor: pointer;
    margin: 2px 0;
  }

  main .shift_lxc02 .cont_01 .shift_main table tbody tr .mov_set .s_link:hover {
    opacity: 0.8;
    box-shadow: 1px 1px 3px #201F1F;
    color: #FFF;
  }
}

main .renraku_view {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(000, 000, 000, 0.8);
  z-index: 20;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
  overflow: auto;
}

main .r_on {
  opacity: 1;
  pointer-events: all;
}

main .renraku_view .box_1 {
  max-width: 500px;
  width: 95%;
  margin: auto auto;
  padding: 15px;
  box-sizing: border-box;
  line-height: 1.5;
  border: 1px solid #201F1F;
  background-color: #FFF;
  position: relative;
  transform: translateY(50px);
  transition-property: all;
  transition-duration: 0.3s;
}

main .renraku_view .box_2 {
  transform: translateY(0px);
}

main .renraku_view .box_1 h1 {
  margin-bottom: 10px;
}

main .renraku_view .box_1 .renraku_close {
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
}

main .renraku_view .box_1 .renraku_close span {
  font-size: 40px;
  color: #FFF;
}

main .s_record form .default {
  width: 200px;
  pointer-events: none;
  background-color: #DEEFE7;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

main .s_record form .r_label {
  width: fit-content;
  display: block;
  padding: 5px 0;
  box-sizing: border-box;
  margin-bottom: 3px;
}

main .s_record form .r_label .radio {
  max-width: 30px;
  width: auto;
  padding: 0;
}

main .s_record form .r_label .r_text {
  margin-left: 5px;
}

main .s_record form .r_tarea {
  max-width: 600px;
  width: 100%;
  height: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  padding: 10px;
  box-sizing: border-box;
  font-size: 13px;
  border-radius: 3px;
  background-color: #F0F2F2;
  margin-top: 10px;
  margin-bottom: 15px;
}

main .s_record form .r_tarea:focus {
  background-color: #FFF;
  border: 0.5px solid #201F1F;
}

main .s_record form .ass_button {
  background-color: #00a8bd;
  color: #FFF;
  padding: 3px 9px;
  width: auto;
  border-radius: 6px;
  margin-top: 15px;
  box-sizing: border-box;
  line-height: 1.5;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .s_record form .ass_button:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

@media (max-width: 750px) {
  main .s_record form .ass_button {
    display: none;
  }
}

main .ass_lxc {
  position: fixed;
  overflow: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
}

@media (max-width: 750px) {
  main .ass_lxc {
    display: none;
  }
}

main .ass_lxc .ass_box {
  position: relative;
  max-width: 1500px;
  width: 95%;
  margin: 20px auto;
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  background-color: #FFF;
  padding: 15px;
  box-sizing: border-box;
}

main .ass_lxc .ass_box h1 {
  box-sizing: border-box;
  display: flex;
  color: #00a8bd;
}

main .ass_lxc .ass_box span {
  display: block;
  font-size: 16px;
}

main .ass_lxc .ass_box .ass_span {
  transform: translateY(1px);
}

main .ass_lxc .ass_box .close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

main .ass_lxc .ass_box .close span {
  font-size: 30px;
}

main .s_record .hyde {
  opacity: 1;
  pointer-events: all;
}

main .ass_lxc .ass_box .client {
  margin-top: 15px;
  line-height: 1.5;
}

main .ass_lxc .ass_box .client span {
  display: inline-block;
  font-size: 13px;
}

main .ass_lxc .ass_box .emp {
  margin-top: 5px;
  line-height: 1.5;
}

main .ass_lxc .ass_box .sheet {
  margin-top: 15px;
}

main .ass_lxc .ass_box .sheet form table {
  font-size: 12px;
  line-height: 1.5;
  border-collapse: collapse;
  width: 100%;
}

main .ass_lxc .ass_box .sheet form .table_up {
  margin-top: 10px;
}

main .ass_lxc .ass_box .sheet form table caption {
  padding: 3px 0 0;
  box-sizing: border-box;
}

main .ass_lxc .ass_box .sheet form table caption .cap_ass {
  text-align: left;
  font-weight: 600;
  padding: 3px 10px;
  box-sizing: border-box;
  color: #201F1F;
  margin-bottom: 5px;
  border-left: 6px solid #00a8bd;
}

main .ass_lxc .ass_box .sheet form table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 11;
}

main .ass_lxc .ass_box .sheet form table thead tr th {
  background-color: #CFE9EB;
  border: 0.5px solid #201F1F;
  padding: 2px 0;
  font-size: 11px;
  vertical-align: middle;
}

main .ass_lxc .ass_box .sheet form table thead tr .ass_w60 {
  width: 30px;
  min-width: 30px;
}

main .ass_lxc .ass_box .sheet form table thead tr .ass_w100 {
  width: 105px;
  min-width: 105px;
}

main .ass_lxc .ass_box .sheet form table tbody tr td {
  text-align: center;
  vertical-align: middle;
  border: 0.5px solid #201F1F;
  padding: 3px 0;
  box-sizing: border-box;
}

main .ass_lxc .ass_box .sheet form table tbody tr .kakunin {
  text-align: left;
  vertical-align: text-top;
  padding: 3px 6px;
  box-sizing: border-box;
}

main .ass_lxc .ass_box .sheet form table tbody tr td .radio {
  transform: translateY(1px);
}

main .ass_lxc .ass_box .sheet form table tbody tr .ass_sp {
  padding: 0;
  background-color: #F0F2F2;
}

main .ass_lxc .ass_box .sheet form table tbody tr .ass_sp .ass_text {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  resize: vertical;
}

main .ass_lxc .ass_box .sheet form table tbody tr .ass_sp .ass_text::placeholder {
  opacity: 0.5;
}

main .ass_lxc .ass_box .sheet form .ass_save {
  margin-top: 30px;
  margin: 30px auto 20px;
  border-radius: 13px;
  background-color: #00a8bd;
  color: #FFF;
  display: block;
  transition-property: all;
  transition-duration: 0.3s;
  padding: 6px 12px;
  box-sizing: border-box;
  cursor: pointer;
}

main .ass_lxc .ass_box .sheet form .ass_save:hover {
  box-shadow: 1px 1px 3px #201F1F;
  opacity: 0.8;
}

main .ass_lxc .ass_box .sheet form .ass_memo {
  margin-top: 15px;
  color: #201F1F;
}

main .ass_lxc .ass_box .sheet form .ass_memoran {
  border: 0.5px solid #201F1F;
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  resize: vertical;
  font-size: 12px;
  line-height: 1.5;
  height: 150px;
}

footer h1 {
  font-size: 11px;
  line-height: 1.5;
}

footer h2 {
  font-size: 11px;
  line-height: 1.5;
}

main .war_lxc {
  background-color: rgba(255, 99, 71, 0.8);
}

main .lxc02 .war1 {
  font-size: 20px;
  vertical-align: middle;
  display: inline-block;
}

main .lxc02 .war2 {
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
}

main .lxc02 .jyukyu_info {
  font-size: 10px;
  margin-top: 5px;
  line-height: 1.5;
  text-align: right;
}

main .lxc02 .hokoku {
  font-size: 11px;
  line-height: 1.5;
}

main .chat_lxc {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 55px 0px;
  box-sizing: border-box;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  transition-property: all;
  transition-duration: 0.3s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  z-index: 30;
  overflow: auto;
}

main .chat_lxc2 {
  pointer-events: all;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

main .chat_lxc .mem_list {
  position: relative;
  max-width: 400px;
  width: 90%;
  margin: auto auto;
  background-color: #FFF;
  border-radius: 6px;
  padding: 15px;
  box-sizing: border-box;
}

main .chat_lxc .mem_list .name_box {
  width: 100%;
  margin: 10px auto 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 6px;
  display: flex;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}

main .chat_lxc .mem_list .name_box:first-child {
  margin-top: 0;
}

main .chat_lxc .mem_list .name_box:hover {
  background-color: #CFE9EB;
}

main .chat_lxc .mem_list .name_box .name_1 {
  width: 50px;
  height: 50px;
}

main .chat_lxc .mem_list .name_box .name_2 {
  display: flex;
  flex-direction: column;
}

main .chat_lxc .mem_list .name_box .name_2 .name_p {
  margin: auto 0 auto 20px;
}

main .chat_lxc .mem_list .name_box .name_1 .name_img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
} 

main .chat_lxc .mem_list .name_box:last-child {
  margin-bottom: 0;
}

main .chat_lxc .mem_list .chat_close {
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
}

main .chat_lxc .mem_list .chat_close .c_font {
  font-size: 50px;
  color: #FFF;
}

main .chat_emp {
  display: flex;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}

main .chat_emp:hover {
  background-color: #c8f4e9;
}

main .chat_emp .chat_emp01 {
  width: 50px;
  height: 50px;
}

main .chat_emp .chat_emp01 .chat_emp_img {
  width: 50px;
  height: 50px;
  border: 0.5px solid #201F1F;
  border-radius: 50%;
  object-fit: cover;
}

main .chat_emp .chat_emp01 .chat_emp_img2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

main .chat_emp .chat_emp02 {
  display: flex;
  flex-direction: column;
}

main .chat_emp .chat_emp02 .chat_emp_name {
  margin: auto 0 auto 15px;
}

main .chat_emp .chat_emp03 {
  display: flex;
  flex-direction: column;
}

main .chat_emp .chat_emp03 .chat_midoku {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 30px;
  margin: auto 0 auto 15px;
  border-radius: 50%;
  background-color: red;
}

main .chat_emp .chat_emp03 .chat_midoku .kensu {
  color: #FFF;
  margin: auto auto;
  font-size: 12px;
}