/**
 * ################################################
 *
 * #######  SETTING  #########
 *
 * ################################################
 */
/*
@media all and (max-width:$sp_width) { // sp
}
@media all and (min-width:$pc_width) { // pc
}
*/
/* PC,SP width setting */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

/* select color */
::-moz-selection {
  background: #b7e997; /* Safari */
}
::selection {
  background: #b7e997; /* Safari */
}

::-moz-selection {
  background: #b7e997; /* Firefox */
}

area {
  border: none;
  outline: none;
}

/* FORM ======================= */
input[type=text], input[type=tel], input[type=email], input[type=password] {
  padding: 0 4px;
  margin-top: -2px;
}

textarea {
  padding: 4px;
}

::-webkit-input-placeholder {
  color: #AAA;
  font-weight: normal !important;
}

:-ms-input-placeholder {
  color: #AAA;
  font-weight: normal !important;
}

::-moz-placeholder {
  color: #AAA;
  font-weight: normal !important;
}

button {
  outline: none;
}

label {
  display: inline-block;
  cursor: pointer;
}

/*clearfix*/
.cf {
  *zoom: 1;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.clear, hr {
  clear: both;
}

/* #####################
#
#      Font setting
#
##################### */
html {
  font-size: 62.5%;
}

* {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #0b1116;
}

a {
  color: #0073d1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.f-mono {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
}

/* #####################
#
#      Color setting
#
##################### */
/* #####################
#
#      Class setting
#
##################### */
@media all and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media all and (min-width: 769px) {
  .sp {
    display: none;
  }
}
/* float */
.fll {
  float: left;
}

.flr {
  float: right;
}

/* text-align */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

/* ##################################
############################################
############################################
#
#      STYLE
#
############################################
############################################
################################## */
main {
  background-color: #fff;
}

@media all and (max-width: 768px) {
  header.header {
    right: 0;
    left: inherit;
    width: 50%;
  }
}
@media all and (max-width: 768px) {
  header.header .header-top {
    justify-content: flex-end;
  }
}

footer {
  margin-top: 20px;
}
footer p {
  text-align: right;
}

.container--flex {
  display: flex;
}
@media all and (max-width: 768px) {
  .container--flex {
    flex-wrap: wrap;
  }
}
.container--flex #sidebar {
  position: fixed;
  top: 60px;
  padding-top: 30px;
  width: 250px;
  height: calc(100% - 60px);
  background-color: #f7f7f7;
  border-right: 1px solid #eaf1f7;
}
@media all and (max-width: 768px) {
  .container--flex #sidebar {
    display: none;
    top: 0;
    left: 0;
    margin: 0;
    padding: 60px 20px 30px;
    border: none;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    z-index: 9;
  }
}
@media all and (min-width: 769px) {
  .container--flex #sidebar {
    display: block !important;
    max-width: 300px;
    overflow-y: scroll;
  }
}
.container--flex .contents {
  width: calc(100% - 250px);
  margin-left: 250px;
}
@media all and (max-width: 768px) {
  .container--flex .contents {
    width: 100%;
    margin-left: 0;
  }
}
@media all and (min-width: 769px) {
  .container--flex .contents {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media all and (min-width: 1480px) {
  .container--flex .contents {
    width: calc(100% - 510px);
  }
}
.container--flex #sidebar--right {
  display: none;
}
@media all and (max-width: 768px) {
  .container--flex #sidebar--right {
    display: block;
    padding-bottom: 60px;
    width: 100%;
  }
}
@media all and (min-width: 1480px) {
  .container--flex #sidebar--right {
    margin-right: 30px;
    padding-bottom: 80px;
    width: 280px;
    display: block;
  }
}

#toggle--index {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #1a2930;
  overflow: hidden;
  z-index: 10;
}
#toggle--index span {
  position: absolute;
  display: inline-block;
  height: 2px;
  background-color: #f7f7f7;
  transition: 0.3s;
}
#toggle--index span:first-child {
  top: 30%;
  transform: translateY(-30%);
  width: 30px;
}
#toggle--index span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
#toggle--index span:last-child {
  top: 70%;
  transform: translateY(-70%);
  width: 10px;
}
#toggle--index.active span {
  transition: 0.3s;
}
#toggle--index.active span:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 60%;
}
#toggle--index.active span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}
#toggle--index.active span:last-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 60%;
}

