@charset "utf-8;";

body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("../images/1x/back_pc-80.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc_hidden {
  display: none;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view {
  opacity: 0;
  transition: all 1.5s;
  transition-delay: 0.4s;
}

/* shadow */

.shadow {
  filter: drop-shadow(4px 4px 5px #000);
  will-change: filter;
}

/* header */

#header {
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

#header h1 {
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
}

#header h1 span {
  font-size: 20px;
  font-weight: 600;
}

#header a {
  color: #fff;
}

/* nav */

#sp_btn,
#sp_nav {
  display: none;
}

#pc_nav_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  overflow: hidden;
  z-index: 100;
}

#pc_nav_wrapper::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-image: url("../images/1x/back_pc-80.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 80;
}

#pc_nav {
  position: absolute;
  left: 25px;
  bottom: 20px;
  display: flex;
  gap: 20px;
  transform: rotate(-90deg);
  transform-origin: left top;
  z-index: 100;
}

#pc_nav li {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
}

#pc_nav a {
  color: #fff;
  padding: 3px 20px;
  transition: all 0.5s;
  border: rgba(0, 0, 0, 0) solid 1px;
}

#pc_nav a:hover,
#sp_nav a:hover {
  border: #fff solid 1px;
  box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.3),
    0 0 0.8em rgba(255, 255, 255, 0.3);
}

#pc_nav li:first-child a,
#sp_nav li:last-child a {
  color: rgba(0, 0, 0, 0.8);
  background-color: #fff;
}

#pc_nav li:first-child a:hover,
#sp_nav li:last-child a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  padding: 3px 20px;
  transition: all 0.5s;
  box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.3),
    0 0 0.8em rgba(255, 255, 255, 0.3);
  border: #fff solid 1px;
}

/* light */

.light {
  animation: light 8s linear alternate infinite;
  position: fixed;
}

@keyframes light {
  0% {
    opacity: 0.2;
    transform: translateY(0);
  }
  20% {
    opacity: 0.5;
    transform: translateY(-20px) scale(1.5);
  }
  50% {
    opacity: 0.2;
    transform: translateY(-50px) translateX(10px) scale(2);
  }
  70% {
    opacity: 0.8;
    transform: translateY(-10px) translateX(20px) scale(1.5);
  }
  100% {
    opacity: 0.5;
    transform: translateY(10px) scale(1);
  }
}

.main_light {
  right: 15vw;
  bottom: 10vh;
}

.about_light {
  top: 20vh;
  left: 15vw;
}

.works_light {
  top: 10vh;
  right: 20vw;
}

.detail_light {
  left: 20vw;
  bottom: 20vh;
}

.banner_light {
  top: 20vh;
  right: 20vw;
}

.contact_light {
  top: 30vh;
  left: 40vw;
}

.thanks_light {
  bottom: 40vh;
  right: 20vw;
}

/* copy write */

.copy_write {
  position: fixed;
  right: 20px;
  bottom: 5px;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
}

/* main---------------------------------------------------------------------------- */

/* concept */

.contents_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  height: 100vh;
  width: 100vw;
}

.contents_box.second_contents {
  margin-right: 20vw;
}

.concept_write {
  font-size: 18px;
  padding-top: 20px;
}

.logo {
  width: 175px;
}

.decora {
  width: 360px;
}

/* policy */

.prof01 {
  width: 600px;
}

.policy {
  width: 210px;
}

.policy_write {
  font-size: 15px;
  padding: 30px 0;
}

.btn01 {
  transform: translateX(150px);
}

/* about--------------------------------------------------------------------------- */

.about_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  align-items: center;
}

