html {
  overflow-y: scroll;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade2 {
  0% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade2 {
  0% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

header {
  opacity: 0;
  -webkit-transition: opacity .6s;
  transition: opacity .6s;
}

header.is_show {
  opacity: 1;
  z-index: 10000;
}

body.kotei {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .mv_wrap {
    position: relative;
  }
}

.mv_first {
  position: absolute;
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: opacity 2s visibility 2s;
  transition: opacity 2s visibility 2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_first {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
  }
}

.mv_first::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 60vw;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .mv_first::before {
    min-height: auto;
    max-height: initial;
    height: 115vw;
  }
}

.mv_first.hide {
  -webkit-animation: fade2 3s ease-out both;
  animation: fade2 3s ease-out both;
  z-index: 1;
  overflow: hidden;
}

.mv_first.hide::before {
  display: none;
}

.mv_first_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 983px;
  opacity: 0;
  top: 50%;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mv_first_title.opening_letter {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .mv_first_title {
    width: 92%;
    max-width: 92%;
  }
}

.mv_first_title img {
  width: 100%;
}

.mv_second {
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  overflow: hidden;
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-animation: fade 1.5s ease-in-out both;
  animation: fade 1.5s ease-in-out both;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_second {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
  }
}

.mv_second.no_delay {
  opacity: 1;
  -webkit-animation: none;
  animation: none;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: 1;
}

.mv_second.no_delay .mv_title {
  -webkit-animation: fade 1.5s ease-in-out both;
  animation: fade 1.5s ease-in-out both;
}

.mv_second.hide {
  -webkit-animation: fade3 2s ease-out both;
  animation: fade3 2s ease-out both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.mv_second img {
  width: 100%;
}

.mv_second .mv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 983px;
}

@media only screen and (max-width: 767px) {
  .mv_second .mv_title {
    width: 92%;
    max-width: 92%;
  }
}

.mv_second .mv_title img {
  width: 100%;
}

.mv_second .mv_title_bg {
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  background: url(/assets/img/top/mv_first_pc.jpg) no-repeat center 60%;
  background-size: cover;
  -webkit-transition: -webkit-transform 10s;
  transition: -webkit-transform 10s;
  transition: transform 10s;
  transition: transform 10s, -webkit-transform 10s;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_second .mv_title_bg {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
    background: url(/assets/img/top/mv_first_sp.jpg) no-repeat center center;
    background-size: 100% auto;
  }
}

.mv_second .mv_title_bg.zoom {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mv_second .mv_title_bg.zoom img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mv_second .mv_title_bg img {
  width: auto;
  height: 100vh;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .mv_second .mv_title_bg.zoom {
    transform: scale(1);
  }
}

.mv_slider {
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  overflow: hidden;
  position: relative;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_slider {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
  }
}

.mv_slider.is_show {
  -webkit-transition: opacity 3s, visibility 0s ease 3s;
  transition: opacity 3s, visibility 0s ease 3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.mv_slider.is_show .swiper-pagination {
  opacity: 1;
}

.mv_slider img {
  width: 100%;
}

.mv_slider .swiper-container {
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-container {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
  }
}

.mv_slider .swiper-slide {
  overflow: hidden;
}

.mv_slider .swiper-slide .slide_image {
  width: 100%;
  margin: auto;
  height: 60vw;
  min-height: 625px;
  max-height: 850px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide .slide_image {
    min-height: 100%;
    max-height: 100%;
    height: 115vw;
  }
}

.mv_slider .swiper-slide .slider_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  -webkit-transition: opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 10s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: translate(-50%, -44%);
  transform: translate(-50%, -44%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.mv_slider .swiper-slide .slide_image {
  -webkit-transition: -webkit-transform 18s;
  transition: -webkit-transform 18s;
  transition: transform 18s;
  transition: transform 18s, -webkit-transform 18s;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mv_slider .swiper-slide.swiper-slide-active .slider_title {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s, -webkit-transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s;
  transition: opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s, -webkit-transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s;
  transition: transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s, opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s;
  transition: transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s, opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s, -webkit-transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.mv_slider .swiper-slide.swiper-slide-active .slide_image {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .mv_slider .swiper-slide.slide_plaster .slider_title {
    width: 25%;
    max-width: 349px;
    left: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide.slide_plaster .slider_title {
    width: 54%;
    top: 48%;
  }
  .mv_slider .swiper-slide.slide_plaster .slider_title img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .mv_slider .swiper-slide.slide_design .slider_title {
    width: 25%;
    max-width: 340px;
  }
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide.slide_design .slider_title {
    width: 54%;
    top: 48%;
  }
  .mv_slider .swiper-slide.slide_design .slider_title img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .mv_slider .swiper-slide.slide_townscape .slider_title {
    width: 25%;
    max-width: 344px;
    left: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide.slide_townscape .slider_title {
    width: 55%;
  }
  .mv_slider .swiper-slide.slide_townscape .slider_title img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .mv_slider .swiper-slide.slide_eaves .slider_title {
    width: 25%;
    max-width: 341px;
  }
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide.slide_eaves .slider_title {
    width: 54%;
    top: 48%;
  }
  .mv_slider .swiper-slide.slide_eaves .slider_title img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .mv_slider .swiper-slide.slide_courtyard .slider_title {
    width: 25%;
    max-width: 383px;
    left: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-slide.slide_courtyard .slider_title {
    width: 79%;
    top: 48%;
  }
  .mv_slider .swiper-slide.slide_courtyard .slider_title img {
    width: 100%;
  }
}

.mv_slider .swiper-pagination {
  opacity: 0;
  -webkit-transition: opacity 10s;
  transition: opacity 10s;
}

.mv_slider .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 10px;
  background: #fff;
  opacity: 1;
  -webkit-box-shadow: 0px 0px 5px -1px #000;
  box-shadow: 0px 0px 5px -1px #000;
  -webkit-transition: .4s;
  transition: .4s;
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 5px;
  }
}

.mv_slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #999;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .mv_slider .swiper-slide.swiper-slide-active .slide_image {
    transform: scale(1);
  }
}

.swiper-button-prev, .swiper-button-next {
  display: none;
}

.pickup_info {
  padding: 0 1.8%;
  background: #f1f1f1;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .pickup_info {
    padding: 0;
  }
}

.pickup_info .pickup_info__inner {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  padding: 20px 20px 20px 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__inner {
    display: block;
    padding: 3% 4% 4.5%;
  }
}

.pickup_info .pickup_info__title_area {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__title_area {
    margin-top: 0;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.pickup_info .pickup_info__title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__title {
    font-size: 1.3rem;
  }
}

.pickup_info .pickup_info__title_alpha {
  width: 56px;
  margin-left: 35px;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__title_alpha {
    width: 13%;
    margin-left: 5%;
  }
}

.pickup_info .pickup_info__title_alpha img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__title_alpha img {
    vertical-align: middle;
  }
}

.pickup_info .pickup_info__list {
  width: 100%;
  margin-top:15px;
  display: flex;
  justify-content: space-between;
}
.pickup_info .pickup_info__list.one {
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__list {
    width: 100%;
    margin-top: 1.5%;
  }
  .pickup_info .pickup_info__list .pickup_info__item{
    margin-bottom: 3%;
  }
  .pickup_info .pickup_info__list .pickup_info__item:last-of-type{
    margin-bottom: 0;
  }
}

.pickup_info .pickup_info__item {
  width: 100%;
}

.pickup_info .pickup_info__list.three .pickup_info__item{
  width:32%;
}
.pickup_info .pickup_info__list.two .pickup_info__item{
  width:48%;
}
.pickup_info .pickup_info__list.one .pickup_info__item{
  width:90%;
  max-width: 930px;
}

.pickup_info .pickup_info__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pickup_info .pickup_info__item a:hover {
  -webkit-box-shadow: 3px 3px 3px rgba(90, 90, 90, 0.3);
  box-shadow: 3px 3px 3px rgba(90, 90, 90, 0.3);
}

.pickup_info .pickup_info__item a:after {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__item a {
    display: block;
  }
  .pickup_info .pickup_info__item a:after {
    content: none;
  }
}

.pickup_info .pickup_info__item_photo {
  width: 25%;
  max-width: 100px;
  overflow: hidden;
}

.pickup_info .pickup_info__item_photo img {
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__item_photo {
    width: 100%;
    max-width: 100%;
  }
}

.pickup_info .pickup_info__item_detail {
  width: 81%;
  padding: 15px 35px 15px 20px;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__item_detail {
    width: 100%;
    padding: 2.8%;
  }
}

.pickup_info .pickup_info__item_detail dt {
  width: 100%;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .pickup_info .pickup_info__item_detail dt {
    font-size: 1.1rem;
  }
}

.pickup_info .pickup_info__item_detail dd {
  width: 100%;
  font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) {
  .pickup_info .pickup_info__item_detail dd {
    font-size: 1.2rem;
  }
}

.bunner-area {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 100px auto 0;
  padding: 0 25px;
}

@media only screen and (max-width: 767px) {
  .bunner-area {
    width: 81%;
    margin: 3% auto 0;
    padding: 0;
  }
}

.bunner-area .bunner-area__img {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area__img {
    width: 100%;
  }
}

.bunner-area .bunner-area__img img {
  -webkit-transition: all .4s;
  transition: all .4s;
  width: 100%;
}

.bunner-area .bunner-area_block {
  background-color: #fff;
  width: 540px;
  position: absolute;
  top: 67%;
  left: 0;
  right: 0;
  padding: 27px 0 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area_block {
    width: 88%;
    top: 72%;
    left: 50%;
    margin-left: -43.7%;
    padding: 5% 0 0;
  }
}

.bunner-area .bunner-area_block__svg {
  width: 409px;
  margin: auto;
  padding-left: 1%;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area_block__svg {
    width: 78%;
    margin: auto;
    padding-left: 3%;
  }
}

.bunner-area .bunner-area_block__text {
  color: #6d5356;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.21em;
  padding-left: 5px;
  text-align: center;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area_block__text {
    font-size: 0.9rem;
    width: 175px;
    margin: 3% auto 0;
    padding-left: 0;
  }
}

.bunner-area .bunner-area_block__text span {
  position: relative;
}

.bunner-area .bunner-area_block__text span::before {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -4px;
  position: absolute;
  right: -31px;
  top: 89%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 23px;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area_block__text span::before {
    right: -15px;
    width: 12px;
    margin-top: -5px;
  }
}

.bunner-area .bunner-area_block__text span::after {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -4px;
  position: absolute;
  right: -31px;
  top: 89%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 8px;
}

@media only screen and (max-width: 767px) {
  .bunner-area .bunner-area_block__text span::after {
    right: -15px;
    width: 5px;
    margin-top: -5px;
  }
}

.bunner-area a {
  -webkit-transition: all .4s;
  transition: all .4s;
  display: block;
}

.bunner-area a:hover {
  opacity: 0.7;
}

.bunner-area a:hover .bunner-area__img img {
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
}

.bunner-area a:hover .bunner-area_block__text span::before, .bunner-area a:hover .bunner-area_block__text span::after {
  right: -38px;
}

@media only screen and (max-width: 767px) {
  .bunner-area a:hover .bunner-area_block__text span::before, .bunner-area a:hover .bunner-area_block__text span::after {
    right: -20px;
  }
}

.new_construction {
  margin: 97px 0 70px;
}

@media only screen and (max-width: 767px) {
  .new_construction {
    margin: 27.6% 0 9.3%;
    padding: 0 4%;
  }
}

.new_construction .new_construction__title {
  overflow: hidden;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.86em;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__title {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
}

.new_construction .new_construction__title span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  text-align: left;
}

.new_construction .new_construction__title span::before, .new_construction .new_construction__title span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 123px;
  height: 1px;
  background-color: #b0b0b0;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__title span::before, .new_construction .new_construction__title span::after {
    width: 35%;
  }
}

.new_construction .new_construction__title span::before {
  right: 100%;
}

.new_construction .new_construction__title span::after {
  left: 100%;
}

.new_construction .new_construction__title_alpha {
  width: 89px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__title_alpha {
    width: 20%;
  }
}

.new_construction .new_construction__title_alpha img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__title_alpha img {
    vertical-align: middle;
  }
}

.new_construction .new_construction__leadtext {
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__leadtext {
    width: 87%;
    margin: 2% auto 0;
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}

.new_construction .new_construction_select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 85px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select {
    display: block;
    margin-top: 11%;
  }
}

.new_construction .new_construction_select_house {
  width: 49%;
  position: relative;
}

.new_construction .new_construction_select_house__sale {
  width: 100%;
  position: relative;
  margin: 0 0 70px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house {
    width: 100%;
  }
  .new_construction .new_construction_select_house__sale {
    margin: 0 0 7%;
  }
}

.new_construction .new_construction_select_house a {
  display: block;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.new_construction .new_construction_select_house a:hover {
  opacity: 0.7;
}

.new_construction .new_construction_select_house a:hover .new_construction_select_house__image img {
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
}

.new_construction .new_construction_select_house a:hover .new_construction_select_house__title::before, .new_construction .new_construction_select_house a:hover .new_construction_select_house__title::after {
  right: -57px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house a:hover .new_construction_select_house__title::before, .new_construction .new_construction_select_house a:hover .new_construction_select_house__title::after {
    right: -40px;
  }
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__standard {
    margin-top: 7%;
  }
  .new_construction .new_construction_select_house__standard a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.new_construction .new_construction_select_house__image {
  width: 100%;
  max-height: 460px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__image {
    max-height: 100%;
  }
}

.new_construction .new_construction_select_house__image img {
  width: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.new_construction .new_construction_select_house__title_area {
  position: absolute;
  background: #fff;
  width: 60%;
  max-width: 370px;
  padding: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title_area {
    width: 82%;
    max-width: 100%;
    position: static;
    padding: 5% 7%;
    margin-top: -12%;
    z-index: 5;
  }
}

.new_construction .new_construction_select_house__title_area_sale {
  display: flex;
  width: 100%;
  max-width: 760px;
  right: 0;
  left: 0px;
  bottom: 0;
  margin: auto;
  padding: 28px 35px 2px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title_area_sale {
    display: block;
    width: 82%;
    max-width: 100%;
    position: static;
    margin: -12% 0 0 auto;
    padding: 5% 7%;
    padding-right: 0;
    z-index: 5;
  }
}

.new_construction .new_construction_select_house__title_area_order {
  left: -2px;
  bottom: -80px;
  padding-left: 5px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title_area_order {
    padding-left: 0;
  }
}

.new_construction .new_construction_select_house__title_area_standard {
  right: 0px;
  bottom: -80px;
  padding-right: 5px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title_area_standard {
    padding-right: 0;
  }
}

.new_construction .new_construction_select_house__title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.32em;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.new_construction .new_construction_select_house__title_area_sale .new_construction_select_house__title {
  margin-right: 80px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title {
    font-size: 2rem;
  }
}

.new_construction .new_construction_select_house__title span {
  font-size: 1.8rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title span {
    font-size: 1.6rem;
  }
}

.new_construction .new_construction_select_house__title::before {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: -50px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 23px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title::before {
    right: -30px;
  }
}

.new_construction .new_construction_select_house__title::after {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: -50px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 8px;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__title::after {
    right: -30px;
  }
}

.new_construction .new_construction_select_house__subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.new_construction .new_construction_select_house__title_area_sale .new_construction_select_house__subtitle {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .new_construction .new_construction_select_house__subtitle {
    font-size: 1.2rem;
    letter-spacing: normal;
    margin-top: 1.5%;
  }
  .new_construction .new_construction_select_house__title_area_sale .new_construction_select_house__subtitle {
    margin-top: 1.5%;
  }
}

.new_construction .property_pickup {
  margin-top: 125px;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup {
    margin-top: 8.7%;
  }
}

.new_construction .property_pickup__title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}

.new_construction .property_pickup__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__list {
    margin-top: 6%;
    display: block;
  }
}

.new_construction .property_pickup__item {
  width: 24.6%;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item {
    width: 100%;
    padding: 4% 0;
    border-bottom: 1px dotted #c8c8c8;
  }
}

.new_construction .property_pickup__item a {
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.new_construction .property_pickup__item a:hover {
  opacity: .6;
}

.new_construction .property_pickup__item a:hover .property_pickup__item_image img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.new_construction .property_pickup__item_image {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item_image {
    width: 31%;
  }
}

.new_construction .property_pickup__item_image img {
  width: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item_text {
    width: 65%;
  }
}

.new_construction .property_pickup__item_area {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item_area {
    position: static;
    border: 1px solid #dcdcdc;
    display: inline-block;
  }
}

.new_construction .property_pickup__item_caption {
  text-align: center;
  margin-top: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__item_caption {
    text-align: left;
  }
}

.new_construction .property_pickup__btn_more {
  text-align: center;
  margin: 30px auto 0;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__btn_more {
    margin-top: 7%;
  }
}

.new_construction .property_pickup__btn_more a {
  border: 1px solid #8e2d41;
  background: #8e2d41;
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 12px 73px;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__btn_more a {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4% 5%;
  }
}

.new_construction .property_pickup__btn_more a::before {
  background: #fff;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 20px;
}

.new_construction .property_pickup__btn_more a::after {
  background: #fff;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 16px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

.new_construction .property_pickup__btn_more a:hover {
  background: #fff;
  color: #8e2d41;
}

.new_construction .property_pickup__btn_more a:hover::before, .new_construction .property_pickup__btn_more a:hover::after {
  background: #8e2d41;
  right: 10px;
}

.new_construction .property_pickup__btn_tour {
  text-align: center;
  margin: 18px auto 0;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__btn_tour {
    max-width: 300px;
  }
}

.new_construction .property_pickup__btn_tour a {
  background: #fff;
  color: #253f76;
  border: 1px solid #253f76;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 35px;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .new_construction .property_pickup__btn_tour a {
    width: 80%;
    padding: 4% 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.new_construction .property_pickup__btn_tour a::before {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 12px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 14px;
}

.new_construction .property_pickup__btn_tour a::after {
  background: #253f76;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 12px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

.new_construction .property_pickup__btn_tour a:hover {
  background: #253f76;
  color: #fff;
}

.new_construction .property_pickup__btn_tour a:hover::before, .new_construction .property_pickup__btn_tour a:hover::after {
  background: #fff;
  right: 8px;
}

.other_business {
  background: url(/assets/img/top/other_business_bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 70px 0 60px;
}

@media only screen and (max-width: 767px) {
  .other_business {
    padding: 11% 4% 9.3%;
    background: url(/assets/img/top/other_business_bg_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}

.other_business .other_business__title {
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.86em;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business__title {
    font-size: 2rem;
    letter-spacing: 0.4em;
  }
}

.other_business .other_business__title span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  text-align: left;
}

.other_business .other_business__title span::before, .other_business .other_business__title span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 123px;
  height: 1px;
  background-color: #fff;
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business__title span::before, .other_business .other_business__title span::after {
    width: 30%;
  }
}

.other_business .other_business__title span::before {
  right: 100%;
}

.other_business .other_business__title span::after {
  left: 100%;
}

.other_business .other_business__title_alpha {
  width: 135px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business__title_alpha {
    width: 30%;
  }
}

.other_business .other_business__title_alpha img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business__title_alpha img {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 1025px) {
  .other_business .other_business_category_text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.other_business .other_business__leadtext {
  color: #fff;
  letter-spacing: 0.08em;
  margin-left: 40px;
  line-height: 1.42857;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business__leadtext {
    width: 100%;
    font-size: 1.3rem;
    letter-spacing: normal;
    margin: 10px 0;
  }
}

.other_business .other_business_category {
  margin-top: 35px;
  padding: 0 4.6%;
}

.other_business .other_business_category:last-of-type {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category:last-of-type {
    margin-top: 8%;
  }
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category {
    padding: 0;
  }
}

.other_business .other_business_category__title {
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__title {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
}

.other_business .other_business_category__title span {
  font-size: 3.9rem;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__title span {
    font-size: 2rem;
  }
}

.other_business .other_business_category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__list {
    margin-top: 1.5%;
  }
}

.other_business .other_business_category__item {
  width: 24%;
  max-width: 280px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item {
    width: 48%;
    background: none;
    max-width: 100%;
  }
}

.other_business .other_business_category__item a {
  display: block;
  -webkit-transition: all .4s;
  transition: all .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.other_business .other_business_category__item a:hover {
  opacity: .7;
}

.other_business .other_business_category__item a:hover .other_business_category__item_image img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item:nth-child(n+3) {
    margin-top: 3%;
  }
}

.other_business .other_business_category__item_image {
  width: 100%;
  max-height: 170px;
  position: relative;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item_image {
    display: block;
    max-height: 100%;
  }
}

.other_business .other_business_category__item_image::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item_image::after {
    content: none;
  }
}

.other_business .other_business_category__item_image img {
  width: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.other_business .other_business_category__item_caption {
  width: 94%;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
}

.other_business .other_business_category__item_caption span {
  font-size: 1.1rem;
  display: block;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item_caption {
    width: 100%;
    position: static;
    -webkit-transform: none;
    transform: none;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 3px;
  }
}

@media only screen and (max-width: 767px) {
  .other_business .other_business_category__item_caption.other_business_category__item_caption_vietnam {
    letter-spacing: -0.02em;
  }
}

.other_business .other_business_category__item_caption.other_business_category__item_caption_minpaku {
  letter-spacing: 0.7em;
}

.our_thought {
  background: url(/assets/img/top/our_thought_bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 95px 0 90px;
}

@media only screen and (max-width: 767px) {
  .our_thought {
    background: url(/assets/img/top/our_thought_bg_sp.jpg) no-repeat center top;
    background-size: cover;
    padding: 16% 4% 13%;
  }
}

.our_thought .our_thought__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2%;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__inner {
    display: block;
    padding: 0;
  }
}

.our_thought .our_thought__title_area {
  max-width: 300px;
  margin: auto;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__title_area {
    max-width: 100%;
    width: 87%;
  }
}

.our_thought .our_thought__title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: auto;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__title {
    width: 100%;
    display: block;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}

.our_thought .our_thought__title_sub {
  text-align: center;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__title_sub {
    margin-top: 7.7%;
  }
}

.our_thought .our_thought__list {
  max-width: 800px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 5%;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__list {
    margin-left: 0;
    max-width: 100%;
    margin-top: 6%;
  }
}

.our_thought .our_thought__item {
  width: 48.25%;
  background: #fff;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__item {
    width: 47.5%;
    background: none;
  }
}

.our_thought .our_thought__item:nth-child(n+3) {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__item:nth-child(n+3) {
    margin-top: 5.5%;
  }
}

.our_thought .our_thought__item a {
  display: block;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.our_thought .our_thought__item a:hover {
  opacity: .7;
}

.our_thought .our_thought__item a:hover .our_thought__item_image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.our_thought .our_thought__item_image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.our_thought .our_thought__item_image img {
  width: 100%;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.our_thought .our_thought__item_caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  width: 90%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .our_thought .our_thought__item_caption {
    font-size: 1.3rem;
  }
}

.news_category {
  background: #fff;
  padding: 85px 0 80px;
}

@media only screen and (max-width: 767px) {
  .news_category {
    padding: 16% 4%;
  }
}

.news_category .news_category__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2.308%;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__inner {
    display: block;
    padding: 0;
  }
}

.news_category .news_category__group {
  width: 46%;
  max-width: 564px;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__group {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__group_magazine {
    margin-top: 10%;
  }
}

.news_category .news_category__title {
  overflow: hidden;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.19em;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__title {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
  }
}

.news_category .news_category__title span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 7%;
  text-align: left;
}

.news_category .news_category__title span::before, .news_category .news_category__title span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #b0b0b0;
}

.news_category .news_category__title span::before {
  right: 100%;
}

.news_category .news_category__title span::after {
  left: 100%;
}

.news_category .news_category__list {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__list {
    margin-top: 5%;
  }
}

.news_category .news_category__item {
  border-bottom: 1px dotted #c8c8c8;
}

.news_category .news_category__item a {
  padding: 12px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__item a {
    padding: 4.3% 0;
  }
}

.news_category .news_category__item a:hover {
  opacity: .8;
  text-decoration: underline;
}

.news_category .news_category__item a[target='_blank'] .news_category__item_info_text::after {
  display: inline-block;
  content: '';
  width: 11px;
  height: 9px;
  background: url(/assets/img/icon/icon_blank_blue.png) no-repeat center top;
  background-size: 100% 100%;
  margin-left: 10px;
}

.news_category .news_category__item_image {
  width: 20%;
  max-width: 116px;
  height: 5.12vw;
  min-height: 55px;
  max-height: 75px;
  overflow: hidden;
  background: #f1f1f1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__item_image {
    width: 30%;
    max-width: 100%;
    height: 19vw;
    max-height: 19vw;
  }
}

.news_category .news_category__item_image img {
  width: 100%;
}

.news_category .news_category__item_info {
  width: 75%;
  max-width: 430px;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__item_info {
    width: 65%;
    max-width: 100%;
  }
}

.news_category .news_category__item_info_date {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__item_info_date {
    letter-spacing: 0.05em;
  }
}

.news_category .news_category__item_info_category {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  min-width: 60px;
  padding: 2px 3px;
  margin-left: 20px;
  background-color: #313131;
  letter-spacing: -0.02em;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category__item_info_category {
    padding: 1px;
    margin-left: 10px;
  }
}

.news_category .news_category__item_info_category.category__event {
  background-color: #e9751f;
}

.news_category .news_category__item_info_category.category__property {
  background-color: #248a66;
}

.news_category .news_category__item_info_category.category__news {
  background-color: #0dacc8;
}

.news_category .news_category__item_info_text {
  font-size: 1.3rem;
  margin-top: 7px;
  line-height: 1.54;
}

.news_category .news_category_btn_more {
  margin-top: 25px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category_btn_more {
    margin-top: 5.8%;
  }
}

.news_category .news_category_btn_more a {
  text-align: center;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px 54px;
  border: 1px solid #d6d6d6;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .news_category .news_category_btn_more a {
    font-size: 1.3rem;
    width: 50%;
    padding: 2% 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.news_category .news_category_btn_more a::before {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  right: 12px;
  top: 55%;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 14px;
}

.news_category .news_category_btn_more a::after {
  background: #222;
  content: "";
  height: 1px;
  margin-left: -2px;
  margin-top: -1px;
  position: absolute;
  right: 12px;
  top: 55%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transition: right .4s;
  transition: right .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 6px;
}

.news_category .news_category_btn_more a:hover {
  background: #222;
  color: #fff;
}

.news_category .news_category_btn_more a:hover::before, .news_category .news_category_btn_more a:hover::after {
  background: #fff;
  right: 8px;
}

.bg_black {
  top: 0;
  left: 0;
  z-index: 101;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .new_construction .property_pickup__btn_more a {
    padding: 15px 73px 9px;
  }
  *::-ms-backdrop, .new_construction .property_pickup__btn_tour a {
    padding: 11px 35px 5px;
  }
  *::-ms-backdrop, .news_category .news_category_btn_more a {
    padding: 8px 54px 2px;
  }
  *::-ms-backdrop, .news_category .news_category__item_info_category {
    padding: 4px 3px 1px;
  }
  *::-ms-backdrop, .new_construction .new_construction_about__btn > span {
    padding: 10px 45px 4px;
  }
}