#sidebar * {
  font-size: 1.4rem;
}
#sidebar ul li {
  list-style-type: none;
}
#sidebar ul li a:hover {
  background-color: #eaf1f7;
}
#sidebar ul li.current-menu-item > a {
  background-color: #fff;
  border: 1px solid #eaf1f7;
  border-right: none;
  color: #0073d1 !important;
}
#sidebar ul li .sub-menu {
  margin-left: 2rem;
  border-left: 1px solid #c5d2dd;
}
#sidebar ul li .sub-menu li a {
  color: #88939b;
  font-size: 90%;
}
#sidebar a {
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #0b1116;
}

#sidebar--right .sidebar--title {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1.6rem;
  background: #f7f7f7;
}
#sidebar--right .sidebar--list_post li {
  margin-bottom: 10px;
  list-style-type: none;
}
#sidebar--right .sidebar--list_post li a {
  padding-left: 10px;
  display: block;
  border-left: 8px solid #eaf1f7;
  text-decoration: none;
  transition: 0.3s;
}
#sidebar--right .sidebar--list_post li a:hover {
  border-left: 3px solid #84aece;
  transition: 0.3s;
}
#sidebar--right .sidebar--list_post li a h3 {
  color: #88939b;
  font-size: 1.4rem;
}
#sidebar--right .sidebar--list_post li a .post--info {
  margin: 0;
  display: block;
}
#sidebar--right .sidebar--list_post li a .post--info i, #sidebar--right .sidebar--list_post li a .post--info span {
  color: #848f9b;
  font-size: 1.2rem;
}
#sidebar--right .sidebar--list_post + .sidebar--title {
  margin-top: 4rem;
}

.contents {
  padding-bottom: 100px;
}
.contents--title {
  padding-top: 40px;
  font-size: 3.2rem;
}
@media all and (max-width: 768px) {
  .contents--title {
    font-size: 2.4rem;
  }
}
.contents--desc {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #eaf1f7;
}
.contents--desc * {
  line-height: 1.5;
  font-size: 1.4rem;
}

/**
 * blog page
 */
#blog, #column {
  padding: 60px 0 30px;
}
@media all and (max-width: 768px) {
  #blog, #column {
    padding: 40px 16px 0;
  }
}
#blog .archive--top-desc, #column .archive--top-desc {
  font-size: 1.4rem;
}

.category--title {
  margin-bottom: 16px;
  padding-top: 32px;
}
.category--title a {
  color: #0b1116;
  font-size: 2.4rem;
}
@media all and (max-width: 768px) {
  .category--title a {
    font-size: 1.8rem;
  }
}

.category--sub_title {
  margin-bottom: 16px;
  padding-left: 30px;
}
.category--sub_title a {
  color: #0b1116;
  font-size: 2rem;
}
@media all and (max-width: 768px) {
  .category--sub_title a {
    font-size: 1.8rem;
  }
}
.category--sub_title + .category--list {
  padding-left: 6rem;
}

.category--list {
  margin-top: 16px;
  padding-bottom: 2rem;
  list-style-type: none;
}
.category--list li {
  margin-bottom: 1.2rem;
  border: 1px solid rgba(192, 186, 243, 0.5);
  border-radius: 0.4rem;
}
.category--list li a {
  padding: 1rem 1.5rem;
  display: block;
  text-decoration: none;
  transition: 0.5s;
}
.category--list li a:hover {
  background-color: rgba(192, 186, 243, 0.2);
  transition: 0.5s;
}
.category--list li a h3 {
  color: #0073d1;
  font-size: 1.6rem;
}
@media all and (max-width: 768px) {
  .category--list li a h3 {
    font-size: 1.5rem;
  }
}
.category--list li a .post--info {
  margin-top: 2px;
  display: block;
}
.category--list li a .post--info i, .category--list li a .post--info span {
  color: #848f9b;
}
.category--list li a .post--info i {
  font-size: 1.3rem;
}
.category--list + .category--title {
  border-top: 1px solid #eaf1f7;
}

