@charset "UTF-8";
@import url("global.css");
/* ---------- Common ---------- */
.section .title_box_f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section .title_box_f:has(.sec_title) .sec_title {
  margin-bottom: 0;
}
.section .sec_title {
  margin-bottom: 20px;
}
.section .sec_title span {
  display: block;
  line-height: 1.5;
}
.section .sec_title span.en {
  font-size: 1.0625em;
  margin-bottom: 5px;
}
.section .sec_title span.en::before, .section .sec_title span.en::after {
  display: inline-block;
}
.section .sec_title span.en::before {
  content: "(";
  margin-right: .3em;
}
.section .sec_title span.en::after {
  content: ")";
  margin-left: .3em;
}
.section .sec_title span.ja {
  font-size: clamp(23px, 4.5vw, 40px);
  font-weight: 600;
}
.section .carousel {
  opacity: 0;
  transition: opacity .3s linear;
}
.section .carousel.slick-initialized {
  opacity: 1;
}

/* ------------------------------
 Top
------------------------------ */
#contents {
  position: relative;
}
#contents::before {
  content: "";
  background: url("../img/top_bg.png") no-repeat top right;
  background-size: contain;
  width: 746px;
  height: 673px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#toparea {
  position: relative;
  padding-top: 190px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
#toparea #topcatch {
  position: absolute;
  z-index: 5;
  top: 0;
  left: calc( (100vw - 1420px) / 2 );
}
#toparea #topcatch .catch {
  width: 600px;
  margin-bottom: 20px;
}
#toparea #topcatch .text {
  line-height: 1.2;
  font-size: clamp(28px, 4.3vw, 58px);
  font-weight: 600;
}
#toparea #topslide {
  width: 200%;
  display: flex;
}
#toparea #topslide .topslide {
  animation: loop_animation 60s linear infinite;
  display: flex;
  column-gap: 40px;
  padding-left: 40px;
}
#toparea #topslide .topslide figure {
  height: 750px;
}
#toparea #topslide .topslide figure img {
  max-width: none;
  width: auto;
  height: 100%;
}

/* ---------- Concept ---------- */
#sec_concept.section {
  margin-block: 150px 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#sec_concept.section .wrapper {
  display: flex;
  justify-content: space-between;
}
#sec_concept.section .title_box {
  flex-shrink: 0;
  width: 50%;
}
#sec_concept.section .title_box .sec_title {
  margin-bottom: 5px;
}
#sec_concept.section .title_box .sec_title span.en {
  font-size: clamp(16px, 2.2vw, 22px);
}
#sec_concept.section .title_box .catch {
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.4;
  font-weight: 600;
}
#sec_concept.section .title_box .moreview {
  margin-top: 30px;
}
#sec_concept.section .concept_body {
  width: 100%;
  padding-right: 4vw;
  text-align: justify;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#sec_concept.section .concept_body .text > p {
  font-size: 1.125em;
  font-weight: 600;
}
#sec_concept.section .concept_body .text > p + p {
  margin-top: 1em;
}
#sec_concept.section .concept_body .text > p .bgline {
  font-size: 116%;
}
#sec_concept.section .bg {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 200%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
}
#sec_concept.section .bg .box {
  display: flex;
  animation: loop_animation 60s linear infinite;
  animation-direction: reverse;
}
#sec_concept.section .bg .box span {
  display: block;
  margin: 0 2.5vw;
  opacity: .06;
  height: 200px;
}
#sec_concept.section .bg .box span img {
  max-width: none;
  width: auto;
  height: 100%;
}

/* ---------- Point Works ---------- */
.point_works {
  border-top: #262626 solid 1px;
  border-bottom: #262626 solid 1px;
  padding-block: 20px;
  overflow: hidden;
}
.point_works .point_list {
  margin: 0 -1vw;
}
.point_works .point_list.carousel {
  opacity: 0;
  transition: opacity .3s linear;
}
.point_works .point_list.carousel.slick-initialized {
  opacity: 1;
}
.point_works .point_list .item {
  margin: 0 1vw;
}
.point_works .point_list .item .inner {
  height: 100px;
  display: flex;
  overflow: hidden;
  background-color: #EFEFEF;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
@media (any-hover: hover) {
  .point_works .point_list .item .inner:hover {
    filter: brightness(0.9);
  }
}
.point_works .point_list .item .img {
  width: 50%;
  height: 100%;
}
.point_works .point_list .item .img figure {
  width: 100%;
  height: 100%;
}
.point_works .point_list .item .text {
  width: 50%;
  height: 100%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.point_works .point_list .item .text > p {
  padding-left: 1em;
  font-size: .93em;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}
.point_works .point_list .item .text > p::before {
  content: "#";
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- Event ---------- */
#sec_event.section {
  margin-top: 130px;
}
#sec_event.section .carousel {
  opacity: 1;
}
#sec_event.section .main {
  position: relative;
}
#sec_event.section .main ul.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px;
  border-left: #262626 solid 1px;
  padding-inline: 45px;
  border-right: #262626 solid 1px;
}
#sec_event.section .main ul.list li {
  display: contents;
}
#sec_event.section .main ul.list li + li a {
  position: relative;
}
#sec_event.section .main ul.list li + li a::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #262626;
}
#sec_event.section .main ul.list li a {
  display: grid;
  gap: 15px 0;
  grid-template-rows: subgrid;
  grid-row: span 4;
  height: 100%;
  box-sizing: border-box;
  padding-block: 25px;
}
#sec_event.section .main ul.list li a .img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
}
#sec_event.section .main ul.list li a .img figure {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
}
#sec_event.section .main ul.list li a .img figure img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_event.section .main ul.list li a .img figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_event.section .main ul.list li a .img figure::after {
  content: "詳しく見る";
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 40px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
#sec_event.section .main ul.list li a .cat {
  display: block;
  white-space: nowrap;
  width: fit-content;
  padding: 2px 20px;
  background-color: #262626;
  color: #FFF;
  font-size: .875em;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
}
#sec_event.section .main ul.list li a .posttitle {
  font-size: 1.125em;
  line-height: 1.6;
  font-weight: 600;
}
#sec_event.section .main ul.list li a .data {
  font-size: .875em;
  background-color: #F5F5F5;
  padding: 8px 20px;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  font-weight: normal;
}
#sec_event.section .main ul.list li a .data > p {
  display: flex;
  align-items: flex-start;
}
#sec_event.section .main ul.list li a .data > p span {
  display: block;
}
#sec_event.section .main ul.list li a .data > p span.h {
  width: 66px;
  flex-shrink: 0;
}
#sec_event.section .main ul.list li a .data > p span:not([class]) {
  flex-grow: 1;
}
@media (any-hover: hover) {
  #sec_event.section .main ul.list li a:hover .img figure img {
    filter: blur(2px);
  }
  #sec_event.section .main ul.list li a:hover .img figure::before {
    opacity: .6;
  }
  #sec_event.section .main ul.list li a:hover .img figure::after {
    opacity: 1;
    translate: 20px 0;
  }
}
#sec_event.section .main #event-prevnext {
  display: none;
}

