@charset "utf-8";

/*最後削除*/
.menu_list {
  margin: 0 auto;
  padding: 40px 70px;
  text-align: left;
  border-radius: 5px;
}
.menu_list li {
  list-style: disc;
}
.menu_list li ul {
  padding-left: 10px;
}
.menu_list li ul li {
  position: relative;
  list-style: none;
  padding-left: 15px;
}
.menu_list li ul li::before {
  position: absolute;
  content: '';
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
/* ----------------------------------------------- title */
.title {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  padding: 45px 0;
}
/*h1*/
.title h1 {
  font-size: 4.0rem;
  font-family: "NotoSans_JP_Bold";
  line-height: 110%;
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-left: 65px;
}
.title h1.home {
  background-image: url("../img/icon_h1.png");
}
.title h1.qa {
  background-image: url("../img/icon_h2.png");
}
.title h1.seminar {
  background-image: url("../img/icon_h3.png");
}
.title h1.shibu {
  background-image: url("../img/icon_h4.png");
}
.title h1.movie {
  background-image: url("../img/icon_h5.png");
}
.title h1.mypage {
  background-image: url("../img/icon_h6.png");
}
.title h1.dashboard {
  background-image: url("../img/icon_h7.png");
}
.title h1.post {/*新規投稿を追加の時だけ*/
  padding-left: 0px;
}
/* h1 > span */
.title h1 span {
  margin-left: 20px;
  padding: 15px 20px 15px 45px;
  color: #212121;
  font-size: 1.9rem;
  font-family: "NotoSans_JP_Bold";
  background-color: #e7edf5;
  border-radius: 7px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 10px center;
}
/* h1 > span */
.title h1 span.home {
  background-image: url("../img/icon_nav1_g.png");
}
.title h1 span.qa {
  background-image: url("../img/icon_nav2_g.png");
}
.title h1 span.seminar {
  background-image: url("../img/icon_nav3_g.png");
}
.title h1 span.shibu {
  background-image: url("../img/icon_nav4_g.png");
}
.title h1 span.movie {
  background-image: url("../img/icon_nav5_g.png");
}
/* post button */
.title .post_btn {
  position: relative;
  margin: 0;
  padding: 0;
}
.title .post_btn::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 180px;
  height: 60px;
  background-color: #000;
  border-radius: 3px;
}
.title .post_btn::after {
  position: absolute;
  content: '';
  top: 0;
  left: 181px;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 3px;
}
.title .post_btn a {
  position: relative;
  z-index: 5;
  display: block;
  width: 240px;
  padding: 15px 60px 15px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.title .post_btn a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #fff;
}
.title .post_btn a:hover::before {
  top: -1px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.title .post_btn a::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 12px;
  height: 2px;
  transform: rotate(90deg);
  background-color: #fff;
}
.title .post_btn a:hover::after {
  top: 9px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 900px) {
  /*h1*/
  .title h1 {
    font-size: 3.8rem;
    padding-right: 20px;
  }
  /* h1 > span */
  .title h1 span {
    font-size: 1.8rem;
  }
  @media screen and (max-width: 800px) {
    .title {
      padding: 25px 0;
      align-items: flex-start;
    }
    /*h1*/
    .title h1 {
      font-size: 3.0rem;
      margin: 0 0 20px 0;
      padding-left: 50px;
      background-position: left center;
      background-size: auto 30px;
    }
    /* h1 > span */
    .title h1 span {
      font-size: 1.7rem;
    }
    /* post button */
    .title .post_btn::before {
      width: 110px;
      height: 40px;
    }
    .title .post_btn::after {
      width: 40px;
      left: 111px;
      height: 40px;
    }
    .title .post_btn a {
      width: 150px;
      padding: 5px 50px 5px 10px;
    }
    .title .post_btn a::before,
    .title .post_btn a::after {
      right: 12px;
    }
    @media screen and (max-width: 600px) {
      .title {
        padding: 20px 0 10px 0;
      }
      .title h1 {
        padding-right: 0;
      }
      /* h1 > span */
      .title h1 span {
        display:table;
        padding: 8px 15px 10px 40px;
        margin: 10px 0 0 10px;
      }
      /* post button */
      .title .post_btn::before,
      .title .post_btn::after {
        display: none;
      }
      .title .post_btn a {
        width: 100px;
        padding: 6px 30px 8px 10px;
        background-color: #000;
        border-radius: 3px;
        font-size: 1.4rem;
      }
      @media screen and (max-width: 500px) {
        .title {
          display: block;
          display: -webkit-block;
        }
        /*h1*/
        .title h1 {
          font-size: 2.5rem;
          background-size: auto 25px;
        }
        /* h1 > span */
        .title h1 span {
          display: inline-block;
          padding: 7px 15px 7px 45px;
          margin: 10px 0 10px 20px;
          width: auto;
          background-position: 10px center;
        }
        /* post button */
        .title .post_btn {
          margin-bottom: 20px;
        }
        .title .post_btn a {
        }
        @media screen and (max-width: 450px) {
          .title h1 span {
            display: inline-block;
            margin: 10px 0;
          }
        }
      }
    }
  }
}
/* ----------------------------------------------- 見出し */
/* h2 */
h2 {
  margin: 0 0 15px 0;
  padding: 30px 0 15px 0;
  font-size: 3.0rem;
  font-family: "NotoSans_JP_Bold";
  border-bottom: 1px solid #00a68d;
}
#dashboard h2 {
  border-bottom: 1px solid #2e81eb;
}
#dashboard h3 {
  margin-top: 20px;
  font-size: 1.9rem;
  font-family: "NotoSans_JP_Bold";
  color: #2e81eb;
}
@media screen and (max-width: 900px) {
  /* h2 */
  h2 {
    font-size: 2.5rem;
  }
  @media screen and (max-width: 500px) {
   h2 {
      font-size: 2.0rem;
    }
  }
}
/* ----------------------------------------------- table */
main table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}
main table th,
main table td {
  padding: 5px 10px;
  border: 1px solid #bcbcbc;
  line-height: 140%;
  vertical-align: middle;
  font-size: 1.5rem;
}
main table th {
  padding: 10px;
  text-align: center;
  background-color: #e4e4e4;
}
/* ----------------------------------------------- information */
.information {
  padding: 30px;
  border-radius: 3px;
  background-color: #eceff3;
}
.information h2 {
  padding: 5px 0 15px 0;
  font-size: 2.0rem;
  font-family: "NotoSans_JP_Bold";
  color: #008d78;
}
.information p {
  font-size: 1.6rem;
}
/* ----------------------------------------------- menu */
.menu {
  display: flex;
  display: -webkit-flex;
  align-items: stretch;
  width: 100%;
  margin: 30px 0;
}
.menu li {
  width: 25%;
  padding: 7px;
}
.menu li a {
  display: block;
  position: relative;
  padding: 30px 40px 30px 30px;
  border-radius: 5px;
  box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0.13);
  font-size: 2.0rem;
  color: #fff;
  text-decoration: none;
}
.menu li a:hover {
  box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0);
}
.menu li a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu li a:hover::before {
  right: 25px;
}
/**/
.bg_b li a {
  background-color: #2985e2;
}
.bg_g li a {
  background-color: #00957f;
}
@media screen and (max-width: 1200px) {
  .menu {
    flex-wrap: wrap;
  }
  .menu li {
    width: 50%;
  }
  .menu li a {
    padding: 20px;
    font-size: 1.8rem;
  }
  @media screen and (max-width: 600px) {
    .menu li {
      width: 100%;
    }
  }
}
/* ----------------------------------------------- post(投稿された記事) */
#content .post {
  margin-bottom: 60px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.2);
}
/* title */
#content .post .post_head {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 30px;
  border-top: 5px solid #00a68d;
  background-color: #f5f5f5;
}
#content .post .post_head::before {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  width: 95%;
  height: 1px;
  background-color: #d6d6d6;
  margin: auto;
}
#content .post .circle_pic {
  margin-right: 15px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
