@-webkit-keyframes loaderAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loaderAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.index {
  position: relative;
  display: block;
  z-index: 99999;
}

@-webkit-keyframes bg {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: #0a0a0a;
  }
}

@keyframes bg {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: #0a0a0a;
  }
}
.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a0a0a;
  z-index: 1;
  -webkit-animation: bg 0.8 linear 0.8s infinite alternate slidein;
          animation: bg 0.8 linear 0.8s infinite alternate slidein;
}

.blobs-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.blobs-container {
  display: flex;
  position: relative;
  z-index: 1500;
}

.blob {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  margin: 10px;
  height: 20px;
  width: 20px;
  transform: scale(1);
  -webkit-animation: pulse-black 1.8s backwards;
          animation: pulse-black 1.8s backwards;
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
  display: block;
  height: 25px;
  width: 25px;
  opacity: 0;
}

@-webkit-keyframes pulse-black {
  0% {
    transform: scale(0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  70% {
    transform: scale(1.5);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    opacity: 1;
  }
  99% {
    transform: scale(0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    opacity: 0;
  }
}

@keyframes pulse-black {
  0% {
    transform: scale(0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  70% {
    transform: scale(1.5);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    opacity: 1;
  }
  99% {
    transform: scale(0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    opacity: 0;
  }
}
/*space might depends of gutters*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  height: 2.6rem;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 5rem;
}
header .main-nav {
  position: relative;
  height: 2.7rem;
  width: 2.7rem;
  margin-right: 2.5rem;
}
header .menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
header .menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu-wrap .menu > div {
  width: 300vw;
  height: 300vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
  background: #000;
  border-radius: 50%;
}
header .menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}
header .menu-wrap .menu > div > div ul li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}
header .menu-wrap .menu > div > div ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}
header .menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 5rem;
  height: 30px;
  opacity: 0;
}
header .menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(225deg);
  background-color: #fff !important;
  width: 100%;
}
header .menu-wrap .toggler:checked + .hamburger > div:before, header .menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
  width: 100%;
}
header .menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}
header .menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 1s;
}
header .menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
  width: 50%;
  position: relative;
}
header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos {
  color: #fff;
}
header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos .info1 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 3.9rem;
  line-height: 3.9rem;
  letter-spacing: 4px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  margin-bottom: 0;
  margin-top: 10rem;
}
header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos .info2 {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 200;
}
header .menu-wrap .toggler:checked ~ .menu > div > div ul {
  text-align: center;
}
header .menu-wrap .toggler:checked ~ .menu > div > div ul li {
  padding: 0.5rem 0;
}
header .menu-wrap .toggler:checked ~ .menu > div > div ul li a span {
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 3rem;
}
@-webkit-keyframes menumove {
  0% {
    transform: scaleX(0);
    left: 0;
    transform-origin: left;
  }
  99% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    left: 0;
    transform-origin: center;
  }
}
@keyframes menumove {
  0% {
    transform: scaleX(0);
    left: 0;
    transform-origin: left;
  }
  99% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    left: 0;
    transform-origin: center;
  }
}
header .menu-wrap .hamburger {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 1;
  width: 3rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu-wrap .hamburger div {
  position: relative;
  flex: none;
  width: 50%;
  height: 2px;
  background: #171717;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s ease;
  -webkit-animation-name: menumove;
          animation-name: menumove;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
header .menu-wrap .hamburger div:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  width: 150%;
  height: 2px;
  background: inherit;
}
header .menu-wrap .hamburger div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 7px;
  width: 150%;
  height: 2px;
  background: inherit;
}
header .menu-wrap #menu-term {
  display: none;
}

#mon-logo {
  margin-left: 2.5rem;
}
#mon-logo a {
  display: flex;
}
#mon-logo span {
  font-size: 21px;
  line-height: 21px;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: -6px;
}

body.menu_is-opened {
  overflow-y: hidden;
}
body.menu_is-opened.menu_is-opened {
  overflow-y: auto;
}

@media screen and (min-width: 640px) {
  header {
    padding-top: 0;
  }
  header .menu-wrap .toggler:checked ~ .menu {
    border: 15px solid #fdfcf4;
  }
  body.menu-is-opened .main-nav {
    margin-right: 4.5rem !important;
  }
  header {
    height: 4rem;
    top: 4.5rem;
    position: fixed;
    left: 0;
  }
  header .main-nav {
    left: 0;
  }
  #mon-logo {
    margin-left: 4.5rem;
  }
  #mon-logo span {
    font-size: 33px;
    line-height: 33px;
    color: #171717;
    letter-spacing: -9px;
    font-weight: 600;
    position: relative;
  }
  header .menu-wrap .hamburger {
    width: 5rem;
  }
  header .menu-wrap .hamburger #menu-term {
    display: none;
  }
  header .menu-wrap .hamburger div {
    height: 2px;
  }
  header .menu-wrap .hamburger div:before, header .menu-wrap .hamburger div:after {
    height: 2px;
    top: -9px;
  }
  header .menu-wrap .hamburger div:after {
    top: 9px;
  }
  header .main-nav {
    margin-right: 4.5rem;
    height: 38px;
    width: 40px;
  }
  header .menu-wrap .hamburger {
    top: 13px;
  }
  header .menu-wrap #menu-term {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 12px;
    position: relative;
    top: -2px;
    letter-spacing: 1px;
    z-index: 1;
    color: #000;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div ul li a span {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 5rem;
  }
}
@media screen and (min-width: 980px) {
  header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos .info1 {
    font-size: 4.9rem;
    line-height: 4.9rem;
    opacity: 0.8;
    transition: all 0.3s ease-out 0s;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos .info1:hover {
    opacity: 1;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div .contactinfos .info2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-weight: 200;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div ul li a span {
    display: inline-block;
    position: relative;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div ul li a span:before {
    content: "";
    display: inline-block;
    height: 17px;
    width: 0%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 0px;
    transition: all 0.3s ease-out 0s;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
  }
  header .menu-wrap .toggler:checked ~ .menu > div > div ul li a span:hover:before {
    width: 99%;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  width: 100vw;
  /*gutterscrollbar*/
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.main-container {
  background-color: #fff;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  scrollbar-width: 0px !important;
}

html {
  scrollbar-width: none;
}

body {
  -ms-overflow-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.outer-container {
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

header {
  z-index: 1; /*testing*/
}

.container-fluid {
  position: relative;
}
.container-fluid .v-lines {
  width: calc(100vw - 5rem);
  height: 100%;
  position: absolute;
  left: 2.5rem;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
  display: none;
}
.container-fluid .v-lines .line {
  width: 1px;
  height: 100%;
  background: rgba(226, 226, 226, 0.65);
}
.container-fluid .v-lines .line2,
.container-fluid .v-lines .line4 {
  display: none;
}

main.main-container .main {
  min-height: calc(100vh - 5rem);
}

@media screen and (min-width: 640px) {
  .outer-container::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none;
    scrollbar-width: 0px !important;
  }
  .outer-container {
    scrollbar-width: none;
  }
  .outer-container {
    -ms-overflow-style: none;
  }
  .outer-container {
    height: 100vh;
    overflow-y: scroll;
  }
  .container-fluid .v-lines {
    width: calc(100vw - 9rem);
    height: 100%;
    position: absolute;
    left: 4.5rem;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    left: 4.5rem;
    pointer-events: none;
    z-index: 1;
  }
  .cursor {
    display: none;
    position: fixed;
    width: 10px;
    height: 10px;
    margin-left: 0px;
    margin-top: 0px;
    border-radius: 50%;
    border: 2px solid rgb(0, 0, 0);
    transition: all 0.1s ease-in-out 0s;
    pointer-events: none;
    z-index: 5000;
  }
  .cursor.color-contrast-mouse {
    border: 2px solid rgb(255, 255, 255);
    z-index: 4000;
  }
  .grow {
    width: 80px;
    height: 80px;
    transform-origin: top left;
    background: #fff;
    margin-left: -40px;
    margin-top: -40px;
    mix-blend-mode: difference;
  }
  .grow-small {
    width: 120px;
    height: 120px;
    mix-blend-mode: normal;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fdfcf4;
    background-color: #fdfcf4;
  }
  .grow-small:before {
    content: "View ";
    color: #171717;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  header {
    z-index: 150;
  }
  main.main-container .main {
    min-height: calc(100vh - 8.5rem);
  }
}
@media only screen and (min-width: 1026px) {
  .container-fluid .v-lines .line2,
.container-fluid .v-lines .line4 {
    display: block;
  }
  body, html {
    cursor: none !important;
  }
  .cursor {
    display: flex;
  }
  .outer-container {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
  }
  .outer-container #home {
    scroll-snap-align: end;
  }
  .outer-container .portfolio-maintitle {
    scroll-snap-align: start;
  }
  .outer-container #portfolio .project1 {
    scroll-snap-align: start;
  }
  .outer-container #portfolio .project2 {
    scroll-snap-align: start;
  }
  .outer-container #portfolio .project3 {
    scroll-snap-align: start;
  }
  .outer-container #portfolio .project4 {
    scroll-snap-align: start;
  }
  .outer-container #portfolio .portfolio-maintitle {
    padding-top: calc(4.5rem);
    padding-bottom: calc(4.5rem);
  }
  .outer-container #about {
    scroll-snap-align: end;
  }
  .outer-container #about h3 {
    font-size: 7vw;
    line-height: 7vw;
  }
}
.project5 {
  max-height: 10vh;
  border: none;
}

