@charset "UTF-8";

body {
  background-color: #f3f0e9;
  line-height: 1.5;
}

/* header ***********************************/
.caseHeader {
  width: 100%;
  background-color: #fff;
}
.caseHeader .in {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caseHeader .in .h1 {
  width: 500px;
  height: 180px;
}
.caseHeader .in .h1 a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.caseHeader .in .h1 a img {
  width: 100%;
}
.caseHeader .in .introduction {
  width: 442px;
  padding: 16px;
  background-color: #eee;
}
.caseHeader .in .introduction .p1 {
  font-size: 13px;
  text-align: justify;
  line-height: 1.7;
}
.caseHeader .in .introduction .link1 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 4px 20px;
  border-radius: 10px;
  margin-top: 8px;
}
@media all and (min-width:481px) {
  .caseHeader .in .h1 a:hover {
    opacity: 0.6;
  }
  .caseHeader .in .introduction .link1:hover {
    background-color: #666;
  }
}
@media all and (max-width:480px) {
  .caseHeader .in {
    width: 100%;
    padding: 10px 5% 30px;
    display: block;
  }
  .caseHeader .in .h1 {
    width: 100%;
    height: auto;
  }
  .caseHeader .in .h1 a {
    width: 100%;
    padding: 10px 0;
  }
  .caseHeader .in .introduction {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
  }
  .caseHeader .in .introduction .link1 {
    width: 260px;
    padding: 6px 0 7px;
    margin: 10px auto 0;
  }
}

/* caseCategory ***********************************/
.caseCategory {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 70px 0 45px;
}
.caseCategory .blk {
  display: flex;
  align-items: center;
}
.caseCategory .blk + .blk {
  margin-left: 10px;
}
.caseCategory .cateTit {
  font-size: 14px;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #000;
  padding: 2px 8px;
}
.caseCategory .cateList {
  display: flex;
  flex-flow: wrap;
}
.caseCategory .cateList > li {
  margin-bottom: 15px;
  border-left: 1px solid #000;
  width: calc(100% / 7);
}
.caseCategory .cateList > li:last-child {
  border-right: 1px solid #000;
}
.caseCategory .cateList > li:nth-of-type(7n) {
  border-right: 1px solid #000;
}
.caseCategory .cateList > li a {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #000;
  padding: 3px 12px;
  letter-spacing: 0.05em;
}
.caseCategory .cateList > li.current a {
  color: #fff;
  background-color: #000;
  pointer-events: none;
}
@media all and (min-width:481px) {
  .caseCategory .cateList > li a:hover {
    color: #fff;
    background-color: #555;
  }
}
@media all and (max-width:480px) {
  .caseWrap {
    padding-top: 40px;
  }
  .catBtn {
    color: #fff;
    background-color: #000;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    width: 90%;
    margin: 0 5%;
    padding: 10px 0;
    position: relative;
  }
  .catBtn::before,
  .catBtn::after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 14px;
    top: 0;
    right: 12px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
  }
  .catBtn::before {
    transform: translateY(8px) rotate(90deg);
    top: 12px;
  }
  .catBtn::after {
    transform: translateY(-8px) rotate(0deg);
    top: 28px;
  }
  .cat_on .catBtn::before {
    transform: translateY(8px) rotate(-45deg);
    width: 18px;
  }
  .cat_on .catBtn::after {
    transform: translateY(-8px) rotate(45deg);
    width: 18px;
  }
  .caseCategory {
    width: 90%;
    padding: 20px 5% 30px;
    display: none;
    margin-bottom: 10px;
    background-color: #fff;
  }
  .cat_on .caseCategory {
    display: block;
  }
  .caseCategory .blk {
    display: block;
  }
  .caseCategory .blk + .blk {
    margin-left: 0;
  }
  .caseCategory .cateTit {
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
  }
  .caseCategory .cateList {
    display: block;
  }
  .caseCategory .cateList > li {
    width: 100%;
    margin-bottom: 0;
    border-left: none;
    border-bottom: 1px solid #ccc;
  }
  .caseCategory .cateList > li:last-child,
  .caseCategory .cateList > li:nth-of-type(7n) {
    border-right: none;
  }
  .caseCategory .cateList > li a {
    display: block;
    font-size: 14px;
    text-align: left;
    color: #000;
    padding: 8px 12px;
    position: relative;
  }
  .caseCategory .cateList > li a::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    transform: rotate(-45deg);
  }
  .caseCategory .cateList > li.current a::after {
    display: none;
  }
}