/**
 * column page
 */
.column--list {
  padding-top: 32px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.column--list li {
  list-style-type: none;
}
@media all and (max-width: 768px) {
  .column--list li {
    width: 100%;
  }
  .column--list li:not(:first-child) {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
  }
}
@media all and (min-width: 769px) {
  .column--list li {
    width: calc(33.3333333333% - 20px);
    border-radius: 0 0 5px 5px;
    box-shadow: 3px 3px 15px -5px rgba(0, 0, 0, 0.3);
    background-color: #304654;
    overflow: hidden;
    transition: 0.3s;
  }
  .column--list li:nth-child(n+4) {
    margin-top: 40px;
  }
  .column--list li:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
}
.column--list li:hover {
  box-shadow: 3px 3px 25px -5px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.column--list li a {
  display: block;
  text-decoration: none;
}
@media all and (max-width: 768px) {
  .column--list li a {
    display: flex;
  }
  .column--list li a > div:first-child {
    width: 40%;
  }
  .column--list li a > div:last-child {
    width: 60%;
  }
}
.column--list li img {
  width: 100%;
  height: auto;
}
.column--list li .post--info {
  margin-top: 5px;
  padding: 0 15px;
  display: block;
}
@media all and (max-width: 768px) {
  .column--list li .post--info {
    padding: 0 8px;
  }
}
@media all and (min-width: 769px) {
  .column--list li .post--info i, .column--list li .post--info span {
    color: #f7f7f7;
  }
}
.column--list li .post--info i {
  font-size: 1.3rem;
}
.column--list li h3 {
  margin: 5px 0;
  padding: 0 15px 5px;
  font-weight: 400;
  letter-spacing: 0.02rem;
}
@media all and (max-width: 768px) {
  .column--list li h3 {
    padding: 0 0 0 8px;
    font-size: 1.4rem;
  }
}
@media all and (min-width: 769px) {
  .column--list li h3 {
    color: #fff;
  }
}

/**
 * works page
 */
#works {
  padding: 60px 0;
}
@media all and (max-width: 768px) {
  #works {
    padding: 40px 16px;
  }
}
#works .contents--title {
  padding: 0;
  text-align: center;
  font-size: 2rem;
}
@media all and (max-width: 768px) {
  #works .contents--title {
    font-size: 1.6rem;
  }
}