#home {
  padding: 0 2.5rem;
  padding-bottom: 2.5rem;
  color: #171717;
  height: calc(100vh - 5rem);
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto auto 0;
  position: relative;
  height: 71vh;
  min-height: 50vh;
}
#home .box-text {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 0.5rem;
}
#home .box-text span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.5rem;
}
#home .box-text span .content__text-inner2 {
  font-weight: 500;
}
#home .noisebg {
  height: 100vh;
  width: 100vw;
  background: url(/img/noise.77eeb0e6.gif);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.028;
}
#home .content__text {
  text-align: center;
  padding-bottom: 1rem;
  margin: 0 auto;
  font-size: 100%;
  height: 11vh;
  line-height: 11vh;
}
#home .content__text .b-canvas {
  max-width: 100%;
  height: auto !important;
}
#home .text {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
}
#home .text h3 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
#home .text h1 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 8vw;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: red;
  font-weight: 800;
  text-align: center;
}
#home .aside {
  grid-column: 1/-1;
  position: relative;
  z-index: 10;
}
#home .aside div {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
#home .aside div i {
  font-size: 9px;
  font-style: normal;
  position: relative;
  bottom: 1px;
  font-weight: 600;
  margin: 0 2px;
}
#home .aside div .dot {
  font-size: 40px;
  line-height: 0;
  position: relative;
  top: -11px;
  margin: 0 0.4rem;
}
@-webkit-keyframes line-grow {
  0% {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    display: inline-block;
  }
  5% {
    border-radius: 0%;
  }
  100% {
    width: 100%;
    border-radius: 0;
  }
}
@keyframes line-grow {
  0% {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    display: inline-block;
  }
  5% {
    border-radius: 0%;
  }
  100% {
    width: 100%;
    border-radius: 0;
  }
}
#home .line {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
#home .line span {
  display: inline-block;
  background-color: #171717;
  height: 2px;
  width: 2px;
  border-radius: 50%;
  -webkit-animation: line-grow 0.8s ease-in-out 2s forwards;
          animation: line-grow 0.8s ease-in-out 2s forwards;
  position: relative;
}

