.panel__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;
}

.panel__list .panel__item {
  background: #fff;
}

.panel__list .panel__item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.panel__list .panel__item a:hover {
  opacity: .7;
}

.panel__list .panel__item a:hover .panel__item_thumb img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.panel__list .panel__item_icon_arrow a:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: 0;
  bottom: 0;
  background: url(/assets/img/common/panel_icon_arrow.png) no-repeat center bottom;
  background-size: 100% 100%;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_icon_arrow a:after {
    width: 12px;
    height: 12px;
  }
}

.panel__list .panel__item_thumb {
  width: 100%;
  overflow: hidden;
}

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

.panel__list .panel__item_text {
  padding: 5px 3.3% 20px;
}

.panel__list .panel__item_text_twocolumn {
  margin-top: 10px;
  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;
}

.panel__list .panel__item_text_date {
  font-size: 1.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_date {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_category {
  display: inline-block;
  font-size: 1.3rem;
  background: #e9ecf1;
  color: #0c3280;
  padding: 0 8px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_category {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_bold {
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 7px;
  line-height: 1.35;
  color: #253f76;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_bold {
    font-size: 1.5rem;
  }
}

.panel__list .panel__item_text_year {
  font-size: 1.3rem;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_year {
    font-size: 1.2rem;
  }
}

.panel__list .panel__item_text_name {
  font-size: 1.7rem;
  font-weight: 500;
  color: #253f76;
  line-height: 1.2;
  margin-top: 3px;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_text_name {
    font-size: 1.5rem;
  }
}

.panel__list .panel__item_grd {
  position: relative;
}

.panel__list .panel__item_thumb {
  position: relative;
}

.panel__list .panel__item_thumb:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  z-index: 1;
}

.panel__list .panel__item_name {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .panel__list .panel__item_name {
    font-size: 1.5rem;
  }
}

.panel__list.panel__list_fourcolumn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_fourcolumn {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.panel__list.panel__list_fourcolumn .panel__item {
  width: 22%;
  list-style: none;
  margin-right: 4%;
}

.panel__list.panel__list_fourcolumn .panel__item:nth-of-type(4n) {
  margin-right: 0;
}

.panel__list.panel__list_fourcolumn .panel__item:nth-child(n+5) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_fourcolumn .panel__item {
    width: 48%;
    margin-right: 0;
  }
  .panel__list.panel__list_fourcolumn .panel__item:nth-child(n+3) {
    margin-top: 4.5%;
  }
}

.panel__list.panel__list_threecolumn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.panel__list.panel__list_threecolumn .panel__item {
  width: 32%;
  margin-right: 2%;
}

.panel__list.panel__list_threecolumn .panel__item:nth-of-type(3n) {
  margin-right: 0;
}

.panel__list.panel__list_threecolumn .panel__item:nth-child(n+4) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_threecolumn .panel__item {
    width: 100%;
    margin-right: 0;
  }
  .panel__list.panel__list_threecolumn .panel__item:nth-child(n+2) {
    margin-top: 4.5%;
  }
}

.panel__list.panel__list_twocolumn .panel__item {
  width: 48.5%;
}

.panel__list.panel__list_twocolumn .panel__item:nth-child(n+3) {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .panel__list.panel__list_twocolumn .panel__item {
    width: 100%;
  }
  .panel__list.panel__list_twocolumn .panel__item:nth-child(n+2) {
    margin-top: 4.5%;
  }
}

.pagenation_square {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  position: relative;
}

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

.pagenation_square .pagenation__number_list {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 520px;
}

@media only screen and (max-width: 767px) {
  .pagenation_square .pagenation__number_list {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

.pagenation_square .pagenation__number_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5px;
}

.pagenation_square .pagenation__number_list li a, .pagenation_square .pagenation__number_list li span {
  display: block;
  font-size: 1.5rem;
  padding: 6px 15px;
  font-weight: bold;
}

.pagenation_square .pagenation__number_list li a {
  background: #fff;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #0c3280;
}

.pagenation_square .pagenation__number_list li a:hover {
  background: #0c3280;
  color: #fff;
}

.pagenation_square .pagenation__number_list li.current {
  background: #0c3280;
  color: #fff;
  border: 1px solid #0c3280;
}

.pagenation_square .page_prev, .pagenation_square .page_next {
  margin: 5px;
}

.pagenation_square .page_prev a, .pagenation_square .page_next a {
  display: block;
  font-size: 1.5rem;
  padding: 6px 15px;
  font-weight: bold;
  background: #fff;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #0c3280;
  text-align: center;
}

.pagenation_square .page_prev a:hover, .pagenation_square .page_next a:hover {
  background: #0c3280;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .pagenation_square .page_prev {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 5%;
    margin-right: 5%;
  }
  .pagenation_square .page_prev + .page_next {
    margin-left: 5%;
  }
  .pagenation_square .page_next {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 5%;
  }
}

.pagenation_underline {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
}

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

.pagenation_underline .pagenation__number_list {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 600px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 100%;
  }
}

.pagenation_underline .pagenation__number_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #c3cbda;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 15px 0;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li {
    width: auto;
    margin: 0 0 5%;
  }
}

.pagenation_underline .pagenation__number_list li:last-child {
  border-right: 1px solid #c3cbda;
}

.pagenation_underline .pagenation__number_list li a, .pagenation_underline .pagenation__number_list li span {
  display: block;
  font-size: 1.8rem;
  padding: 0 28px;
  font-weight: bold;
  position: relative;
  color: #253f76;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li a, .pagenation_underline .pagenation__number_list li span {
    font-size: 1.4rem;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.pagenation_underline .pagenation__number_list li a:after, .pagenation_underline .pagenation__number_list li span:after {
  content: "";
  width: 10px;
  height: 1px;
  background: #253f76;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .pagenation__number_list li a:after, .pagenation_underline .pagenation__number_list li span:after {
    bottom: -8px;
  }
}

.pagenation_underline .pagenation__number_list li a {
  -webkit-transition: .4s;
  transition: .4s;
}

.pagenation_underline .pagenation__number_list li a:hover:after {
  opacity: 1;
}

.pagenation_underline .pagenation__number_list li.current span:after {
  opacity: 1;
}

.pagenation_underline .page_prev, .pagenation_underline .page_next {
  margin: 5px;
}

.pagenation_underline .page_prev a, .pagenation_underline .page_next a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #253f76;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a, .pagenation_underline .page_next a {
    font-size: 1.4rem;
  }
}

.pagenation_underline .page_next {
  margin-left: 35px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next {
    margin-left: 0;
  }
}

.pagenation_underline .page_next a {
  padding-right: 39px;
  position: relative;
}

.pagenation_underline .page_next a::before {
  background: #253f76;
  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: 12px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a::before {
    width: 7px;
    right: 10px;
  }
}

.pagenation_underline .page_next a::after {
  background: #253f76;
  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: 5px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a::after {
    width: 3px;
    right: 10px;
  }
}

.pagenation_underline .page_next a:hover::before, .pagenation_underline .page_next a:hover::after {
  right: 11px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a:hover::before, .pagenation_underline .page_next a:hover::after {
    right: 5px;
  }
}

.pagenation_underline .page_next a:before, .pagenation_underline .page_next a:after {
  margin-top: -2px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_next a:before {
    width: 15px;
  }
}

.pagenation_underline .page_prev {
  margin-right: 35px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev {
    margin-right: 0;
  }
}

.pagenation_underline .page_prev a {
  padding-left: 39px;
  position: relative;
}

.pagenation_underline .page_prev a::before {
  background: #253f76;
  content: "";
  height: 1px;
  left: 25px;
  margin-left: -10px;
  margin-top: -1px;
  position: absolute;
  top: 55%;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  width: 12px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a::before {
    width: 10px;
    left: 20px;
  }
}

.pagenation_underline .page_prev a::after {
  background: #253f76;
  content: "";
  height: 1px;
  left: 25px;
  margin-left: -6px;
  margin-top: -5px;
  position: absolute;
  top: 52%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  width: 5px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a::after {
    margin-top: -4px;
    width: 5px -2px;
    left: 20px;
  }
}

.pagenation_underline .page_prev a:hover::before, .pagenation_underline .page_prev a:hover::after {
  left: 20px;
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a:hover::before, .pagenation_underline .page_prev a:hover::after {
    left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev a:before {
    width: 15px;
  }
  .pagenation_underline .page_prev a:after {
    margin-top: -5px;
  }
}

@media only screen and (max-width: 767px) {
  .pagenation_underline .page_prev {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 5%;
  }
  .pagenation_underline .page_prev + .page_next {
    margin-left: 5%;
  }
  .pagenation_underline .page_next {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}

.mv_slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

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

.mv_slider .swiper-slide.swiper-slide-active::after {
  content: none;
}

.mv_slider .swiper-slide {
  width: 1260px;
  max-width: 100%;
  height: 580px;
  overflow: hidden;
  background: #f1f1f1;
}

@media only screen and (max-width: 1024px) {
  .mv_slider .swiper-slide {
    height: 46.4vw;
  }
}

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

.mv_slider .swiper-slide img {
  width: 100%;
  height: auto;
}

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

.mv_slider .swiper-slide a {
  -webkit-transition: .4s;
  transition: .4s;
  width: 100%;
  height: 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;
}

.mv_slider .swiper-slide a:hover {
  opacity: .7;
}

.mv_slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.mv_slider .swiper-slide-next::after,
.mv_slider .swiper-slide-prev::after {
  opacity: 1;
}

.mv_slider .swiper-pagination {
  bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .mv_slider .swiper-pagination {
    bottom: 2%;
  }
}

.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: #d2d2d1;
}

.swiper-button-prev, .swiper-button-next {
  background-image: url(/assets/img/common/slider_arrow_white.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  -webkit-transition: .4s;
  transition: .4s;
  width: 45px;
  height: 50px;
}

@media only screen and (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 35px;
  }
}

.swiper-button-prev {
  left: 50px;
  background-position: right top;
}

@media only screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
    background-position: center top;
  }
}

@media only screen and (min-width: 768px) {
  .swiper-button-prev:hover {
    background-position: left top;
  }
}

.swiper-button-next {
  right: 50px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-position: right top;
}

@media only screen and (max-width: 767px) {
  .swiper-button-next {
    right: 0;
    background-position: center top;
  }
}

@media only screen and (min-width: 768px) {
  .swiper-button-next:hover {
    background-position: left top;
  }
}

.swiper-wrapper {
  height: auto;
}

.new_construction {
  margin: 50px 0;
}

@media only screen and (max-width: 767px) {
  .new_construction {
    margin: 10.87% auto 13.04%;
  }
}

.new_construction .new_construction__title {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.32em;
  font-family: "Noto Serif JP", sans-serif;
}

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

.new_construction .new_construction__title .new_construction__title--en {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.42em;
  font-weight: 700;
}

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

.new_construction .new_construction__title .new_construction__title--en::before {
  content: "";
  display: block;
  margin: 18px auto 16px;
  width: 42px;
  height: 1px;
  background: #313131;
}

@media only screen and (max-width: 767px) {
  .new_construction .new_construction__title .new_construction__title--en::before {
    width: calc(42/690*100%);
    margin: calc(20/690*100%) auto calc(30/690*100%);
  }
}

.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: 60px;
}

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

.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%;
  }
}

.type_section .inner {
  width: 100%;
  max-width: 1350px;
  margin: auto;
  padding: 60px 25px 130px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .type_section .inner {
    padding: 9.0% 4% 0;
  }
}

@media only screen and (max-width: 767px) {
  .type_section:last-child .inner {
    padding: 14.0% 4% 0;
  }
}

.type_section .type_title {
  letter-spacing: 0.3em;
}

@media only screen and (max-width: 767px) {
  .type_section .type_title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
}

@media only screen and (max-width: 767px) {
  .type_section .type_title span {
    margin: 0 0;
  }
  .type_section .type_title span::before, .type_section .type_title span::after {
    width: calc(40/690*100%);
  }
  .type_section .type_title span::before {
    right: calc(100% - calc(25/690*100%));
  }
  .type_section .type_title span::after {
    left: calc(100% - calc(25/690*100%));
  }
}

.type_section .type_title .type_title--icon {
  width: 100px;
  margin: 0 auto 13px;
  background: #253f76;
  border-radius: 15px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #fff;
  padding-left: 0.2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .type_section .type_title .type_title--icon {
    margin: 0 auto 1.0%;
    font-size: 1.2rem;
    width: calc(155/690*100%);
  }
}

.type_section.bggray {
  background: #f1f1f1;
}

.type_section .type_section__text {
  margin: 25px 0 45px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.78571;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .type_section .type_section__text {
    font-size: 1.3rem;
    margin: 6.52% 0 7.25%;
    line-height: 1.53846;
    text-align: left;
  }
}

.type_section .panel__list_threecolumn .panel__item {
  background: transparent;
}

.type_section .panel__list_threecolumn .panel__item a {
  height: auto;
}