/* ---------- News ---------- */
#sec_news.section {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
#sec_news.section .title_box {
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 9vw;
}
#sec_news.section ul.list {
  width: 100%;
  border-top: #262626 solid 1px;
}
#sec_news.section ul.list li {
  border-bottom: #262626 solid 1px;
}
#sec_news.section ul.list li .inner {
  display: flex;
  text-align: left;
  font-size: .94em;
  padding-block: 25px;
}
#sec_news.section ul.list li a.inner .text {
  position: relative;
  padding-right: 1.5em;
}
#sec_news.section ul.list li a.inner .text::after {
  content: "\f04b";
  position: absolute;
  right: 0;
  top: 0;
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
}
@media (any-hover: hover) {
  #sec_news.section ul.list li a.inner:hover {
    translate: 5px 0;
  }
}
#sec_news.section ul.list li .date {
  display: block;
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
}
#sec_news.section ul.list li .text {
  display: block;
  margin-left: 55px;
  font-weight: 600;
}

/* ---------- Case ---------- */
#sec_case.section {
  margin: 120px 35px 0;
  clip-path: inset(0 0 round 8px);
  padding-block: 110px 90px;
  color: #FFF;
  background-color: #262626;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#sec_case.section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.85);
}
#sec_case.section .wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}
#sec_case.section .title {
  padding-top: 20px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
#sec_case.section .title .sec_title {
  margin-bottom: 10px;
}
#sec_case.section .title .sec_title span.ja {
  width: fit-content;
  margin-inline: auto;
  background-color: #FFF;
  color: #3c3c3c;
  font-size: clamp(14px, 1.7vw, 20px);
  padding: 5px 20px;
  -webkit-border-radius: 66px;
  border-radius: 66px;
  margin-bottom: 10px;
}
#sec_case.section .title .sec_title span.en {
  font-size: 105px;
  line-height: 1;
  letter-spacing: 0.06em;
}
#sec_case.section .title .catch {
  font-size: clamp(20px, 2.6vw, 31px);
  font-weight: 600;
}
#sec_case.section .title .word1, #sec_case.section .title .word2 {
  position: absolute;
  top: 0;
  width: fit-content;
  line-height: 1.4;
}
#sec_case.section .title .word1::before, #sec_case.section .title .word1::after, #sec_case.section .title .word2::before, #sec_case.section .title .word2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #FFF;
}
#sec_case.section .title .word1::before, #sec_case.section .title .word2::before {
  left: -20px;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
#sec_case.section .title .word1::after, #sec_case.section .title .word2::after {
  right: -20px;
  -webkit-transform: rotate(8deg);
  transform: rotate(8deg);
}
#sec_case.section .title .word1 {
  left: -20px;
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
#sec_case.section .title .word2 {
  right: -15px;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}
#sec_case.section .main {
  margin-top: 20px;
}
#sec_case.section .main .text {
  font-weight: 400;
}
#sec_case.section .main .moreview {
  margin-top: 30px;
}
#sec_case.section .main .moreview a.more {
  margin-inline: auto;
  background-color: #FFF;
  color: #262626;
}
#sec_case.section .bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -10%;
  -webkit-transform: rotate(16deg);
  transform: rotate(16deg);
}
#sec_case.section .bg .box {
  margin-block: 10px;
  display: flex;
}
#sec_case.section .bg .box:nth-of-type(2) ul {
  animation: loop_animation 110s linear infinite;
  animation-delay: -10s;
}
#sec_case.section .bg .box:nth-of-type(3) ul {
  animation: loop_animation 60s linear infinite;
  animation-delay: -5s;
}
#sec_case.section .bg .box ul {
  display: flex;
  column-gap: 10px;
  margin-left: 10px;
  animation: loop_animation 50s linear infinite;
  white-space: nowrap;
}
#sec_case.section .bg .box ul li {
  flex-grow: 1;
  width: 600px;
  aspect-ratio: 1.5 / 1;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
}

/* ---------- Buttons ---------- */
#top_buttons {
  margin-top: 110px;
}
#top_buttons ul.btnlist {
  display: flex;
  justify-content: space-between;
}
#top_buttons ul.btnlist > li {
  width: 48%;
}
#top_buttons ul.btnlist > li a {
  display: block;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
#top_buttons .phbutton ul.btnlist > li a {
  color: #FFF;
  padding: 60px 3% 60px 10%;
  overflow: hidden;
}
#top_buttons .phbutton ul.btnlist > li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#top_buttons .phbutton ul.btnlist > li a .title span {
  display: block;
  line-height: 1.5;
}
#top_buttons .phbutton ul.btnlist > li a .title span.ja {
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 600;
}
#top_buttons .phbutton ul.btnlist > li a .title span.ja::before, #top_buttons .phbutton ul.btnlist > li a .title span.ja::after {
  display: inline-block;
}
#top_buttons .phbutton ul.btnlist > li a .title span.ja::before {
  content: "(";
  margin-right: .5em;
}
#top_buttons .phbutton ul.btnlist > li a .title span.ja::after {
  content: ")";
  margin-left: .5em;
}
#top_buttons .phbutton ul.btnlist > li a .title span.en {
  line-height: 1;
  font-size: clamp(46px, 5.1vw, 66px);
  color: transparent;
  -webkit-text-stroke: 2px #FFF;
  text-stroke: 2px #FFF;
  letter-spacing: 0.06em;
}
#top_buttons .phbutton ul.btnlist > li a .text {
  margin-top: 15px;
}
#top_buttons .phbutton ul.btnlist > li a .text > p {
  font-size: .93em;
  font-weight: 400;
}
#top_buttons .phbutton ul.btnlist > li a .btn {
  margin-top: 25px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 1.2em;
}
#top_buttons .phbutton ul.btnlist > li a .btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 22px;
  padding: 7px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#top_buttons .phbutton ul.btnlist > li a .bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}