#portfolio .proj-img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#portfolio .proj-img .imgBox, #portfolio .proj-img .imgBox2 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 37vh;
}
#portfolio .proj-img .imgBox img, #portfolio .proj-img .imgBox2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 100%;
}

#about {
  background: #fff;
  color: #171717;
}

#portfolio {
  color: #fdfcf4;
}

@media screen and (min-width: 640px) {
  #home {
    padding: 0 4.5rem;
    padding-bottom: 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto auto 0;
    height: calc(100vh - 8.5rem);
  }
  #home .content__text {
    height: 15vh;
    line-height: 15vh;
  }
  #home .box-text span {
    font-size: 2.5rem;
    line-height: 4rem;
  }
  #home .text {
    grid-template-columns: 1fr 55.5% 1fr;
    grid-template-rows: 1fr 2.5rem 4.9rem 6.7rem 1fr;
    grid-row-gap: 0;
    padding-bottom: 10%;
    z-index: 10;
  }
  #home .text #designerinfo {
    visibility: visible;
  }
  #home .text h1 {
    padding: 0;
  }
  #home .aside {
    grid-row: 2/2;
  }
  #home .aside div .dot {
    top: 0;
  }
  #home .aside div span {
    white-space: nowrap;
  }
  #home .line span {
    margin-top: 1.5rem;
  }
  @-webkit-keyframes line-grow {
    0% {
      width: 2px;
      height: 2px;
      border-radius: 50%;
      display: inline-block;
    }
    5% {
      border-radius: 0%;
    }
    100% {
      width: 50%;
      border-radius: 0;
    }
  }
  @keyframes line-grow {
    0% {
      width: 2px;
      height: 2px;
      border-radius: 50%;
      display: inline-block;
    }
    5% {
      border-radius: 0%;
    }
    100% {
      width: 50%;
      border-radius: 0;
    }
  }
  .proj-img .imgBox, .proj-img .imgBox2 {
    height: 46vh;
  }
  #portfolio .proj-img .imgBox, #portfolio .proj-img .imgBox2 {
    height: 46vh;
    min-height: 46vh;
  }
  #portfolio .proj-img .imgBox img, #portfolio .proj-img .imgBox2 img {
    width: 100%;
    height: 100%;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #home {
    height: 73vh;
    min-height: 50vh;
    grid-template-columns: 4.5rem 1fr 4.5rem;
  }
  #home .text {
    grid-column: 1/-1;
    grid-row: 1/3;
    height: 100%;
    padding-bottom: 0;
  }
  #home .text #designerinfo {
    bottom: 0;
  }
  #home .text .dynamic-text div {
    font-size: 4.9rem;
  }
  #home .text h3 {
    align-content: center;
  }
  #home .aside div {
    top: 44%;
  }
  #home .aside div span {
    font-size: 1.6rem;
  }
  #home .aside2 {
    grid-row: 1/3;
    grid-column: 3/4;
  }
  #home .line {
    grid-row: 3/4;
    grid-column: 1/-1;
  }
  @-webkit-keyframes line-grow {
    0% {
      width: 2px;
      height: 2px;
      border-radius: 50%;
      display: inline-block;
    }
    5% {
      border-radius: 0%;
    }
    100% {
      width: 50%;
      border-radius: 0;
    }
  }
  @keyframes line-grow {
    0% {
      width: 2px;
      height: 2px;
      border-radius: 50%;
      display: inline-block;
    }
    5% {
      border-radius: 0%;
    }
    100% {
      width: 50%;
      border-radius: 0;
    }
  }
}
@media only screen and (min-width: 1181px) {
  #portfolio .proj-img .imgBox img, #portfolio .proj-img .imgBox2 img {
    display: none;
  }
  #home {
    height: 100vh;
  }
  #home .content__text {
    padding-bottom: 0;
    height: 31vh;
    line-height: 31vh;
    max-width: 68vw;
  }
  #home .box-text {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  #home .box-text span {
    font-size: 2.1rem;
    line-height: auto;
  }
}
#about {
  padding: 2.5rem;
  padding-top: calc(2.5rem* 2);
  padding-bottom: calc(2.5rem* 2);
  min-height: auto;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: centespace-betweenr;
  position: relative;
  /* Tooltip container */
  /* Tooltip text */
  /* Show the tooltip text when you mouse over the tooltip container */
}
#about h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 5.5rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-weight: 800;
  font-size: 22vw;
  line-height: 22vw;
  padding: 0;
  margin: 0;
  opacity: 0.65;
}
#about .noisebg {
  height: 100%;
  width: 100vw;
  background: url(/img/noise.77eeb0e6.gif);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.028;
}
#about svg {
  padding-bottom: 7px;
  padding-bottom: 7px;
  padding-left: 0px;
  margin-left: 0;
  margin-right: 0;
}
#about .about-text {
  position: relative;
}
#about .about-text p {
  font-size: 2.3rem;
  line-height: 3.7rem;
}
#about .about-text .p1 {
  margin-top: 4rem;
}
#about .about-text .p4 {
  margin-bottom: 4rem;
}
#about .about-text .p2,
#about .about-text .p3 {
  display: none;
}
#about .tooltip {
  position: relative;
  display: inline-block;
  text-decoration: underline;
}
#about .tooltip .tooltiptext {
  visibility: hidden;
  min-width: 111%;
  background-color: #171717;
  color: #fdfcf4;
  text-align: center;
  padding: 1rem;
  border-radius: 2px;
  position: absolute;
  z-index: 1;
  right: -69%;
  bottom: 80%;
  transition: all 0.3s ease-out 0s;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 300;
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
}
#about .tooltip:hover .tooltiptext {
  visibility: visible;
}
#about .cta .mail a {
  font-size: 16px;
  font-weight: 500;
}
#about .cta svg {
  width: 3rem;
  padding-bottom: 0;
  padding-left: 0px;
  margin-left: 2rem;
  margin-right: 0;
  fill: #171717;
}
#about .talk {
  font-size: 13vw;
  line-height: 13vw;
  font-weight: 800;
  margin-top: 6rem;
  text-transform: uppercase;
  -webkit-text-fill-color: #171717;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #171717;
  transition: all 0.3s ease-out 0s;
}
#about .talk svg {
  fill: #171717;
  stroke: #171717;
  stroke-width: 2px;
  transition: all 0.3s ease-out 0s;
}