.about_box {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.about_me {
  width: 180px;
}

.prof_image {
  width: 450px;
  overflow: hidden;
}

.prof_image div {
  width: 450px;
  height: 300px;
  background-image: url("../images/1x/prof02_pc-80.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.about_detail p {
  margin: 0 0 20px 0;
  line-height: 2;
}

.about_detail p span {
  font-weight: 600;
}

.about_name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 10px;
}

.about_name p:first-child {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.about_name p:last-child {
  font-size: 14px;
  line-height: 1;
  margin: 0;
}

.scroll {
  width: 285px;
  animation: textannounce 5s linear infinite;
}

@keyframes textannounce {
  0% {
    opacity: 0;
    transform: translateX(30vw);
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateX(40vw);
  }
  100% {
    opacity: 0;
  }
}

/* biography */

.bio_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  height: 100vh;
  margin-left: 50px;
}

.bio {
  width: 185px;
  transform: translateX(300px);
}

.bio_container {
  display: flex;
}

.bio_container div {
  height: 420px;
  width: 250px;
  padding: 0 60px 0 20px;
  border-right: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  position: relative;
}

.bio_container div:first-child {
  width: 400px;
  padding: 0 20px;
}

.bio_container div:last-child {
  border: none;
}

.bio_container div:not(:first-child)::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.bio_container p span {
  font-weight: 600;
  font-size: 15px;
}

.bio_container p {
  white-space: wrap;
  font-size: 14px;
  transform: translateY(-30px);
}

.space {
  display: block;
  content: "";
  height: 10px;
}

/* skills */

.skills_wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-right: 20vw;
}

.skills_container {
  display: flex;
  align-items: center;
  padding: 30px 100px;
  gap: 80px;
}

.skill {
  width: 65px;
}

.skills_box p,
.skills_box ul li {
  font-size: 16px;
}

.skills_box p {
  font-weight: 600;
}

.skills_box ul {
  padding-left: 30px;
  border-left: 1px solid #fff;
}

.skills_box ul li {
  padding: 10px 0;
  cursor: default;
  white-space: nowrap;
}

.modal_open {
  text-decoration: underline;
}

.modal_open:hover {
  opacity: 0.7;
}

.modal_window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 70vh;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1rem;
  overflow-y: scroll;
  z-index: 11;
  white-space: wrap;
  text-align: center;
}

.modal_contents {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  white-space: wrap;
}

.modal_contents p {
  color: #333;
  font-weight: 500;
}

.img_height {
  width: auto;
  height: 400px;
  object-fit: scale-down;
}

.img_width {
  width: 400px;
  height: auto;
  object-fit: scale-down;
}

.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

.modal_scroll-arrow {
  content: "";
  height: 300px;
  border-left: 1px solid #333;
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.modal_scroll-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  bottom: 0;
  right: -4px;
}

.modal_scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0;
  animation: announceY 3s linear infinite;
}