#content .post .circle_pic img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content .post .post_head dl {
  flex: 1;
  margin-right: auto;
  vertical-align: top;
}
#content .post .post_head dt {
  font-size: 1.8rem;
}
#content .post .post_head dt span {
  margin-left: 10px;
  padding: 5px 15px;
  font-size: 1.3rem;
  border-radius: 50px;
  background-color: #b9d2f2;
}
#content .post .post_head dd {
}
#content .post .post_head h2 {
  margin: 0;
  padding: 0;
  font-size: 2.3rem;
  font-weight: bold;
  color: #007967;
  border: none;
}
#content .post .post_head p {
  font-size: 1.4rem;
  color: #777;
}
/*投稿内容*/
#content .post .post_main {
  padding: 35px;
  font-size: 1.6rem;
}
#content .post .post_main .streaming_period {
  display: inline-block;
  margin-bottom: 15px;
  padding: 7px 20px;
  background-color: rgba(63,157,143,0.4);
  border-radius: 5px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: bold;
}
#content .post .post_main dl.link {
  position: relative;
  font-weight: normal;
  margin: 18px 0;
}
#content .post .post_main dl.link::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 100%;
  border-radius: 5px;
  background-color: #3f9d8f;
}
#content .post .post_main dt,
#content .post .post_main dd {
  margin: 2px 5px 2px 20px;
  font-weight: normal;
}
#content .post .post_main a:link {
  color: #3f9d8f;
}
#content .post .post_main a:hover {
  opacity: 0.5;
}
#content .post .post_main .image {/*画像*/
  padding: 15px 0;
}
#content .post .post_main .image img {
  max-width: 100%;
  height: auto;
}
#content .post .post_main .image p {
  font-size: 1.4rem;
}
#content .post .post_main .image p.delete {
  display: inline-block;
  font-size: 1.4rem;
}
#content .post .post_main .image p.delete input {
  margin-right: 5px;
}
#content .post .post_main .movie {/*動画*/
  margin: 15px auto;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
}
#content .post .post_main .movie iframe {/*動画(youtube)*/
  width: 100%;
  height: 100%;
}
/*記事内アイコン*/
#content .post .post_detail {
  padding: 5px 0 15px 0;
  text-align: right;
}
#content .post .post_detail li {
  display: inline-block;
  padding: 1px 0 1px 5px;
}
#content .post .post_detail li a,
#content .post .post_detail li button {
  display: block;
  padding: 7px 10px 7px 30px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  font-size: 1.5rem;
  background-color: #fff;
  background-position: 7px 50%;
  background-repeat: no-repeat;
  background-size: 20px auto;
}
#content .post .post_detail li.post_btn_nice a {
  border: 2px solid #cd8b45;
  background-image: url("../img/icon_ditail1.png");
}
#content .post .post_detail li.post_btn_list a {
  background-image: url("../img/icon_ditail2.png");
}
#content .post .post_detail li.post_btn_comment a {
  background-image: url("../img/icon_ditail3.png");
}
#content .post .post_detail li.post_btn_edit a {
  background-image: url("../img/icon_ditail4.png");
}
#content .post .post_detail li.post_btn_delete button {
  background-image: url("../img/icon_ditail5.png");
}
#content .post .post_detail li a:link,
#content .post .post_detail li a:active,
#content .post .post_detail li a:visited,
#content .post .post_detail li button {
  color: #202020;
  text-decoration: none;
  line-height: 120%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease 0s;
}
#content .post .post_detail li a:hover,
#content .post .post_detail li button:hover {
  opacity: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0);
}
/*いいねクリック後*/
#content .post .post_detail li.on a:link,
#content .post .post_detail li.on a:active,
#content .post .post_detail li.on a:visited {
  color: #fff;background-color: #cd8b45;
  border: none;
  padding: 8px 10px 8px 30px;
  box-shadow: none;
  box-shadow: inset 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
  background-image: url("../img/icon_ditail5_w.png") !important;
}
/*コメント部分*/
#content .post .comment {
  padding: 20px 20px 20px 100px;
}
#content .post .comment li {
  display: flex;
  display: -webkit-flex;
  padding: 10px 0;
}
#content .post .comment li .name {
  margin-top: 10px;
  width: 65px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