@media screen and (min-width: 640px) {
  #contact {
    padding: 4.5rem;
    padding-top: calc(4.5rem* 2);
    padding-bottom: calc(4.5rem* 2);
    background-color: #171717;
  }
  #about {
    padding: 4.5rem;
    padding-top: 4.5rem;
    padding-bottom: calc(4.5rem* 2);
    background-color: #fff;
  }
  #about h3 {
    font-size: 16vw;
    line-height: 16vw;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  #about .tooltip .tooltiptext {
    right: -62%;
  }
  #about svg {
    margin-right: 7px;
  }
  #about .talk {
    font-size: 9rem;
    line-height: 9rem;
  }
  #about .cta .mail a {
    font-size: 2.5rem;
    font-weight: 500;
  }
  #about .cta svg {
    width: 4rem;
  }
  #about .about-text {
    z-index: 10;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #about .about-text p {
    font-size: 2.5rem;
    line-height: 5rem;
  }
  #about .about-text .p2,
#about .about-text .p3 {
    display: block;
  }
}
@media only screen and (min-width: 1025px) {
  #about .about-text p {
    font-size: 2.5rem;
    line-height: 4.2rem;
  }
  #about .about-text p a {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
            text-decoration-style: solid;
  }
}
@media only screen and (min-width: 1441px) {
  #about .about-text p {
    font-size: 3.4vh;
    line-height: 4.4vh;
  }
}
@media only screen and (min-width: 1681px) {
  #about .about-text p {
    font-size: 3rem;
    line-height: 5.2rem;
  }
}
#portfolio {
  padding: 2.5rem;
  padding-top: calc(2.5rem* 2);
  padding-bottom: calc(2.5rem* 2);
  display: grid;
  row-gap: 3rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  background-color: #040404;
  z-index: 0;
  position: relative;
}
#portfolio .modal__content .backto.modal-close {
  text-align: center;
  width: 100%;
  width: 100%;
  position: relative;
  right: auto;
  display: block;
}
#portfolio .modal__content .backto.modal-close span {
  text-transform: uppercase;
  letter-spacing: 5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fdfcf4;
  font-weight: 800;
  font-size: 7rem;
  line-height: 8rem;
  padding-bottom: 9rem;
  opacity: 0.6;
}
#portfolio .modal__content .backto.modal-close span:hover {
  transition: all 0.3s ease-out 0s;
  opacity: 1;
}
#portfolio .portfolio-maintitle h4 {
  display: none;
}
#portfolio .noisebg {
  background-image: url(/img/noise.77eeb0e6.gif);
  height: 100%;
  width: 100vw;
  position: absolute;
  left: 0;
  opacity: 0.019;
  top: 0;
}
#portfolio .imgBox,
#portfolio .imgBox2 {
  overflow: hidden;
}
#portfolio .imgBox img,
#portfolio .imgBox2 img {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
#portfolio .imgBox-small {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#portfolio .imgBox-small picture {
  display: flex;
}
#portfolio .imgBox-small img {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
#portfolio .imgBox-small img[alt~=hover] {
  display: none;
}
#portfolio .portfolio-maintitle {
  grid-column: 1/4;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
}
#portfolio .portfolio-maintitle h3 {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 5.5rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fdfcf4;
  font-weight: 800;
  font-size: 7.5rem;
  line-height: 7.5rem;
  padding: 0;
  margin: 0;
  opacity: 0.65;
}
#portfolio .portfolio-maintitle h4 {
  color: rgba(0, 0, 0, 0.34);
  position: absolute;
  top: 12px;
  left: 4rem;
  font-weight: 800;
  font-size: 7rem;
  z-index: -1;
}
#portfolio .viewmore {
  grid-column: 1/4;
  grid-row: 6/7;
}
#portfolio .project {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 25% 1fr 1fr 25%;
  grid-template-rows: auto auto auto auto;
  background-color: transparent;
  padding-top: calc(2.5rem* 2);
}
#portfolio .project.project1 {
  grid-row: 2/3;
  padding-top: 1rem;
}
#portfolio .project.project1 .proj-titles {
  text-align: right;
  position: relative;
  z-index: 10;
}
#portfolio .project.project1 .proj-text {
  text-align: right;
  padding-left: 1rem;
  padding-right: 1rem;
}
#portfolio .project.project2 {
  grid-row: 3/4;
}
#portfolio .project.project3 {
  grid-row: 4/5;
}
#portfolio .project.project3 .proj-titles {
  text-align: right;
}
#portfolio .project.project3 .proj-text {
  text-align: right;
}
#portfolio .project.project4 {
  grid-row: 5/6;
}
#portfolio .project .proj-titles {
  grid-column: 1/-1;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
}
#portfolio .project .proj-titles h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #79746d;
}
#portfolio .project .proj-titles h3 {
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
#portfolio .project .proj-text {
  grid-column: 1/-1;
  grid-row: 3/4;
  position: relative;
  z-index: 2;
}
#portfolio .project .proj-text p {
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 300;
  color: #fdfcf4;
  margin-top: 0;
  display: none;
}
#portfolio .project .proj-img {
  background-color: transparent;
  padding: 0px;
  min-height: 200px;
  grid-column: 1/-1;
  grid-row: 2/3;
  position: relative;
  z-index: 2;
  max-height: 37vh;
  height: 100%;
}
@-webkit-keyframes myModalSlideIn {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@keyframes myModalSlideIn {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@-webkit-keyframes myModalSlideIn1 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@keyframes myModalSlideIn1 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@-webkit-keyframes myModalSlideIn2 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@keyframes myModalSlideIn2 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@-webkit-keyframes myModalSlideIn3 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@keyframes myModalSlideIn3 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@-webkit-keyframes myModalSlideIn4 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
@keyframes myModalSlideIn4 {
  0% {
    transform: scaleY(10%);
    opacity: 0.95;
    background-color: #fff;
  }
  40% {
    transform: scaleY(100%);
    background-color: #fff;
    opacity: 1;
  }
  100% {
    background-color: #000;
  }
}
#portfolio .modal {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  height: 100vh;
  width: 100vw;
  z-index: 105;
  display: none;
  transform-origin: bottom center;
}
#portfolio .modal--is-open {
  display: block;
  -webkit-animation: myModalSlideIn 1.5s ease-in-out forwards;
          animation: myModalSlideIn 1.5s ease-in-out forwards;
  background-color: #fff;
  z-index: 3000;
}
#portfolio .project1-modal.modal--is-open {
  -webkit-animation: myModalSlideIn1 1.5s ease-in-out forwards;
          animation: myModalSlideIn1 1.5s ease-in-out forwards;
}
#portfolio .project2-modal.modal--is-open {
  -webkit-animation: myModalSlideIn2 1.5s ease-in-out forwards;
          animation: myModalSlideIn2 1.5s ease-in-out forwards;
}
#portfolio .project3-modal.modal--is-open {
  -webkit-animation: myModalSlideIn3 1.5s ease-in-out forwards;
          animation: myModalSlideIn3 1.5s ease-in-out forwards;
}
#portfolio .project4-modal.modal--is-open {
  -webkit-animation: myModalSlideIn4 1.5s ease-in-out forwards;
          animation: myModalSlideIn4 1.5s ease-in-out forwards;
}
#portfolio .modal .v-lines {
  display: none;
}
#portfolio .modal {
  padding: 2.5rem;
}
#portfolio .modal__content {
  height: 100%;
  position: relative;
}
#portfolio .modal .modal-close {
  display: inline-block;
  position: absolute;
  right: 2.5rem;
  z-index: 12;
}
#portfolio .modal .modal-close span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 12px;
  letter-spacing: 1px;
  display: none;
}
#portfolio .modal .modal-close .segments {
  height: 50px;
  width: 50px;
  display: block;
  position: relative;
  height: 20px;
  width: 20px;
}
#portfolio .modal .modal-close .segments .el1 {
  width: 24px;
  height: 2px;
  background-color: #fff;
  content: "";
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  position: absolute;
  transform: rotate(-45deg);
}
#portfolio .modal .modal-close .segments .el2 {
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  width: 24px;
  height: 2px;
  background-color: #fff;
  content: "";
  position: absolute;
  transform: rotate(45deg);
}
#portfolio .modal .detail-proj {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 640px) {
  #portfolio {
    padding: 4.5rem;
    padding-top: calc(4.5rem* 2);
    padding-bottom: calc(4.5rem* 2);
    display: grid;
    grid-template-columns: 25% 1fr 25%;
    z-index: unset;
  }
  #portfolio .modal .v-lines {
    z-index: 10;
  }
  #portfolio .portfolio-maintitle {
    grid-column: 1/3;
  }
  #portfolio .portfolio-maintitle h4 {
    color: rgba(0, 0, 0, 0.43);
    position: absolute;
    top: -36px;
    left: 0;
    font-weight: 800;
    font-size: 13.6rem;
    z-index: -1;
  }
  #portfolio .project {
    padding-top: 12.5rem;
  }
  #portfolio .project .proj-titles {
    grid-column: 1/-1;
    grid-row: 1/1;
  }
  #portfolio .project .proj-titles h3 {
    font-size: 5.1rem;
    line-height: 5.1rem;
    letter-spacing: 1px;
    margin-bottom: 1.8rem;
  }
  #portfolio .project .proj-img {
    grid-column: 1/-1;
    grid-row: 2/-1;
    min-height: 400px;
    overflow: hidden;
    min-height: 46vh;
  }
  #portfolio .project .proj-img .imgBox {
    height: 100%;
  }
  #portfolio .project .proj-text {
    grid-row: 3/4;
    grid-column: 1/3;
    z-index: 1;
    padding-top: 2rem;
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #portfolio .project .proj-text:before {
    content: "";
    display: block;
    height: 1px;
    background-color: #fdfcf4;
    width: 200px;
    position: absolute;
    top: -0.5rem;
  }
  #portfolio .project .proj-text p {
    font-weight: 300;
    display: block;
  }
  #portfolio .project.project1 .proj-titles, #portfolio .project.project3 .proj-titles {
    text-align: left;
  }
  #portfolio .project.project1 .proj-text:before, #portfolio .project.project3 .proj-text:before {
    right: 1rem;
    top: 0;
  }
  #portfolio .project.project2 .proj-titles, #portfolio .project.project4 .proj-titles {
    text-align: right;
  }
  #portfolio .project.project2 .proj-text, #portfolio .project.project4 .proj-text {
    grid-row: 3/4;
    grid-column: 3/5;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #portfolio .project.project2 .proj-titles, #portfolio .project.project4 .proj-titles {
    grid-column: 1/-1;
    z-index: 1;
  }
  #portfolio .project.project4 {
    padding-bottom: 5rem;
  }
  #portfolio .modal {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  #portfolio .modal .modal-close {
    right: 4.5rem;
  }
  #portfolio .modal .modal-close span {
    display: block;
  }
  #portfolio .modal .modal-close .segments {
    height: 43px;
    width: 43px;
    margin-top: 3px;
  }
  #portfolio .project .proj-img {
    z-index: unset;
  }
  #portfolio .imgBox-small {
    height: 100%;
  }
  #portfolio .portfolio-maintitle h3 {
    font-size: 12rem;
    line-height: 12rem;
    opacity: 0.8;
  }
}
@media only screen and (min-width: 1025px) {
  .outer-container #portfolio {
    padding: 4.5rem;
    padding-bottom: calc(4.5rem* 3);
  }
  .outer-container #portfolio .portfolio-maintitle {
    grid-column: 2/3;
    padding-bottom: 0;
    padding-top: 7rem;
  }
  .outer-container #portfolio .portfolio-maintitle h3 {
    font-size: 11rem;
  }
  .outer-container #portfolio .portfolio-maintitle h4 {
    color: #000;
    position: absolute;
    top: 0rem;
    left: 6%;
    font-weight: 800;
    font-size: 13.6rem;
    z-index: -1;
  }
  .outer-container #portfolio .project {
    padding-top: 0;
  }
  .outer-container #portfolio .project .proj-titles h3 {
    font-size: 5.7rem;
    line-height: 6.7rem;
  }
  .outer-container #portfolio .project .proj-titles h2 {
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .outer-container #portfolio .project.project1 .proj-img {
    min-height: 65vh;
  }
  .outer-container #portfolio .proj-text {
    grid-column: 4/-1;
  }
  .outer-container #portfolio.project2 .proj-title, .outer-container #portfolio.project4 .proj-title {
    grid-column: 3/-1;
  }
  .outer-container #portfolio.project2 .proj-text, .outer-container #portfolio.project4 .proj-text {
    grid-column: 1/2;
  }
}
@media only screen and (min-width: 1025px) {
  #portfolio {
    padding: 4.5rem;
    row-gap: 8rem;
  }
  #portfolio .modal__content picture img {
    width: auto;
    height: 93vh;
    max-width: 100%;
    box-sizing: border-box;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #portfolio .modal__content .topview picture img {
    width: 100%;
    height: auto;
    max-width: 100%;
    box-sizing: border-box;
  }
  #portfolio .project {
    height: 100vh;
  }
  #portfolio .project .proj-titles {
    padding: 5rem;
  }
  #portfolio .project .proj-img {
    min-height: 100vh;
    padding: 2.5rem 0;
    border: none;
  }
  #portfolio .project .proj-img .imgBox,
