@charset "UTF-8";
/*===================================
    Variables
===================================*/ /*===================================
    Common 
===================================*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  position: relative;
}

ul {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

/*-----------------------------------
    マウスストーカー
-----------------------------------*/
html, body {
  cursor: none;
}
@media screen and (max-width: 1199px) {
  html, body {
    cursor: default;
  }
}

.cursor,
.follower {
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1199px) {
  .cursor,
.follower {
    display: none !important;
  }
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #fff;
  z-index: 1001;
  mix-blend-mode: difference;
}
.cursor.is-hidden {
  opacity: 0;
}

.follower {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  mix-blend-mode: difference;
  z-index: 1000;
  will-change: transform, width, height;
  transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.3s ease, mix-blend-mode 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.follower.is-active {
  width: 140px;
  height: 140px;
  background-color: rgba(0, 0, 0, 0.7);
  mix-blend-mode: normal;
}
.follower span {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
  white-space: nowrap;
  position: absolute;
  transform: translateZ(0);
}
.follower.is-active span {
  opacity: 1;
}

/*===================================
    Loader
===================================*/
.loader_wrapp {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader_inner {
  overflow: hidden;
}

.loader_txt {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  letter-spacing: 0.05em;
  position: relative;
}

.loader_line {
  width: 100%;
  height: 2px;
  position: relative;
}

.loader_line_gray {
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background-color: #ddd;
}

.loader_line_black {
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background-color: #000;
}

/*-----------------------------------
    Inner Page Transition
-----------------------------------*/
.innerpage_transition {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: #fff;
}

/*===================================
    Header & Footer
===================================*/
/*-----------------------------------
    Header PC
-----------------------------------*/
header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  padding: 35px 45px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  header {
    padding: 25px 5% 0;
  }
}

.logo {
  line-height: 0;
}
.logo a {
  display: block;
}
@media screen and (max-width: 768px) {
  .logo img {
    width: 80px;
  }
}

.hdr_nav {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  display: flex;
}
.hdr_nav a {
  margin-left: 20px;
  display: block;
  line-height: 1;
  color: transparent;
  overflow: hidden;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media (hover: hover) {
  .hdr_nav a:hover {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  }
}
@media screen and (max-width: 768px) {
  .hdr_nav a {
    margin-left: 10px;
  }
}

/*-----------------------------------
    Header SP
-----------------------------------*/
/*---------- gnav_btn ----------*/
.gnav_btn {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 15px;
  right: 5%;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gnav_btn {
    display: block;
  }
}

.gnav_btn.is-open {
  right: 3%;
}

.gnav_btn::before,
.gnav_btn::after {
  display: block;
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.4s;
}

.gnav_btn::before {
  width: 50px;
  top: 18px;
}

.gnav_btn::after {
  width: 30px;
  bottom: 18px;
  left: 20px;
}

.gnav_btn.is-open::before {
  transform: translateY(6px) rotate(-45deg);
}

.gnav_btn.is-open::after {
  transform: translateY(-6px) rotate(45deg);
  width: 50px;
  left: 0;
}

/*---------- gnav ----------*/
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}
.gnav.is-open {
  display: block;
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 100;
}
.gnav.is-open .hdr_nav {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.gnav.is-open .hdr_nav li {
  overflow: hidden;
  margin: 40px 0;
}
.gnav.is-open .hdr_nav a {
  margin-left: 0;
  -webkit-animation: spGnav 0.4s 0.2s ease-out forwards;
          animation: spGnav 0.4s 0.2s ease-out forwards;
  transform: translateY(100%);
}

@-webkit-keyframes spGnav {
  to {
    transform: translateY(0px);
  }
}

@keyframes spGnav {
  to {
    transform: translateY(0px);
  }
}
/*---------- gnav展開時スクロールバー消去 ----------*/
body.noscroll {
  height: 100%;
  overflow: hidden;
}

/*---------- headerのmix-blend-modeが子要素全てに反映されてしまう時の対策 ----------*/
.gnav_bg {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  width: 100%;
  height: 100dvh;
  background-color: #000;
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.gnav_bg.is-open {
  opacity: 1;
  visibility: visible;
}

/*-----------------------------------
    Footer
-----------------------------------*/
.contact_btn {
  width: 100%;
  height: 500px;
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.contact_btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  padding: 0 5%;
  transition: all 0.2s ease-out;
}
.contact_btn a:hover {
  background-color: #242424;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .contact_btn {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .contact_btn {
    height: 200px;
    font-size: 3.5rem;
  }
}

.contact_btn_line {
  display: block;
  width: 200px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.contact_btn_line::before, .contact_btn_line::after {
  content: "";
  display: block;
  height: 100%;
  background-color: #fff;
  position: absolute;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.contact_btn_line::before {
  width: 100%;
  right: 0;
}
.contact_btn_line::after {
  width: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .contact_btn_line {
    width: 80px;
  }
  .contact_btn_line::after {
    display: none;
  }
}

@media (hover: hover) {
  .contact_btn a:hover .contact_btn_line::before {
    -webkit-animation-name: transformBfore;
            animation-name: transformBfore;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .contact_btn a:hover .contact_btn_line::after {
    -webkit-animation-name: transformAfter;
            animation-name: transformAfter;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  @-webkit-keyframes transformBfore {
    0% {
      width: 100%;
      transform-origin: right;
    }
    100% {
      width: 0;
      transform-origin: right;
    }
  }
  @keyframes transformBfore {
    0% {
      width: 100%;
      transform-origin: right;
    }
    100% {
      width: 0;
      transform-origin: right;
    }
  }
  @-webkit-keyframes transformAfter {
    0% {
      width: 0;
      transform-origin: left;
    }
    100% {
      width: 100%;
      transform-origin: left;
    }
  }
  @keyframes transformAfter {
    0% {
      width: 0;
      transform-origin: left;
    }
    100% {
      width: 100%;
      transform-origin: left;
    }
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  footer {
    justify-content: center;
    height: 50px;
    padding: 0;
  }
}

.ftr_nav {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  display: flex;
}
.ftr_nav a {
  margin-right: 20px;
  display: block;
  line-height: 1;
  color: transparent;
  overflow: hidden;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s;
}
.ftr_nav a:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}
@media screen and (max-width: 768px) {
  .ftr_nav {
    display: none;
  }
}

.ftr_copy {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #aeaeae;
}
@media screen and (max-width: 768px) {
  .ftr_copy {
    font-size: 1.2rem;
  }
}

/*===================================
    Home
===================================*/
/*-----------------------------------
    Main
-----------------------------------*/
.main_catch {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 10vw;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: right;
  margin: 250px 5% 100px 0;
  position: relative;
}
.main_catch span {
  display: inline-block;
  position: relative;
}
.main_catch .main_catch_first {
  margin-right: 15%;
  overflow: hidden;
}
.main_catch .main_catch_first span:last-child {
  left: -13px;
}
@media screen and (max-width: 768px) {
  .main_catch .main_catch_first span:last-child {
    left: -3px;
  }
}
.main_catch .main_catch_second {
  overflow: hidden;
}
.main_catch .main_catch_third {
  font-size: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .main_catch {
    margin: 250px 5% 70px 0;
  }
}
@media screen and (max-width: 768px) {
  .main_catch {
    font-size: 14.5vw;
    margin: 170px 5% 30px 0;
  }
  .main_catch .main_catch_third {
    font-size: 6.5vw;
    margin-top: 5px;
  }
}

.main_slide {
  width: 90%;
  margin: 0 auto 170px;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .main_slide {
    margin: 0 auto 120px;
  }
}
@media screen and (max-width: 768px) {
  .main_slide {
    width: 100%;
    margin: 0 auto 60px;
  }
}
.main_slide li img {
  width: 100%;
}

/*-----------------------------------
    About
-----------------------------------*/
#about {
  display: block;
  padding-top: 110px;
  margin-top: -110px;
}
@media screen and (max-width: 768px) {
  #about {
    padding-top: 70px;
    margin-top: -70px;
  }
}

.about_section {
  background-color: #000;
  color: #fff;
  padding: 170px 0;
  margin-bottom: 170px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .about_section {
    padding: 120px 0;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .about_section {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
}

.about_wrapp {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .about_wrapp {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .about_wrapp {
    display: block;
  }
}

.h2_01 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow: hidden;
  position: relative;
  top: -4px;
}
.h2_01 span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .h2_01 {
    top: 0;
    font-size: 4.5rem;
    margin-bottom: 40px;
  }
}

.about_right {
  width: 880px;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .about_right {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .about_right {
    width: 100%;
  }
}

.about_h3_01 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border-bottom: 1px solid #343434;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .about_h3_01 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}

.about_txt_01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about_txt_01 {
    margin-bottom: 30px;
  }
}

.about_h4_01 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.about_h4_01 span {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  top: -8px;
  margin: 0 5px 10px 0;
}

.about_inner .about_list {
  color: #6f6f6f;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.about_inner .about_list:first-of-type {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .about_inner .about_list:first-of-type {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about_inner .about_list {
    line-height: 1.4;
    margin-top: 4px;
  }
}

/*-----------------------------------
    Works
-----------------------------------*/
.works_thumb_section {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 170px;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .works_thumb_section {
    width: 90%;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .works_thumb_section {
    width: 90%;
    margin-bottom: 80px;
  }
}

.h2_02 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow: hidden;
}
.h2_02 span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .h2_02 {
    font-size: 4.5rem;
    margin-bottom: 40px;
  }
}

.category_nav_home {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .category_nav_home {
    display: block;
    margin-bottom: 30px;
  }
}

.category_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  /* @include variables.mobile {
      flex-wrap: wrap;
  } */
}
.category_nav a {
  display: block;
  height: 100%;
  padding: 3px 20px 5px;
  color: #aeaeae;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  transition: all 0.3s ease-out;
}
.category_nav a:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.category_nav.category_nav_home_mb {
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .category_nav.category_nav_home_mb {
    margin-bottom: 0px;
  }
}
.category_nav .active a {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}

.works_thumb_wrapp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.works_thumb_wrapp::after {
  content: "";
  display: block;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .works_thumb_wrapp {
    margin-bottom: 5px;
  }
}

.works_thumb {
  width: 360px;
  line-height: 1.4;
  margin-bottom: 30px;
  /* p {
      @include variables.font_inter(500, 1.4rem);
      color: variables.$txt_gray;

      @include variables.mobile {
          font-size: 1.4rem;
      }
  } */
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .works_thumb {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .works_thumb {
    width: 47.5%;
    margin-bottom: 25px;
  }
}
.works_thumb figure {
  overflow: hidden;
}
.works_thumb figure img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-out;
}
.works_thumb h3 {
  font-size: 1.8rem;
  padding: 15px 0 5px;
}
@media screen and (max-width: 768px) {
  .works_thumb h3 {
    font-size: 1.6rem;
    padding: 10px 0 5px;
  }
}
.works_thumb ul {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #aeaeae;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .works_thumb ul {
    font-size: 1.4rem;
  }
}
.works_thumb ul li::before {
  content: "#";
  display: inline-block;
}
@media (hover: hover) {
  .works_thumb a:hover img {
    transform: scale(1.1);
  }
}

.works_more_btn {
  width: 250px;
  margin: 0 auto;
  text-align: center;
  transition: all 0.2s ease-out;
}
@media (hover: hover) {
  .works_more_btn:hover {
    width: 270px;
  }
}
.works_more_btn a {
  display: block;
  position: relative;
  height: 60px;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 13px;
}

.btn_arrow {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 1px;
  margin: 4.8px 0;
  border-radius: 9999px;
  background-color: #000000;
  right: -60px;
}
.btn_arrow::before, .btn_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn_arrow::before {
  transform: rotate(45deg);
}
.btn_arrow::after {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .works_more_btn a:hover .btn_arrow {
    -webkit-animation: arrowSlide 0.4s ease-in-out;
            animation: arrowSlide 0.4s ease-in-out;
  }
}
@-webkit-keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(15px);
    opacity: 0;
  }
  51% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(15px);
    opacity: 0;
  }
  51% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*===================================
    Works
===================================*/
.page_title {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 10vw;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: right;
  margin: 250px 5% 100px 0;
  overflow: hidden;
}
.page_title span {
  display: inline-block;
  position: relative;
}
.page_title.works_title span:nth-of-type(1) {
  right: -10px;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .page_title.works_title span:nth-of-type(1) {
    right: -5px;
  }
}
@media screen and (max-width: 768px) {
  .page_title.works_title span:nth-of-type(1) {
    right: -2px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .page_title {
    margin: 250px 5% 70px 0;
  }
}
@media screen and (max-width: 768px) {
  .page_title {
    font-size: 12vw;
    margin: 170px 5% 60px 0;
  }
}

.category_nav_inner {
  width: 1200px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1199px) {
  .category_nav_inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .category_nav_inner {
    margin: 0 auto 30px;
  }
}

/*-----------------------------------
    Works Index
-----------------------------------*/
.wp-pagenavi {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 5px;
  line-height: 2;
  padding: 0 10px;
  transition: 0.03s;
  display: block;
  border-bottom: 1px solid transparent;
  position: relative;
}

.wp-pagenavi span.current::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1.8px;
}

.wp-pagenavi a.page {
  background: none;
}

@media (hover: hover) {
  .wp-pagenavi a.page::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -1.8px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .wp-pagenavi a.page:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 15px;
}

.wp-pagenavi .previouspostslink {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 10px;
  position: relative;
  top: -2px;
}

/*-----------------------------------
    Works Single
-----------------------------------*/
.works_txt_section {
  width: 90%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .works_txt_section {
    margin: 0 auto 50px;
  }
}

.client_name {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .client_name {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}

.works_txt_wrapp {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .works_txt_wrapp {
    display: block;
  }
}

.works_info {
  width: 40%;
  border-left: 1px solid #000;
  padding-left: 20px;
  /* dd {
      width: calc(100% - 80px);

      &:nth-of-type(2) {
          line-height: 1.6;
          margin: 10px 0;
      }

      a {
          position: relative;

          @media (hover: hover) {
              &::before {
                  position: absolute;
                  left: 0;
                  content: "";
                  width: 100%;
                  height: 1px;
                  background: #000000;
                  bottom: -6px;
                  transform: scale(0, 1);
                  transform-origin: right top;
                  transition: transform 0.3s;
              }

              &:hover::before {
                  transform: scale(1, 1);
                  transform-origin: left top;
              }
          }

          &::after {
              display: block;
              content: "";
              position: absolute;
              background: url(../images/common/icon_new_window.png) no-repeat;
              background-size: 100%;
              width: 12px;
              height: 12px;
              right: -18px;
              top: 4px;
          }
      }
  } */
}
.works_info dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1.4;
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.works_info dt {
  width: 80px;
  font-weight: 700;
}
.works_info dt:nth-of-type(2) {
  margin: 10px 0;
}
.works_info dd {
  width: calc(100% - 80px);
}
.works_info dd:nth-of-type(2) {
  margin: 10px 0;
}
.works_info dd a {
  display: inline-block; /* 改行時に影響を受けない */
  position: relative;
  white-space: normal; /* 通常の改行を許可 */
  word-break: break-all; /* 適切な単語で改行 */
}
@media (hover: hover) {
  .works_info dd a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s;
  }
  .works_info dd a:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.works_info dd a::after {
  content: "";
  display: inline-block; /* 行末に配置 */
  background: url(../images/common/icon_new_window.png) no-repeat center;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  white-space: nowrap; /* アイコンが独立して改行しないようにする */
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .works_info {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .works_info {
    width: 100%;
    margin-bottom: 40px;
  }
}

.works_overview {
  width: 60%;
}
.works_overview h3 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .works_overview {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 768px) {
  .works_overview {
    width: 100%;
  }
}

.works_img_section {
  padding: 120px 0;
  text-align: center;
  margin-bottom: 70px;
}
.works_img_section figure {
  width: 900px;
  margin: 0 auto 50px;
}
.works_img_section figure img {
  width: 100%;
  height: auto;
}
.works_img_section figure:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .works_img_section figure {
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .works_img_section figure {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .works_img_section {
    padding: 60px 0;
    margin-bottom: 30px;
  }
  .works_img_section figure {
    width: 90%;
  }
}

.page-nav {
  font-family: "Inter", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  width: 90%;
  margin: 0 auto 170px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .page-nav {
    margin: 0 auto 120px;
  }
}
@media screen and (max-width: 768px) {
  .page-nav {
    margin: 0 auto 80px;
  }
}

@media (hover: hover) {
  .page-nav a {
    position: relative;
  }
  .page-nav a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -6px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .page-nav a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
/*# sourceMappingURL=style.css.map */