@media only screen and (max-width: 767px) {
  .type_section .panel__list_threecolumn .panel__item {
    padding-bottom: 5.06%;
  }
  .type_section .panel__list_threecolumn .panel__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.type_section .panel__list_threecolumn .panel__item .panel__item_thumb img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.type_section .panel__list_threecolumn .panel__item .panel__item_thumb::before {
  content: none;
}

.type_section .panel__list_threecolumn .panel__item .panel__item_thumb--text {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 10px;
  background: #fff;
  font-size: 1.4rem;
  color: #253f76;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .type_section .panel__list_threecolumn .panel__item .panel__item_thumb--text {
    font-size: 1.5rem;
    padding: 0.2em 0.6em;
  }
}

.type_section .panel__list_threecolumn .panel__item .panel__item_text_name {
  margin-top: 8px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .type_section .panel__list_threecolumn .panel__item .panel__item_text_name {
    margin-top: 1.59%;
  }
}

.type_section .panel__list_threecolumn .panel__item .panel__item_text_name.open_win::after {
  content: "";
  width: 11px;
  height: 9px;
  margin-left: 8px;
  padding-bottom: 4px;
  display: inline-block;
  background-image: url(/assets/img/newhouse/top/icon_win.png);
  background-repeat: no-repeat;
  background-size: 100%;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .type_section .panel__list_threecolumn .panel__item .panel__item_text_name.open_win::after {
    width: 12px;
    height: 12px;
    padding: 0;
    background-position: center;
  }
}

.graypanel_list {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .graypanel_list {
    display: block;
  }
}

.graypanel_list .graypanel_list__item {
  position: relative;
  overflow: hidden;
  width: calc(313/1000*100%);
}

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

.graypanel_list .graypanel_list__item + .graypanel_list__item {
  margin-left: calc(31.5/1000*100%);
}

@media only screen and (max-width: 767px) {
  .graypanel_list .graypanel_list__item + .graypanel_list__item {
    margin: 4% auto 0;
  }
}

.graypanel_list .graypanel_list__item .graypanel_list__item--bg {
  position: relative;
  overflow: hidden;
}

.graypanel_list .graypanel_list__item .graypanel_list__item--bg img {
  width: 100%;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.graypanel_list .graypanel_list__item .graypanel_list__item--text {
  margin-top: 8px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .graypanel_list .graypanel_list__item .graypanel_list__item--text {
    margin-top: 1.59%;
  }
}

.graypanel_list .graypanel_list__item a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.graypanel_list .graypanel_list__item a:hover {
  opacity: .7;
}

.graypanel_list .graypanel_list__item a:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.relation_link {
  background: #f1f1f1;
}

.relation_link .relation_link__title {
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  font-family: "Noto Serif JP", sans-serif;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__title {
    margin-bottom: 3.5%;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}

.relation_link .inner {
  padding-top: 30px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .relation_link .inner {
    padding: 5.33% 4% 12.4%;
  }
}

.relation_link .relation_link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.relation_link .relation_link__list .relation_link__list_item {
  width: calc(280/1200*100%);
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list .relation_link__list_item {
    width: calc(330/690*100%);
  }
}

.relation_link .relation_link__list .relation_link__list_item img {
  width: 100%;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.relation_link .relation_link__list .relation_link__list_item + .relation_link__list_item {
  margin-left: calc(26.65/1200*100%);
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list .relation_link__list_item + .relation_link__list_item {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list .relation_link__list_item:nth-of-type(n+3) {
    margin-top: calc(34/690*100%);
  }
}

.relation_link .relation_link__list .relation_link__list_item a {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

.relation_link .relation_link__list .relation_link__list_item a:hover {
  opacity: .7;
}

.relation_link .relation_link__list .relation_link__list_item a:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.relation_link .relation_link__list .relation_link__list_item:nth-of-type(2) .relation_link__list_item--text {
  color: #000;
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list .relation_link__list_item:nth-last-of-type(2) .relation_link__list_item--text {
    right: calc(45/330*100%);
  }
}

.relation_link .relation_link__list .relation_link__list_item:last-child .relation_link__list_item--text {
  color: #000;
}

.relation_link .relation_link__list .relation_link__list_item--text {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1.35294;
  font-family: "Noto Serif JP", sans-serif;
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .relation_link .relation_link__list .relation_link__list_item--text {
    right: calc(25/330*100%);
    font-size: 0.9rem;
  }
}