#portfolio .project .proj-img .imgBox2 {
    min-height: 300px;
    height: 100%;
  }
  #portfolio .project.project1 {
    height: 62vh;
    margin-top: 0;
  }
  #portfolio .project.project1 .proj-img {
    grid-column: 2/4;
    grid-row: 1/-1;
    min-height: 70.5vh;
    padding-top: 0;
  }
  #portfolio .project .proj-text {
    grid-column: 4/-1;
    grid-row: 4/4;
  }
  #portfolio .project .proj-text p {
    font-weight: 300;
    color: #d2d0c3;
  }
  #portfolio .project .proj-img {
    grid-column: 2/4;
    grid-row: 1/-1;
  }
  #portfolio .project.project2 .proj-titles, #portfolio .project.project4 .proj-titles {
    grid-column: 1/-1;
  }
  #portfolio .project.project2 .proj-text, #portfolio .project.project4 .proj-text {
    grid-column: 1/2;
    text-align: right;
    padding-right: 2rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
    grid-row: 4/4;
  }
  #portfolio .project.project2 .proj-text:before, #portfolio .project.project4 .proj-text:before {
    left: auto;
    top: auto;
    bottom: 0;
    right: 2rem;
    height: 1px;
  }
  #portfolio .project.project1 .proj-text, #portfolio .project.project3 .proj-text {
    text-align: left;
    padding-left: 2rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  #portfolio .project.project1 .proj-text:before, #portfolio .project.project3 .proj-text:before {
    right: auto;
    top: auto;
    left: 2rem;
    bottom: 0;
    height: 1px;
  }
}
@media screen and (min-width: 1280px) {
  .modal__content {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
  }
  .modal__content .snap {
    scroll-snap-align: start;
  }
  .modal__content.left {
    text-align: right;
    padding-right: 4.5rem;
  }
  .modal__content.left .words-p p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .modal__content.right {
    padding-left: 4.5rem;
  }
  .modal__content.right .words-p p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .modal__content .role_and_desc .text_block.left {
    text-align: right;
    padding-right: 4.5rem;
  }
  .modal__content .role_and_desc .text_block.left .words-p p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .modal__content .role_and_desc .text_block.right {
    padding-left: 4.5rem;
  }
  .modal__content .role_and_desc .text_block.right .words-p p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  #portfolio .project .proj-text p {
    font-size: 1.6rem;
  }
  .works_detail_content {
    border: 10px solid pink !important;
  }
}
.modal {
  z-index: 3000;
}