@media (any-hover: hover) {
  #top_buttons .phbutton ul.btnlist > li a:hover::before {
    filter: brightness(110%);
  }
  #top_buttons .phbutton ul.btnlist > li a:hover .btn > span {
    translate: 5px 0;
  }
}
#top_buttons .phbutton ul.btnlist > li.str a::before {
  background: rgba(206, 136, 56, 0.6);
  background: linear-gradient(90deg, #CE8838 55%, transparent 75%);
}
#top_buttons .phbutton ul.btnlist > li.str a .btn > span svg * {
  fill: #CE8838;
}
#top_buttons .phbutton ul.btnlist > li.sup a::before {
  background: rgba(0, 168, 175, 0.6);
  background: linear-gradient(90deg, #00A8AF 55%, transparent 75%);
}
#top_buttons .phbutton ul.btnlist > li.sup a .btn > span svg * {
  fill: #00A8AF;
}
#top_buttons .textbutton {
  margin-top: 45px;
}
#top_buttons .textbutton ul.btnlist > li a {
  padding: 30px 3% 30px 6%;
}
#top_buttons .textbutton ul.btnlist > li a::after {
  content: "";
  border: #262626 solid 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#top_buttons .textbutton ul.btnlist > li a .title span {
  display: block;
  line-height: 1.5;
}
#top_buttons .textbutton ul.btnlist > li a .title span.en::before, #top_buttons .textbutton ul.btnlist > li a .title span.en::after {
  display: inline-block;
}
#top_buttons .textbutton ul.btnlist > li a .title span.en::before {
  content: "(";
  margin-right: .5em;
}
#top_buttons .textbutton ul.btnlist > li a .title span.en::after {
  content: ")";
  margin-left: .5em;
}
#top_buttons .textbutton ul.btnlist > li a .title span.ja {
  font-size: clamp(19px, 2.5vw, 32px);
  font-weight: 600;
}
#top_buttons .textbutton ul.btnlist > li a .text {
  margin-top: 5px;
}
#top_buttons .textbutton ul.btnlist > li a .text > p {
  font-size: .875em;
  font-weight: normal;
}
#top_buttons .textbutton ul.btnlist > li a .moreview {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 2;
}
#top_buttons .textbutton ul.btnlist > li a .moreview .arrow {
  width: 40px;
  height: 40px;
}
@media (any-hover: hover) {
  #top_buttons .textbutton ul.btnlist > li a:hover .moreview .arrow {
    background-color: #D5501E;
  }
}

/* ---------- Modelhouse ---------- */
#sec_modelhouse.section {
  margin-top: 115px;
  padding-block: 100px;
  background-color: #F5F5F5;
  display: flex;
  overflow: hidden;
}
#sec_modelhouse.section .title_box {
  width: 380px;
  flex-shrink: 0;
  padding-inline: calc( (100vw - 1420px) / 2 ) 5.5vw;
}
#sec_modelhouse.section .title_box .sec_title span.ja {
  font-size: clamp(40px, 4.3vw, 61px);
  line-height: 1.2;
}
#sec_modelhouse.section .title_box .sec_title span.ja > b {
  display: block;
  color: #D5501E;
  font-weight: 900;
}
#sec_modelhouse.section .title_box .text {
  margin-top: 20px;
}
#sec_modelhouse.section .title_box .text > p {
  font-size: .875em;
}
#sec_modelhouse.section .title_box .moreview {
  margin-top: 30px;
}
#sec_modelhouse.section .main {
  width: calc( 100vw - ( ( 100vw - 1420px ) / 2 + 5.5vw + 380px ) );
}
#sec_modelhouse.section .main .swiper-container,
#sec_modelhouse.section .main .swiper-wrapper,
#sec_modelhouse.section .main .swiper-slide {
  height: 100%;
}
#sec_modelhouse.section .main .swiper-slide a {
  display: block;
  text-align: center;
}
#sec_modelhouse.section .main .swiper-slide a .ph {
  width: 100%;
  height: 0;
  padding-top: 54%;
  position: relative;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
}
#sec_modelhouse.section .main .swiper-slide a .ph figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#sec_modelhouse.section .main .swiper-slide a .ph figure img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_modelhouse.section .main .swiper-slide a .ph figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_modelhouse.section .main .swiper-slide a .ph figure::after {
  content: "詳細ページへ";
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 40px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
#sec_modelhouse.section .main .swiper-slide a .posttitle {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 600;
}
#sec_modelhouse.section .main .swiper-slide a .text {
  margin-top: 10px;
}
#sec_modelhouse.section .main .swiper-slide a .text .comment {
  font-size: .93em;
}
#sec_modelhouse.section .main .swiper-slide a .text .add {
  font-size: .8em;
  color: #777777;
}
@media (any-hover: hover) {
  #sec_modelhouse.section .main .swiper-slide a:hover .ph figure img {
    filter: blur(2px);
  }
  #sec_modelhouse.section .main .swiper-slide a:hover .ph figure::before {
    opacity: .6;
  }
  #sec_modelhouse.section .main .swiper-slide a:hover .ph figure::after {
    opacity: 1;
    translate: 20px 0;
  }
}

/* ---------- Works ---------- */
#sec_works.section {
  margin-top: 95px;
  overflow: hidden;
}
#sec_works.section .title_box_f {
  align-items: flex-end;
  margin-bottom: 0;
}
#sec_works.section .title_box_f .title_inner {
  display: flex;
  align-items: flex-end;
}
#sec_works.section .title_box_f .title_inner .en {
  line-height: .8;
  font-size: 180px;
  padding-right: 50px;
}
#sec_works.section .title_box_f .title_inner .japanese {
  padding-bottom: 30px;
}
#sec_works.section .title_box_f .title_inner .japanese .title {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 600;
}
#sec_works.section .title_box_f .title_inner .japanese .text {
  font-size: .875em;
}
#sec_works.section .title_box_f .moreview {
  padding-bottom: 30px;
}
#sec_works.section .main {
  width: 100%;
  overflow: hidden;
}
#sec_works.section .main ul.list {
  border-top: #262626 solid 2px;
  border-bottom: #262626 solid 2px;
}
#sec_works.section .main ul.list li {
  border-left: #262626 solid 2px;
}
#sec_works.section .main ul.list li a {
  padding: 55px 40px;
  display: block;
}
#sec_works.section .main ul.list li a .ph {
  width: 100%;
  height: 0;
  padding-top: 61%;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