.list-works {
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media all and (max-width: 768px) {
  .list-works > article {
    width: 100%;
  }
  .list-works > article:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media all and (min-width: 769px) {
  .list-works > article {
    width: calc(33.3333333333% - 20px);
  }
  .list-works > article:nth-child(n+4) {
    margin-top: 40px;
  }
  .list-works > article:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
}
.list-works > article a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.list-works > article a .thumb {
  position: relative;
  padding: 15px;
  background-color: #f7f7f7;
  line-height: 1;
  overflow: hidden;
}
.list-works > article a .thumb:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 400px;
  background-color: rgba(11, 17, 22, 0.2);
  transition: 0.3s ease-in-out;
}
.list-works > article a .thumb img {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.list-works > article a .title {
  margin-top: 8px;
  font-weight: 400;
  font-size: 1.6rem;
}
.list-works > article a .cat {
  font-weight: 400;
  font-size: 1.2rem;
}
.list-works > article a:hover .thumb:after {
  border-radius: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.3s ease-in-out;
}

/**
 * Pages
 */
.pages {
  padding: 60px 60px 0 30px;
}
@media all and (max-width: 768px) {
  .pages {
    padding: 40px 16px 0;
  }
}

/**
 * Single
 */
.singles {
  padding: 30px 0;
}
@media all and (max-width: 768px) {
  .singles {
    padding: 20px 16px 0;
  }
}
.singles #sidebar--right {
  padding-top: 40px;
}
.singles .post--info {
  display: block;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.singles .post--info i, .singles .post--info span {
  color: #848f9b;
}
.singles .post--content #toc_container {
  margin-bottom: 6rem;
}
.singles .post--content #toc_container .toc_title {
  text-align: left;
}
.singles .post--content #toc_container .toc_list {
  padding-bottom: 1rem;
}
.singles .post--content #toc_container .toc_list li {
  margin: 5px 0;
}
.singles .post--content h1, .singles .post--content h2 {
  margin-top: 7.4rem;
  margin-bottom: 2rem;
  padding-top: 4rem;
  font-size: 2.4rem;
  border-top: 1px solid #eaf1f7;
}
.singles .post--content h1 span, .singles .post--content h2 span {
  font-weight: 600;
  font-size: 2.4rem;
}
.singles .post--content h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.singles .post--content h3 span {
  font-weight: 600;
  font-size: 1.8rem;
}
.singles .post--content p {
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
@media all and (min-width: 769px) {
  .singles .post--content p {
    line-height: 2.2;
    letter-spacing: 0.03rem;
  }
}
.singles .post--content ul {
  padding-left: 2rem;
  line-height: 1.566;
}
.singles .post--content li + li {
  margin-top: 5px;
}
.singles .post--content code {
  margin-left: 3px;
  margin-right: 3px;
  padding: 3px 7px;
  background-color: #0b1116;
  color: #fff;
  border-radius: 3px;
  letter-spacing: 1px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.singles .post--content .enlighter-default {
  margin-bottom: 24px;
}
.singles .post--content .enlighter-t-monokai {
  padding: 10px 0;
  border-radius: 5px;
}
.singles .post--content .enlighter-t-monokai .enlighter span {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.single-column .singles .post--content h1, .single-column .singles .post--content h2 {
  font-size: 3rem;
}
.single-column .singles .post--content h1 span, .single-column .singles .post--content h2 span {
  font-size: 3rem;
}
.single-column .singles .post--content h3 {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding: 5px 1rem;
  border-left: 8px solid #87B9CE;
  font-size: 2.4rem;
}
.single-column .singles .post--content h3 span {
  font-size: 2.4rem;
}

.single-works {
  margin-top: 60px;
}
@media all and (max-width: 768px) {
  .single-works {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.single-works .box-border {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}
.single-works .title {
  text-align: center;
  font-size: 2.8rem;
}
@media all and (max-width: 768px) {
  .single-works .title {
    font-size: 2.2rem;
  }
}
.single-works .title small {
  font-size: 1.8rem;
}
@media all and (max-width: 768px) {
  .single-works .title small {
    font-size: 1.4rem;
  }
}
.single-works .cat {
  text-align: center;
  font-size: 1.8rem;
}
@media all and (max-width: 768px) {
  .single-works .cat {
    font-size: 1.5rem;
  }
}
.single-works .works-top {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media all and (max-width: 768px) {
  .single-works .works-top {
    margin-top: 30px;
  }
}
.single-works .works-top .thumb {
  width: 53%;
  padding: 15px;
  background-color: #f7f7f7;
  line-height: 1;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .single-works .works-top .thumb {
    padding: 0;
    background-color: transparent;
    width: 100%;
  }
}
.single-works .works-top .thumb img {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.single-works .works-top .info {
  width: 42%;
}
@media all and (max-width: 768px) {
  .single-works .works-top .info {
    margin-top: 15px;
    width: 100%;
  }
}
.single-works .works-top .info .url {
  padding: 0 15px;
  background-color: #f7f7f7;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.single-works .works-top .info .url a {
  padding: 10px 25px 10px 0;
  background-image: url(../img/common/icon-blank.png);
  background-position: center right;
  background-size: 18px auto;
  display: inline-block;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  letter-spacing: 0.1px;
}
.single-works .works-top .info .desc {
  margin-top: 25px;
  line-height: 2;
  font-size: 1.35rem;
}
.single-works .works-bottom {
  margin-top: 60px;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom {
    margin-top: 30px;
  }
}
.single-works .works-bottom .tool {
  margin-top: 10px;
  padding: 20px 30px;
  background-color: #f7f7f7;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .tool {
    padding: 20px 15px;
  }
}
.single-works .works-bottom .bottom-content {
  position: relative;
  margin-top: 60px;
  padding: 60px 40px 100px;
  background-color: #f7f7f7;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .bottom-content {
    padding: 40px 0 60px;
  }
}
.single-works .works-bottom .bottom-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  display: block;
  width: 200vw;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 0;
}
.single-works .works-bottom .bottom-content > *:first-child {
  margin-top: 0 !important;
}
.single-works .works-bottom .bottom-content * {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}
.single-works .works-bottom .bottom-content * + * {
  margin-top: 2rem;
}
.single-works .works-bottom .bottom-content h1 {
  font-size: 4rem;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .bottom-content h1 {
    font-size: 3rem;
  }
}
.single-works .works-bottom .bottom-content h2 {
  font-size: 3.2rem;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .bottom-content h2 {
    font-size: 2.4rem;
  }
}
.single-works .works-bottom .bottom-content h3 {
  font-size: 2.4rem;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .bottom-content h3 {
    font-size: 1.8rem;
  }
}
.single-works .works-bottom .bottom-content h4, .single-works .works-bottom .bottom-content h5, .single-works .works-bottom .bottom-content h6 {
  font-size: 1.6rem;
}
.single-works .works-bottom .bottom-content img {
  max-width: 100%;
  height: auto;
}
@media all and (max-width: 768px) {
  .single-works .works-bottom .bottom-content img {
    margin-left: auto;
    margin-right: auto;
    max-width: 290px;
    display: block;
  }
}
.single-works .works-bottom .bottom-content ul, .single-works .works-bottom .bottom-content ol {
  padding-left: 2rem;
}
.single-works .works-bottom .bottom-content ul li + li, .single-works .works-bottom .bottom-content ol li + li {
  margin-top: 0.5rem;
}
.single-works + .wrapper--btn {
  margin-top: 60px;
  text-align: center;
}
.single-works + .wrapper--btn .post-nav {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.single-works + .wrapper--btn .post-nav > span {
  margin: 2rem;
  width: 100%;
  max-width: 350px;
  background-color: #f7f7f7;
  text-align: center;
  transition: 0.2s;
}
@media all and (max-width: 768px) {
  .single-works + .wrapper--btn .post-nav > span {
    margin: 1.2rem 0;
  }
}
.single-works + .wrapper--btn .post-nav > span a {
  position: relative;
  padding: 1.5em;
  display: block;
}
@media all and (max-width: 768px) {
  .single-works + .wrapper--btn .post-nav > span a {
    padding: 0.5em 1.5em;
  }
}
.single-works + .wrapper--btn .post-nav > span.prev:hover, .single-works + .wrapper--btn .post-nav > span.next:hover {
  transition: 0.2s;
  background-color: #1a2930;
}
.single-works + .wrapper--btn .post-nav > span.prev:hover a, .single-works + .wrapper--btn .post-nav > span.next:hover a {
  color: #fff;
  text-decoration: none;
}
.single-works + .wrapper--btn .post-nav > span.prev:hover a:before, .single-works + .wrapper--btn .post-nav > span.next:hover a:before {
  border-color: #fff;
}
.single-works + .wrapper--btn .post-nav > span.prev a:before, .single-works + .wrapper--btn .post-nav > span.next a:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.single-works + .wrapper--btn .post-nav > span.prev:hover {
  transform: translateX(-10px);
}
.single-works + .wrapper--btn .post-nav > span.prev a:before {
  left: 0.8em;
  border-bottom: 1px solid #d6d8db;
  border-left: 1px solid #d6d8db;
  transform: translateY(-50%) rotate(45deg);
}
.single-works + .wrapper--btn .post-nav > span.next:hover {
  transform: translateX(10px);
}
.single-works + .wrapper--btn .post-nav > span.next a:before {
  right: 0.8em;
  border-bottom: 1px solid #d6d8db;
  border-right: 1px solid #d6d8db;
  transform: translateY(-50%) rotate(-45deg);
}
.single-works + .wrapper--btn .btn {
  width: 240px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  background-color: #1a2930;
  border-radius: 60px;
  color: #fff;
  transition: 0.3s;
}
.single-works + .wrapper--btn .btn:focus {
  outline: none;
}
.single-works + .wrapper--btn .btn:hover {
  transform: translateY(5px);
  transition: 0.3s;
}