.modal__content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.modal__content {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.project1-modal,
.project2-modal,
.project3-modal,
.project4-modal {
  z-index: 2000;
}

.modal__content {
  overflow-y: auto;
}
.modal__content .works_detail {
  text-align: center;
}
.modal__content .works_detail_title {
  margin: calc(2.5rem* 2) 0;
  font-size: 3.5rem;
  letter-spacing: 2px;
}
.modal__content .works_detail_title h1 {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 3.7rem;
}
.modal__content .works_detail_subtitle {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal__content .works_detail_subtitle .company,
.modal__content .works_detail_subtitle .object {
  color: #79746d;
  font-size: 1.3rem;
  font-weight: 400;
}
.modal__content .works_detail_subtitle .line {
  display: inline-block;
  height: 1px;
  background-color: #79746d;
  width: 100px;
  margin: 1rem auto;
}
.modal__content .works_detail_contents .role_and_desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal__content .works_detail_contents .role_and_desc .text_block {
  width: 49%;
  text-align: left;
  padding: 2.5rem 1rem;
}
.modal__content .works_detail_contents .role_and_desc .text_block .heading-line p {
  font-size: 2.8rem;
}
.modal__content .works_detail_contents .role_and_desc .text_block .words-p p {
  font-weight: 300;
  font-size: 1.5rem;
  color: #d4d4d4;
}
.modal__content .works_detail_contents .wrapper_inner.image_view {
  padding-bottom: 6rem;
}
.modal__content picture img {
  width: 100%;
  height: auto;
  max-width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 640px) {
  .modal__content .works_detail_subtitle {
    flex-direction: row;
    margin: 1.5rem auto;
  }
  .modal__content .works_detail_title {
    margin: calc(4.5rem* 2) 0;
    font-size: 5.2rem;
    letter-spacing: 4px;
  }
  .modal__content .works_detail_title h1 {
    font-weight: 600;
    font-size: 6.5rem;
    line-height: normal;
  }
  .modal__content .works_detail_contents .role_and_desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal__content .works_detail_contents .role_and_desc .text_block {
    width: 49%;
    text-align: left;
    padding: calc(4.5rem* 2) 2rem;
  }
  .modal__content .works_detail_contents .role_and_desc .text_block .heading-line p {
    font-size: 4.1rem;
  }
  .modal__content .works_detail_contents .role_and_desc .text_block .words-p p {
    font-size: 1.6rem;
    color: #d4d4d4;
  }
  .modal__content .works_detail_contents .wrapper_inner.image_view {
    padding-bottom: 9rem;
  }
  .modal__content .works_detail_subtitle .line {
    margin: 0 1.5rem;
  }
}
@media screen and (min-width: 1181px) {
  #portfolio .modal {
    padding-bottom: 0;
  }
  .modal__content .works_detail_title {
    margin: calc(4.5rem* 2) 0;
    font-size: 6.3rem;
    letter-spacing: 4px;
    margin-top: 0;
    padding-top: 9rem;
  }
  .modal__content .works_detail_title h1 {
    font-weight: 600;
    font-size: 7rem;
  }
  .modal__content .works_detail_contents .wrapper_inner.image_view {
    padding-bottom: 16rem;
  }
  .modal__content .works_detail_contents .wrapper_inner.image_view img {
    opacity: 0.5;
    transition: all 0.3s ease-out 0s;
  }
  .modal__content .works_detail_contents .wrapper_inner.image_view:hover img {
    opacity: 1;
  }
  .modal__content .works_detail_contents .role_and_desc .text_block.left {
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */