@charset "utf-8";

/* CSS Document */

@import 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900';
/*
font-family: 'Roboto', sans-serif;
*/




/********************************************************************************************
ベース
********************************************************************************************/
html,
body {
  line-height: 1.5;
  font-size: 13px;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  -webkit-tap-highlight-color:transparent;
}

body{
  background-color: #fafafa;
}

a {
  color: #337ab7 ;
  text-decoration: underline;
  cursor: pointer;
}

a:visited{
}
a:hover,
a:active {
  color: ;
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}


/* = Selected Text
----------------------------------------------- */
::selection {
  background: rgba(0, 144, 202, 0.5); /* Safari */
}

::-moz-selection {
  background: rgba(0, 144, 202, 0.5); /* Firefox */
}


/********************************************************************************************
レイアウト
********************************************************************************************/

/**********************************************
common
***********************************************/

.relative {  position: relative !important; }

.right,.alignright {  float: right !important; }
.left,.alignleft  {  float: left !important; }
.aligncenter  { display: block; margin-left:auto; margin-right:auto; }

.textAlign-center {  text-align: center !important; }
.textAlign-right  {  text-align: right !important; }
.textAlign-left   {  text-align: left !important; }

.l-bottom-xxsmall {  margin-bottom: 5px  !important; }
.l-bottom-xsmall  {  margin-bottom: 10px !important; }
.l-bottom-small   {  margin-bottom: 15px !important; }
.l-bottom         {  margin-bottom: 20px !important; }
.l-bottom-large   {  margin-bottom: 30px !important; }
.l-bottom-xlarge  {  margin-bottom: 50px !important; }
.l-bottom-xxlarge {  margin-bottom: 80px !important; }

.l-top-xxsmall {  margin-top: 5px  !important; }
.l-top-xsmall  {  margin-top: 10px !important; }
.l-top-small   {  margin-top: 15px !important; }
.l-top         {  margin-top: 20px !important; }
.l-top-large   {  margin-top: 30px !important; }
.l-top-xlarge  {  margin-top: 50px !important; }
.l-top-xxlarge {  margin-top: 80px !important; }

.l-bottom-xxsmall-p {  padding-bottom: 5px  !important; }
.l-bottom-xsmall-p  {  padding-bottom: 10px !important; }
.l-bottom-small-p   {  padding-bottom: 15px !important; }
.l-bottom-p         {  padding-bottom: 20px !important; }
.l-bottom-large-p   {  padding-bottom: 30px !important; }
.l-bottom-xlarge-p  {  padding-bottom: 50px !important; }
.l-bottom-xxlarge-pta {  padding-bottom: 80px !important; }

.l-top-xxsmall-p {  padding-top: 5px  !important; }
.l-top-xsmall-p  {  padding-top: 10px !important; }
.l-top-small-p   {  padding-top: 15px !important; }
.l-top-p         {  padding-top: 20px !important; }
.l-top-large-p   {  padding-top: 30px !important; }
.l-top-xlarge-p  {  padding-top: 50px !important; }
.l-top-xxlarge-p {  padding-top: 80px !important; }


@media screen and (max-width:834px) {

  .l-bottom-xxsmall {  margin-bottom: 5px  !important; }
  .l-bottom-xsmall  {  margin-bottom: 7px !important; }
  .l-bottom-small   {  margin-bottom: 10px !important; }
  .l-bottom         {  margin-bottom: 15px !important; }
  .l-bottom-large   {  margin-bottom: 20px !important; }
  .l-bottom-xlarge  {  margin-bottom: 30px !important; }
  .l-bottom-xxlarge {  margin-bottom: 40px !important; }

  .l-top-xxsmall {  margin-top: 5px  !important; }
  .l-top-xsmall  {  margin-top: 7px !important; }
  .l-top-small   {  margin-top: 10px !important; }
  .l-top         {  margin-top: 15px !important; }
  .l-top-large   {  margin-top: 20px !important; }
  .l-top-xlarge  {  margin-top: 30px !important; }
  .l-top-xxlarge {  margin-top: 40px !important; }

  .l-bottom-xxsmall-p {  padding-bottom: 5px  !important; }
  .l-bottom-xsmall-p  {  padding-bottom: 7px !important; }
  .l-bottom-small-p   {  padding-bottom: 10px !important; }
  .l-bottom-p         {  padding-bottom: 15px !important; }
  .l-bottom-large-p   {  padding-bottom: 20px !important; }
  .l-bottom-xlarge-p  {  padding-bottom: 30px !important; }
  .l-bottom-xxlarge-p {  padding-bottom: 40px !important; }

  .l-top-xxsmall-p {  padding-top: 5px  !important; }
  .l-top-xsmall-p  {  padding-top: 7px !important; }
  .l-top-small-p   {  padding-top: 10px !important; }
  .l-top-p         {  padding-top: 15px !important; }
  .l-top-large-p   {  padding-top: 20px !important; }
  .l-top-xlarge-p  {  padding-top: 30px !important; }
  .l-top-xxlarge-p {  padding-top: 40px !important; }

}

/**********************************************
column
***********************************************/

.l-column{
  display: flex;
}
.l-column-half {
  justify-content: space-between;
}
.l-column-block {
  width: 48%;
}

.l-firstColumn{
  width: 68%;
  float: left;
}

.l-secondColumn{
  width: 25%;
  float: right;
}

@media screen and (max-width:1024px) {

  .l-column{
    display: block;
  }
  .l-column-half {
  }
  .l-column-block {
    width: auto;
  }

}

@media screen and (max-width:834px) {

  .l-firstColumn{
    width: auto;
    float: none;
  }

  .l-secondColumn{
    width: auto;
    float: none;
  }

}

/**********************************************
base
***********************************************/

.l-base {
  width: auto;
  max-width: 1024px;
  padding: 0 20px;
}

.l-base-wide {
  width: auto;
  padding: 0 20px;
}

.l-base-small {
  width: auto;
  max-width: 824px;
  padding: 0 20px;
}

.l-block {
  padding-top: 80px;
  padding-bottom: 80px;
}

.l-block-top {
  padding-top: 80px;
}

.l-block-bottom {
  padding-bottom: 80px;
}

.l-block-bottom-small {
  padding-bottom: 50px;
}

@media screen and (max-width:834px) {

  .l-base {
    box-sizing: border-box;
    padding: 0 8px;
  }

  .l-base-wide {
    box-sizing: border-box;
    padding: 0 10px;
  }

  .l-base-small {
    box-sizing: border-box;
  }

  .l-base:not(.l-base-noOffset),
  .l-base-wide:not(.l-base-noOffset),
  .l-base-small:not(.l-base-noOffset){
  }

  .l-base-wide .l-base,
  .l-base-wide .l-base-small,
  .l-base .l-base-small {
  }

  .l-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .l-block-top {
    padding-top: 40px;
  }

  .l-block-bottom {
    padding-bottom: 40px;
  }

  .l-block-bottom-small {
    padding-bottom: 30px;
  }

}

/********************************************************************************************
モジュール
********************************************************************************************/


/**********************************************
common
***********************************************/


/**********************************************
module-text
***********************************************/

