@charset "UTF-8";
@import url("global.css");
/* ---------- Top ---------- */
#toparea {
  height: 600px;
  margin: 20px 20px 90px;
  position: relative;
  color: #fff;
}
#toparea::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: #111;
  animation: titlebg .7s ease-in-out .7s 1;
  animation-fill-mode: both;
}
#toparea .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#toparea .bg figure img {
  animation: titleimage .7s ease-in-out .1s 1;
  animation-fill-mode: both;
  object-position: 45% center;
}
#toparea .wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
}
#toparea .main {
  height: 100%;
  padding-top: 25px;
  align-content: center;
  position: relative;
  text-align: center;
}
#toparea .pagetitle {
  line-height: 1.5;
}
#toparea .pagetitle span {
  display: block;
}
#toparea .pagetitle .logo {
  width: 550px;
  margin: 0 auto 50px;
  animation: titlelogo .7s ease-in-out .5s 1;
  animation-fill-mode: both;
}
#toparea .pagetitle .logo img {
  width: 100%;
}
#toparea .pagetitle .title {
  font-size: clamp(16px, 3vw, 26px);
  animation: titletext .6s ease-in-out .7s 1;
  animation-fill-mode: both;
}

@keyframes titleimage {
  0% {
    opacity: 0;
    filter: blur(10px) brightness(5);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
@keyframes titlebg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .2;
  }
}
@keyframes titlelogo {
  0% {
    opacity: 0;
    filter: blur(10px);
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    filter: none;
    translate: 0;
  }
}
@keyframes titletext {
  0% {
    opacity: 0;
    filter: blur(10px);
    translate: 0 -10px;
  }
  100% {
    opacity: 1;
    filter: none;
    translate: 0;
  }
}
/* ---------- Concept ---------- */
.concept {
  position: relative;
  overflow: hidden;
  padding-block: 25px 35px;
  margin-bottom: 200px;
}
.concept .main {
  text-align: center;
}
.concept .main .title {
  line-height: 1.5;
  margin-bottom: 30px;
}
.concept .main .title span {
  display: block;
}
.concept .main .title .en {
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}
.concept .main .title .ja {
  font-size: clamp(20px, 3.8vw, 34px);
  padding-left: .5em;
}
.concept .main .text {
  line-height: 2;
  word-break: keep-all;
}
.concept .main .text p + p {
  margin-top: 35px;
}
.concept .image {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
}
.concept .image.image1 {
  top: 0;
  width: 490px;
  right: 50%;
  margin-right: 410px;
}
.concept .image.image2 {
  top: 105px;
  width: 510px;
  left: 50%;
  margin-left: 360px;
}
.concept .image.image3 {
  bottom: 0;
  width: 320px;
  right: 50%;
  margin-right: 350px;
}

/* ---------- Feature ---------- */
.feature {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
  text-align: left;
  margin-left: max(50px,calc((100% - 1660px) / 2));
}
.feature .featuretitle .title {
  position: sticky;
  top: 120px;
  white-space: nowrap;
  line-height: 1.5;
}
.feature .featuretitle .title span {
  display: block;
}
.feature .featuretitle .title .en {
  font-size: 14px;
}
.feature .featuretitle .title .ja {
  font-size: min(40px,3.3vw);
}
.feature .main {
  width: min(77%,calc(100% - 250px));
  counter-reset: count 0;
  container-type: inline-size;
}
.feature .main .section {
  counter-increment: count 1;
  min-height: 680px;
  box-sizing: border-box;
  padding: 60px min(110px,6vw) 80px;
  align-content: center;
  position: relative;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
}
.feature .main .section .bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.feature .main .section .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: .35;
  z-index: 0;
}
.feature .main .section + .section {
  margin-top: 25px;
}
.feature .main .section .text {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 790px;
}
.feature .main .section .text::before {
  content: counter(count,decimal-leading-zero);
  display: block;
  color: #c9c9c9;
  font-size: 26px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
  width: fit-content;
  margin-bottom: 25px;
  line-height: 1.4;
  padding-left: 1px;
  border-bottom: #c9c9c9 1px solid;
}
.feature .main .section .text .title {
  font-size: min(28px,2.5vw);
  line-height: 1.5;
  margin-bottom: 30px;
}
.feature .main .section .text p:not([class]) {
  font-size: min(17px,1.6vw);
  margin-top: 30px;
  letter-spacing: 0;
}
@container (max-width:730px) {}
/* ---------- Works ---------- */
#works {
  --color: #E9E8E1;
  background-color: var(--color);
  padding-block: 100px;
  counter-reset: casecount 0;
  margin-bottom: 120px;
}
#works .sectitle {
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.6;
}
#works .sectitle .en {
  display: block;
  letter-spacing: .08em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 5vw, 40px);
}
#works .sectitle .ja {
  display: flex;
  justify-content: center;
  font-size: 90%;
  gap: 5px;
}
#works .sectitle .ja::before {
  content: "［";
}
#works .sectitle .ja::after {
  content: "］";
}
#works .info {
  text-align: center;
  margin-bottom: 70px;
  word-break: keep-all;
}
#works .article {
  counter-increment: casecount 1;
}
#works .article + .article {
  margin-top: 150px;
}
#works .article .mainphoto {
  aspect-ratio: 5 / 2.1;
}
#works .article .mainphoto img {
  border-radius: 8px;
}
#works .article .main {
  padding-inline: min(50px,4vw);
  margin-top: -12px;
}
#works .article .number {
  background-color: #4A4234;
  color: #fff;
  border-radius: 3px;
  width: 170px;
  padding-block: 5px;
  margin-bottom: 30px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  position: relative;
  text-align: center;
  z-index: 1;
}
#works .article .number::after {
  content: counter(casecount,decimal-leading-zero);
  padding-left: 5px;
}
#works .article .titleblock {
  display: flex;
  align-items: flex-start;
  width: 100%;
  column-gap: 40px;
}
#works .article .titleblock .title {
  width: 42%;
  font-size: min(28px,2.5vw);
  flex-shrink: 0;
  margin-bottom: 20px;
  line-height: 1.6;
}
#works .article .titleblock .koji {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  font-size: 14px;
  column-gap: 8px;
  margin-bottom: 30px;
}
#works .article .titleblock .koji dt {
  width: 100%;
  margin: 0 0 5px -8px;
}
#works .article .titleblock .koji dt::before {
  content: "［";
  padding-right: 3px;
}
#works .article .titleblock .koji dt::after {
  content: "］";
  padding-left: 3px;
}
#works .article .titleblock .koji dd {
  border: #999 1px solid;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 8px;
}
#works .article .text {
  line-height: 2;
  letter-spacing: 0;
}
#works .article .gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
#works .article .gallery li {
  position: relative;
}
#works .article .gallery li.before::before {
  content: "Before";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #4A4234;
  color: #fff;
  border-radius: 2px;
  padding: 3px 15px;
  z-index: 2;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
#works .article .gallery li.before a::before {
  opacity: .3;
}
#works .article .gallery li.before a img {
  filter: sepia(0.6) !important;
}
#works .article .gallery li a {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
#works .article .gallery li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  z-index: 1;
}
#works .article .gallery li a::after {
  content: "\f065";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  align-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color);
  border-top-left-radius: 3px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  line-height: 1;
  z-index: 2;
  transform-origin: right bottom;
}
#works .article .gallery li a img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #works .article .gallery li a:hover::before {
    opacity: .4;
  }
  #works .article .gallery li a:hover::after {
    scale: 1.3;
  }
  #works .article .gallery li a:hover img {
    filter: brightness(1.5);
  }
}

/* ---------- contact ---------- */
.contact {
  display: flex;
  gap: min(60px,4.6vw);
}
.contact .image {
  width: 50%;
  flex-shrink: 0;
}
.contact .image img {
  border-radius: 6px;
}
.contact .main {
  padding-top: 8px;
}
.contact .main .catch {
  font-size: min(28px,2.2vw);
  margin-bottom: 20px;
}
.contact .main .button {
  margin-top: 30px;
}
.contact .main .button a {
  display: block;
  max-width: 400px;
  position: relative;
  box-sizing: border-box;
  padding: 20px 65px 20px 25px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  line-height: 1.5;
}
.contact .main .button a::after {
  content: "";
  width: 30px;
  height: 18px;
  border-radius: 2px;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 14px auto;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  .contact .main .button a:hover {
    translate: 0 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  }
  .contact .main .button a:hover::after {
    translate: 10px 0;
    background-color: #999;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ---------- Top ---------- */
  #toparea {
    height: 420px;
    margin: 2vw 2vw 60px;
  }
  #toparea .main {
    padding-top: 20px;
  }
  #toparea .pagetitle .logo {
    width: 420px;
    margin: 0 auto 30px;
  }

  /* ---------- Concept ---------- */
  .concept {
    padding-block: 120px 180px;
    margin-bottom: 0;
  }
  .concept .main .title .en {
    margin-bottom: 15px;
  }
  .concept .main .text p + p {
    margin-top: 30px;
  }
  .concept .image {
    border-radius: 4px;
  }
  .concept .image.image1 {
    width: 230px;
    margin-right: 170px;
  }
  .concept .image.image2 {
    top: 50px;
    width: 300px;
    margin-left: 220px;
  }
  .concept .image.image3 {
    bottom: 0;
    width: 200px;
    right: auto;
    left: 50%;
    margin-inline: 80px 0;
  }

  /* ---------- Feature ---------- */
  .feature {
    display: block;
    margin-bottom: 80px;
    margin-left: 5vw;
  }
  .feature .featuretitle .title {
    margin-bottom: 50px;
  }
  .feature .featuretitle .title .ja {
    font-size: min(30px,6.5vw);
  }
  .feature .main {
    width: auto;
  }
  .feature .main .section {
    min-height: inherit;
    padding: 80px 6vw;
  }
  .feature .main .section + .section {
    margin-top: 30px;
  }
  .feature .main .section .text {
    max-width: none;
  }
  .feature .main .section .text .title {
    font-size: min(22px,3.8vw);
    margin: 0 -10px 30px 0;
    word-break: keep-all;
  }
  .feature .main .section .text p:not([class]) {
    font-size: 15px;
    margin-top: 20px;
  }

  /* ---------- Works ---------- */
  #works {
    padding-block: 80px;
    margin-bottom: 80px;
  }
  #works .sectitle {
    margin-bottom: 50px;
  }
  #works .info {
    margin-bottom: 60px;
  }
  #works .article + .article {
    margin-top: 100px;
  }
  #works .article .mainphoto {
    aspect-ratio: 5 / 2.5;
  }
  #works .article .mainphoto img {
    border-radius: 6px;
  }
  #works .article .number {
    width: 150px;
    margin-bottom: 30px;
  }
  #works .article .titleblock {
    display: block;
  }
  #works .article .titleblock .title {
    width: auto;
    font-size: min(24px,4.8vw);
    margin-bottom: 30px;
  }
  #works .article .titleblock .koji {
    align-items: center;
    margin-bottom: 30px;
    column-gap: 5px;
  }
  #works .article .titleblock .koji dt {
    width: auto;
    margin: 0 3px 0 -8px;
  }
  #works .article .titleblock .koji dd {
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  #works .article .gallery {
    margin-top: 40px;
    gap: 2.1vw;
  }

  /* ---------- contact ---------- */
  .contact {
    display: block;
  }
  .contact .image {
    width: auto;
    aspect-ratio: 5 / 3;
  }
  .contact .main {
    padding-top: 35px;
  }
  .contact .main .catch {
    font-size: min(22px,5vw);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ---------- Top ---------- */
  #toparea {
    height: 260px;
    margin: 2vw 2vw 60px;
  }
  #toparea .main {
    padding-top: 15px;
  }
  #toparea .pagetitle .logo {
    width: 240px;
    margin-bottom: 15px;
  }

  /* ---------- Concept ---------- */
  .concept {
    padding-block: 140px 160px;
    margin-bottom: 10px;
  }
  .concept .main .title .en {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .concept .main .text {
    line-height: 1.8;
    font-size: 13px;
  }
  .concept .main .text p + p {
    margin-top: 20px;
  }
  .concept .image {
    border-radius: 3px;
  }
  .concept .image.image1 {
    width: 160px;
    margin-right: 15%;
  }
  .concept .image.image2 {
    top: 40px;
    width: 180px;
    margin-left: 25%;
  }
  .concept .image.image3 {
    width: 170px;
    margin-left: 0;
  }

  /* ---------- Feature ---------- */
  .feature {
    margin-bottom: 60px;
  }
  .feature .featuretitle .title {
    margin-bottom: 30px;
  }
  .feature .featuretitle .title .en {
    font-size: 12px;
  }
  .feature .main .section {
    padding: 50px 6vw;
  }
  .feature .main .section .text::before {
    margin-bottom: 20px;
  }
  .feature .main .section .text .title {
    margin-bottom: 20px;
    font-weight: 500;
  }
  .feature .main .section .text p:not([class]) {
    font-size: 14px;
  }

  /* ---------- Works ---------- */
  #works {
    padding-block: 60px;
    margin-bottom: 60px;
  }
  #works .sectitle {
    margin-bottom: 40px;
  }
  #works .info {
    text-align: left;
    margin-bottom: 50px;
    word-break: normal;
  }
  #works .article + .article {
    margin-top: 70px;
  }
  #works .article .mainphoto {
    aspect-ratio: 5 / 3;
  }
  #works .article .mainphoto img {
    border-radius: 5px;
  }
  #works .article .main {
    margin-top: -12px;
  }
  #works .article .number {
    width: 100px;
    margin-bottom: 20px;
    padding: 3px;
  }
  #works .article .titleblock {
    display: block;
  }
  #works .article .titleblock .title {
    margin-bottom: 20px;
  }
  #works .article .titleblock .koji {
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 13px;
  }
  #works .article .titleblock .koji dt {
    width: 100%;
    margin: 0 0 5px -8px;
  }
  #works .article .titleblock .koji dd {
    font-size: 12px;
    padding: 2px 8px;
    margin-bottom: 5px;
  }
  #works .article .text {
    line-height: inherit;
  }
  #works .article .gallery {
    margin-top: 25px;
    gap: 4vw;
    grid-template-columns: repeat(2, 1fr);
  }
  #works .article .gallery li.before::before {
    top: 6px;
    left: 6px;
    padding: 2px 10px;
    font-size: 11px;
  }
  #works .article .gallery li a::after {
    font-size: 12px;
    width: 22px;
    height: 22px;
  }

  /* ---------- contact ---------- */
  .contact .image img {
    border-radius: 5px;
  }
  .contact .main {
    padding-top: 25px;
  }
  .contact .main .catch {
    margin-bottom: 15px;
  }
  .contact .main .button {
    margin-top: 25px;
  }
  .contact .main .button a {
    padding: 25px;
  }
  .contact .main .button a::after {
    right: 12px;
    top: auto;
    margin: 0;
    bottom: 12px;
  }
}
@media only screen and (max-width: 644px) and (any-hover: hover) {
  .contact .main .button a:hover::after {
    translate: 5px 0;
  }
}

/*# sourceMappingURL=renovation.css.map */