#sec_works.section .main ul.list li a .ph img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_works.section .main ul.list li a .ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_works.section .main ul.list li a .ph::after {
  content: "もっと見る";
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 40px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
#sec_works.section .main ul.list li a .posttitle {
  margin-top: 25px;
  font-size: 1.25em;
  line-height: 1.6;
  font-weight: 600;
}
#sec_works.section .main ul.list li a .cat-box {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#sec_works.section .main ul.list li a .cat-box .cat {
  display: block;
  width: fit-content;
  padding: 3px 20px;
  color: #FFF;
  font-size: .875em;
  white-space: nowrap;
  background-color: #262626;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
}
@media (any-hover: hover) {
  #sec_works.section .main ul.list li a:hover .ph img {
    filter: blur(2px);
  }
  #sec_works.section .main ul.list li a:hover .ph::before {
    opacity: .6;
  }
  #sec_works.section .main ul.list li a:hover .ph::after {
    opacity: 1;
    translate: 20px 0;
  }
}
#sec_works.section .main .slick-track {
  display: flex;
}
#sec_works.section .main .slick-slide {
  height: auto !important;
}

/* ---------- Realestate ---------- */
#sec_realestate.section {
  padding-block: 90px 110px;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#sec_realestate.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  opacity: .3;
}
#sec_realestate.section .title_box {
  flex-shrink: 0;
  width: 340px;
  padding-inline: calc( (100vw - 1420px) / 2 ) 5vw;
}
#sec_realestate.section .title_box .title {
  color: #FFF;
}
#sec_realestate.section .title_box .title span {
  display: block;
  line-height: 1.5;
}
#sec_realestate.section .title_box .title span.ja {
  font-size: 1.1875em;
  font-weight: 600;
}
#sec_realestate.section .title_box .title span.ja::before, #sec_realestate.section .title_box .title span.ja::after {
  display: inline-block;
}
#sec_realestate.section .title_box .title span.ja::before {
  content: "(";
  margin-right: .5em;
}
#sec_realestate.section .title_box .title span.ja::after {
  content: ")";
  margin-left: .5em;
}
#sec_realestate.section .title_box .title span.en {
  font-size: clamp(58px, 7.6vw, 80px);
  line-height: 1;
}
#sec_realestate.section .title_box .text {
  margin-top: 15px;
  text-align: justify;
  color: #FFF;
}
#sec_realestate.section .title_box .text > p {
  font-size: .875em;
}
#sec_realestate.section .title_box .moreview {
  margin-top: 45px;
}
#sec_realestate.section .main {
  width: calc( 100vw - ( ( 100vw - 1420px ) / 2 + 5vw + 340px ) );
}
#sec_realestate.section .main ul {
  margin-right: -2.5vw;
}
#sec_realestate.section .main ul .slick-list {
  padding: 0 490px 0 0 !important;
}
#sec_realestate.section .main ul li {
  margin-right: 2.5vw;
}
#sec_realestate.section .main ul li a {
  display: block;
  text-align: center;
}
#sec_realestate.section .main ul li a .img {
  width: 100%;
  height: 0;
  padding-top: 54%;
  position: relative;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  background-color: #FFF;
  overflow: hidden;
}
#sec_realestate.section .main ul li a .img figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#sec_realestate.section .main ul li a .img figure img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_realestate.section .main ul li a .img figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_realestate.section .main ul li a .img figure::after {
  content: "詳細ページへ";
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 40px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
#sec_realestate.section .main ul li a .text {
  margin-top: 25px;
  background-color: #FFF;
  padding: 15px 20px 10px;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  text-align: center;
  font-weight: 600;
}
#sec_realestate.section .main ul li a .text .posttitle {
  font-size: 1.125em;
}
#sec_realestate.section .main ul li a .text .data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#sec_realestate.section .main ul li a .text .data > span + span::before {
  content: "/";
  display: inline-block;
  margin-inline: 20px;
}
#sec_realestate.section .main ul li a .text .price {
  margin-top: 10px;
  border-top: #262626 solid 1px;
}
#sec_realestate.section .main ul li a .text .price strong {
  display: inline-block;
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 35px);
  color: #D5501E;
}
@media (any-hover: hover) {
  #sec_realestate.section .main ul li a:hover .img figure img {
    filter: blur(2px);
  }
  #sec_realestate.section .main ul li a:hover .img figure::before {
    opacity: .6;
  }
  #sec_realestate.section .main ul li a:hover .img figure::after {
    opacity: 1;
    translate: 20px 0;
  }
}
#sec_realestate.section .bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
#sec_realestate.section .bg figure {
  height: 100%;
}

/* ---------- Company ---------- */
#sec_company.section {
  margin-top: 150px;
  padding-block: 100px 80px;
  position: relative;
  z-index: 3;
}
#sec_company.section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 120px;
  background-color: #F5F5F5;
}
#sec_company.section .main {
  position: relative;
  z-index: 2;
  width: 560px;
  max-width: 50%;
  margin-left: auto;
}
#sec_company.section .main .title_box .sec_title {
  color: #FFF;
}
#sec_company.section .main .title_box .sec_title span {
  display: block;
  line-height: 1.5;
}
#sec_company.section .main .title_box .sec_title span.en {
  font-size: 1.0625em;
}
#sec_company.section .main .title_box .sec_title span.en::before, #sec_company.section .main .title_box .sec_title span.en::after {
  display: inline-block;
}
#sec_company.section .main .title_box .sec_title span.en::before {
  content: "(";
  margin-right: .5em;
}
#sec_company.section .main .title_box .sec_title span.en::after {
  content: ")";
  margin-left: .5em;
}
#sec_company.section .main .title_box .sec_title span.ja {
  line-height: 1;
  font-size: clamp(36px, 4vw, 48px);
  color: transparent;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
}
#sec_company.section .main .list {
  margin-top: 40px;
}
#sec_company.section .main .list > li + li {
  margin-top: 20px;
}
#sec_company.section .main .list > li a {
  display: block;
  background-color: #FFF;
  padding: 15px 80px 15px 35px;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  position: relative;
}
#sec_company.section .main .list > li a .h {
  font-size: 1.1875em;
  font-weight: 600;
}
#sec_company.section .main .list > li a .text > p {
  font-weight: 400;
  font-size: .93em;
}
#sec_company.section .main .list > li a .moreview {
  position: absolute;
  right: 0;
  bottom: 0;
}
#sec_company.section .main .list > li a .moreview .arrow {
  width: 40px;
  height: 40px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #sec_company.section .main .list > li a:hover .moreview .arrow {
    background-color: #D5501E;
  }
}
#sec_company.section .bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: calc( ((100% - 1420px) / 2) + 100px );
  bottom: 0;
  top: 0;
  -webkit-border-top-right-radius: var(--radius-normal);
  border-top-right-radius: var(--radius-normal);
  -webkit-border-bottom-right-radius: var(--radius-normal);
  border-bottom-right-radius: var(--radius-normal);
  overflow: hidden;
}
#sec_company.section .bg figure {
  height: 100%;
}

/* ---------- Staff Blog ---------- */
#sec_staffblog.section {
  background-color: #F5F5F5;
  padding-block: 85px 100px;
}
#sec_staffblog.section .main ul.list {
  display: grid;
  column-gap: 3vw;
  grid-template-columns: repeat(4, 1fr);
}
#sec_staffblog.section .main ul.list li a {
  display: block;
}
#sec_staffblog.section .main ul.list li a .img {
  margin-bottom: 20px;
  position: relative;
}
#sec_staffblog.section .main ul.list li a .img figure {
  width: 100%;
  height: 0;
  padding-top: 76.9%;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  position: relative;
  overflow: hidden;
}
#sec_staffblog.section .main ul.list li a .img figure img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_staffblog.section .main ul.list li a .img figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#sec_staffblog.section .main ul.list li a .img figure::after {
  content: "記事を読む";
  color: #fff;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
#sec_staffblog.section .main ul.list li a .img .author_ph {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: -12px;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
}
#sec_staffblog.section .main ul.list li a .text {
  padding-top: 8px;
}
#sec_staffblog.section .main ul.list li a .text .posttitle {
  line-height: 1.6;
  font-weight: 600;
}
#sec_staffblog.section .main ul.list li a .text .postdata {
  margin-top: 25px;
  border-top: #777777 solid 1px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
#sec_staffblog.section .main ul.list li a .text .postdata .date {
  display: block;
  padding-right: 15px;
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
}
#sec_staffblog.section .main ul.list li a .text .postdata .cat-name {
  display: flex;
}
#sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category {
  flex-wrap: wrap;
  gap: 7px;
}
#sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category > span {
  display: inline-block;
}
#sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category > span::before {
  content: "#";
  display: inline-block;
  margin-right: 1px;
}
#sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category + .author_name::before {
  content: "/";
  display: inline-block;
  margin-inline: 5px;
}
@media (any-hover: hover) {
  #sec_staffblog.section .main ul.list li a:hover .img figure img {
    filter: blur(2px);
  }
  #sec_staffblog.section .main ul.list li a:hover .img figure::before {
    opacity: .6;
  }
  #sec_staffblog.section .main ul.list li a:hover .img figure::after {
    opacity: 1;
    translate: 20px 0;
  }
}

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

 Responsive-Breakpoint-1 ( 1600px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1600px) {
  /* ------------------------------
   Top
  ------------------------------ */
  #toparea #topcatch {
    left: 50px;
  }
  #toparea #topcatch .catch {
    width: 560px;
  }
  #toparea #topslide .topslide {
    column-gap: 35px;
    padding-left: 35px;
  }
  #toparea #topslide .topslide figure {
    height: 640px;
  }

  /* ---------- Modelhouse ---------- */
  #sec_modelhouse.section .title_box {
    padding-inline: 50px 5vw;
  }
  #sec_modelhouse.section .main {
    width: calc( 100vw - ( 50px + 5vw + 380px ) );
  }

  /* ---------- Realestate ---------- */
  #sec_realestate.section .title_box {
    padding-inline: 50px 5vw;
  }
  #sec_realestate.section .title_box .moreview {
    margin-top: 40px;
  }
  #sec_realestate.section .main {
    width: calc( 100vw - ( 50px + 5vw + 340px ) );
  }
  #sec_realestate.section .main ul .slick-list {
    padding: 0 320px 0 0 !important;
  }
  #sec_realestate.section .main ul li a .text .data > span + span::before {
    margin-inline: 15px;
  }

  /* ---------- Company ---------- */
  #sec_company.section .main {
    width: 470px;
  }
  #sec_company.section .bg {
    right: 100px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 1300px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Top
  ------------------------------ */
  #contents::before {
    width: 610px;
    height: 560px;
  }

  #toparea {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #toparea {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1300px) {
  #toparea #topcatch {
    left: 5vw;
  }
  #toparea #topcatch .catch {
    width: 43vw;
  }
  #toparea #topslide .topslide {
    column-gap: 25px;
    padding-left: 25px;
  }
  #toparea #topslide .topslide figure {
    height: 520px;
  }

  /* ---------- Concept ---------- */
  #sec_concept.section {
    margin-block: 80px 0;
  }
  #sec_concept.section .wrapper {
    display: block;
    position: relative;
    padding-bottom: 135px;
  }
  #sec_concept.section .title_box {
    width: 100%;
  }
  #sec_concept.section .title_box .moreview {
    position: absolute;
    left: 5vw;
    bottom: 50px;
  }
  #sec_concept.section .concept_body {
    width: 100%;
    padding: 30px 0 0;
  }
  #sec_concept.section .bg {
    top: auto;
    bottom: -40px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #sec_concept.section .bg .box span {
    margin: 0 2vw;
    height: 160px;
  }

  /* ---------- Point Works ---------- */
  .point_works .point_list {
    margin: 0 -12px;
  }
  .point_works .point_list .item {
    margin: 0 12px;
  }
  .point_works .point_list .item .text > p {
    font-size: .9em;
  }

  /* ---------- Event ---------- */
  #sec_event.section {
    margin-top: 80px;
  }
  #sec_event.section .carousel {
    opacity: 0;
  }
  #sec_event.section .carousel.slick-initialized {
    opacity: 1;
  }
  #sec_event.section .main ul.list {
    display: block;
    border: none;
    border-top: #262626 solid 1px;
    border-bottom: #262626 solid 1px;
    padding-inline: 0;
    margin-inline: -15px;
  }
  #sec_event.section .main ul.list li {
    display: block;
    margin-inline: 15px;
  }
  #sec_event.section .main ul.list li + li a {
    position: static;
  }
  #sec_event.section .main ul.list li + li a::before {
    display: none;
  }
  #sec_event.section .main ul.list li a {
    display: block;
    padding-block: 25px;
  }
  #sec_event.section .main ul.list li a .img {
    margin-bottom: 15px;
  }
  #sec_event.section .main ul.list li a .cat {
    padding: 2px 15px;
  }
  #sec_event.section .main ul.list li a .posttitle {
    margin-block: 10px;
  }
  #sec_event.section .main ul.list li a .data {
    padding: 10px 15px;
  }
  #sec_event.section .main ul.list li a .data > p span.h {
    width: 60px;
  }
  #sec_event.section .main #event-prevnext {
    display: block;
  }

  .append-arrow .slick-arrow {
    top: 35%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  .append-arrow .slick-arrow::after {
    font-size: 18px;
  }
  .append-arrow .slick-arrow.slick-prev {
    left: -3vw;
  }
  .append-arrow .slick-arrow.slick-next {
    right: -3vw;
  }
}

@media only screen and (max-width: 1300px) {
  /* ---------- News ---------- */
  #sec_news.section {
    margin-top: 60px;
  }
  #sec_news.section .title_box {
    padding-right: 6vw;
  }
  #sec_news.section ul.list li .inner {
    padding-block: 20px;
  }
  #sec_news.section ul.list li .text {
    margin-left: 3vw;
  }

  /* ---------- Case ---------- */
  #sec_case.section {
    margin: 90px 3.6vw 0;
    padding-block: 90px 65px;
  }
  #sec_case.section .title {
    padding-top: 15px;
  }
  #sec_case.section .title .sec_title span.ja {
    margin-bottom: 15px;
  }
  #sec_case.section .title .sec_title span.en {
    font-size: 90px;
  }
  #sec_case.section .main {
    margin-top: 35px;
  }
  #sec_case.section .bg .box ul li {
    width: 460px;
  }

  /* ---------- Buttons ---------- */
  #top_buttons {
    margin-top: 65px;
  }
  #top_buttons ul.btnlist > li {
    width: 49%;
  }
  #top_buttons .phbutton ul.btnlist > li a {
    padding: 35px 3vw;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja {
    margin-bottom: 0;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja::before {
    margin-right: .3em;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja::after {
    margin-left: .3em;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.en {
    -webkit-text-stroke: 1px #FFF;
    text-stroke: 1px #FFF;
  }
  #top_buttons .phbutton ul.btnlist > li a .text {
    margin-top: 25px;
  }
  #top_buttons .phbutton ul.btnlist > li a .text > p br {
    display: none;
  }
  #top_buttons .phbutton ul.btnlist > li a .btn {
    margin-top: 20px;
    font-size: 1.1em;
  }
  #top_buttons .phbutton ul.btnlist > li a .btn > span {
    width: 34px;
    height: 20px;
  }
  #top_buttons .textbutton {
    margin-top: 35px;
  }
  #top_buttons .textbutton ul.btnlist > li a {
    padding: 25px 3vw;
  }
  #top_buttons .textbutton ul.btnlist > li a .title span.en::before {
    margin-right: .3em;
  }
  #top_buttons .textbutton ul.btnlist > li a .title span.en::after {
    margin-left: .3em;
  }
  #top_buttons .textbutton ul.btnlist > li a .text > p br {
    display: none;
  }
  #top_buttons .textbutton ul.btnlist > li a .moreview .arrow {
    width: 36px;
    height: 36px;
  }

  /* ---------- Modelhouse ---------- */
  #sec_modelhouse.section {
    margin-top: 90px;
    padding-block: 80px;
  }
  #sec_modelhouse.section .title_box {
    width: 320px;
    padding-inline: 5vw 4vw;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_modelhouse.section .title_box {
    width: 260px;
  }
}
@media only screen and (max-width: 1300px) {
  #sec_modelhouse.section .title_box .sec_title span.ja {
    margin-top: 5px;
  }
  #sec_modelhouse.section .title_box .text > p br {
    display: none;
  }
  #sec_modelhouse.section .title_box .moreview {
    margin-top: 25px;
  }
  #sec_modelhouse.section .main {
    width: calc( 100vw - ( 5vw + 4vw + 320px ) );
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_modelhouse.section .main {
    width: calc( 100vw - ( 5vw + 4vw + 260px ) );
  }
}

@media only screen and (max-width: 1300px) {
  /* ---------- Works ---------- */
  #sec_works.section {
    margin-top: 95px;
    overflow: hidden;
  }
  #sec_works.section .title_box_f .title_inner .en {
    font-size: 120px;
  }
  #sec_works.section .title_box_f .title_inner .japanese, #sec_works.section .title_box_f .title_inner .moreview {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_works.section .title_box_f {
    display: block;
  }
  #sec_works.section .title_box_f .title_inner {
    align-items: flex-end;
    justify-content: space-between;
  }
  #sec_works.section .title_box_f .title_inner .en {
    padding-right: 4vw;
  }
  #sec_works.section .title_box_f .title_inner .japanese {
    padding-bottom: 0;
  }
  #sec_works.section .title_box_f .title_inner .japanese .text > p br {
    display: none;
  }
  #sec_works.section .title_box_f .moreview {
    width: fit-content;
    margin: 30px auto;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1300px) {
  #sec_works.section .main ul.list li a {
    padding: 40px 30px;
  }
  #sec_works.section .main ul.list li a .posttitle {
    margin-top: 20px;
    font-size: 1.2em;
    line-height: 1.5;
  }
  #sec_works.section .main ul.list li a .cat-box {
    margin-top: 15px;
    gap: 7px;
  }
  #sec_works.section .main ul.list li a .cat-box .cat {
    padding: 3px 15px;
  }

  /* ---------- Realestate ---------- */
  #sec_realestate.section {
    padding-block: 70px 80px;
  }
  #sec_realestate.section .title_box {
    width: 320px;
    padding-inline: 5vw 4vw;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_realestate.section .title_box {
    width: 260px;
  }
}
@media only screen and (max-width: 1300px) {
  #sec_realestate.section .title_box .title span.ja::before {
    margin-right: .3em;
  }
  #sec_realestate.section .title_box .title span.ja::after {
    margin-left: .3em;
  }
  #sec_realestate.section .title_box .moreview {
    margin-top: 35px;
  }
  #sec_realestate.section .main {
    width: calc( 100vw - ( 5vw + 4vw + 320px ) );
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_realestate.section .main {
    width: calc( 100vw - ( 5vw + 4vw + 260px ) );
  }
}
@media only screen and (max-width: 1300px) {
  #sec_realestate.section .main ul {
    margin-right: -2vw;
  }
  #sec_realestate.section .main ul .slick-list {
    padding: 0 240px 0 0 !important;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_realestate.section .main ul .slick-list {
    padding: 0 100px 0 0 !important;
  }
}
@media only screen and (max-width: 1300px) {
  #sec_realestate.section .main ul li {
    margin-right: 2vw;
  }
  #sec_realestate.section .main ul li a .text {
    margin-top: 25px;
    padding: 12px 15px 8px;
  }
  #sec_realestate.section .main ul li a .text .posttitle {
    font-size: 1.1em;
  }
  #sec_realestate.section .main ul li a .text .data > span + span::before {
    margin-inline: 10px;
  }

  /* ---------- Company ---------- */
  #sec_company.section {
    margin-top: 120px;
    padding-block: 40px;
  }
  #sec_company.section::after {
    top: 100px;
  }
  #sec_company.section .main {
    width: 330px;
  }
  #sec_company.section .main .title_box .sec_title span.en::before {
    margin-right: .3em;
  }
  #sec_company.section .main .title_box .sec_title span.en::after {
    margin-left: .3em;
  }
  #sec_company.section .main .title_box .sec_title span.ja {
    font-size: 32px;
    -webkit-text-stroke: 1px #FFF;
    text-stroke: 1px #FFF;
  }
  #sec_company.section .main .list {
    margin-top: 20px;
  }
  #sec_company.section .main .list > li + li {
    margin-top: 10px;
  }
  #sec_company.section .main .list > li a {
    padding: 15px 50px 15px 15px;
  }
  #sec_company.section .main .list > li a .text {
    font-size: .9em;
  }
  #sec_company.section .main .list > li a .moreview .arrow {
    width: 36px;
    height: 36px;
  }
  #sec_company.section .bg img.objectfit {
    object-position: center center;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  #sec_company.section {
    margin-top: 0;
    padding-block: 65px max(250px, 43vw);
  }
  #sec_company.section::after {
    display: none;
  }
  #sec_company.section .main {
    width: auto;
    max-width: 100%;
  }
  #sec_company.section .main .title_box {
    text-align: center;
  }
  #sec_company.section .bg {
    right: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
  }
  #sec_company.section .bg img.objectfit {
    object-position: bottom center;
  }
}

@media only screen and (max-width: 1300px) {
  /* ---------- Staff Blog ---------- */
  #sec_staffblog.section {
    padding-block: 65px 80px;
  }
  #sec_staffblog.section .main ul.list {
    column-gap: 2vw;
    grid-template-columns: repeat(3, 1fr);
  }
  #sec_staffblog.section .main ul.list li:last-child {
    display: none;
  }
  #sec_staffblog.section .main ul.list li a .img {
    margin-bottom: 15px;
  }
  #sec_staffblog.section .main ul.list li a .img .author_ph {
    right: 5px;
    bottom: -10px;
    width: 40px;
    height: 40px;
  }
  #sec_staffblog.section .main ul.list li a .text {
    padding-top: 10px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata {
    margin-top: 20px;
    font-size: 11px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .date {
    padding-right: 10px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category {
    gap: 5px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category + .author_name::before {
    margin-inline: 4px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Top
  ------------------------------ */
  #contents {
    padding-top: 120px;
  }
  #contents::before {
    width: 280px;
    height: 260px;
  }

  #toparea {
    position: static;
    padding-top: 0;
  }
  #toparea #topcatch {
    position: static;
    margin-inline: 5vw;
  }
  #toparea #topcatch .catch {
    width: 78vw;
    margin-bottom: 1vw;
  }
  #toparea #topcatch .text {
    font-size: 7.2vw;
  }
  #toparea #topslide {
    position: relative;
    z-index: -1;
    margin-top: -18vw;
  }
  #toparea #topslide .topslide {
    column-gap: 4vw;
    padding-left: 4vw;
  }
  #toparea #topslide .topslide figure {
    height: 80vw;
  }

  /* ---------- Concept ---------- */
  #sec_concept.section {
    margin-block: 50px 0;
  }
  #sec_concept.section .wrapper {
    padding-bottom: 140px;
  }
  #sec_concept.section .title_box .moreview {
    bottom: 60px;
  }
  #sec_concept.section .concept_body {
    padding-top: 20px;
  }
  #sec_concept.section .bg {
    bottom: -35px;
  }
  #sec_concept.section .bg .box span {
    margin: 0 1vw;
    height: 110px;
  }

  /* ---------- Point Works ---------- */
  .point_works {
    padding-block: 12px;
  }
  .point_works .point_list {
    margin: 0 -2vw;
  }
  .point_works .point_list .item {
    margin: 0 2vw;
  }
  .point_works .point_list .item .text {
    padding: 12px;
  }
  .point_works .point_list .item .text > p {
    font-size: 12px;
  }
  .point_works .point_list .item .text > p br {
    display: none;
  }

  /* ---------- Event ---------- */
  #sec_event.section {
    margin-top: 60px;
  }
  #sec_event.section .main ul.list {
    margin-inline: 0;
  }
  #sec_event.section .main ul.list li {
    margin-inline: 7px;
  }
  #sec_event.section .main ul.list li a .data > p span.h {
    width: 58px;
  }

  .append-arrow .slick-arrow {
    top: 30%;
  }
  .append-arrow .slick-arrow::after {
    font-size: 14px;
  }
  .append-arrow .slick-arrow.slick-prev {
    left: -4vw;
  }
  .append-arrow .slick-arrow.slick-next {
    right: -4vw;
  }

  /* ---------- News ---------- */
  #sec_news.section {
    margin-top: 50px;
    display: block;
  }
  #sec_news.section .title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
  }
  #sec_news.section ul.list li .inner {
    display: block;
    padding-block: 10px;
  }
  #sec_news.section ul.list li .text {
    margin: 0;
  }

  /* ---------- Case ---------- */
  #sec_case.section {
    margin: 65px 0 0;
    clip-path: inset(0 0 round 0);
    padding-block: 70px 50px;
  }
  #sec_case.section .title {
    padding-top: 55px;
  }
  #sec_case.section .title .sec_title {
    margin-bottom: 0;
  }
  #sec_case.section .title .sec_title span.ja {
    margin-bottom: 10px;
  }
  #sec_case.section .title .sec_title span.en {
    font-size: 54px;
  }
  #sec_case.section .title .word1::before, #sec_case.section .title .word2::before {
    left: -15px;
  }
  #sec_case.section .title .word1::after, #sec_case.section .title .word2::after {
    right: -15px;
  }
  #sec_case.section .title .word1 {
    left: 5vw;
  }
  #sec_case.section .title .word2 {
    right: 5vw;
  }
  #sec_case.section .main {
    margin-top: 20px;
  }
  #sec_case.section .main .text {
    text-align: justify;
  }
  #sec_case.section .main .text > p br {
    display: none;
  }
  #sec_case.section .main .moreview {
    margin-top: 30px;
  }
  #sec_case.section .bg {
    top: 70%;
    left: 5%;
  }
  #sec_case.section .bg .box ul li {
    width: 320px;
  }

  /* ---------- Buttons ---------- */
  #top_buttons {
    margin-top: 45px;
  }
  #top_buttons ul.btnlist {
    display: block;
  }
  #top_buttons ul.btnlist > li {
    width: 100%;
  }
  #top_buttons .phbutton ul.btnlist > li + li {
    margin-top: 20px;
  }
  #top_buttons .phbutton ul.btnlist > li a {
    padding: 30px 30vw 30px 20px;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja {
    margin-bottom: 0;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja::before {
    margin-right: .2em;
  }
  #top_buttons .phbutton ul.btnlist > li a .title span.ja::after {
    margin-left: .2em;
  }
  #top_buttons .phbutton ul.btnlist > li a .text {
    margin-top: 10px;
  }
  #top_buttons .phbutton ul.btnlist > li a .btn > span {
    width: 32px;
    height: 20px;
    padding: 6px 4px;
  }
  #top_buttons .textbutton {
    margin-top: 30px;
  }
  #top_buttons .textbutton ul.btnlist > li + li {
    margin-top: 15px;
  }
  #top_buttons .textbutton ul.btnlist > li a {
    padding: 20px 45px 20px 20px;
  }
  #top_buttons .textbutton ul.btnlist > li a .title span.en::before {
    margin-right: .2em;
  }
  #top_buttons .textbutton ul.btnlist > li a .title span.en::after {
    margin-left: .2em;
  }
  #top_buttons .textbutton ul.btnlist > li a .text {
    margin-top: 5px;
    text-align: justify;
  }
  #top_buttons .textbutton ul.btnlist > li a .text > p {
    font-size: .875em;
  }
  #top_buttons .textbutton ul.btnlist > li a .moreview .arrow {
    width: 32px;
    height: 32px;
  }

  /* ---------- Modelhouse ---------- */
  #sec_modelhouse.section {
    margin-top: 60px;
    padding: 50px 5vw;
    background-color: #F5F5F5;
    display: block;
    overflow: hidden;
  }
  #sec_modelhouse.section .title_box {
    width: auto;
    padding-inline: 0;
  }
  #sec_modelhouse.section .title_box .moreview {
    margin-top: 10px;
  }
  #sec_modelhouse.section .title_box .moreview a.more {
    margin-left: auto;
  }
  #sec_modelhouse.section .main {
    width: 100%;
  }
  #sec_modelhouse.section .main .swiper-wrapper {
    display: block;
  }
  #sec_modelhouse.section .main .swiper-slide {
    margin-top: 35px;
  }
  #sec_modelhouse.section .main .swiper-slide a .posttitle {
    margin-top: 10px;
  }
  #sec_modelhouse.section .main .swiper-slide a .text {
    margin-top: 0;
  }

  /* ---------- Works ---------- */
  #sec_works.section {
    margin-top: 60px;
  }
  #sec_works.section .title_box_f .title_inner {
    display: block;
    text-align: center;
  }
  #sec_works.section .title_box_f .title_inner .en {
    font-size: 68px;
    padding-right: 0;
    line-height: 1;
    margin-bottom: 10px;
  }
  #sec_works.section .title_box_f .title_inner .japanese {
    padding-bottom: 10px;
  }
  #sec_works.section .title_box_f .title_inner .japanese .title {
    margin-bottom: 5px;
  }
  #sec_works.section .title_box_f .moreview {
    margin-block: 15px 30px;
  }
  #sec_works.section .main ul.list li a {
    padding: 20px;
  }
  #sec_works.section .main ul.list li a .posttitle {
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 1.5;
  }
  #sec_works.section .main ul.list li a .cat-box {
    margin-top: 10px;
  }
  #sec_works.section .main ul.list li a .cat-box .cat {
    padding: 2px 15px;
  }

  /* ---------- Realestate ---------- */
  #sec_realestate.section {
    padding: 60px 5vw;
    display: block;
  }
  #sec_realestate.section .title_box {
    width: auto;
    padding-inline: 0;
    text-align: center;
  }
  #sec_realestate.section .title_box .title span.ja::before {
    margin-right: .2em;
  }
  #sec_realestate.section .title_box .title span.ja::after {
    margin-left: .2em;
  }
  #sec_realestate.section .title_box .text {
    text-align: center;
    margin-top: 0;
  }
  #sec_realestate.section .title_box .moreview {
    margin-top: 25px;
  }
  #sec_realestate.section .title_box .moreview a.more {
    margin-inline: auto;
  }
  #sec_realestate.section .main {
    margin: 30px -5vw 0;
    width: auto;
  }
  #sec_realestate.section .main ul {
    margin-inline: -2vw;
  }
  #sec_realestate.section .main ul .slick-list {
    padding: 0 60px !important;
  }
  #sec_realestate.section .main ul li {
    margin-inline: 2vw;
  }
  #sec_realestate.section .main ul li a .text {
    margin-top: 10px;
    padding: 10px 15px 5px;
  }
  #sec_realestate.section .main ul li a .text .data {
    font-size: 11px;
    line-height: 1.4;
  }
  #sec_realestate.section .main ul li a .text .price {
    margin-top: 10px;
  }

  /* ---------- Company ---------- */
  #sec_company.section {
    padding-top: 45px;
  }
  #sec_company.section .main .title_box .sec_title span.en::before {
    margin-right: .2em;
  }
  #sec_company.section .main .title_box .sec_title span.en::after {
    margin-left: .2em;
  }
  #sec_company.section .main .list {
    margin-top: 30px;
  }
  #sec_company.section .main .list > li + li {
    margin-top: 10px;
  }
  #sec_company.section .main .list > li a {
    padding: 15px 45px 15px 20px;
  }
  #sec_company.section .main .list > li a .moreview .arrow {
    width: 30px;
    height: 30px;
  }

  /* ---------- Staff Blog ---------- */
  #sec_staffblog.section {
    padding-block: 40px;
  }
  #sec_staffblog.section .main ul.list {
    column-gap: 3vw;
    grid-template-columns: repeat(2, 1fr);
  }
  #sec_staffblog.section .main ul.list li:nth-last-child(2) {
    display: none;
  }
  #sec_staffblog.section .main ul.list li a .img {
    margin-bottom: 0;
  }
  #sec_staffblog.section .main ul.list li a .img .author_ph {
    right: 5px;
    bottom: -6px;
    width: 28px;
    height: 28px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata {
    margin-top: 10px;
    padding-top: 5px;
    display: block;
    font-size: 10px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .date {
    padding-right: 0;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category {
    gap: 5px;
  }
  #sec_staffblog.section .main ul.list li a .text .postdata .cat-name .category + .author_name::before {
    margin-inline: 3px;
  }
}