.textMain{
  font-size: 124%;
  line-height: 2;
}

.text-success{
  color: #5cb85c;
}
.text-danger{
  color: #d9534f;
}


.list-dot {}

.list-dot li {
  font-size: 124%;
  line-height: 2;
  margin-left: 1em;
}

.list-dot li::before {
  content: "・";
  margin-left: -1em;
}

.list-asterisk {}

.list-asterisk li {
  font-size: 124%;
  line-height: 2;
  margin-left: 1em;
}

.list-asterisk li::before {
  content: "※";
  margin-left: -1em;
}

.list-number {
  padding-left: 2em;
}

.list-number li {
  font-size: 124%;
  line-height: 2;
  list-style: decimal;
}

@media screen and (max-width:834px) {

  .textMain{
    font-size: 124%;
    line-height: 1.7;
  }

  .list-dot {}

  .list-dot li {
    font-size: 124%;
    line-height: 1.7;
    margin-left: 1em;
  }

  .list-dot li::before {
    content: "・";
    margin-left: -1em;
  }

  .list-asterisk {}

  .list-asterisk li {
    font-size: 124%;
    line-height: 1.7;
    margin-left: 1em;
  }

  .list-asterisk li::before {
    content: "※";
    margin-left: -1em;
  }

  .list-number {
    padding-left: 2em;
  }

  .list-number li {
    font-size: 124%;
    line-height: 1.7;
    list-style: decimal;
  }

}

/**********************************************
module-btn
***********************************************/

.btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  padding: 8px 20px;
  background-color: #32373c;
  color: #fff;
  box-shadow: none;
  border: none;
  text-decoration: none !important;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 116%;
  font-feature-settings: "palt";
  font-weight: 400;
  border-radius: 5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
}
.btn i{
  opacity: 0.7;
  margin-right: 0.2em;
  margin-left: 0.2em;
  transform: scale(1.2);
}

.btn-large{
  font-size: 124%;
  padding: 15px 30px;
}
.btn-small{
  min-width: 5em;
  font-size: 100%;
  padding: 6px 15px;
}
.btn-block{
  width: 100%;
  display: block;
}

.btn.btn-default{
  box-shadow: 0 0 0 1px #ddd inset;
  background-color: #f0f0f0;
  color: #000;
}
.btn.btn-default:hover{
  background-color: #e0e0e0;
  filter: none;
}
.btn.btn-primary{
  background-color: #337ab7;
}
.btn.btn-success{
  background-color: #5cb85c;
}
.btn.btn-info{
  background-color: #5bc0de;
}
.btn.btn-warning{
  background-color: #eb6605;
}
.btn.btn-danger{
  background-color: #d9534f;
}

.btn:hover{
  opacity: .9;
}
@media screen and (max-width:834px) {

  .btn {
    font-size: 108%;
    min-width: 60px;
  }

  .btn-large{
    font-size: 124%;
  }
  .btn-small{
    font-size: 93%;
  }
  .btn-block{
    display: block;
  }

}


/**********************************************
module-btnList
***********************************************/

.btnWrap{
  text-align: center;
}

.btnList{
  display: flex;
}
.btnList li{
  padding: 0 5px;
}

.btnList-center{
  justify-content: center;
}

/**********************************************
module-alert
***********************************************/

.alert{
  padding: 15px 30px;
  margin-bottom: 15px;
  background-color: #f6f6f6;
  position: relative;
  line-height: 1.8;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


.alert-success{
  background-color: #dff0d8;
}
.alert-info{
  background-color: #d9edf7;
}
.alert-warning{
  background-color: #fcf8e3;
}
.alert-danger{
  background-color: #fee9e9;5
  color: #a00;
}


.alert-close{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  right: 20px;
  top: 10px;
  border: none;
  box-shadow: none;
  background: none;
  font-size: 16px;
  padding: 5px 5px;
  cursor: pointer;
}

@media screen and (max-width:834px) {

  .alert{
    padding: 15px 15px;
    line-height: 1.7;
  }

}

/**********************************************
module-header
***********************************************/

.header {
  width: 100%;
  height: 40px;
  background: #181b1d;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  font-feature-settings: "palt";
}

.header-inner {
  position: relative;
  height: 100%;
}

.header-logo {
  color: #fff;
  padding: 0 0 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 100px;
  vertical-align: middle;
}
.header-logo span {
  display: inline-block;
  font-size: 93%;
  padding-left: 10px;
}

.header-block {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-user {
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-right: 0.8em;
  padding-left: 1.8em;
  margin-right: 0.5em;
  position: relative;
  font-feature-settings: "palt";
}
.header-user::before {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f2bd";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-45%) scale(1.5);
  opacity: 0.5;
}
.header-user-text span{
  display: inline-block;
}

.header-link {
  display: flex;
  padding: 0 20px 0 0;
}
.header-link li {
  padding: 0 8px;
}
.header-link a {
  display: inline-block;
  color: #fff;
  font-size: 93%;
  font-weight: 600;
  text-decoration: none;
}
.header-link a i{
  margin-right: 0.2em;
}
.header-link a:hover {
  color: #5bc0de;
}

@media screen and (max-width:1224px) {

  .header-link a span{
    display: none;
  }

}

@media screen and (max-width:834px) {

  .header {
  }
  .header-link{
    display: none;
  }
  .header-logo {
  }
  .header-logo img {
    width: 80px;
  }
  .header-logo span {
    font-size: 10px;
  }



  .header-block {
    display: none;
  }

}



/**********************************************
module-contents wrapper
***********************************************/

.wrapper{
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
}

.contents{
  padding: 40px 20px 100px 200px;
}

@media screen and (max-width:834px) {

  .contents{
    padding: 40px 0 50px 0;
  }

}

/**********************************************
module-navi
***********************************************/

.navi{
  position: absolute;
  left: 0;
  top: 0;
  width: 180px;
  height: 100%;
  min-height: 100vh;
  padding-top: 40px;
  background-color: #23282d;
  z-index: 999;
}
.navi::after{
  content: "";
  display: block;
  width: 100%;
  height: 1200px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #23282d;
}

.navi-list {
  padding-top: 15px;
  padding-bottom: 150px;
}
.navi-list > li {
  position: relative;
}
.navi-list > li > a {
  display: block;
  color: #fff;
  font-size: 108%;
  text-decoration: none;
  padding: 10px 10px 10px 15px;
}
.navi-list > li:hover {
  background-color: #181b1d;
}
.navi-list > li:hover > a {
  color: #5bc0de;
}
.navi-list > li > a.is-active {
  background-color: #337ab7;
  color: #fff;
}

.navi-list ul {
  width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #32373c;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s linear 0.1s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.navi-list ul::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #32373c transparent transparent;
  position: absolute;
  top: 12px;
  right: 100%;
  z-index: 999;
}
.navi-list li:hover ul {
  opacity: 1;
  visibility: visible;
  padding: 10px 0;
}
.navi-list ul li {
}
.navi-list ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px 5px 15px;
}
.navi-list ul li a:hover {
  color: #5bc0de;
}

@media screen and (max-width:834px) {

  .navi{
    display: none;
  }

  .navi-list {
    padding-top: 15px;
    padding-bottom: 150px;
  }
  .navi-list > li {
    position: relative;
  }
  .navi-list > li > a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 10px 10px 15px;
  }
  .navi-list > li:hover {
    background-color: #181b1d;
  }
  .navi-list > li:hover > a {
    color: #5bc0de;
  }
  .navi-list > li > a.is-active {
    background-color: #337ab7;
    color: #fff;
  }

  .navi-list ul {
    width: 180px;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #32373c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0s linear 0.1s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .navi-list ul::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 8px 0;
    border-color: transparent #32373c transparent transparent;
    position: absolute;
    top: 12px;
    right: 100%;
    z-index: 999;
  }
  .navi-list li:hover ul {
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }
  .navi-list ul li {
  }
  .navi-list ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px 5px 15px;
  }
  .navi-list ul li a:hover {
    color: #5bc0de;
  }

}



/**********************************************
module-mobile
***********************************************/

@media screen and (max-width:834px) {

  .mobile{
    position: fixed;
    width: 300px;
    height: 100vh;
    z-index: 9998;
    right: -30px;
    top: 0;
    opacity: 0;
    transition:all 0.3s ease;
    background-color: #000;
    -webkit-overflow-scrolling: touch;
  }

  .is-mobile-open .mobile{
    opacity: 1;
    right: 0;
  }

  .mobile-close{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition:all 0.2s ease;
    z-index: -1;
  }
  .is-mobile-open .mobile-close{
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 9990;
  }

  .mobile-trigger {
    position: fixed;
    right: 0;
    top: 2px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    background-color: transparent;
  }
  .mobile-btn {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    padding: 10px 20px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all .4s;
  }
  .mobile-btn span {
    display: inline-block;
    position: absolute;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
  }
  .mobile-btn span:nth-of-type(1) {
    top: 10px;
  }
  .mobile-btn span:nth-of-type(2) {
    top: 18px;
  }
  .mobile-btn span:nth-of-type(3) {
    top: 26px;
  }

  .is-mobile-open .mobile-btn span {
    background-color: #fff;
  }

  .mobile-btn.is-active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .mobile-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .mobile-btn.is-active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

}


/**********************************************
module-mobile-navi
***********************************************/

.mobile-user {
  color: #fff;
  padding: 15px 0 15px 1.8em;
  margin-left: 20px;
  position: relative;
  font-feature-settings: "palt";
}
.mobile-user::before {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f2bd";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-45%) scale(1.5);
  opacity: 0.5;
}
.mobile-user-text span{
  display: inline-block;
}


.mobile-navi {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-navi > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.mobile-navi > li > a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-navi > li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 48px;
  position: absolute;
  z-index: 9;
}
.mobile-navi > li button::before,
.mobile-navi > li button::after{
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  left: 25px;
  top: 50%;
}
.mobile-navi > li button::after{
  transform: rotate(90deg);
}

.mobile-navi ul{
  display: none;
  padding-bottom: 10px;
}
.mobile-navi ul a{
  display: block;
  padding: 5px 20px 5px 3em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  position: relative;
}
.mobile-navi ul a::before{
  content: "-";
  position: absolute;
  left: 22px;
  top: 3px;
  opacity: 0.5;
}


.mobile-link {
  padding-top: 15px;
  text-align: right;
}
.mobile-link li {
}
.mobile-link li a{
  display: inline-block;
  padding: 5px 20px 5px 20px;
  color: #fff;
  text-decoration: none;
}
.mobile-link li i{
  margin-right: 0.2em;
  opacity: 0.7;
}

/**********************************************
module-footer
***********************************************/

.footer{
  max-width: 834px;
  padding: 20px 12px 20px 12px;
  text-align: center;
  margin: 0 auto;
  font-size: 93%;
}

.footer-navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.footer-navi li {
}
.footer-navi li:not(:last-child)::after {
  content: "|";
  padding: 0 1em;
  opacity: 0.5;
}
.footer-navi a {
  display: inline-block;
  padding: 2px 0;
}

.footer-text {
  font-size: 93%;
  line-height: 1.8;
}

.copyright{
  display: block;
  font-size: 93%;
  padding-top: 20px;
}


@media screen and (max-width:834px) {

  .footer{
    padding: 40px 0 20px;
    margin: 0 -10px;
  }

  .footer-navi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 0;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    background-color: #fff;
  }
  .footer-navi li {
    width: 50%;
    flex-grow: 1;
    box-shadow: 1px 1px 0 0 #ddd;
  }
  .footer-navi li:not(:last-child)::after {
    display: none;
  }
  .footer-navi a {
    display: block;
    padding: 10px 0;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 85%;
  }

  .footer-text {
    font-size: 93%;
    padding: 0 15px;
  }

  .copyright{
    display: block;
    font-size: 77%;
    padding-top: 20px;
  }

}

/**********************************************
module-pageHeading
***********************************************/

.pageHeading{
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  margin-left: -20px;
}

.pageHeading-title {
  font-size: 185%;
  padding: 15px 20px;
}


@media screen and (max-width:834px) {

  .pageHeading{
    margin-bottom: 20px;
    margin-left: -10px;
  }

  .pageHeading-title {
    font-size: 139%;
    padding: 11px 10px;
  }


}



/**********************************************
module-breadcrumb
***********************************************/

.breadcrumb{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
}
.breadcrumb li{
  font-size: 77%;
  color: #999;
}
.breadcrumb li a{
  color: #333;
  text-decoration: none;
}
.breadcrumb li:not(:last-child)::after{
  content: ">";
  padding: 0 4px;
  color: #333 !important;
}
.breadcrumb li a:hover{
  color: #fe5b0a;
  text-decoration: underline;
}

@media screen and (max-width:768px) {

  .breadcrumb{
  }
  .breadcrumb li{
    font-size: 70%;
  }
  .breadcrumb li a{
  }
  .breadcrumb li:not(:last-child)::after{
    padding: 0 3px;
  }
  .breadcrumb li a:hover{
  }

}



/**********************************************
module-search
***********************************************/

.search{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.search-item {
  padding-right: 10px;
}

.search-submit-btn{
  letter-spacing: 0.1em;
  font-size: 108%;
  font-weight: 500;
  height: 40px;
}

.hitText {
  font-size: 108%;
  padding-bottom: 15px;
  line-height: 1.7;
}


@media screen and (max-width:834px) {

  .search{
    display: block;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .search-item {
    width: 100%;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .search-item input[type="text"],
  .search-item select{
    width: 100% ;
  }

  .search-submit{
    width: 100%;
  }
  .search-submit-btn{
    width: 100%;
    height: 40px;
    font-size: 16px;
  }

  .hitText {
    font-size: 108%;
    padding-bottom: 15px;
  }

}

/**********************************************
module-badge
***********************************************/

.badge{
  display: inline-block;
  padding: 2px 6px;
  min-width: 40px;
  font-size: 93%;
  font-weight: 600;
  background-color: #666;
  color: #fff;
  border-radius: 4px;
}
.badge.badge-default{
}
.badge.badge-primary{
  background-color: #337ab7;
}
.badge.badge-success{
  background-color: #5cb85c;
}
.badge.badge-info{
  background-color: #5bc0de;
}
.badge.badge-warning{
  background-color: #eb6605;
}
.badge.badge-danger{
  background-color: #d9534f;
}

@media screen and (max-width:834px) {

  .badge{
    padding: 2px 4px;
    font-size: 85%;
    white-space: nowrap;
  }

}

/**********************************************
module-table
***********************************************/

.table{
  border: 1px solid #ddd;
  background-color: #fff;
  font-feature-settings: "palt";
}
.table thead th{
  background-color: #32373c;
  border: 1px solid #888;
  color: #fff;
  padding: 5px 10px;
  text-align: left;
  font-size: 85%;
  font-weight: 600;
  white-space: normal;
}

.table tbody tr{
  transition:all 0.2s ease;
}
.table tbody tr:nth-child(2n){
  background: #f6f6f6;
}
.table tbody tr:hover{
  background-color: rgba(240, 173, 78, 0.1);
}
.table tbody th{
}
.table tbody td{
  border: 1px solid #ddd;
  padding: 10px 10px;
  word-break: break-all;
}

.table tbody td.table-thumb{
  width: 70px;
  padding: 5px;
}
.table tbody td.table-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.table.table-small{
  font-size: 93%;
}

.table-light.table thead th{
  background-color: #eee;
  border-color: #ddd;
  color: #000;
}




.table-material tbody td:nth-child(2) {  width: 8em; white-space: nowrap; }
.table-material tbody td:nth-child(3) { }
.table-material tbody td:nth-child(4) { width: 8%; }
.table-material tbody td:nth-child(5) { width: 8%; }
.table-material tbody td:nth-child(6) { width: 13%; }
.table-material tbody td:nth-child(7) {  }
.table-material tbody td:nth-child(8) { white-space: nowrap; }

.table-mypageMaterial tbody td:nth-child(2) {  width: 8em; white-space: nowrap; }
.table-mypageMaterial tbody td:nth-child(3) { }
.table-mypageMaterial tbody td:nth-child(4) { width: 8%; }
.table-mypageMaterial tbody td:nth-child(5) { width: 8%; }
.table-mypageMaterial tbody td:nth-child(6) { width: 10%; }
.table-mypageMaterial tbody td:nth-child(7) { white-space: nowrap;  }
.table-mypageMaterial tbody td:nth-child(8) { width: 12em; white-space: nowrap; }



.table-car thead th:nth-child(2) {  width: 8em; white-space: nowrap; }
.table-car thead th:nth-child(3) { }
.table-car thead th:nth-child(4) { width: 13%; }
.table-car thead th:nth-child(5) { width: 13%; }
.table-car thead th:nth-child(6) { width: 13%; }

.table-tool thead th:nth-child(2) {  width: 8em; white-space: nowrap; }
.table-tool thead th:nth-child(3) { }
.table-tool thead th:nth-child(4) { width: 13%; }
.table-tool thead th:nth-child(5) { width: 13%; }
.table-tool thead th:nth-child(6) { width: 13%; }
.table-tool thead th:nth-child(7) { width: 10%; }

.table-location thead th:nth-child(2) { width: 15%; }
.table-location thead th:nth-child(3) { width: 15%; }
.table-location thead th:nth-child(4) { width: 15%; }
.table-location thead th:nth-child(5) { width: 15%; }
.table-location tbody td:nth-child(2) { white-space: nowrap; }
.table-location tbody td:nth-child(3) { white-space: nowrap; }
.table-location tbody td:nth-child(4) { white-space: nowrap; }
.table-location tbody td:nth-child(5) { white-space: nowrap; }

.table-worker tbody td:nth-child(3) { white-space: nowrap; }
.table-worker tbody td:nth-child(4) {  }
.table-worker tbody td:nth-child(5) { white-space: nowrap; }
.table-worker tbody td:nth-child(6) { white-space: nowrap; }
.table-worker tbody td:nth-child(7) { white-space: nowrap; }

.table-owner tbody td:nth-child(1) { width: 60% }
.table-owner tbody td:nth-child(2) { width: 12em; white-space: nowrap; }
.table-owner tbody td:nth-child(3) { width: 12em; white-space: nowrap; }


@media screen and (max-width:834px) {

  .table{
    font-size:93%;
  }

  .table thead th{
    padding: 5px 5px;
  }

  .table tbody td{
    padding: 8px 5px;
  }

  .table tbody td.table-thumb{
    width: 50px;
    padding: 5px;
  }
  .table tbody td.table-thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }

  .table-spWidth-xxxsmall{
    min-width: 480px;
  }
  .table-spWidth-xxsmall{
    min-width: 540px;
  }
  .table-spWidth-xsmall{
    width: 640px;
  }
  .table-spWidth-small{
    width: 834px;
  }
  .table-spWidth{
    width: 1000px;
  }
  .table-spWidth-large{
    width: 1100px;
  }



  .table-btns a{
    display: block;
    margin: 4px 0;
  }

  .table-material tbody td:nth-child(2) {  width: 6.5em; white-space: nowrap; }
  .table-material tbody td:nth-child(3) { }
  .table-material tbody td:nth-child(4) { width: 10%; }
  .table-material tbody td:nth-child(5) { width: 10%; }
  .table-material tbody td:nth-child(6) { width: 13%; }
  .table-material tbody td:nth-child(7) {  }
  .table-material tbody td:nth-child(8) { white-space: nowrap; }

  .table-mypageMaterial tbody td:nth-child(2) { width: 6.5em; white-space: nowrap; }
  .table-mypageMaterial tbody td:nth-child(3) { }
  .table-mypageMaterial tbody td:nth-child(4) { width: 8%; }
  .table-mypageMaterial tbody td:nth-child(5) { width: 8%; }
  .table-mypageMaterial tbody td:nth-child(6) { width: 10%; }
  .table-mypageMaterial tbody td:nth-child(7) { white-space: nowrap;  }
  .table-mypageMaterial tbody td:nth-child(8) { width: 2em; white-space: nowrap; }

  .table-car thead th:nth-child(2) {  width: 7em; }
  .table-car thead th:nth-child(3) { }
  .table-car thead th:nth-child(4) { width: 20% }
  .table-car thead th:nth-child(5) { width: 20%; }

  .table-tool thead th:nth-child(2) {  width: 7em;  }
  .table-tool thead th:nth-child(3) { }
  .table-tool thead th:nth-child(4) { width: 13% }
  .table-tool thead th:nth-child(5) { width: 16%; }
  .table-tool thead th:nth-child(6) { width: 13%; }
  .table-tool thead th:nth-child(7) { width: 13%; }
}


/**********************************************
table-scroll
***********************************************/

@media screen and (max-width:834px) {

  .tableScroll{
    overflow: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
  }

  .tableScroll::-webkit-scrollbar {
    height: 10px;
  }
  .tableScroll::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 5px;
  }
  .tableScroll::-webkit-scrollbar-track-piece {
    background: #eee;
  }

/*

  .tableScroll::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-right: 3px solid #000;
    border-top: 3px solid #000;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5px;
    z-index: 2;
    transform:rotate(45deg);
    animation:tableArrow 1s infinite ease-in-out ;
  }
*/

  .tableScroll.is-active::after{
    display: none;
  }

  .tableScroll > table.table-sp480{
    min-width: 480px;
  }

  .tableScroll > table.table-sp640{
    min-width: 640px;
  }

}


@keyframes tableArrow {
  0%    {transform:translate(-10px, 0) rotate(45deg); }
  100%  {transform:translate(5px, 0) rotate(45deg) ;  opacity: 0; }
}



/**********************************************
module-pagination
***********************************************/

.pagination {
  padding: 30px 0;
  display: flex;
}
.pagination a,
.pagination span{
  display: inline-block;
  padding: 4px 12px;
  font-size: 116%;
  text-decoration: none;
  color: #000;
  text-decoration: none;
  margin: 0 3px 3px 0;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination span{
  background-color: #32373c;
  border-color: #32373c;
  color: #fff;
  font-weight: 600;
}
.pagination a:hover{
  background-color: #ddd;
}

/**********************************************
module-pageNavi
***********************************************/

.pageNavi{
  padding-bottom: 40px;
}

.pageNavi-list {
  display: flex;
  flex-wrap: wrap;
}
.pageNavi-list li {
  padding: 0 3px 3px 0;
}
.pageNavi-list li a {
  display: block;
  padding: 12px 20px;
  border: 1px solid #ddd;
  color: #333;
  background-color: #fff;
  text-decoration: none;
  font-size: 116%;
}
.pageNavi-list li a:hover{
  background-color: rgba(203, 127, 183, 0.15);
}
.pageNavi-list li a.is-active {
  background-color: #5f2097;
  border-color: #5f2097;
  color: #fff;
  font-weight: 600;
}


@media screen and (max-width:834px) {

  .pageNavi{
    padding-bottom: 20px;
  }

  .pageNavi-list {
    display: flex;
  }
  .pageNavi-list li {
    padding: 0 3px 3px 0;
  }
  .pageNavi-list li a {
    padding: 8px 8px;
    font-size: 93%;
  }

}

/**********************************************
module-data
***********************************************/

.data{
  margin-bottom: 30px;
}

.data-title {
  background-color: #32373c;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 116%;
  position: relative;
}
.data-subTitle {
  font-size: 116%;
  border-left: 3px solid #666;
  padding-left: 10px;
  line-height: 1.2;
  margin-bottom: 10px;
}


.data-title-remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-radius: 3px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 8px;
  background-color: #d9534f;
  color: #fff;
  cursor: pointer;
}
.data-title-remove i {
  margin-right: 0.5em;
  transform: scale(1.2);
}
.data-title-remove:hover {
  opacity: 0.9;
}

.data-inner {
  padding: 15px 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}
.data-inner.is-noOffset {
  padding: 0;
}

.data-table{
}
.data-table tr{
  border-top: 1px solid #ddd;
}
.data-table th{
  padding: 8px 10px 8px 0;
  width: 18em;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}
.data-table td{
  padding: 8px 0;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}


.data-table-thumb img {
  width: 100%;
  max-width: 180px;
}

.data-table-large{
  font-size: 108%;
}
.data-table-large th{
  width: 250px;
}

@media screen and (max-width:834px) {

  .data{
    margin-bottom: 20px;
  }

  .data-title {
    font-size: 116%;
  }
  .data-inner {
    padding: 10px 10px;
  }

  .data-table{
    font-feature-settings: "palt";
  }
  .data-table tr{
  }
  .data-table th{
    padding: 8px 5px 8px 0;
    width: 8em;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
    vertical-align: top;
  }
  .data-table td{
    line-height: 1.7;
  }

  .data-table-thumb img {
    width: 100%;
    max-width: 150px;
  }

}

/*
gallery
*/

.data-table-gallery {
  display: flex;
  flex-wrap: wrap;
}
.data-table-gallery li {
  width: 31%;
  margin-right: 2%;
  margin-bottom: 12px;
}
.data-table-gallery img {
}



/**********************************************
module-edit
***********************************************/

.edit{
  margin: 0 auto;
}
.edit-data{
  font-size: 93%;
  font-feature-settings: "pkna";
}

.edit-acquire {
  display: flex;
  align-items: center;
}
.edit-acquire-item {
}
.edit-acquire-link {
  padding-left: 0.8em;
  white-space: nowrap;
}


.edit-table{
  font-size: 108%;
  font-feature-settings: "palt";
}
.edit-table tr:not(:last-child){
  border-bottom: 1px solid #ddd;
}
.edit-table th{
  padding: 15px 80px 15px 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  width: 270px;
  position: relative;
}
.edit-table td{
  padding: 15px 0 15px 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}

.edit-submit {
  max-width: 320px;
  text-align: left;
}
.edit-submit-center {
  margin: 0 auto;
  text-align: center;
}

.edit-required{
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 11px;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background-color: #d9534f;
  color: #fff;
}
.edit-option{
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 11px;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background-color: #ddd;
  color: #000;
}
.edit-confirm{
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 11px;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background-color: #337ab7;
  color: #fff;
}

.edit-table-tips {
  background-color: #fee9e9;
  padding: 12px 20px;
  font-size: 93%;
  color: #c00;
}

.edit-table-caution{
  color: #c00;
  padding-top: 8px;
  font-size: 93%;
}

.edit-file{
  padding-bottom: 20px;
}
.edit-file:not(:first-child){
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.edit-file-inner{
  display: flex;
  align-items: center;
}
.edit-file-img{
  padding-bottom: 8px;
}
.edit-file-img img{
  width: 140px;
}

.edit-file-delete {
  padding-left: 15px;
}

.edit-editor{
  width: 100%;
}
.edit-error{
  color: #c00;
  font-size: 12px;
  font-weight: 600;
  padding-top: 5px;
}

@media screen and (max-width:834px) {

  .edit{
    max-width: 1000px;
    margin: 0 auto;
  }

  .edit-table,
  .edit-table thead,
  .edit-table tbody,
  .edit-table tfoot,
  .edit-table tr,
  .edit-table th,
  .edit-table td{
    width: auto;
    display: block;
  }
  .edit-table tr:not(:last-child){
    border-bottom:none;
  }
  .edit-table th{
    padding: 20px 0 8px 0;
    width: auto;
    font-size: 108%;
  }
  .edit-table td{
    padding: 0 0 5px;
  }

  .edit-submit {
    max-width: 834px;
  }

  .edit-required,
  .edit-option,
  .edit-confirm{
    position: static;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle
  }


  .edit-table-tips {
    padding: 8px 10px;
    font-size: 77%;
  }

  .edit-table-caution{
    padding-top: 5px;
    font-size: 77%;
  }

  .edit-file{
    padding-bottom: 20px;
  }
  .edit-file:not(:first-child){
    padding-top: 20px;
    border-top: 1px solid #ddd;
  }
  .edit-file-inner{
    display: flex;
    align-items: center;
  }
  .edit-file-img{
    width: 25%;
    max-width: 200px;
  }
  .edit-file-img img{
    width: auto;
  }

  .edit-file-delete {
    padding-left: 10px;
    font-size: 85%
  }


  .edit-editor{
    width: 100%;
    min-height: 200px;
  }
}

/*
data-catalog
*/

.data-catalog {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
}
.data-catalog li {
  width: 33.3333%;
  padding-left: 2%;
  padding-bottom: 30px;
  text-align: left;
}

.data-catalog-img {
  padding-bottom: 5px;
}

.data-catalog-type{
  width: auto;
  display: flex;
  font-size: 70%;
}
.data-catalog-subTitle {
  background-color: #666;
  border: 1px solid #666;
  color: #fff;
  padding: 1px 8px;
}
.data-catalog-cat {
  border: 1px solid #666;
  padding: 1px 8px;
}

.data-catalog-title {
  font-size: 93%;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width:834px) {

  .data-catalog {
    display: flex;
    flex-wrap: wrap;
    margin-left: -2%;
  }
  .data-catalog li {
    width: 50%;
    padding-left: 2%;
    padding-bottom: 30px;
    text-align: left;
  }

}



/*
checkboxGroup
*/
.edit-checkboxHeader {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.edit-checkboxHeader-search {
}
.edit-checkboxHeader-choice {
  padding-top: 10px;
}

.edit-checkboxGroup{
  width: auto;
  max-height: 250px;
  overflow: auto;
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 20px 20px 12px 20px;
}

@media screen and (max-width:834px) {

  .edit-checkboxHeader-search {
    width: 65%;
  }
  .edit-checkboxHeader-choice {
    padding-top: 10px;
    font-size: 85%;
  }

  .edit-checkboxGroup{
    width: auto;
    max-height: 250px;
    padding: 15px;
    font-size: 93%;
  }

}

/**********************************************
module-toolTips
***********************************************/

.toolTips {
  position: relative;
  display: inline-block;
}
.toolTips i{
  transform: scale(1.3);
}

.toolTips-comment {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-left: -80px;
  width: 160px;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  padding: 8px 5px;
  margin-bottom: 10px;
  visibility: hidden;
  opacity: 0;
}
.toolTips-comment::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #333 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -3px;
}

.toolTips:hover .toolTips-comment{
  visibility: visible;
  opacity: 1;
}
/*************************e*********************
module-flatpickr
***********************************************/

.flatpickr-group{
  position: relative;
}

.flatpickr-clear{
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  color: #666;
}

/**********************************************
module-imgList
***********************************************/

.imgList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
}
.imgList li {
  width: 18%;
  margin-left: 2%;
  margin-bottom: 30px;
  position: relative;
}
.imgList-img {
  cursor: all-scroll;
}

.imgList-title {
  padding-top: 10px;
  font-size: 85%;
  line-height: 1.3;
}
.imgList-edit {
  display: flex;
  position: absolute;
  right: 10px;
  top: 10px;
  visibility: hidden;
}

li:hover .imgList-edit {
  visibility: visible;
}

.imgList-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2.2em;
  height: 2.2em;
  line-height: 2.2;
  border: none;
  box-shadow: none;
  background-color: #337ab7;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  margin: 0 0 0 4px;
  cursor: pointer;
}
.imgList-btn-danger{
  background-color: #d9534f;
}
.imgList-btn:hover {
}


@media screen and (max-width:834px) {

  .imgList {
    margin-left: -3%;
  }
  .imgList li {
    width: 47%;
    margin-left: 3%;
    margin-bottom: 30px;
  }

  .imgList-title {
    font-size: 77%;
  }
  .imgList-edit {
    right: 5px;
    top: 5px;
    visibility: visible;
  }

  .imgList-btn {
    width: 2.2em;
    height: 2.2em;
    font-size: 12px;
    margin: 0 0 0 2px;
  }

}

/**********************************************
module-planList
***********************************************/

.planList {
}
.planList li {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.planList-img {
  width: 25%;
}
.planList-inner {
  width: 70%;
}

.planList-title {
  font-size: 154%;
  padding-bottom: 15px;
}

.planList-summary {
  opacity: 0.7;
}

.planList-link {
  padding-top: 15px;
}

@media screen and (max-width:834px) {

  .planList {
  }
  .planList li {
    display: block;
    padding: 15px;
    margin-bottom: 20px;
  }
  .planList li::after {
    content: "";
    display: table;
    clear: both;
  }

  .planList-img {
    width: 35%;
    float: right;
    padding: 0 0 10px 10px;
  }
  .planList-inner {
    width: auto;
  }

  .planList-title {
    font-size: 124%;
    padding-bottom: 15px;
  }
  .planList-summary {
    font-size: 77%;
    opacity: 0.7;
  }

  .planList-link {
    text-align: center;
  }

}


/**********************************************
module-title
***********************************************/

.title{
  font-weight: 600;
  font-size: 154%;
  padding-bottom: 10px;
}

/**********************************************
module-newsList
***********************************************/

.newsList {
  border-top: 1px solid #ddd;
}
.newsList li {
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: #000;
  text-decoration: none;
  padding: 15px 10px;
}

.newsList-time {
  display: inline-block;
  width: 7em;
}
.newsList-cat {
  display: inline-block;
  width: 12em;
  padding: 0.1em 0.5em;
  border-radius: 3px;
  text-align: center;
  background-color: #32373c;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsList-title {
  flex: 1;
  font-size: 108%;
}

/**********************************************
module-btnIcon
***********************************************/

.btnIcon{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #000;
  text-decoration: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 16px;
}
.btnIcon-primary{
  color: #337ab7;
}
.btnIcon-success{
  color: #5cb85c;
}
.btnIcon-info{
  color: #5bc0de;
}
.btnIcon-warning{
  color: #eb6605;
}
.btnIcon-danger{
  color: #d9534f;
}

/**********************************************
module-heading
***********************************************/

.heading {
  display: flex;
  padding-bottom: 2em;
}
.heading-thumb {
  width: 150px;
}
.heading-thumb img {
}
.heading-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.5em;
}
.heading-cat {
  font-feature-settings: "palt";
  padding-bottom: 0.5em;
}
.heading-title {
  font-size: 154%;
  font-weight: 600;
}

@media screen and (max-width:834px) {

  .heading {
    display: flex;
    padding-bottom: 1.5em;
  }
  .heading-thumb {
    width: 120px;
  }
  .heading-inner {
    padding-left: 1em;
  }
  .heading-cat {
    font-size: 93%;
    padding-bottom: 0.3em;
  }
  .heading-title {
    font-size: 124%;
  }

}

/**********************************************
module-diaryArchives
***********************************************/

.diaryArchives{
  background: #fff;
  border: 1px solid #aaa;
}
.diaryArchives li:not(:last-child){
  border-bottom: 1px solid #aaa;
}
.diaryArchives li{
  padding: 1em 1.5em;
  display: flex;
}

.diaryArchives-data {
  display: inline-block;
  white-space: nowrap;
  width: 10em;
  font-weight: 600;
}
.diaryArchives-data.is-san{
  color: #c00;
}
.diaryArchives-data.is-sat{
  color: #337ab7;
}

.diaryArchives-status {
  display: inline-block;
  flex: 1;
}

/**********************************************
module-diaryReportInput
***********************************************/

.diaryReportInput {
  border-top: 1px solid #ddd;
  padding-top: 1.5em;
}
.diaryReportInput-table {
}
.diaryReportInput-table tbody tr {
  border-bottom: 1px solid #ddd;

}
.diaryReportInput-table tbody tr:nth-child(odd) {
}
.diaryReportInput-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.diaryReportInput-table thead {
  background-color: #ddd;
}
.diaryReportInput-table thead th {
  text-align: left;
  font-weight: 500;
  padding: 5px 0;
}

.diaryReportInput-table tbody th {
  font-size: 124%;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
  padding: 5px 1em 5px 0;
  white-space: nowrap;
  width: 3em;
}
.diaryReportInput-table tbody td {
  padding: 10px 15px 10px 0;
  white-space: nowrap;
}

.diaryReportInput-table thead th.diaryReportInput-table-remove {
  width: 50px;
}
.diaryReportInput-table tbody td.diaryReportInput-table-remove {
  padding-right: 0;
}

.diaryReportInput-input{
  font-size: 16px;
  padding: 5px 5px;
  width: 100%;
}

.diaryReportInput-material {
  display: flex;
  align-items: center;
}
.diaryReportInput-material-inner {
  flex: 1;
}
.diaryReportInput-material-acquire {
  padding-left: 3px;
}
.diaryReportInput-acquire-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  background-color: #eee;
  border: 1px solid #aaa;
  padding: 2px 5px;
  white-space: nowrap;
  padding: 4px 5px;
  cursor: pointer;
}
.diaryReportInput-acquire-btn i {
  padding-right: 0.2em;
}

.diaryReportInput-unit {
  display: flex;
  align-items: center;
}
.diaryReportInput-unit-inner {
  flex: 1;
}
.diaryReportInput-unit-text {
  padding-left: 3px;
  white-space: nowrap;
  font-feature-settings: "palt";
}


.diaryReportInput-remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  background-color: #eee;
  border: 1px solid #aaa;
  padding: 2px 5px;
  white-space: nowrap;
  padding: 4px 5px;
  cursor: pointer;
}
.diaryReportInput-remove i {
  padding-right: 0.2em;
}


.diaryReportInput-total {
  text-align: right;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}
.diaryReportInput-total-text {
  font-size: 108%;
  font-weight: 600;
  color: #d9534f;
}


.diaryReportInput-table tbody td:nth-child(2){ width: 30%; }
.diaryReportInput-table tbody td:nth-child(3){ width: 12%;  }
.diaryReportInput-table tbody td:nth-child(4){ width: 23%; }
.diaryReportInput-table tbody td:nth-child(6){ width: ; }

@media screen and (max-width:834px) {

  .diaryReportInput {
    margin-top: 15px;
  }
  .diaryReportInput-table {
  }
  .diaryReportInput-table thead th {
    padding: 3px 0;
  }

  .diaryReportInput-table tbody th {
    font-size: 93%;
    padding: 5px 0.2em 5px 0.2em;
    width: 2em;
    text-align: left;
  }
  .diaryReportInput-table tbody td {
    padding: 5px 5px 5px 0;
  }

  .diaryReportInput-table thead th.diaryReportInput-table-remove {
    width: auto;
  }
  .diaryReportInput-table tbody td.diaryReportInput-table-remove {
    padding-right: 0;
  }

  .diaryReportInput-input{
    font-size: 16px;
    padding: 1px;
  }

  .diaryReportInput-material {
  }
  .diaryReportInput-material-inner {
  }
  .diaryReportInput-material-acquire {
    padding-left: 1px;
  }
  .diaryReportInput-acquire-btn {
    padding: 3px;
  }
  .diaryReportInput-acquire-btn i {
    padding-right: 0;
    font-size: 16px;
  }
  .diaryReportInput-acquire-btn span {
    display: none;
  }

  .diaryReportInput-unit-text {
    padding-left: 1px;
    font-size: 10px;
  }


  .diaryReportInput-remove {
    padding: 3px;
  }
  .diaryReportInput-remove i {
    padding-right: 0;
    font-size: 16px;
  }
  .diaryReportInput-remove span {
    display: none;
  }

  .diaryReportInput-table tbody td:nth-child(2){ width: 25%; }
  .diaryReportInput-table tbody td:nth-child(3){ width: 18%;  }
  .diaryReportInput-table tbody td:nth-child(4){ width: 21%; }
  .diaryReportInput-table tbody td:nth-child(6){ width: ; }

}

/**********************************************
module-materialSearch
***********************************************/

.materialSearch {
  display: flex;
}
.materialSearch-side {
  width: 200px;
  background-color: #f0f0f0;
  text-align: left;
  max-height: calc(90vh - 100px);
  overflow: auto;
  padding-bottom: 10px;
}
.materialSearch-side form {
}

.materialSearch-inner {
  flex: 1;
}

.materialSearch-search {
  display: flex;
  align-items: center;
  padding: 10px;
}
.materialSearch-search-inner {
  flex: 1;
}
.materialSearch-search-inner input {
  font-size: 14px;
  padding: 5px;
  width: 100%;
}
.materialSearch-search-link {
  padding-left: 5px;
}
.materialSearch-search-link button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;;
  background-color: #eee;
  border: 1px solid #aaa;
  padding: 2px 5px;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.materialSearch-select {
  padding: 0 10px;
}
.materialSearch-select select {
  width: 100%;
}

.materialSearch-list {
  padding-bottom: 15px;
}
.materialSearch-list li {
}
.materialSearch-list a {
  display: inline-block;
  font-size: 108%;
  padding: 2px 10px;
  color: inherit;
}


.materialSearch-control {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.materialSearch-control-inner {
  display: flex;
}
.materialSearch-control-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  background-color: #eee;
  border: 1px solid #aaa;
  padding: 2px 5px;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  white-space: nowrap;
  cursor: pointer;
  min-width: 3em;
  margin-right: 5px;
}
.materialSearch-control-text {
  font-size: 124%;
  padding-left: 1em;
}

/*
table
*/

.materialSearch-result {
  max-height: calc(85vh - 150px);
  overflow: auto;
}


.materialSearch-table {
  border-top: 1px solid #aaa;
}
.materialSearch-table thead {
  background-color: #ddd;
}
.materialSearch-table thead th {
  font-weight: 500;
  font-size: 93%;
  text-align: left;
  padding: 2px 5px 2px 2px;
}

.materialSearch-table tbody tr {
  border-bottom: 1px solid #aaa;
}
.materialSearch-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.materialSearch-table tbody td {
  font-size: 93%;
  padding: 5px 5px 5px 2px;
  text-align: left;
}

.materialSearch-result-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  background-color: #eee;
  border: 1px solid #aaa;
  padding: 2px 5px;
  margin: 0;
  font-size: 15px;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  white-space: nowrap;
  cursor: pointer;
  min-width: 3em;
  margin-left: 5px;
}
.materialSearch-result-bookmark {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 4px;
  cursor: pointer;
  color: #ccc;
}
.materialSearch-result-bookmark.is-active {
  color: #ff9c00;
}

.materialSearch-table tbody td:nth-child(1) { white-space: nowrap; padding-left: 0;  }
.materialSearch-table tbody td:nth-child(2) { width: 1em; padding: 0 5px 0 0; white-space: nowrap;  }
.materialSearch-table tbody td:nth-child(3) { white-space: nowrap; }
.materialSearch-table tbody td:nth-child(4) {  }
.materialSearch-table tbody td:nth-child(5) { width: 9%; }
.materialSearch-table tbody td:nth-child(6) { width: 9%; }
.materialSearch-table tbody td:nth-child(7) { width: 9%; }
.materialSearch-table tbody td:nth-child(8) { width: 9%; }
.materialSearch-table tbody td:nth-child(9) { width: 9%; white-space: nowrap; }
.materialSearch-table tbody td:nth-child(10) { width: 9%; white-space: nowrap; }

@media screen and (max-width:834px) {

  .materialSearch {
    display: block;
  }
  .materialSearch-side {
    width: auto;
    max-height: initial
    overflow: auto;
    padding-bottom: 10px;
  }


  .materialSearch-search-inner input {
    font-size: 16px;
    padding: 5px;
  }

  .materialSearch-select {
    padding: 0 10px;
  }
  .materialSearch-select select {
    width: 100%;
    font-size: 16px;
    padding: 5px;
    max-height: 6em;
  }


  .materialSearch-control {
    padding: 10px 0;
    display: block;
  }
  .materialSearch-control-text {
    font-size: 100%;
    padding-left: 0;
    text-align: left;
    padding-top: 8px;
  }

  /*
  table
  */

  .materialSearch-result {
    max-height: initial;
    overflow: auto;
  }

  .materialSearch-table {
    width: 640px;
    border-top: 1px solid #aaa;
  }
  .materialSearch-result-btn {
    margin-left: 0;
  }
  .materialSearch-result-bookmark {
    font-size: 20px;
  }


}


/**********************************************
module-diaryWork
***********************************************/

.diaryWork {
}
.diaryWork-headline {
  background-color: #555;
  color: #fff;
  font-weight: 500;
  padding: 0.2em 1.5em;
  letter-spacing: 0.08em;
}
.diaryWork-heading {
  font-size: 154%;
  font-weight: 500;
  padding: 0.5em 1em;
  border-bottom: 1px solid #ddd;
  position: relative;
  cursor: pointer;
}
.diaryWork-heading::before,
.diaryWork-heading::after{
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background-color: #333;
  position: absolute;
  right: 25px;
  top: 50%;
}
.diaryWork-heading::after{
  transform: rotate(90deg);
}
.diaryWork-heading.is-active::after{
  transform: rotate(0deg);
}
.diaryWork-heading:hover {
  color: #337ab7;
}

.diaryWork-section{
  transition: 0.1s;
}
.diaryWork-section:hover {
  background: #fff;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.1) ;
}

.diaryWork-block {
  display: none;
  border-bottom: 1px solid #aaa;
}


/*
table
*/

.diaryWork-table {
}
.diaryWork-table tbody tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.diaryWork-table tbody tr:nth-child(even) {
  background-color: #eee;
}
.diaryWork-table tbody tr:hover {
/*  background-color: #fff8da;*/
}
.diaryWork-table tbody th{
  font-size: 116%;
  font-weight: 400;
  text-align: left;
  padding: 0.5em 0.8em 0.5em 2em;
}
.diaryWork-table tbody td {
  padding: 5px 8px;
}

.diaryWork-table tbody td.diaryWork-table-point {
  width: 3em;
  text-align: right;
  white-space: nowrap;
  padding-right: 0;
}
.diaryWork-table tbody td.diaryWork-table-input {
  text-align: right;
  width: 4em;
  font-size: 16px;
}
.diaryWork-table tbody td.diaryWork-table-input.is-confirm {
  width: 2em;
  font-size: 16px;
}
.diaryWork-table tbody td.diaryWork-table-total {
  width: 4em;
  padding-right: 1em;
  white-space: nowrap;
  font-weight: 600;
  font-size: 124%;
  line-height: 1.3;
}


.diaryWork-table-box{
}

.diaryWork-add {
  text-align: right;
  padding: 10px 20px;
}


.diaryWork-inputNum{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 4px 10px;
  min-height: 30px;
  width: 4em;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 16px;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
}
.diaryWork-inputWork{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 4px 10px;
  min-height: 30px;
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 16px;
  font-family: Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,"Yu Gothic",Meiryo,sans-serif;
}

@media screen and (max-width:834px) {

  .diaryWork {
  }
  .diaryWork-headline {
    padding: 0.2em 1em;
    font-size: 93%;
  }
  .diaryWork-heading {
    font-size: 124%;
  }
  .diaryWork-heading::before,
  .diaryWork-heading::after{
    width: 18px;
    right: 10px;
  }

  /*
  table
  */

  .diaryWork-table tbody th{
    font-size: 100%;
    padding: 0.5em 0.8em 0.5em 1.2em;
  }
  .diaryWork-table tbody td {
    padding: 5px 5px;
  }

  .diaryWork-table tbody td.diaryWork-table-point {
    padding-right: 0;
  }
  .diaryWork-table tbody td.diaryWork-table-input {
    width: 3em;
    font-size: 16px;
    padding-right: 0;
  }
  .diaryWork-table tbody td.diaryWork-table-input.is-confirm {
    width: auto;
  }
  .diaryWork-table tbody td.diaryWork-table-total {
    font-size: 100%;
    padding-right: 2px;
    padding-left: 0;
  }


  .diaryWork-table-box{
  }

  .diaryWork-add {
    padding: 10px 10px;
  }


  .diaryWork-inputNum{
    width: 3em;
    font-size: 16px;
  }
  .diaryWork-inputWork{
  }

}


/**********************************************
module-xxxxx
***********************************************/

/**********************************************
module-xxxxx
***********************************************/

/**********************************************
module-xxxxx
***********************************************/

/**********************************************
module-xxxxx
***********************************************/

/**********************************************
module-xxxxx
***********************************************/




/********************************************************************************************
ステータス
********************************************************************************************/

.is-hide {
  display: none;
}

.is-out{
  position: absolute;
  left: -9999999px;
}

.is-pc-hide {
  display: none;
}

.is-pc-inline {
  display: inline;
}

.is-sp-inline {
  display: none;
}

.is-pc-noevent {
  pointer-events: none;
}


@media screen and (max-width:834px) {

  .is-pc-hide {
    display: block;
  }

  .is-sp-hide {
    display: none;
  }

  .is-sp-inline {
    display: inline;
  }

  .is-pc-inline {
    display: none;
  }

  .is-pc-noevent {
    pointer-events: auto;
  }

}

/********************************************************************************************
アニメーション関係
********************************************************************************************/

.fadeIn {
  transform: translate(0, 10px);
  transition: all 1s ease;
  opacity: 0;
}

.fadeIn.is-visible {
  transform: translate(0, 0);
  opacity: 1 !important;
  top: 0;
}

.fadeIn-group > * {
  opacity: 0;
}

@media screen and (max-width:834px) {

  .fadeIn-group > * {
    opacity: 1;
  }

}