#content .post .comment li dl {
  flex: 1;
  position: relative;
  margin-left: 40px;
  padding: 15px;
  background-color: #ededed;
  border-radius: 10px;
}
#content .post .comment li dl::before {
  position: absolute;
  content: '';
  top: 30px;
  left: -25px;
  transform:rotate(180deg);
  border: 7px solid transparent;
  border-left: 20px solid #ededed;
}
#content .post .comment li dt {
  font-size: 1.5rem;
}
#content .post .comment li dd {
  font-size: 1.3rem;
  color: #777;
}
#content .post .comment span button {
  display: inline-block;
  margin: 5px 10px;
  padding: 7px 10px 7px 27px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  font-size: 1.3rem;
  background-color: #f7f7f7;
  background-position: 7px 50%;
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-image: url("../img/icon_ditail5.png");
  color: #202020;
  text-decoration: none;
  line-height: 120%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: all 0.3s ease 0s;
}
#content .post .comment span button:hover {
  opacity: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0);
}

@media screen and (max-width: 900px) {
  /* title */
  #content .post .post_head {
    flex-wrap: wrap;
    padding: 20px;
  }
  #content .post .post_head dt {
    font-size: 1.6rem;
  }
  #content .post .post_head dt span {
    font-size: 1.2rem;
  }
  #content .post .post_head h2 {
    font-size: 1.8rem;
  }
  #content .post .post_head p {
    width: 100%;
    text-align: right;
    padding-top: 5px;
  }
  /*投稿内容*/
  #content .post .post_main {
    padding: 25px;
    font-size: 1.5rem;
  }
  /*記事内アイコン*/
  #content .post .post_detail li a,
    #content .post .post_detail li button {
    font-size: 1.2rem;
  }
  /*コメント部分*/
  #content .post .comment {
    padding: 20px 0;
  }
  @media screen and (max-width: 500px) {
    #content .post .comment li {
      display: block;
      display: -webkit-block;
    }
    #content .post .comment li dl {
      flex: 1;
      margin-top: 10px;
      margin-left: 5px;
      padding: 15px 15px 15px 5px;
    }
    #content .post .comment li dl::before {
      top: -10px;
      left: 10px;
      transform:rotate(-90deg);
    }
    @media screen and (max-width: 400px) {
      #content .post .comment span button {
        display: block;
        margin: 5px 0;
      }
    }
  }
}
/* ----------------------------------------------- pager(ページ送り) */
.pager {
  text-align: center;
  padding-bottom: 30px;
}
.pager li {
  display: inline-block;
  margin: 3px;
}
.pager li a,
.pager li span {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #00a68d;
  border-radius: 5px;
  font-size: 1.5rem;
}
.pager li a:link {
  color: #555;
  text-decoration: none;
}
.pager li span {
  background-color: #00a68d;
  color: #fff;
}
.pager li.back a,
.pager li.next a {
  position: relative;
}
.pager li.back a::before,
.pager li.next a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
}
.pager li.back a {
  padding-left: 30px;
}
.pager li.back a::before {
  left: 17px;
  transform: rotate(-135deg);
}
.pager li.next a {
  padding-right: 30px;
}
.pager li.next a::before {
  right: 17px;
  transform: rotate(45deg);
}
@media screen and (max-width: 600px) {
  .pager li a,
  .pager li span {
    padding: 5px 13px;
    font-size: 1.4rem;
  }
}
/* ----------------------------------------------- back */
.back_btn {
  margin: 25px 0 10px 0;
}
.back_btn a {
  position: relative;
  padding: 10px 30px 12px 40px;
  color: #fff;
  text-align: center;
  background-color: #222;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.back_btn a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 25px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
.back_btn a:hover {
  color: #fff;
  background-color: #555;
}
.back_btn a:hover::before {
  left: 20px;
}

/* ----------------------------------------------- replay(返信部分) */
.replay {
  margin: -60px 0 0 40px;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .replay {
    margin: -60px 0 0 0;
  }
}
/* ----------------------------------------------- form(投稿画面) */
dl.form {}
dl.form dt {
  margin-top: 20px;
  font-size: 1.9rem;
  font-family: "NotoSans_JP_Bold";
  color: #007966;
}
dl.form dt:first-child {
  margin-top: 0;
}
dl.form dt span {
  margin-left: 15px;
  font-size: 1.5rem;
  color: #525252;
}
dl.form dd {
  padding-left: 10px;
}
dl.form dd p {
  padding-top: 5px;
  font-size: 1.6rem;
  color: #555;
  font-family: "NotoSans_JP_Bold";
}
dl.form dd p.upload_size {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}
/* -----------------------------------------------  いいね一覧 */
h2.like_list {
  background: url("../img/icon_ditail2.png") no-repeat center left;
  padding-left: 40px;
}
.like_list {
  margin: 0;
  padding: 10px 0 20px 0;
  list-style: none;
}
.like_list li {
  display: inline-block;
  width: 24%;
  box-sizing: border-box;
  margin: 5px 4px;
  padding: 0 0 10px 0;
  border-bottom: 1px dotted #ccc;
}
.like_list dl {
  display: table;
}
.like_list dt,
.like_list dd {
  display: table-cell;
  vertical-align: middle;
}
.like_list .circle_pic {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.like_list .circle_pic img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .like_list li {
    width: 32%;
  }
  @media screen and (max-width: 950px) {
    .like_list li {
      width: 48%;
    }
    @media screen and (max-width: 650px) {
      .like_list li {
        width: 100%;
      }
    }
  }
}

/* -----------------------------------------------  マイページ */
dl.mypage{}
dl.mypage dt {
  margin-top: 20px;
  font-size: 1.9rem;
  font-family: "NotoSans_JP_Bold";
  color: #007966;
}
dl.mypage dt {
  color: #2e81eb;
}
dl.mypage dt span {
  margin-left: 15px;
  font-size: 1.5rem;
  color: #525252;
}
dl.mypage dd {
  padding-left: 10px;
}
dl.mypage dd p {
  padding-top: 5px;
  font-size: 1.6rem;
  color: #555;
  font-family: "NotoSans_JP_Bold";
}
/* input(text/password)/textarea */
input[type="text"],
input[type="password"],
textarea {
  margin: 5px 0;
  padding: 12px 20px;
  color: #555;
  border-radius: 3px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px 0 #eeeeee inset;
  background: #fff;
  transition: all 0.3s ease 0s;
}
textarea {
  height: 200px;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  padding: 12px 20px;
  border: 1px solid #c0d9f9;
  background: #eaf2fd;
  box-shadow: 0 0 0 0 #eeeeee inset;
  outline: none;
}
::placeholder {
  color: #999;
  font-size: 1.6rem;
}
.w100 {
  width: 100%;
}
.w80 {
  width: 80%;
}
.w60 {
  width: 60%;
}
.w20 {
  width: 20%;
}
.w15 {
  width: 15%;
}
/* input(radio button) */
input[type=radio] {
  vertical-align: middle;
  margin: 7px 5px 7px 0;
}
/**/
.selectbox_s {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.selectbox_s::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.selectbox_s select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
  box-shadow: 0 0 0 0 #eeeeee inset;
}
/* input(file) */
input[type="file"] {
  margin: 10px 0;
}
/*input(date)*/
.date-label {
  display: inline-block;
  position: relative;
  margin: 0 0 10px 0;
  padding: 30px 20px 10px 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px 0 #eeeeee inset;
  background: #fff;
  text-align: left;
}
.date-label::before {
  position: absolute;
  content: '日付を選択する';
  top: 5px;
  left: 20px;
  font-size: 1.3rem;
  color: #999;
  z-index: 500;
}
.date-label::after {
  position: absolute;
  content: '';
  right: 20px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(135deg);
}
.date-label input {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  width: 200px;
}
.date-label input:focus {
  padding: 0;
  background-color: transparent;
  border: none;
}
/*送信ボタン*/
.button_area {
  padding: 35px 0 20px 0;
}
.button_area button.btn_submit {
  position: relative;
  display: block;
  padding: 20px 15px;
  width: 200px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background-color: #222;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14);
  transition: all 0.3s ease 0s;
}
.button_area button.btn_submit:hover {
  color: #fff;
  background-color: #666;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14)inset;
}

/* ----------------------------------------------- エラー */
.error_box {
  margin: 15px 0 5px 0;
  padding: 10px 15px;
  color: #cc0000;
  border-radius: 5px;
  background-color: #f9e5e5;
}
.error_box {
  margin-bottom: 20px;
}
input[type="text"].error,
input[type="password"].error,
textarea.error {
  background-color: #fcf4f4;
}
.error,
.error input {
  background-color: #fcf4f4;
}
.form .error_mess {
  color: #cc0000;
}

/* ----------------------------------------------- 入力無効 */
input:disabled,
.selectbox_s select:disabled {
  background-color: #eeeeee;
}

/* ----------------------------------------------- 管理画面 */
.dashboard_item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.dashboard_item input[type="text"] {
  width: 400px;
}
.dashboard_item input[type="submit"] {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background-color: #222;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14);
  transition: all 0.3s ease 0s;
}
.dashboard_item input[type="submit"]:hover {
  color: #fff;
  background-color: #666;
  box-shadow: 1px 10px 8px -6px rgba(0,0,0,0.14)inset;
}
@media screen and (max-width: 800px) {
  .dashboard_item input[type="text"] {
    width: 300px;
  }
  @media screen and (max-width: 700px) {
    .dashboard_item {
      display: -webkit-block;
      display: block;
      margin: -10px 0 20px 0;
    }
    .dashboard_item input[type="text"] {
      width: 65%;
    }
  }
}
/**/
@media screen and (max-width: 1100px) {
  .dashboard_table {
    width: 100%;
    height: auto;
    overflow-x: scroll;
  }
  .dashboard_table table {
    width: 100%;
    min-width: 1200px;
  }
  @media screen and (max-width: 800px) {
    .dashboard_table {
      height: 520px;
    }
  }
}
/* ----------------------------------------------- アップロード */
/* エクスポートインポートボタン */
.port_btn {
  display: inline-block;
  margin: 0 0 5px 5px;
}
.port_btn a {
  display: block;
  padding: 15px 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: rgba(46,129,235,0.8);
  border-radius: 3px;
}
.port_btn a:hover {
  background-color: rgba(46,129,235,1.0);
}
/* ----------------------------------------------- クリアボタン */
.clear_btn {
  position: relative;
  display: block;
  margin: 0 0 5px 0;
  padding: 0 20px 0 30px;
  font-size: 1.3rem;
  background-color: #666;
  border: 1px solid #666;
  color: #fff;
  border-radius: 3px;
  vertical-align: baseline;
  box-shadow: 1px 8px 8px -6px rgba(0,0,0,0.14);
  transition: all 0.3s ease 0s;
}
.clear_btn:hover {
  color: #333;
  background-color: #f6f7f9;
  border-color: #bfc4cd;
  box-shadow: 1px 5px 8px -6px rgba(0,0,0,0.14);
}
.clear_btn::before,
.clear_btn::after {
  position: absolute;
  content: '';
  top: 52%;
  left: 17px;
  margin: auto;
  width: 2px;
  height: 10px;
  background-color: #fff;
}
.clear_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.clear_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.clear_btn:hover::before,
.clear_btn:hover::after {
  background-color: #666;
}
/* ----------------------------------------------- ページが見つかりませんでした */
.notfound {
  padding: 20px 0 40px 0;
}
.notfound h2 {
  margin-bottom: 30px;
  padding: 5px 0 15px 0;
  font-family: "NotoSans_JP_Bold";
  color: #008d78;
}
.notfound .back_btn {
  margin-top: 60px;
}
/* ----------------------------------------------- 削除用モーダル */
main #staticBackdrop {
  z-index: 10000000;
}
main .modal-dialog {
  width: auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}
main .modal-header {
  width: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
main .modal-body {
  width: auto;
  padding: 30px 10px 25px 10px;
}
main .modal-footer button {
  width: auto;
  padding: 7px 20px;
  border: 1px solid #ccc;
  background-color: #e6e6e6;
}
main .modal-footer button.btn-primary {
  background-color: #b70000;
  color: #fff;
}
@media screen and (max-width: 800px) {
  main .modal-dialog {
    font-size: 1.5rem;
  }
}

