@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Top
------------------------------ */
#toparea {
  display: flex;
  flex-direction: row-reverse;
  gap: min(80px,6vw);
  margin-bottom: 10px;
}
#toparea .rblock {
  width: 38%;
  text-align: left;
}
#toparea .rblock .image {
  margin-bottom: 60px;
  border-bottom-left-radius: 16px;
  overflow: hidden;
  height: 650px;
}
#toparea .rblock .image #topslider {
  height: 100%;
}
#toparea .rblock .catch {
  font-size: min(36px,3.4vw);
  line-height: 1.6;
  margin-bottom: 13px;
}
#toparea .rblock .en {
  font-size: 13px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
#toparea .lblock {
  flex-grow: 1;
  width: 50%;
  height: 800px;
  margin-top: 135px;
}
#toparea .lblock .image {
  height: 100%;
  overflow: hidden;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
#toparea .swiper-container {
  height: 100%;
}
#toparea .swiper-container .swiper-wrapper, #toparea .swiper-container .swiper-slide, #toparea .swiper-container .slide-img {
  height: 100%;
  position: relative;
}
#toparea .swiper-slide-active .slide-img img,
#toparea .swiper-slide-duplicate-active .slide-img img,
#toparea .swiper-slide-prev .slide-img img {
  animation: zoomout 6s ease-in-out 0s 1;
  animation-fill-mode: both;
}

@keyframes zoomout {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ------------------------------
 Latest
------------------------------ */
#latest {
  width: 730px;
  margin-left: 30px;
  border-bottom: #c9c9c9 1px solid;
  padding-block: 13px;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  font-size: 13px;
}
#latest .title {
  padding-left: 5px;
  width: 100px;
  flex-shrink: 0;
  position: relative;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
#latest .title::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #c9c9c9;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
#latest p {
  width: calc(100% - 120px);
}
#latest .news {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 35px;
  justify-content: space-between;
}
#latest .news .date {
  display: block;
  width: 95px;
  position: relative;
  flex-shrink: 0;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
#latest .news .date::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #c9c9c9;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
#latest .news .text {
  display: block;
  flex-shrink: 1;
  width: calc(100% - 110px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#latest a::after {
  content: "";
  width: 25px;
  height: 16px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 12px auto;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}

/* ------------------------------
 Event
------------------------------ */
#event {
  margin-top: 100px;
}
#event .titleblock {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
#event .titleblock .more {
  padding-bottom: 8px;
}
#event .event {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(65px,3.5vw);
  margin-bottom: 140px;
}
#event .event li {
  display: contents;
}
#event .event li.end a .image img {
  filter: grayscale(0.5) !important;
}
#event .event li.end a .image::before {
  opacity: 0.5 !important;
}
#event .event li.end a .image::after {
  content: "";
  position: absolute;
  background: url("../img/eventend.png") no-repeat center center;
  background-size: 188px auto;
  translate: 0 !important;
  opacity: 1 !important;
}
#event .event li a {
  display: grid;
  position: relative;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 5;
  height: 100%;
  line-height: 1.5;
  overflow: hidden;
}
@media (any-hover: hover) {
  #event .event li a:hover .image img {
    filter: brightness(1.5);
  }
  #event .event li a:hover .image::before {
    opacity: .8;
  }
  #event .event li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#event .event li a .image {
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
#event .event li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#event .event li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#event .event li a .image::after {
  content: "このイベントを見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
#event .event li a .staff {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  margin: 30px 10px -55px auto;
}
#event .event li a .staff.nostaff {
  box-sizing: border-box;
  border: #c9c9c9 1px solid;
  background: url("../img/nostaff.jpg") no-repeat center center;
  background-size: contain;
}
#event .event li a .title {
  font-size: 17px;
  font-weight: 500;
  padding-right: 70px;
  margin-bottom: 17px;
}
#event .event li a .date {
  font-size: 14px;
  padding-right: 70px;
  margin-bottom: 10px;
}
#event .event li a .place {
  font-size: 13px;
  display: flex;
  gap: 5px;
}
#event .event li a .place::before {
  content: "\f3c5";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
}

