/* ===================================================================
	index.css
=================================================================== */
/* header ---------------------------------------- */
header .title {
  overflow: hidden;
  float: left;
}
header .title h1 {
  background: #393840;
}
header .title h1 a:hover {
  color: #656566;
}

/* top ---------------------------------------- */
#container {
  padding-top: 0;
}
#container h1.c_tt {
  border-bottom: 1px solid #e4e4e4;
}
#container .link_area {
  width: 100%;
  /*height: 96vh;*/
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#container .link_area .link_box {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#container .link_area .link_box a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  display: block;
  margin: 0 auto;
}
#container .link_area .link_box.checker {
  background: #de2e2e;
}
#container .link_area .link_box.checker a:hover {
  color: #f56464;
}
#container .link_area .link_box.bbs {
  background: #2c7cc7;
}
#container .link_area .link_box.bbs a:hover {
  color: #4697e3;
}
#container .link_area .link_box.work_managed {
  background: #28a782;
}
#container .link_area .link_box.work_managed a:hover {
  color: #2cc397;
}
#container .link_area.one_column .link_box.report {
  background: #fff;
}

#container .link_area .link_box.top {
-webkit-align-items: flex-start;
align-items: flex-start;
}

#container .link_area.one_column .ct{
  width: 100%;
  min-height: 96vh;
}

#container .link_area.one_column .link_box {
  width: 100%;
  height: initial;
}
#container .link_area.one_column .link_box.checker {
  height: 200px;
}
#container .link_area.one_column .link_box.bbs {
  min-height: 400px;
  height: calc(100% - 400px);
}
#container .link_area.one_column .link_box.work_managed {
  height: 200px;
}
#container .link_area.one_column .link_box.punchout {
  height: 200px;
  background: #ffcc00;
}
#container .link_area.one_column .link_box.punchout a {
  color: #222;
}
#container .link_area.one_column .link_box.punchout a:hover {
  color: #fcd94d;
}
#container .link_area.one_column .link_box.report a {
  color: #222;
}
#container .link_area.one_column .ans {
  border-radius: 3px;
  background: #de2e2e;
  margin-top: 10px;
  padding: 5px 13px;
  color: #fff;
  font-weight: 500;
  display: block;
  font-size: 1.6rem;
}
#container .link_area.one_column .ans i {
  font-style: normal;
  color: #fff;
}
#container .link_area.one_column .ans i::before {
  font-family: 'iconfont' !important;
  content: "\e91c";
  padding-right: 10px;
}


#container .link_area.two_column .lt {
  width: 50%;
  height: 96vh;
}
#container .link_area.two_column .rt {
  width: 50%;
  height: 96vh;
}

#container .link_area.two_column .link_box {
  width: 100%;
  height: initial;
}
#container .link_area.two_column .link_box.checker {
  height: calc(100% / 3);
}
#container .link_area.two_column .link_box.bbs {
  height: calc(100% / 3);
}
#container .link_area.two_column .link_box.work_managed {
  height: calc(100% / 3);
}
#container .link_area.two_column .link_box.punchout {
  height: 200px;
  background: #ffcc00;
}
#container .link_area.two_column .link_box.punchout a {
  color: #222;
}
#container .link_area.two_column .link_box.punchout a:hover {
  color: #fcd94d;
}
#container .link_area.two_column .ans {
  border-radius: 3px;
  background: #de2e2e;
  margin-top: 10px;
  padding: 5px 13px;
  color: #fff;
  font-weight: 500;
  display: block;
  font-size: 1.6rem;
}
#container .link_area.two_column .ans i {
  font-style: normal;
  color: #fff;
}
#container .link_area.two_column .ans i::before {
  font-family: 'iconfont' !important;
  content: "\e91c";
  padding-right: 10px;
}
#container .switch {
  -webkit-animation: switchtext 0.6s infinite alternate;
  animation: switchtext  0.6s infinite alternate;
}
@-webkit-keyframes switchtext {
  from {
    background: #de2e2e;
  }
  to {
    background: #ffcc00;
  }
  /*
  from { opacity: 1.0; }
  to { opacity: 0; }
  */
}
@keyframes switchtext {
  from {
    background: #de2e2e;
  }
  to {
    background: #ffcc00;
  }
}
/* mypage ---------------------------------------- */
.pg_mypage {
  padding-top: 60px !important;
}
.pg_mypage .profile {
  width: 1100px;
  margin: 50px auto;
  overflow: hidden;
}
.pg_mypage .profile-img {
  float: left;
  width: 380px;
}
.pg_mypage .profile-img img {
  width: 100%;
  border-radius: 3px;
}
.pg_mypage .profile-outline {
  width: 700px;
  float: right;
  padding-left: 50px;
  box-sizing: border-box;
}
.pg_mypage .profile-name {
  padding: 30px 0;
  border-bottom: 1px solid #e4e4e4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pg_mypage .profile-name .name {
  font-size: 3.0rem;
  font-weight: 400;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pg_mypage .profile-name .link_edit {
  width: 120px;
  text-decoration: none;
  font-size: 1.6rem;
}
.pg_mypage .profile-name .link_edit::before {
  font-family: 'iconfont';
  content: "\e917";
  color: #de2e2e;
  padding-right: 6px;
}
.pg_mypage .profile-info {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
}
.pg_mypage .profile-info > li {
  display: inline-block;
  font-size: 1.6rem;
  padding: 10px 25px;
}
.pg_mypage .profile-info > li + li {
  border-left: 1px solid #e4e4e4;
}
.pg_mypage .profile-info02 {
  font-size: 1.6rem;
  overflow: hidden;
}
.pg_mypage .profile-info02 dt {
  width: 10em;
  float: left;
  padding: 20px 0;
}
.pg_mypage .profile-info02 dd {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

/* mypage edit ---------------------------------------- */
.pg_mypage.edit .profile-edit dt {
  width: 10em;
  float: left;
  padding: 20px 0;
}
.pg_mypage.edit .profile-edit dd {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}
.pg_mypage.edit .profile-edit input[type="text"],
.pg_mypage.edit .profile-edit input[type="password"] {
  width: 500px;
  background-color: #f6f6f6;
}
.pg_mypage.edit .profile-edit .input_file {
  border: 1px solid #e4e4e4;
}
.pg_mypage.edit .btn_area {
  margin-top: 30px;
}
.pg_mypage.edit .btn_area button {
  width: 15em;
}

.worktable_area {
  margin:10px;
  width: 100%;
}
.worktable_area .worktable {
  width: 100%;
  border-top: 1px solid #e4e4e4;
  letter-spacing: 1px;
  text-align: center; }
.worktable_area .worktable th {
  font-size: 1.2rem;
  background: #f5f5f5;
  padding: 8px;
  border-left: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4; }
.worktable_area .worktable td {
  background: #fff;
  padding: 12px 8px;
  border-left: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4; }
.worktable_area .worktable td:hover {
  background: #f9f9f9; }
#container .link_area .link_box div.worktable_area a {
  display: inline;
  line-height: 1rem;
  padding:2px;
  margin:0px;
  font-size: 1.4rem;
  font-weight: 300;
}
#container .link_area .link_box div.worktable_area .worktable td a {
  color: #000;
}
button.btn_delete,button.btn_entry {
  padding: 10px 14px;
}
#container .link_area h3 {
color: #000;
text-decoration: none;
text-align: center;
font-size: 3rem;
font-weight: 500;
display: block;
margin: 40px auto 12px auto;
}
#container .link_area h4 {
display: block;
margin: 10px auto 1px auto;
}