@keyframes announceY {
  0% {
    top: 20px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  70% {
    top: 200px;
    opacity: 0;
  }
  100% {
    top: 300px;
    opacity: 0;
  }
}

.modal_close {
  display: none;
  position: fixed;
  top: 50%;
  right: 3vw;
  z-index: 12;
  transform: translateY(-50%) rotate(-90deg);
}

.modal_close p::after,
.modal_close p::before {
  content: "";
  position: absolute;
  top: 23px;
  bottom: 0;
  left: -10px;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 1px solid #fff;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.modal_close:hover p::after {
  transform: translate(-115%, -50%) rotate(45deg);
  opacity: 1;
}

.modal_close:hover p::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_close p::after {
  transform: translate(-100%, -25%) rotate(0deg);
  opacity: 0;
}

.modal_close p::before {
  transform: translate(-100%, -25%) rotate(0deg);
}

.modal_open:hover,
.modal_close:hover {
  cursor: url("../images/1x/cursor_hover.png"), auto;
}

.modal_open:active,
.modal_close:active {
  cursor: url("../images/1x/cursor_click.png"), auto;
}

.modal_contents video {
  width: 700px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.no_scroll {
  overflow: hidden;
}

/* works--------------------------------------------------------------------------- */

.works_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.filter-list.pc_filter {
  position: absolute;
  left: 90px;
  bottom: 220px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
}

.filter-list.pc_filter li {
  line-height: 2.8;
}

.filter-list.pc_filter li a {
  position: relative;
}

.filter-list.pc_filter li a::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -20px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.popup {
  position: absolute;
  top: 50px;
  left: 0;
  width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: all 1s;
}

.popup li {
  transition: all 0.5s;
  width: 200px;
  padding-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.popup li:hover {
  border-left: 1px solid #fff;
}

.is-active {
  display: block;
  opacity: 1;
}

/* #pc_nav_wrapper.works_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  overflow: hidden;
  z-index: 100;
} */

.works_wrap {
  height: 100vh;
  width: max-content;
  margin-left: 280px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}

.works_head {
  width: 40px;
  position: absolute;
  top: 180px;
  z-index: 300;
}

.works_contact {
  margin-right: 20vw;
  text-align: center;
}

.filter-item {
  height: 585px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.filter-item li {
  width: 300px;
}

.filter-item li p span {
  font-weight: 600;
  font-size: 15px;
}

.filter-item li p {
  font-size: 13px;
  line-height: 1;
}

/* swiper */

#works-swiper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.works-inner {
  position: relative;
  width: 100%;
  height: 80vh;
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.swiper {
  --swiper-theme-color: #ffffff;
}

#swiper-main {
  max-width: 500px;
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
}

.swiper-wrapper {
  margin: 0;
}

.swiper-slide {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thumb-wrapper {
  width: 200px;
  position: relative;
}

#swiper-thumb {
  max-width: 200px;
  width: 100%;
  height: 500px;
  margin: 0;
}

#swiper-thumb:hover {
  .swiper-slide:not(:hover) {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 1s;
  }
}

figure {
  max-width: 700px;
  width: 100%;
  margin: 0;
}

.slide-media,
.works01_img {
  width: 450px;
  height: 300px;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.slide-media img {
  width: 100%;
}

.works_img {
  width: 300px;
  height: 200px;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.slide {
  width: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide-text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  right: initial;
  left: 50%;
  transform: rotate(90deg) translateY(50%);
}

.swiper-button-prev {
  top: -40px;
}

.swiper-button-next {
  top: initial;
  bottom: -40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
}

.swiper-button-prev::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}

.swiper-button-next::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  cursor: url("../images/1x/cursor_hover.png"), auto;
}

.swiper-button-prev:active,
.swiper-button-next:active {
  cursor: url("../images/1x/cursor_click.png"), auto;
}

/* swiper item */

.wimg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: image-switch-animation 9s infinite;
}

.src1 {
  background-image: url("../images/1x/works01.png");
}

.src2 {
  background-image: url("../images/1x/graphic01.png");
}

.src3 {
  background-image: url("../images/1x/graphic03.png");
}

@keyframes image-switch-animation {
  0% {
    opacity: 0.5;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.wimg:nth-of-type(1) {
  animation-delay: 0s;
}

.wimg:nth-of-type(2) {
  animation-delay: 3s;
}

.wimg:nth-of-type(3) {
  animation-delay: 6s;
}

.slide-media,
.slide-media::before,
.slide-media::after,
.works_img,
.works_img::before,
.works_img::after {
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.slide-media::before,
.slide-media::after,
.works_img::before,
.works_img::after {
  display: block;
  opacity: 0;
  position: absolute;
}

.slide-media::before,
.works_img::before {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  filter: blur(8px);
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 2;
  opacity: 0;
  transition-duration: 0.4s;
}

.slide-media::after,
.works_img::after {
  color: #fff;
  content: "view more";
  font-size: 15px;
  font-weight: 500;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition-duration: 0.2s;
}

.slide-media:hover::after,
.works_img:hover::after {
  transition-delay: 0.5s;
}
.slide-media:hover::before,
.slide-media:hover::after,
.works_img:hover::before,
.works_img:hover::after {
  opacity: 1;
}

.scroll-arrow {
  content: "";
  width: 300px;
  border-bottom: 1px solid #fff;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: -4px;
  right: 1px;
  transform: rotate(-45deg);
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: announce 3s linear infinite;
}

@keyframes announce {
  0% {
    left: 20px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  70% {
    left: 200px;
    opacity: 0;
  }
  100% {
    left: 300px;
    opacity: 0;
  }
}

/* works detail-------------------------------------------------------------------- */

.back {
  position: fixed;
  bottom: 5vh;
  right: 50%;
  transform: translate(50%);
  z-index: 3;
}

.detail_container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 80vh;
  gap: 80px;
  margin: 15vh 20vw auto 20vw;
}

.vw {
  align-items: center;
  width: 100vw;
  margin: 5vh 0 15vh 0;
}

.detail_img {
  width: 238px;
}

.detail_left {
  display: flex;
  margin-bottom: 3vh;
}

.detail_left div:first-child {
  width: 100px;
  padding: 0 20px;
}

.flex {
  display: flex;
  align-items: flex-start;
}

.detail_right {
  border-left: solid 1px #fff;
  width: 250px;
  padding-left: 30px;
  white-space: nowrap;
}

hr {
  border: none;
  border-bottom: 1px dotted #fff;
  width: 100%;
  margin-top: 17px;
}

.line {
  width: 100%;
  padding: 0 5%;
}

.detail_container p {
  margin: 0;
}

.detail_container p span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  padding: 5vh 0 3vh 0;
}

.detail_first,
.detail_column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 600px;
}

.detail_column {
  justify-content: flex-start;
  margin-top: 15vh;
  margin-right: 20vw;
}

.detail_textonly {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  height: 100vh;
  width: 600px;
  margin-right: 20vw;
}

.detail_first p,
.detail_column p,
.detail_flex div p,
.detail_textonly p {
  line-height: 1.88;
  white-space: wrap;
  margin-top: 0;
}

.visit {
  padding-top: 3vh;
  transform: translateX(100px);
}

.detail_flex {
  margin-top: 15vh;
  margin-right: 20vw;
}

.detail_flex div {
  display: flex;
  width: 800px;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.detail_flex img {
  width: 250px;
  height: 100%;
}

/* banner */

.square {
  width: 300px;
}

.rectangle {
  width: 450px;
  object-fit: contain;
}

.banner_container {
  width: 100vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5vh 0 15vh 0;
  gap: 40px;
}

.banner_flex {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}

.banner_container p {
  margin: 0;
}

.banner_container p span {
  display: block;
  font-size: 17px;
  font-weight: 600;
  padding: 0;
}

/* contact------------------------------------------------------------------------- */

#contact {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vh;
}

.contact_container {
  padding-top: 5vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 80px;
  box-sizing: border-box;
}

.contact_container div {
  padding: 10px 0;
}

.contact_img {
  width: 280px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.c-form_item input,
.c-form_item textarea,
button {
  color: #fff;
  background: none;
  border: 1px solid #fff;
  box-sizing: border-box;
}

.c-form_item input {
  width: 400px;
  height: 50px;
  padding-left: 10px;
}

.c-form_item textarea {
  width: 400px;
  height: 150px;
  padding-top: 10px;
  padding-left: 10px;
}

.c-form_item input::placeholder,
.c-form_item textarea::placeholder {
  color: #b6b6b6;
}

button {
  color: #fff;
  padding: 15px 30px;
  cursor: pointer;
  transform: translateX(139px);
}

.sns_link {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.sns_link::before {
  content: "";
  width: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1s;
}

.sns_link:hover::before {
  width: 450px;
  border-bottom: 1px solid #fff;
}

.insta {
  width: 32px;
}

/* thanks---------------------------------------------------------------------------------- */

.thanks_img {
  width: 551px;
}

#thanks {
  height: 100vh;
  width: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 1181px) {
  .concept_write {
    font-size: 16px;
  }

  .logo {
    width: 125px;
  }

  .decora {
    width: 360px;
  }

  .filter-item {
    height: 268px;
  }

  .modal_window {
    width: 700px;
    height: 70vh;
  }

  .img_height {
    height: 280px;
  }

  .img_width {
    width: 280px;
  }

  .works_wrap {
    width: 5600px;
  }

  .works_contact {
    display: none;
  }

  .back {
    font-weight: 500;
    right: 0;
    transform: translate(0);
  }
}