/* ------------------------------
 Concept
------------------------------ */
#concept {
  margin-bottom: 160px;
}
#concept .concepttop {
  position: relative;
  z-index: 2;
}
#concept .concepttop .main {
  height: 650px;
  align-content: center;
  margin-left: auto;
  width: calc( 50% - 9.5vw - 5.2vw );
}
#concept .concepttop .main .catch {
  font-size: min(30px,2.7vw);
  margin-block: 20px 25px;
}
#concept .concepttop .main .more {
  width: fit-content;
  margin: 40px 0 0 auto;
}
#concept .concepttop .image {
  position: absolute;
  top: 0;
  bottom: -60px;
  left: 0;
  width: calc( 50% + 9.5vw );
  border-top-right-radius: 200px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#concept .concepttop .image img {
  object-position: 70% center;
}
#concept .conceptlink {
  position: relative;
  padding-block: 130px 120px;
  color: #fff;
}
#concept .conceptlink::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: #1D1D1D;
  opacity: 50%;
}
#concept .conceptlink .bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}
#concept .conceptlink .wrapper {
  position: relative;
  z-index: 2;
}
#concept .conceptlink .mainlink li + li {
  border-top: rgba(255, 255, 255, 0.5) 1px solid;
}
#concept .conceptlink .mainlink li a {
  display: flex;
  justify-content: space-between;
  padding-block: 40px;
  padding-right: min(90px,5.5vw);
  position: relative;
}
#concept .conceptlink .mainlink li a::after {
  content: "";
  width: 30px;
  height: 18px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 15px auto;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  filter: invert(1) brightness(1.5);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #concept .conceptlink .mainlink li a:hover {
    backdrop-filter: blur(5px);
  }
  #concept .conceptlink .mainlink li a:hover::after {
    translate: 10px 0;
  }
}
#concept .conceptlink .mainlink li a .title {
  padding-left: 55px;
  line-height: 1.5;
  position: relative;
  font-size: 26px;
  font-weight: 500;
}
#concept .conceptlink .mainlink li a .title span {
  display: block;
  padding-top: 2px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  letter-spacing: .1em;
}
#concept .conceptlink .mainlink li a .title::before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 16px;
  left: 0;
}
#concept .conceptlink .mainlink li a .text {
  width: 455px;
  font-size: 85%;
}
#concept .conceptlink .sublink {
  display: flex;
  margin-top: 40px;
  gap: min(54px,4vw);
}
#concept .conceptlink .sublink li {
  flex: 1;
}
#concept .conceptlink .sublink li a {
  display: block;
  padding: 20px;
  text-align: center;
  border: rgba(255, 255, 255, 0.7) 1px solid;
  border-radius: 4px;
  font-size: 19px;
  font-weight: 500;
}
#concept .conceptlink .sublink li a:hover {
  backdrop-filter: blur(5px);
  border-color: #fff;
}

/* ------------------------------
 Works
------------------------------ */
#works {
  margin-bottom: 120px;
}
#works .inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-left: max(calc( (100% - 1660px) / 2 ), 50px);
}
#works .text {
  width: 310px;
  flex-shrink: 0;
}
#works .text .sec_title {
  margin-bottom: 28px;
}
#works ul.workslist {
  width: calc(100% - 310px - 4.7vw);
  display: grid;
  column-gap: 3.6vw;
  grid-template-columns: repeat(2, 1fr);
}
#works ul.workslist li {
  margin-bottom: 70px;
}
#works ul.workslist li:nth-of-type(even) a .image {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#works ul.workslist li a {
  display: block;
}
@media (any-hover: hover) {
  #works ul.workslist li a:hover .image img {
    filter: brightness(1.5);
  }
  #works ul.workslist li a:hover .image::before {
    opacity: .8;
  }
  #works ul.workslist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#works ul.workslist li a .image {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}
#works ul.workslist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#works ul.workslist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#works ul.workslist li a .image::after {
  content: "この住宅を見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
#works ul.workslist li a .title {
  padding-inline: 3%;
  text-align: right;
  line-height: 1.5;
}
#works ul.workslist li a .title .num::before {
  content: "#";
  padding-right: 2px;
}
#works ul.workslist li a .title .num::after {
  content: "-";
  padding-inline: 12px 3px;
}
#works .more {
  width: fit-content;
  margin: -10px 0 0 auto;
}

/* ------------------------------
 Modelhouse
------------------------------ */
#modelhouse {
  margin-bottom: 170px;
}
#modelhouse a {
  display: block;
  align-content: center;
  height: 440px;
  padding-inline: 8%;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
@media (any-hover: hover) {
  #modelhouse a:hover .bg::before {
    opacity: .7;
  }
  #modelhouse a:hover .text .more::after {
    translate: 10px 0;
  }
}
#modelhouse a .bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}
#modelhouse a .bg img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#modelhouse a .bg::before {
  content: "";
  background-color: #111;
  opacity: .5;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#modelhouse a .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-top: 20px;
}
#modelhouse a .sec_title .en::before {
  background-color: #fff;
}
#modelhouse a .text {
  padding-top: 6px;
  max-width: 48%;
}
#modelhouse a .text .more {
  width: fit-content;
  margin: 30px 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
#modelhouse a .text .more::after {
  content: "";
  width: 37px;
  height: 22px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 18px auto;
  filter: invert(1) brightness(1.5);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}

/* ------------------------------
 Voice
------------------------------ */
#voice {
  margin-bottom: 120px;
}
#voice .inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-left: max(calc( (100% - 1660px) / 2 ), 50px);
}
#voice .text {
  width: 310px;
  flex-shrink: 0;
}
#voice .text .sec_title {
  margin-bottom: 28px;
}
#voice .text .more {
  width: fit-content;
  margin: 40px 0 0 auto;
}
#voice .voicelist {
  width: calc(100% - 310px - 4.7vw);
}
#voice .voicelist .slick-list {
  padding: 0 20% 0 0 !important;
}
#voice .voicelist ul li {
  margin-right: min(3vw,38px);
}
#voice .voicelist ul li a {
  display: block;
  text-align: right;
  line-height: 1.5;
}
@media (any-hover: hover) {
  #voice .voicelist ul li a:hover .image img {
    filter: brightness(1.5);
  }
  #voice .voicelist ul li a:hover .image::before {
    opacity: .8;
  }
  #voice .voicelist ul li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#voice .voicelist ul li a .image {
  border-radius: 5px;
  border-top-left-radius: 100px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 20px;
  position: relative;
}
#voice .voicelist ul li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#voice .voicelist ul li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#voice .voicelist ul li a .image::after {
  content: "詳しく見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
#voice .voicelist ul li a .title {
  font-weight: 500;
}
#voice .voicelist ul li a .sub {
  font-size: 12px;
  margin-top: 10px;
}
#voice .carousel {
  position: relative;
  padding-bottom: 70px;
}
#voice .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 48px;
  right: max(calc( (100vw - 1660px) / 2 ), 50px);
  display: block;
  border-radius: 50%;
  border: #999 1px solid;
  background-color: inherit;
  cursor: pointer;
  overflow: hidden;
  text-indent: -200px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#voice .slick-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000 url("../img/arrow.png") no-repeat center center;
  background-size: 20px auto;
  filter: invert(1);
  opacity: .8;
  mix-blend-mode: multiply;
}
#voice .slick-arrow.slick-prev {
  margin-right: 70px;
}
#voice .slick-arrow.slick-prev::before {
  scale: -1 1;
}
@media (any-hover: hover) {
  #voice .slick-arrow:hover {
    background-color: #E8ECEE;
  }
  #voice .slick-arrow:hover::before {
    opacity: 1;
  }
}

/* ------------------------------
 Plan
------------------------------ */
#plan {
  background-color: #E8ECEE;
  padding-block: 100px 80px;
}
#plan .titleblock {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}
#plan .titleblock .text {
  width: 410px;
}
#plan .titleblock .text dt {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 5px;
}
#plan .titleblock .text dd {
  font-size: 14px;
}
#plan ul.planlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(36px,2.8vw);
  margin-bottom: 30px;
}
#plan ul.planlist li {
  display: contents;
}
#plan ul.planlist li a {
  display: grid;
  position: relative;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
  height: 100%;
  line-height: 1.5;
  overflow: hidden;
  text-align: center;
}
@media (any-hover: hover) {
  #plan ul.planlist li a:hover .image img {
    filter: brightness(1.5);
  }
  #plan ul.planlist li a:hover .image::before {
    opacity: .8;
  }
  #plan ul.planlist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#plan ul.planlist li a .image {
  aspect-ratio: 3 / 2;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
#plan ul.planlist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#plan ul.planlist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#plan ul.planlist li a .image::after {
  content: "詳しく見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
#plan ul.planlist li a .price {
  font-weight: 500;
  margin-bottom: 5px;
}
#plan ul.planlist li a .sub {
  font-size: 14px;
}
#plan .more {
  width: fit-content;
  margin-left: auto;
}

/* ------------------------------
 Renovation
------------------------------ */
#renovation {
  margin-block: 150px;
}
#renovation a {
  display: block;
  align-content: center;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
@media (any-hover: hover) {
  #renovation a:hover .bg::before {
    opacity: .5;
  }
  #renovation a:hover .more::after {
    translate: 10px 0;
  }
}
#renovation a .bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}
#renovation a .bg img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#renovation a .bg::before {
  content: "";
  background-color: #222;
  opacity: .35;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#renovation a .inner {
  position: relative;
  max-width: 1100px;
  z-index: 1;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}