/* caseArchive ***********************************/
.caseArchive {
  width: 1000px;
  margin: 0 auto;
}
.archiveList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.archiveList::after {
  content: "";
  width: 320px;
  display: block;
}
.archiveList > li {
  width: 320px;
}
.archiveList > li:nth-of-type(1n + 4) {
  margin-top: 35px;
}
.archiveList > li a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  position: relative;
}
.archiveList > li .thumb {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.archiveList > li .thumb .img1 {
  width: 100%;
  height: 230px;
  background-image: url(../img/case/noimage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.linkClm {
  width: 850px;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}
.notioBnr1 {
  display: block;
  width: 400px;
}
/* pagenation */
.pagination {
    width: 100%;
    padding: 80px 0 0;
}
.page-numbers {
    width: auto;
    display: flex;
    justify-content: center;
}
.page-numbers li {
    width: 50px;
    height: 50px;
    margin: 0 10px;
}
.page-numbers li a, .page-numbers li span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    transition: 0.3s;
    color: #575a5b;
    background-color: #fff;
    border-radius: 50%;
}
.page-numbers li.prev a,
.page-numbers li.next a {
  font-size: 12px;
}
.page-numbers li span.dots {
  color: #575a5b;
  background-color: transparent;
}
.page-numbers li span.current {
  color: #fff;
  background-color: #575a5b;
}
@media all and (min-width:481px) {
  /* .archiveList > li .thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .archiveList > li .thumb::after {
    content: "";
    width: 85px;
    height: 85px;
    background-image: url(../img/case/ico_newtab1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .archiveList > li a:hover .thumb::before {
    opacity: 1;
  }
  .archiveList > li a:hover .thumb::after {
    opacity: 1;
  } */
  .archiveList > li .tabList {
    display: flex;
    flex-flow: row wrap;
    width: calc(100% - 82px);
  }
  .archiveList > li .tabList > li {
    font-size: 12.5px;
  }
  .archiveList > li .tabList > li:nth-of-type(1n + 2)::before {
    content: ",";
  }
  .archiveList > li .tWrap {
    padding: 16px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .archiveList > li .tWrap::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/case/ico_newtab1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  .archiveList > li .h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .archiveList > li .p1,
  .archiveList > li .p2 {
    font-size: 12.5px;
    margin-top: 8px;
    text-align: justify;
    display: flex;
  }
  .archiveList > li .tWrap .flx1 {
    display: flex;
  }
  .archiveList > li .tag {
    font-size: 12.5px;
    display: inline-block;
    width: 82px;
    text-align: right;
  }
  .archiveList > li a:hover .tWrap {
    opacity: 1;
  }
  .notioBnr1:hover {
    opacity: 0.7;
  }
  /* pagenation */
  .page-numbers li a:hover {
    color: #fff;
    background-color: #575a5b;
  }
}
@media all and (min-width:1351px) {
  .caseArchive {
    width: 1350px;
  }
  .archiveList::before {
    content: "";
    width: 320px;
    display: block;
    order: 1;
  }
  .archiveList > li:nth-of-type(1n + 4) {
    margin-top: 0;
  }
  .archiveList > li:nth-of-type(1n + 5) {
    margin-top: 35px;
  }
}
@media all and (max-width:480px) {
  .caseArchive {
    width: 100%;
    padding: 30px 5% 60px;
  }
  .archiveList {
    display: block;
  }
  .archiveList::after {
    width: 100%;
    display: none;
  }
  .archiveList > li {
    width: 100%;
  }
  .archiveList > li + li,
  .archiveList > li:nth-of-type(1n + 4) {
    margin-top: 30px;
  }
  .archiveList > li .thumb .img1 {
    width: 100%;
    height: 180px;
  }
  .archiveList > li .tWrap {
    padding: 16px 38px 16px 16px;
    position: relative;
  }
  .archiveList > li .h2 {
    font-size: 13px;
  }
  .archiveList > li .p1 {
    font-size: 12px;
  }
  .archiveList > li a {
    position: relative;
  }
  .archiveList > li .tWrap::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/case/ico_newtab1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 10px;
    margin: auto;
  }
  .linkClm {
    width: 100%;
    margin: 50px auto 0;
    display: block;
  }
  .notioBnr1 {
    width: 100%;
  }
  .linkClm .notioBnr1 + .notioBnr1 {
    margin-top: 15px;
  }
  /* pagenation */
  .pagination {
      width: 100%;
      padding: 60px 0 0;
  }
  .page-numbers li {
      width: 27px;
      height: 27px;
      margin: 0 5px;
  }
  .page-numbers li a, .page-numbers li span {
      font-size: 10px;
      line-height: 27px;
  }
  .page-numbers li.prev a,
  .page-numbers li.next a {
    font-size: 10px;
  }
}
@media all and (max-width:370px) {
  /* pagenation */
  .page-numbers li {
      width: 22px;
      height: 22px;
      margin: 0 4px;
  }
  .page-numbers li a, .page-numbers li span {
      line-height: 22px;
  }
}
/* caseFooter ***********************************/
.caseFooter {
  background-color: #333;
  margin-top: 100px;
}
.caseFooter .in {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0 20px;
}
.caseFooter .fNav {
  display: flex;
  justify-content: center;
}
.caseFooter .fNav > li + li {
  margin-left: 40px;
}
.caseFooter .fNav > li a {
  font-size: 14px;
  color: #fff;
}
.caseFooter .cRight {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 30px;
}
@media all and (min-width:481px) {
  .caseFooter .fNav > li a:hover {
    opacity: 0.6;
  }
}
@media all and (max-width:480px) {
  .caseFooter {
    margin-top: 0;
  }
  .caseFooter .in {
    width: 100%;
    padding: 20px 5% 15px;
  }
  .caseFooter .fNav {
    display: block;
    text-align: center;
  }
  .caseFooter .fNav > li + li {
    margin-left: 0;
    margin-top: 10px;
  }
  .caseFooter .fNav > li a {
    font-size: 10px;
  }
  .caseFooter .cRight {
    font-size: 10px;
    padding-top: 20px;
  }
}