#renovation a .main {
  text-align: center;
}
#renovation a .main .logo {
  width: 470px;
}
#renovation a .main .title {
  font-size: 23px;
  margin-top: 30px;
}
#renovation a .main .title span {
  display: block;
  font-size: 85%;
}
#renovation a .more {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 38px auto 0;
  gap: 12px;
  align-items: center;
}
#renovation a .more::after {
  content: "";
  width: 34px;
  height: 20px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 16px auto;
  filter: invert(1) brightness(1.5);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}

/* ------------------------------
 About
------------------------------ */
#about {
  position: relative;
  margin-bottom: 130px;
}
#about .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 42%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#about .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#about .wrapper::after {
  content: "";
  display: block;
  height: 910px;
}
#about .main {
  padding-block: 30px 60px;
  width: 50%;
  flex-shrink: 0;
}
#about .main .titleblock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#about .main .titleblock .title {
  width: 252px;
  max-width: 40%;
}
#about .main .titleblock .subimage {
  aspect-ratio: 5 / 3;
  border-radius: 6px;
  overflow: hidden;
  width: 400px;
  max-width: 50%;
}
#about .main .sec_title {
  margin-bottom: 20px;
}
#about .main ul.link {
  margin-top: 40px;
  border-top: #c9c9c9 1px solid;
}
#about .main ul.link li {
  border-bottom: #c9c9c9 1px solid;
}
#about .main ul.link li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 23px 25px;
  font-size: 18px;
  font-weight: 500;
}
#about .main ul.link li a::after {
  content: "";
  width: 36px;
  height: 21px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 16px auto;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #about .main ul.link li a:hover::after {
    translate: 12px 0;
    background-color: #999;
  }
}

/* ------------------------------
 Blog
------------------------------ */
.topicsblock {
  display: flex;
  gap: min(120px,6.5vw);
  margin-bottom: 80px;
}
.topicsblock section {
  flex: 1;
}
.topicsblock section .titleblock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.topicsblock section .titleblock .subsec_title {
  font-size: 23px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}

#blog ul.bloglist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: min(48px,2.8vw);
}
#blog ul.bloglist li {
  display: contents;
}
#blog ul.bloglist li a {
  margin-bottom: 50px;
  display: grid;
  position: relative;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
  height: 100%;
  line-height: 1.5;
  overflow: hidden;
}
@media (any-hover: hover) {
  #blog ul.bloglist li a:hover .image .thumb img {
    filter: brightness(1.5);
  }
  #blog ul.bloglist li a:hover .image .thumb::before {
    opacity: .8;
  }
  #blog ul.bloglist li a:hover .image .thumb::after {
    opacity: 1;
    translate: 0;
  }
}
#blog ul.bloglist li a .image {
  position: relative;
  margin-bottom: 26px;
}
#blog ul.bloglist li a .image .thumb {
  aspect-ratio: 7 / 4;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
#blog ul.bloglist li a .image .thumb img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#blog ul.bloglist li a .image .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#blog ul.bloglist li a .image .thumb::after {
  content: "この記事を読む";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
#blog ul.bloglist li a .image .author {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  right: 4%;
  overflow: hidden;
  bottom: -12px;
  z-index: 2;
}
#blog ul.bloglist li a .title {
  letter-spacing: 0;
  margin-bottom: 15px;
  font-weight: 500;
}
#blog ul.bloglist li a .data {
  border-top: #c9c9c9 1px solid;
  padding: 12px 10px 0 0;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0;
}
#blog ul.bloglist li a .data .date {
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
#blog ul.bloglist li a .data .cat::before {
  content: "#";
  padding-right: 3px;
}

#news ul.newslist {
  border-top: #c9c9c9 1px solid;
}
#news ul.newslist li {
  border-bottom: #c9c9c9 1px solid;
}
#news ul.newslist li a, #news ul.newslist li div {
  display: block;
  position: relative;
  padding: 20px 30px 20px 10px;
}
#news ul.newslist li a::after {
  content: "\f105";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  opacity: .5;
}
#news ul.newslist li a .text {
  text-decoration-color: rgba(74, 66, 52, 0.2);
  text-decoration-line: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}
#news ul.newslist li .date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  margin-bottom: 5px;
}
#news ul.newslist li .date::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #4A4234;
  display: block;
}
#news ul.newslist li .text {
  display: block;
}

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

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Works
  ------------------------------ */
  #works .text {
    width: 24vw;
  }
  #works ul.workslist {
    width: calc(100% - 24vw - 4.5vw);
  }
  #works ul.workslist li {
    margin-bottom: 5vw;
  }
  #works ul.workslist li a .image {
    margin-bottom: 12px;
  }
  #works ul.workslist li a .title {
    font-size: 15px;
  }
  #works ul.workslist li a .title .num::after {
    padding-inline: 10px 3px;
  }

  /* ------------------------------
   Voice
  ------------------------------ */
  #voice .text {
    width: 24vw;
  }
  #voice .voicelist {
    width: calc(100% - 24vw - 4.5vw);
  }

  /* ------------------------------
   Renovation
  ------------------------------ */
  /* ------------------------------
   About
  ------------------------------ */
  #about .image {
    width: 44%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Top
  ------------------------------ */
  #toparea {
    overflow: hidden;
    gap: 8vw;
  }
  #toparea .rblock {
    width: 36%;
  }
  #toparea .rblock .image {
    margin-bottom: 50px;
    height: 400px;
  }
  #toparea .rblock .catch {
    font-size: 3.3vw;
  }
  #toparea .lblock {
    height: 520px;
    margin-top: 140px;
  }

  /* ------------------------------
   Latest
  ------------------------------ */
  #latest {
    width: auto;
    margin-inline: 5vw;
  }
  #latest .title {
    width: 95px;
  }
  #latest p {
    width: calc(100% - 113px);
  }

  /* ------------------------------
   Event
  ------------------------------ */
  #event {
    margin-top: 80px;
  }
  #event .event {
    margin-bottom: 100px;
  }
  #event .event li.end a .image::after {
    background-size: 70% auto;
  }
  #event .event li a .staff {
    width: 40px;
    height: 40px;
    margin: 20px 0 -40px auto;
  }
  #event .event li a .title {
    font-size: 16px;
    padding-right: 45px;
    margin-bottom: 15px;
  }
  #event .event li a .date {
    font-size: 13px;
    padding-right: 45px;
    margin-bottom: 8px;
  }
  #event .event li a .place {
    font-size: 12px;
    gap: 4px;
  }
  #event .event li a .place::before {
    font-size: 14px;
  }

  /* ------------------------------
   Concept
  ------------------------------ */
  #concept {
    margin-bottom: 100px;
  }
  #concept .concepttop .main {
    height: 620px;
    width: calc( 50% - 5vw - 6vw );
  }
  #concept .concepttop .main .catch {
    font-size: min(24px,3.2vw);
    margin-block: 15px 25px;
  }
  #concept .concepttop .image {
    width: calc( 50% + 5vw );
  }
  #concept .conceptlink {
    padding-block: 100px 80px;
  }
  #concept .conceptlink .mainlink li a {
    display: block;
    padding-right: 0;
  }
  #concept .conceptlink .mainlink li a::after {
    top: 50px;
    margin-top: 0;
  }
  #concept .conceptlink .mainlink li a .title {
    padding-left: 40px;
    font-size: min(26px,5vw);
    margin-bottom: 20px;
  }
  #concept .conceptlink .mainlink li a .title span {
    padding-top: 0;
  }
  #concept .conceptlink .mainlink li a .title::before {
    width: 20px;
    top: 16px;
  }
  #concept .conceptlink .mainlink li a .text {
    width: auto;
  }

  /* ------------------------------
   Works
  ------------------------------ */
  #works {
    margin-bottom: 100px;
  }
  #works .inner {
    display: block;
    margin-inline: 5vw;
  }
  #works .text {
    width: auto;
  }
  #works .text .sec_title {
    margin-bottom: 20px;
  }
  #works ul.workslist {
    width: auto;
    column-gap: 4vw;
    margin-top: 40px;
  }
  #works ul.workslist li {
    margin-bottom: 5vw;
  }
  #works ul.workslist li:nth-of-type(even) a .image {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  #works ul.workslist li a .image {
    margin-bottom: 10px;
  }
  #works ul.workslist li a .title {
    padding-inline: 1%;
    font-size: 14px;
  }
  #works ul.workslist li a .title .num::after {
    padding-inline: 8px 3px;
  }

  /* ------------------------------
   Modelhouse
  ------------------------------ */
  #modelhouse {
    margin-bottom: 100px;
  }
  #modelhouse a {
    height: 420px;
    padding-inline: 8%;
  }
  #modelhouse a .inner {
    display: block;
    padding-top: 0;
  }
  #modelhouse a .text {
    padding-top: 15px;
    max-width: none;
  }

  /* ------------------------------
   Voice
  ------------------------------ */
  #voice {
    margin-bottom: 90px;
  }
  #voice .inner {
    display: block;
    margin-left: 0;
    padding-inline: 5vw;
  }
  #voice .text {
    width: auto;
  }
  #voice .text .sec_title {
    margin-bottom: 20px;
  }
  #voice .text .more {
    margin: 20px 0 0 auto;
  }
  #voice .voicelist {
    width: auto;
    margin: 40px -5vw 0 0;
  }
  #voice .voicelist .slick-list {
    padding: 0 15% 0 0 !important;
  }
  #voice .voicelist ul li {
    margin-right: 5vw;
  }
  #voice .voicelist ul li a {
    text-align: left;
  }
  #voice .voicelist ul li a .sub {
    margin-top: 5px;
  }
  #voice .slick-arrow.slick-prev {
    right: 50%;
    margin-right: 10px;
  }
  #voice .slick-arrow.slick-next {
    right: auto;
    left: 50%;
    margin-right: 0;
    margin-left: 10px;
  }

  /* ------------------------------
   Plan
  ------------------------------ */
  #plan {
    padding-block: 70px;
  }
  #plan .titleblock {
    display: block;
  }
  #plan .titleblock .text {
    margin-top: 20px;
    width: auto;
  }
  #plan .titleblock .text dt {
    font-size: 18px;
    margin-bottom: 5px;
  }
  #plan .titleblock .text dd {
    font-size: 14px;
  }
  #plan ul.planlist li a .sub {
    font-size: 12px;
  }

  /* ------------------------------
   Renovation
  ------------------------------ */
  #renovation {
    margin-block: 80px 90px;
  }
  #renovation a {
    height: 420px;
  }
  #renovation a .main .logo {
    width: 50vw;
    margin-inline: auto;
  }
  #renovation a .main .title {
    font-size: 17px;
    margin-top: 30px;
  }
  #renovation a .more {
    right: 20px;
    bottom: 20px;
  }

  /* ------------------------------
   About
  ------------------------------ */
  #about {
    margin-bottom: 100px;
  }
  #about .image {
    bottom: auto;
    height: 48vw;
    width: 56%;
  }
  #about .wrapper {
    display: block;
  }
  #about .wrapper::after {
    display: none;
  }
  #about .main {
    padding-block: 50px 0;
    width: auto;
  }
  #about .main .titleblock {
    width: 33%;
    display: block;
    margin-bottom: 30px;
    padding-left: 10px;
  }
  #about .main .titleblock .title {
    width: auto;
    max-width: 250px;
    margin-bottom: 50px;
  }
  #about .main .titleblock .subimage {
    border-radius: 4px;
    width: auto;
    max-width: none;
  }
  #about .main ul.link {
    margin-top: 30px;
  }
  #about .main ul.link li a {
    padding: 20px 20px 20px 25px;
    font-size: 17px;
  }

  /* ------------------------------
   Blog
  ------------------------------ */
  .topicsblock {
    display: block;
    margin-bottom: 100px;
  }
  .topicsblock section .titleblock {
    margin-bottom: 30px;
  }

  #blog {
    margin-bottom: 30px;
  }
  #blog ul.bloglist {
    column-gap: 5.6vw;
  }
  #blog ul.bloglist li a {
    margin-bottom: 40px;
  }
  #blog ul.bloglist li a .image {
    margin-bottom: 20px;
  }
  #blog ul.bloglist li a .image .author {
    width: 40px;
    height: 40px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Top
  ------------------------------ */
  #toparea {
    display: block;
    margin-bottom: 10px;
  }
  #toparea .rblock {
    width: auto;
    padding-left: 5vw;
  }
  #toparea .rblock .image {
    width: 42%;
    margin: 0 0 -15px auto;
    height: 180px;
    border-bottom-left-radius: 8px;
  }
  #toparea .rblock .catch {
    font-size: min(5.2vw,30px);
    margin-bottom: 8px;
  }
  #toparea .rblock .en {
    font-size: min(13px,2.8vw);
  }
  #toparea .lblock {
    width: auto;
    padding-right: 5vw;
    height: 370px;
    margin-top: 40px;
  }
  #toparea .lblock .image {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  /* ------------------------------
   Latest
  ------------------------------ */
  #latest {
    padding-block: 10px 8px;
    display: block;
    font-size: 13px;
  }
  #latest .title {
    padding: 0 1px;
    width: fit-content;
    border-bottom: #4A4234 1px solid;
    margin-bottom: 12px;
  }
  #latest .title::after {
    display: none;
  }
  #latest p {
    width: auto;
  }
  #latest .news {
    display: block;
  }
  #latest .news .date {
    width: auto;
    font-size: 11px;
  }
  #latest .news .date::after {
    display: none;
  }
  #latest .news .text {
    display: block;
    width: 100%;
    font-size: 13px;
  }
  #latest a::after {
    top: 23px;
    margin-top: 0;
  }

  /* ------------------------------
   Event
  ------------------------------ */
  #event {
    margin-top: 60px;
  }
  #event .titleblock .more {
    padding-bottom: 5px;
  }
  #event .event {
    display: block;
    margin-bottom: 100px;
  }
  #event .event li {
    display: block;
    margin-bottom: 40px;
  }
  #event .event li.end a .image::after {
    background-size: 40% auto;
  }
  #event .event li a {
    display: block;
  }
  #event .event li a .staff {
    margin: 20px 0 -40px auto;
  }
  #event .event li a .title {
    margin-bottom: 10px;
  }
  #event .event li a .date {
    font-size: 12px;
    margin-bottom: 5px;
  }

  /* ------------------------------
   Concept
  ------------------------------ */
  #concept {
    margin-bottom: 80px;
  }
  #concept .concepttop .main {
    height: auto;
    width: auto;
  }
  #concept .concepttop .main .sec_title .en {
    justify-content: flex-start;
  }
  #concept .concepttop .main .catch {
    font-size: min(28px,5.4vw);
    margin-block: 10px 20px;
    font-weight: 500;
  }
  #concept .concepttop .main .text br {
    display: none;
  }
  #concept .concepttop .main .more {
    margin: 20px 0 0 auto;
  }
  #concept .concepttop .image {
    position: relative;
    height: 360px;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    margin: 30px 5vw -55px 0;
    border-top-right-radius: 160px;
  }
  #concept .conceptlink {
    padding-block: 80px 70px;
  }
  #concept .conceptlink .mainlink li a {
    padding-block: 32px;
  }
  #concept .conceptlink .mainlink li a::after {
    width: 25px;
    height: 16px;
    background-size: 12px auto;
    top: calc( 26px + 3vw );
  }
  #concept .conceptlink .mainlink li a .title {
    margin-bottom: 16px;
  }
  #concept .conceptlink .mainlink li a .title::before {
    top: 3vw;
  }
  #concept .conceptlink .sublink {
    display: block;
    margin-top: 0;
  }
  #concept .conceptlink .sublink li {
    margin-top: 18px;
  }
  #concept .conceptlink .sublink li a {
    padding: 14px;
    font-size: 15px;
  }

  /* ------------------------------
   Works
  ------------------------------ */
  .sec_title .en {
    justify-content: center;
  }
  .sec_title .ja {
    text-align: center;
  }
  .sec_title + p:not([class]) {
    margin-inline: 9vw;
  }
  .sec_title + p:not([class]) br {
    display: none;
  }

  #works {
    margin-bottom: 75px;
  }
  #works ul.workslist {
    margin-top: 40px;
    display: block;
  }
  #works ul.workslist li {
    margin-bottom: 35px;
  }
  #works ul.workslist li a .image {
    border-radius: 3px !important;
    margin-bottom: 8px;
  }
  #works ul.workslist li a .title {
    padding-inline: 0;
  }
  #works ul.workslist li a .title .num::after {
    padding-inline: 5px 3px;
  }
  #works .more {
    margin: -2px 0 0 auto;
  }

  /* ------------------------------
   Modelhouse
  ------------------------------ */
  #modelhouse {
    margin: 0 -5vw 75px;
  }
  #modelhouse a {
    padding-inline: 5vw;
    border-radius: 0;
  }
  #modelhouse a .bg::before {
    opacity: .6;
  }
  #modelhouse a .text {
    padding-top: 15px;
    max-width: none;
    margin-inline: 9vw;
  }
  #modelhouse a .text .more {
    margin: 30px auto 0;
    gap: 8px;
  }
  #modelhouse a .text .more::after {
    width: 25px;
    height: 16px;
    background-size: 12px auto;
  }

  /* ------------------------------
   Voice
  ------------------------------ */
  #voice {
    margin-bottom: 65px;
  }
  #voice .inner {
    padding-inline: 5vw;
  }
  #voice .text {
    width: auto;
    flex-shrink: 0;
  }
  #voice .text .more {
    margin: 20px auto 0;
  }
  #voice .voicelist {
    margin: 30px -5vw 0;
  }
  #voice .voicelist .slick-list {
    margin-left: 8%;
    padding: 0 8% 0 0 !important;
  }
  #voice .voicelist ul li {
    margin-inline: 2.6vw;
  }
  #voice .voicelist ul li a .image {
    border-radius: 5px;
    border-top-left-radius: 60px;
    margin-bottom: 15px;
  }
  #voice .carousel {
    padding-bottom: 60px;
  }
  #voice .slick-arrow {
    width: 36px;
    height: 36px;
  }
  #voice .slick-arrow::before {
    background-size: 12px auto;
  }
  #voice .slick-arrow.slick-prev {
    margin-right: 8px;
  }
  #voice .slick-arrow.slick-next {
    margin-left: 8px;
  }

  /* ------------------------------
   Plan
  ------------------------------ */
  #plan {
    padding-block: 70px 60px;
  }
  #plan .titleblock {
    margin-bottom: 30px;
  }
  #plan .titleblock .text {
    margin-top: 20px;
  }
  #plan .titleblock .text dt {
    font-size: 16px;
    text-align: center;
    margin: 0 -10px 5px;
  }
  #plan .titleblock .text dd {
    margin-inline: 9vw;
  }
  #plan ul.planlist {
    display: block;
  }
  #plan ul.planlist li {
    display: block;
    margin-inline: 5vw;
  }
  #plan ul.planlist li a {
    display: block;
  }
  #plan ul.planlist li a .image {
    margin-bottom: 12px;
  }
  #plan ul.planlist li a .price {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #plan .slick-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    background-color: inherit;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    bottom: 50%;
    text-indent: -200px;
    transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    backface-visibility: hidden;
  }
  #plan .slick-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000 url("../img/arrow.png") no-repeat center center;
    background-size: 12px auto;
    filter: invert(1);
    opacity: .7;
  }
  #plan .slick-arrow.slick-prev {
    left: -2vw;
  }
  #plan .slick-arrow.slick-prev::before {
    scale: -1 1;
  }
  #plan .slick-arrow.slick-next {
    right: -2vw;
  }
  #plan .more {
    margin-inline: auto;
  }

  /* ------------------------------
   Renovation
  ------------------------------ */
  #renovation a {
    height: 370px;
    border-radius: 8px;
  }
  #renovation a .bg img {
    object-position: 20% center;
  }
  #renovation a .main .logo {
    width: 260px;
  }
  #renovation a .main .title {
    font-size: 14px;
    margin-top: 20px;
  }

  /* ------------------------------
   About
  ------------------------------ */
  #about {
    margin-bottom: 70px;
  }
  #about .image {
    height: 55vw;
    width: 57%;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  #about .main .titleblock {
    padding-left: 5px;
  }
  #about .main .titleblock .subimage {
    border-radius: 2px;
  }
  #about .main .sec_title {
    margin-bottom: 10px;
  }
  #about .main .sec_title .en {
    justify-content: flex-start;
  }
  #about .main .sec_title .ja {
    text-align: left;
  }
  #about .main .sec_title + p {
    margin-inline: 0;
  }
  #about .main .sec_title + p br {
    display: inline;
  }
  #about .main ul.link li a {
    padding: 12px 15px;
    font-size: 16px;
  }
  #about .main ul.link li a::after {
    width: 27px;
    height: 16px;
    background-size: 13px auto;
  }

  /* ------------------------------
   Blog
  ------------------------------ */
  .topicsblock section .titleblock {
    margin-bottom: 20px;
  }
  .topicsblock section .titleblock .subsec_title {
    font-size: 20px;
  }

  #blog {
    margin-bottom: 10px;
  }
  #blog ul.bloglist li a {
    margin-bottom: 25px;
  }
  #blog ul.bloglist li a .image {
    margin-bottom: 10px;
  }
  #blog ul.bloglist li a .image .author {
    width: 30px;
    height: 30px;
    bottom: -8px;
  }
  #blog ul.bloglist li a .title {
    margin-bottom: 8px;
    font-size: 12px;
  }
  #blog ul.bloglist li a .data {
    padding: 8px 2px 0 0;
    font-size: 10px;
    display: block;
    text-align: right;
  }
  #blog ul.bloglist li a .data .cat::before {
    padding-right: 2px;
  }

  #news ul.newslist li a, #news ul.newslist li div {
    padding: 20px 30px 20px 10px;
  }
  #news ul.newslist li .date {
    margin-bottom: 3px;
  }
}

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