@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:  2010-09-17
Author:  Richard Clark - http: //richclarkdesign.com
Twitter:  @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Cantarell:wght@700&family=Oswald:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

main {
  display: block;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

img[src$=".svg"] {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* FONT
***************************************************************/
/* 共通
***************************************************************/
.secCommonTitle {
  text-align: center;
}

.secCommonTitle span {
  display: block;
  line-height: 1;
}

.secCommonTitle .en {
  font-size: 46px;
  letter-spacing: 0.1em;
  color: #335167;
  margin-bottom: 14px;
}

.secCommonTitle .jp {
  font-size: 14px;
  letter-spacing: 0.5em;
  font-weight: 500;
  line-height: 1;
}

@media all and (max-width: 680px) {
  .secCommonTitle .en {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .secCommonTitle .jp {
    font-size: 10px;
  }
}

/* 共通
***************************************************************/
/* MV
***************************************************************/
.mvMovieBox {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.mvMovieBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2b4148;
  opacity: 0.2;
  z-index: 1;
}

.mvMovieBox #player {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 101%;
  min-height: 100%;
}

.mvMovieBox .mvTitle {
  position: absolute;
  top: 52%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 375px;
  z-index: 2;
}

.mvMovieBox .mvScroll {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.mvMovieBox .mvScroll .mvScrollText {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}

.mvMovieBox .mvScroll .mvScrollRod {
  width: 1px;
  height: 44px;
  margin: auto;
  background: #fff;
  position: relative;
  z-index: 0;
}

.mvMovieBox .mvScroll .mvScrollRod::before,
.mvMovieBox .mvScroll .mvScrollRod::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - 6px) / 2);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
}

.mvMovieBox .mvScroll .mvScrollRod::before {
  -webkit-animation: scrollRod01 ease 1s infinite;
  animation: scrollRod01 ease 1s infinite;
}

.mvMovieBox .mvScroll .mvScrollRod::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scrollRod02 ease 1s infinite 0.5s;
  animation: scrollRod02 ease 1s infinite 0.5s;
}

@-webkit-keyframes scrollRod01 {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollRod01 {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@-webkit-keyframes scrollRod02 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes scrollRod02 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@media all and (max-width: 680px) {
  .mvMovieBox {
    height: 414px;
  }
  .mvMovieBox #player {
    height: 100%;
  }
  .mvMovieBox .mvTitle {
    top: 52%;
    left: 52%;
    width: 171px;
  }
  .mvMovieBox .mvScroll .mvScrollText {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mvMovieBox .mvScroll .mvScrollRod {
    height: 32px;
  }
}

/* MV
***************************************************************/
/* バナースライダー
***************************************************************/
.bannerSlideBox {
  padding: 60px 0;
  overflow: hidden;
}

.bannerList .slick-slide {
  width: 592px;
  margin: 0 21px;
}

.bannerList .slick-arrow {
  position: absolute;
  top: calc((100% - 46px) / 2);
  width: 46px;
  height: 46px;
  background: url(../img/property_list/arrow.svg) no-repeat center/cover;
  cursor: pointer;
  z-index: 1;
}

.bannerList .slick-prev {
  left: calc(50% - 360px);
}

.bannerList .slick-next {
  right: calc(50% - 360px);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.video-banner video {
  width: 100%;
  height: auto;
  display: block;
  margin: 3% auto;
}

.video-pc {
  display: block;
  width: 800px;
  max-width: 100%;
  height: auto;
}

.video-mobile {
  display: none;
}

@media all and (min-width: 681px) {
  .bannerList li {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .bannerList li:hover {
    opacity: 0.6;
  }
  .bannerList .slick-prev {
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
  .bannerList .slick-prev:hover {
    left: calc(50% - 370px);
  }
  .bannerList .slick-next {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .bannerList .slick-next:hover {
    right: calc(50% - 370px);
  }
}

@media all and (max-width: 680px) {
  .video-pc {
    display: none;
  }

  .video-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .bannerSlideBox {
    padding: 20px 0 30px;
  }
  .bannerList .slick-slide {
    width: 100%;
    margin: 0;
  }
  .bannerList .slick-arrow {
    position: absolute;
    top: calc((100% - 46px) / 2);
    width: 46px;
    height: 46px;
    background: url(../img/property_list/arrow.svg) no-repeat center/cover;
    cursor: pointer;
    z-index: 1;
  }
  .bannerList .slick-prev {
    left: calc(50% - 360px);
  }
  .bannerList .slick-next {
    right: calc(50% - 360px);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
  }
  .slick-dots button {
    width: 9px;
    height: 9px;
    text-indent: -9999px;
    background: #dedede;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 7px;
  }
  .slick-dots .slick-active button {
    background: #335167;
  }
}

/* バナースライダー
***************************************************************/
/* 検索エリア
***************************************************************/
.searchAreaBox {
  background: #f2f2f2;
  padding: 50px 0;
}

.searchAreaBox.pt0 {
  padding-bottom: 0;
}

.searchAreaBox .inner {
  width: 1000px;
  margin: auto;
}

.searchAreaBox .searchArea {
  width: 1000px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.searchAreaBox .searchArea:last-child {
  margin-bottom: 0;
}

.searchAreaBox .searchArea .searchAreaTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 76px;
  background: #335167;
}

.searchAreaBox .searchArea .searchAreaTitle i {
  display: inline-block;
  margin-right: 15px;
}

.searchAreaBox .searchArea .searchAreaTitle span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
}

.searchAreaBox .searchArea .searchAreaListBox {
  background: #fff;
  width: 100%;
  /* max-height: 100vh; */
  /* overflow-y: scroll; */
  border: 2px solid #335167;
  position: relative;
}

.searchAreaBox .searchArea .searchAreaListBoxText {
  text-align: center;
  margin-bottom: 30px;
}

.searchAreaBox .searchArea .acBox {
  display: none;
}

.searchAreaBox .searchArea .searchAreaMap {
  width: 554px;
  margin: 23px 0 15px 66px;
}

.searchAreaBox .searchArea .searchAreaMap a.current .mapground {
  fill: #508688;
}

.searchAreaBox .searchArea .searchAreaMap a.current .maptext {
  fill: #fff;
}
.searchAreaBox .searchArea .searchAreaList {
  width: 275px;
  position: absolute;
  right: 148px;
  top: 59px;
  z-index: 1;
}

.searchAreaBox .searchArea .searchAreaList li {
  width: 100%;
  margin: 0 10px 10px 0;
}

.searchAreaBox .searchArea .searchAreaList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 20px;
  background: #335167;
  border: 1px solid #335167;
  border-radius: 100px;
  height: 100%;
  position: relative;
}

.searchAreaBox .searchArea .searchAreaList li i {
  display: block;
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
}

.searchAreaBox .searchArea .searchAreaList li i::before,
.searchAreaBox .searchArea .searchAreaList li i::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
}

.searchAreaBox .searchArea .searchAreaList li i::before {
  width: 100%;
  left: 0;
  bottom: 0;
}

.searchAreaBox .searchArea .searchAreaList li i::after {
  width: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0;
  top: 1px;
}

.searchAreaBox .searchArea .searchAreaFormBox {
  background: #f8f8f8;
  padding: 30px 45px;
  margin-bottom: 30px;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchTitleBox {
  padding-bottom: 13px;
  margin-bottom: 18px;
  border-bottom: 1px solid #c4c4c4;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchTitle {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #335167;
  vertical-align: middle;
  line-height: 30px;
}

.searchAreaBox .searchArea .searchAreaFormBox .checkText {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  vertical-align: middle;
  font-weight: 400;
  margin-left: 4px;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchBox .checkboxItem {
  margin: 0 20px 20px 0;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchBox .checkboxItem label {
  display: block;
  cursor: pointer;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  input[type="checkbox"] {
  display: none;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchBox .checkboxItem p {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  border: 1px solid #000;
  border-radius: 5px;
  background: #fff;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  input[type="checkbox"]:checked
  + p::before {
  background: #335167;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  input[type="checkbox"]:checked
  + p::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 4px;
  width: 14px;
  height: 11px;
  background: url(../img/property_list/icon_check_w.svg) no-repeat center/cover;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  .acboxItemInner {
  cursor: pointer;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  .acboxItemInner
  p {
  padding-left: 20px;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  .acboxItemInner
  p::before {
  width: 15px;
  height: 9px;
  border: none;
  background: url(../img/property_list/icon_arrow.svg) no-repeat center/cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox
  .searchBox
  .checkboxItem
  .acboxItemInner.act
  p::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.searchAreaBox .searchArea .searchAreaFormBox .checkbox_c {
  display: none;
  width: 846px;
  background: #fff;
  padding: 20px 30px 0;
  margin-top: 18px;
}

.searchAreaBox .searchArea .searchAreaFormBox .checkbox_c .checkbox_c_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.searchAreaBox .searchArea .searchAreaFormBox .checkbox_c .checkboxItem_c {
  margin: 0 20px 20px 0;
}

.searchAreaBox .searchArea .searchAreaFormBox2 {
  background: #ffffff;
  padding: 8px 10px;
  margin-bottom: 30px;
}

.searchAreaBox .searchArea .searchAreaFormBox .searchTitleBox2 {
  padding-bottom: 13px;
  margin-bottom: 18px;
  border-bottom: 1px solid #c4c4c4;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .searchTitle {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #335167;
  vertical-align: middle;
  line-height: 30px;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .checkText {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  vertical-align: middle;
  font-weight: 400;
  margin-left: 4px;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .searchBox .checkboxItem {
  margin: 0 20px 20px 0;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .searchBox .checkboxItem label {
  display: block;
  cursor: pointer;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  input[type="checkbox"] {
  display: none;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .searchBox .checkboxItem p {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  border: 1px solid #000;
  border-radius: 5px;
  background: #fff;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  input[type="checkbox"]:checked
  + p::before {
  background: #335167;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  input[type="checkbox"]:checked
  + p::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 4px;
  width: 14px;
  height: 11px;
  background: url(../img/property_list/icon_check_w.svg) no-repeat center/cover;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  .acboxItemInner {
  cursor: pointer;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  .acboxItemInner
  p {
  padding-left: 20px;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  .acboxItemInner
  p::before {
  width: 15px;
  height: 9px;
  border: none;
  background: url(../img/property_list/icon_arrow.svg) no-repeat center/cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.searchAreaBox
  .searchArea
  .searchAreaFormBox2
  .searchBox
  .checkboxItem
  .acboxItemInner.act
  p::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.searchAreaBox .searchArea .searchAreaFormBox2 .checkbox_c {
  display: none;
  width: 1000px;
  background: #fff;
  padding: 20px 30px 0;
  margin-top: 18px;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .checkbox_c .checkbox_c_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.searchAreaBox .searchArea .searchAreaFormBox2 .checkbox_c .checkboxItem_c {
  margin: 0 20px 20px 0;
}

.searchAreaBox .searchArea .submitBox {
  width: 200px;
  margin: auto;
  position: relative;
}

.searchAreaBox .searchArea .submitBox:not(.type2):before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/property_list/icon_search.svg) no-repeat center/cover;
}

.searchAreaBox .searchArea .submitBox input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #335167;
  border: 1px solid #335167;
  padding: 5px 0 5px 25px;
  cursor: pointer;
}

.searchAreaBox .searchArea .submitBox.type2 {
  width: 280px;
  position: relative;
}
.searchAreaBox .searchArea .submitBox.type2 i {
  display: block;
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
}
.searchAreaBox .searchArea .submitBox.type2 i::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #000;
  transition: background 0.3s;
  display: block;
}
.searchAreaBox .searchArea .submitBox.type2 i::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0;
  top: 1px;
  background: #000;
  transition: background 0.3s;
  display: block;
}
.searchAreaBox .searchArea .submitBox.type2 input {
  border-color: #fff;
  border-radius: 5px;
  padding: 10px 0;
}

.searchAreaBox .searchArea .submitBox.type2:hover i::before {
  background: #fff;
}
.searchAreaBox .searchArea .submitBox.type2:hover i::after {
  background: #fff;
}

.searchAreaBox .searchArea.area .searchAreaTitle i {
  width: 11px;
  height: 20px;
  background: url(../img/property_list/icon_area.svg) no-repeat center/cover;
}

.searchAreaBox .searchArea.area .searchAreaListBox {
  padding: 36px 87px 26px;
}

.searchAreaBox .searchArea.detail .searchAreaTitle {
  height: 84px;
  cursor: pointer;
  position: relative;
}

/* .searchAreaBox .searchArea.detail .searchAreaTitle::before {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
} */

.searchAreaBox .searchArea.detail .searchAreaTitle i {
  width: 27px;
  height: 27px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}
.searchAreaBox .searchArea.detail .searchAreaTitle i::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  transition: 0.3s ease;
}
.searchAreaBox .searchArea.detail .searchAreaTitle i::after {
  content: "";
  width: 3px;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  transition: 0.3s ease;
}
.searchAreaBox .searchArea.detail .searchAreaTitle.act i::before {
  opacity: 0;
}
.searchAreaBox .searchArea.detail .searchAreaTitle.act i::after {
  transform: rotate(90deg);
}
.searchAreaBox .searchArea.detail .searchAreaListBox {
  padding: 30px 30px 50px;
  width: 100%;
  border: 2px solid #335167;
  z-index: 1;
}

.searchAreaBox2 {
  background: #f2f2f2;
  padding: 0;
}

.searchAreaBox2.pt0 {
  padding-bottom: 0;
}

.searchAreaBox2 .inner {
  width: 1000px;
  margin: 5% auto;
}

.searchAreaBox2 .searchArea {
  width: 1000px;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* お気に入りボタンのスタイルをカスタマイズ */
.favorite-button {
  background-color: #ff9900; /* ボタンの背景色 */
  color: #ffffff; /* ボタンのテキスト色 */
  border-radius: 5px; /* ボタンの角丸 */
  padding: 10px 15px; /* パディングの調整 */
  font-weight: bold; /* テキストの太さ */
  text-transform: uppercase; /* テキストを大文字に */
}

/* お気に入り済みボタンのスタイルをカスタマイズ */
.favorite-button.active {
  background-color: #008000; /* お気に入り済みのボタンの背景色 */
  color: #ffffff; /* お気に入り済みのボタンのテキスト色 */
}

@media all and (min-width: 681px) {
  .searchAreaBox .searchArea .searchAreaMap a .mapground {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .searchAreaBox .searchArea .searchAreaMap a .maptext {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .searchAreaBox .searchArea .searchAreaMap a:hover .mapground {
    fill: #508688;
  }
  .searchAreaBox .searchArea .searchAreaMap a:hover .maptext {
    fill: #fff;
  }
  .searchAreaBox .searchArea .searchAreaList li:nth-child(4n) {
    margin-right: 0;
  }
  .searchAreaBox .searchArea .searchAreaList li a {
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
  }
  .searchAreaBox .searchArea .searchAreaList li a i::before,
  .searchAreaBox .searchArea .searchAreaList li a i::after {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .searchAreaBox .searchArea .searchAreaList li a:hover {
    background: #fff;
    color: #335167;
  }
  .searchAreaBox .searchArea .searchAreaList li a:hover i::before,
  .searchAreaBox .searchArea .searchAreaList li a:hover i::after {
    background: #335167;
  }
  .searchAreaBox .searchArea .submitBox::before {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .searchAreaBox .searchArea .submitBox input {
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
  }
  .searchAreaBox .searchArea .submitBox:not(.type2):hover::before {
    background: url(../img/property_list/icon_search_w.svg) no-repeat
      center/cover;
  }
  .searchAreaBox .searchArea .submitBox:hover input {
    background: #335167;
    color: #fff;
  }
  .searchAreaBox .searchArea.detail .searchAreaTitle {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  /* .searchAreaBox .searchArea.detail .searchAreaTitle::before {
    -webkit-transition: bottom 0.3s;
    transition: bottom 0.3s;
  } */
  .searchAreaBox .searchArea.detail .searchAreaTitle:hover {
    background: #5e788b;
  }
  /* .searchAreaBox .searchArea.detail .searchAreaTitle:hover::before {
    bottom: 10px;
  } */
}

@media all and (max-width: 680px) {
  .searchAreaBox {
    padding: 30px 0;
  }
  .searchAreaBox .inner {
    width: 93.127%;
  }
  .searchAreaBox .searchArea {
    width: 100%;
  }
  .searchAreaBox .searchArea .searchAreaTitle {
    height: 43px;
  }
  .searchAreaBox .searchArea .searchAreaTitle i {
    margin-right: 5px;
  }
  .searchAreaBox .searchArea .searchAreaTitle span {
    font-size: 15px;
  }
  .searchAreaBox .searchArea .searchAreaListBox {
    border: 1px solid #335167;
  }
  .searchAreaBox .searchArea .searchAreaListBoxText {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .searchAreaBox .searchArea .searchAreaMap {
    width: 92%;
    margin: 2px auto 30px;
  }
  .searchAreaBox .searchArea .searchAreaList {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .searchAreaBox .searchArea .searchAreaList li {
    width: calc((100% - 5px) / 2);
    margin: 0 5px 5px 0;
  }
  .searchAreaBox .searchArea .searchAreaList li:nth-child(2n) {
    margin-right: 0;
  }
  .searchAreaBox .searchArea .searchAreaList li:nth-child(3) {
    width: 64%;
  }
  .searchAreaBox .searchArea .searchAreaList li a {
    padding: 10px 7px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1;
  }
  .searchAreaBox .searchArea .searchAreaList li i {
    display: none;
  }
  .searchAreaBox .searchArea .searchAreaFormBox {
    padding: 15px 13px 30px;
    margin-bottom: 15px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .searchTitle {
    display: block;
    font-size: 16px;
    line-height: 1.5;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .checkText {
    display: block;
    font-size: 12px;
    letter-spacing: 0;
    margin-left: 0;
    margin-top: 8px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .searchBox {
    margin-bottom: 0;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .searchBox .checkboxItem {
    width: 50%;
    margin: 0 0 20px 0;
    padding-right: 5px;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .searchBox .checkboxItem p {
    font-size: 14px;
    padding-left: 25px;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .searchAreaBox
    .searchArea
    .searchAreaFormBox
    .searchBox
    .checkboxItem.checked {
    width: 100%;
    padding-right: 0;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .checkbox_c {
    width: calc(81vw - 13px);
    padding: 20px 0 0 9px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox .checkbox_c .checkboxItem_c {
    width: 50%;
    margin: 0 0 20px 0;
    padding-right: 5px;
  }

  .searchAreaBox .searchArea .searchAreaFormBox2 {
    padding: 15px 13px 30px;
    margin-bottom: 15px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .searchTitle {
    display: block;
    font-size: 16px;
    line-height: 1.5;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .checkText {
    display: block;
    font-size: 12px;
    letter-spacing: 0;
    margin-left: 0;
    margin-top: 8px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .searchBox {
    margin-bottom: 0;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .searchBox .checkboxItem {
    width: 50%;
    margin: 0 0 20px 0;
    padding-right: 5px;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .searchBox .checkboxItem p {
    font-size: 14px;
    padding-left: 25px;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .searchAreaBox
    .searchArea
    .searchAreaFormBox2
    .searchBox
    .checkboxItem.checked {
    width: 100%;
    padding-right: 0;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .checkbox_c {
    width: calc(81vw - 13px);
    padding: 20px 0 0 9px;
  }
  .searchAreaBox .searchArea .searchAreaFormBox2 .checkbox_c .checkboxItem_c {
    width: 50%;
    margin: 0 0 20px 0;
    padding-right: 5px;
  }

  .searchAreaBox .searchArea.area .searchAreaTitle i {
    width: 8px;
    height: 14px;
  }
  .searchAreaBox .searchArea.area .searchAreaListBox {
    padding: 15px 10px 10px;
  }
  .searchAreaBox .searchArea.detail .searchAreaTitle {
    height: 43px;
  }
  /* .searchAreaBox .searchArea.detail .searchAreaTitle::before {
    bottom: auto;
    top: 50%;
    left: auto;
    right: 15px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  } */
  .searchAreaBox .searchArea.detail .searchAreaTitle i {
    width: 18px;
    height: 18px;
    right: 18px;
  }
  .searchAreaBox .searchArea.detail .searchAreaListBox {
    padding: 15px 12px;
    border: 1px solid #335167;
  }
}

/* 検索エリア
***************************************************************/
/* バナー
***************************************************************/
.bannerBox .inner {
  width: 809px;
  margin: auto;
  padding-top: 2%;
}

.bannerBox .banner {
  display: block;
}

.bannerBox.type01 {
  background: #f2f2f2;
}
.bannerBox2 .inner2 {
  width: 1000px;
  margin: auto;
  padding-top: 1%;
}
.bannerBox2 .banner:hover {
  opacity: 0.6;
}

@media all and (min-width: 681px) {
  .bannerBox .banner {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .bannerBox .banner:hover {
    opacity: 0.6;
  }
}

@media all and (max-width: 680px) {
  .bannerBox .inner {
    width: 93.127%;
  }

  .bannerBox2 .inner2 {
    width: 98%;
    margin: auto;
    padding-top: 2%;
  }
}

/* バナー
***************************************************************/
/* 物件一覧
***************************************************************/
.propertyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5%;
}

.propertyList li {
  width: calc((100% - 60px) / 3);
  margin: 0 30px 30px 0;
}

.propertyList li .listImg {
  height: 250px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.propertyList li .newIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  background: #932d00;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  z-index: 1;
}

.propertyList li .thumbnail {
  width: 100%;
  height: 100%;
}

.propertyList li .listCatBox {
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: calc(100% - 16px);
  z-index: 1;
}

.propertyList li .listCatBox .cat {
  display: inline-block;
  width: 155px;
  border: 1px solid #000;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: bold;
  text-align: center;
  padding: 4px 7px;
  line-height: 20px;
  margin: 0 5px 5px 0;
}

.propertyList li .listTextBox {
  background: #fff;
  padding: 15px 15px 17px;
}

.propertyList li .listTitleBox {
  padding-bottom: 10px;
  border-bottom: 1px solid #335167;
  margin-bottom: 10px;
}

.propertyList li .listTitle {
  font-size: 16px;
  font-weight: bold;
  color: #335167;
  line-height: 26px;
  letter-spacing: 0;
}

.propertyList li .listText {
  font-size: 14px;
  letter-spacing: 0;
  color: #335167;
  font-weight: 500;
  line-height: 22px;
  margin-top: 3px;
}

.propertyList li .listDetailBox {
  margin-bottom: 15px;
}

.propertyList li .listDetailBox:last-child {
  margin-bottom: 0;
}

.propertyList li .listDetailBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 2px;
}

.propertyList li .listDetailBox dl:last-child {
  margin-bottom: 0;
}

.propertyList li .listDetailBox dl dt,
.propertyList li .listDetailBox dl dd {
  font-size: 13px;
  color: #335167;
  line-height: 20px;
}

.propertyList li .listDetailBox dl dt {
  width: 65px;
  letter-spacing: 0.5em;
  position: relative;
}

.propertyList li .listDetailBox dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: #404040;
}

.propertyList li .listDetailBox dl dt.ls0 {
  letter-spacing: 0;
}

.propertyList li .listDetailBox dl dd {
  width: calc(100% - 65px);
  padding-left: 11px;
  letter-spacing: 0;
}

.propertyList li .listBtnBox {
  margin-bottom: 6px;
}

.propertyList li .listBtnBox:last-child {
  margin-bottom: 0;
}

.propertyList li .listBtnBox .listBtn {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 11px 0;
  position: relative;
}

.propertyList li .listBtnBox .listBtn.type01 {
  background: #508688;
}

.propertyList li .listBtnBox .listBtn.type02 {
  background: #8b845e;
}

.propertyList li .listBtnBox .listBtn.type03 {
  background: #335167;
}

.propertyList li .listBtnBox .listBtn.type04 {
  background: #ff7f50;
}

.propertyList li .listBtnBox .listBtn.type05 {
  background: #20b2aa;
}

.propertyList li .listBtnBox .listBtn.type06 {
  background: #6495ed;
}

.propertyList li .listBtnBox .listBtn i {
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
}

.propertyList li .listBtnBox .listBtn i::before,
.propertyList li .listBtnBox .listBtn i::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
}

.propertyList li .listBtnBox .listBtn i::before {
  width: 100%;
  left: 0;
  bottom: 0;
}

.propertyList li .listBtnBox .listBtn i::after {
  width: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0;
  top: 1px;
}

.propertyList li .listBtnBox.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.propertyList li .listBtnBox.column2 .listBtn {
  width: 171px;
}

.favoraite01 {
  width: 18%;
  background: #dd9933;
  position: relative;
  margin-left: 82%;
  padding: 1% 0 1.2% 0;
}
.favoraite01 a {
  font-size: 85%;
  color: #fff;
  text-align: center;
}
.favoraite01:hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.favoraite02 {
  width: 22%;
  background: #dd9933;
  position: relative;
  margin-left: 38%;
  padding: 2% 0 2% 0;
}
.favoraite02 a {
  font-size: 85%;
  color: #fff;
  padding-left: 16%;
  text-align: center;
}
.favoraite02:hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

@media all and (min-width: 681px) {
  .propertyList li:nth-child(3n) {
    margin-right: 0;
  }
  .propertyList li .thumbnailBox {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .propertyList li .thumbnailBox:hover {
    opacity: 0.6;
  }
  .propertyList li .listBtnBox .listBtn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .propertyList li .listBtnBox .listBtn i {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .propertyList li .listBtnBox .listBtn:hover {
    opacity: 0.6;
  }
  .propertyList li .listBtnBox .listBtn:hover i {
    right: 4px;
  }
}

@media all and (max-width: 680px) {
  .propertyList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .propertyList li:nth-of-type(n + 5) {
    display: none;
  }
  .propertyList li .listImg {
    height: 197px;
  }
  .propertyList li .newIcon {
    width: 55px;
    font-size: 14px;
    padding: 9px 0;
  }
  .propertyList li .listCatBox {
    bottom: 1px;
    width: calc(100% - 8px);
  }
  .propertyList li .listCatBox .cat {
    width: 138px;
    font-size: 12px;
    padding: 4px 7px;
    line-height: 1;
  }
  .propertyList li .listTextBox {
    padding: 10px 12px 15px;
  }
  .propertyList li .listTitle {
    font-size: 15px;
    line-height: 1.5;
  }
  .propertyList li .listText {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .propertyList li .listDetailBox dl {
    margin-bottom: 4px;
  }
  .propertyList li .listDetailBox dl dt,
  .propertyList li .listDetailBox dl dd {
    line-height: 1.5;
  }
  .propertyList li .listDetailBox dl dt {
    width: 63px;
  }
  .propertyList li .listDetailBox dl dt::before {
    height: 8px;
  }
  .propertyList li .listDetailBox dl dd {
    width: calc(100% - 63px);
    padding-left: 10px;
  }
  .propertyList li .listBtnBox {
    margin-bottom: 5px;
  }
  .propertyList li .listBtnBox .listBtn {
    padding: 9px 0;
  }
  .propertyList li .listBtnBox.column2 .listBtn {
    width: calc(50% - 2.5px);
  }

  .propertyList li .thumbnail {
    width: 100%;
    height: 110%;
  }

  .favoraite01 {
    width: 50%;
    position: relative;
    margin: 5% 25% 0 25%;
    padding: 1.5% 0 1.5% 0;
    font-size: 75%;
  }

  .favoraite02 {
    width: 50%;
    position: relative;
    margin: 5% 25% 0 25%;
    padding: 5% 0 5% 0;
    font-size: 75%;
  }
}

/* 物件一覧
***************************************************************/
/* 新着物件
***************************************************************/
.secPropertyNew {
  background: #f2f2f2;
  padding: 120px 0 108px;
}

.secPropertyNew .inner {
  width: 1200px;
  margin: auto;
}

.secPropertyNew .secCommonTitle {
  margin-bottom: 55px;
}

@media all and (max-width: 680px) {
  .secPropertyNew {
    padding: 0 0 58px;
  }
  .secPropertyNew .inner {
    width: 93.75%;
  }
  .secPropertyNew .secCommonTitle {
    margin-bottom: 23px;
  }
  .propertyList {
    margin-top: 40px;
  }
}

/* 新着物件
***************************************************************/
/* リンクボックス
***************************************************************/
.linkListBox {
  padding: 58px 0 130px;
}

.linkListBox .inner {
  width: 1150px;
  margin: auto;
}

.linkListBox .linkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.linkListBox .linkList li {
  width: 366px;
  height: 160px;
  border: 2px solid #335167;
  margin: 0 26px 26px 0;
}

.linkListBox .linkList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #335167;
  padding: 0 25px 0 30px;
  height: 100%;
  position: relative;
  z-index: 0;
}

.linkListBox .linkList li .listTextBox {
  width: 100%;
}

.linkListBox .linkList li .listTitle {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 8px;
}

.linkListBox .linkList li .listText {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
}

.linkListBox .linkList li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.linkListBox .linkList li i span {
  display: block;
  width: 11px;
  height: 3px;
  position: relative;
}

.linkListBox .linkList li i span::before,
.linkListBox .linkList li i span::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
}

.linkListBox .linkList li i span::before {
  width: 100%;
  left: 0;
  bottom: 0;
}

.linkListBox .linkList li i span::after {
  width: 4px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.linkListBox2 {
  padding: 50px 0;
}

.linkListBox2 .inner {
  width: 1150px;
  margin: auto;
}

.linkListBox2 .linkList2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.linkListBox2 .linkList2 li {
  width: 366px;
  height: 65px;
  border: 3px solid #335167;
  margin: 0 auto;
}

.linkListBox2 .linkList2 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  padding: 0 25px 0 30px;
  height: 100%;
  position: relative;
  z-index: 0;
}

.linkListBox2 .linkList2 li .listTextBox2 {
  width: 100%;
}

.linkListBox2 .linkList2 li .listTitle2 {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 30px;
  color: #335167;
}

.linkListBox2 .linkList2 li .listText2 {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  color: #335167;
}

.linkListBox2 .linkList2 li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.linkListBox2 .linkList2 li i span {
  display: block;
  width: 11px;
  height: 3px;
  position: relative;
}

.linkListBox2 .linkList2 li i span::before,
.linkListBox2 .linkList2 li i span::after {
  content: "";
  position: absolute;
  background: #335167;
  height: 1px;
}

.linkListBox2 .linkList2 li i span::before {
  width: 100%;
  left: 0;
  bottom: 0;
}

.linkListBox2 .linkList2 li i span::after {
  width: 4px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media all and (min-width: 681px) {
  .linkListBox .linkList li:nth-child(3n) {
    margin-right: 0;
  }
  .linkListBox .linkList li:last-child,
  .linkListBox .linkList li:nth-last-child(2),
  .linkListBox .linkList li:nth-last-child(3) {
    margin-bottom: 0;
  }
  .linkListBox .linkList li a {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .linkListBox .linkList li a i {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .linkListBox .linkList li a:hover {
    background: #5e788b;
  }
  .linkListBox .linkList li a:hover i {
    right: 15px;
  }

  .linkListBox2 .linkList2 li:nth-child(3n) {
    margin-right: 0;
  }
  .linkListBox2 .linkList2 li:last-child,
  .linkListBox2 .linkList2 li:nth-last-child(2),
  .linkListBox2 .linkList2 li:nth-last-child(3) {
    margin-bottom: 0;
  }
  .linkListBox2 .linkList2 li a {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .linkListBox2 .linkList2 li a i {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .linkListBox2 .linkList2 li a:hover {
    background: #ffffff;
  }
  .linkListBox2 .linkList2 li a:hover i {
    right: 15px;
  }
}

@media all and (max-width: 680px) {
  .linkListBox {
    padding: 58px 0;
  }
  .linkListBox .inner {
    width: 90.627%;
  }
  .linkListBox .linkList li {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }
  .linkListBox .linkList li:last-child {
    margin-bottom: 0;
  }
  .linkListBox .linkList li a {
    padding: 20px 12px 21px 19px;
  }
  .linkListBox .linkList li .listTitle {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 27px;
    margin-bottom: 8px;
  }
  .linkListBox .linkList li .listText {
    line-height: 20px;
  }
  .linkListBox .linkList li i {
    width: 30px;
    height: 30px;
    top: 19px;
    right: 12px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .linkListBox .linkList li i span {
    width: 8px;
    height: 2px;
  }
  .linkListBox .linkList li i span::after {
    width: 3px;
  }

  .linkListBox2 {
    padding: 50px 0;
  }
  .linkListBox2 .inner {
    width: 90.627%;
  }
  .linkListBox2 .linkList2 li {
    width: 100%;
    height: auto;
    border: 3px solid #335167;
    margin: 0 0 10px 0;
  }
  .linkListBox2 .linkList2 li:last-child {
    margin-bottom: 0;
  }
  .linkListBox2 .linkList2 li a {
    padding: 20px 12px 21px 19px;
  }
  .linkListBox2 .linkList2 li .listTitle2 {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 27px;
  }
  .linkListBox2 .linkList2 li .listText2 {
    line-height: 20px;
  }
  .linkListBox2 .linkList2 li i {
    width: 30px;
    height: 30px;
    top: 19px;
    right: 12px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .linkListBox2 .linkList2 li i span {
    width: 8px;
    height: 2px;
  }
  .linkListBox2 .linkList2 li i span::after {
    width: 3px;
  }
}

/* リンクボックス
***************************************************************/
/* ピックアップ物件
***************************************************************/
.secPropertyPickup {
  background: #e2e7e7;
  padding: 120px 0 108px;
}

.secPropertyPickup .inner {
  width: 1200px;
  margin: auto;
}

.secPropertyPickup .secCommonTitle {
  margin-bottom: 55px;
}

@media all and (max-width: 680px) {
  .secPropertyPickup {
    padding: 40px 0 58px;
  }
  .secPropertyPickup .inner {
    width: 93.75%;
  }
  .secPropertyPickup .secCommonTitle {
    margin-bottom: 23px;
  }
}

/* ピックアップ物件
***************************************************************/
/* 特集から探す
***************************************************************/
.secFeature {
  padding-top: 120px;
}

.secFeature .inner {
  width: 1150px;
  margin: auto;
}

.secFeature .secCommonTitle {
  margin-bottom: 50px;
}

.corporateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.corporateList li {
  width: 560px;
}

.corporateList li a {
  display: block;
}

.corporateList li .listImg {
  height: 260px;
  overflow: hidden;
}

.corporateList li .listImg .img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.corporateList li .listTextBox {
  padding: 20px 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.corporateList li .arrow {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #dedede;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.corporateList li .arrow::before,
.corporateList li .arrow::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #335167;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.corporateList li .arrow::before {
  width: 18px;
  top: 50%;
  right: calc((100% - 18px) / 2);
}

.corporateList li .arrow::after {
  width: 7px;
  top: calc((100% - 5px) / 2);
  right: calc((100% - 21px) / 2);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.corporateList li .listTitle {
  width: calc(100% - 58px);
  padding-left: 18px;
}

.corporateList li .listTitle span {
  display: block;
}

.corporateList li .listTitle .jp {
  font-size: 20px;
  font-weight: 500;
  color: #335167;
}

@media all and (min-width: 681px) {
  .corporateList li {
    margin: 0 30px 40px 0;
  }
  .corporateList li:nth-child(1) .listImg .img {
    background-image: url(../img/property_list/property_list_img01.jpg);
  }
  .corporateList li:nth-child(2) .listImg .img {
    background-image: url(../img/property_list/property_list_img02.jpg);
  }
  .corporateList li:nth-child(2n) {
    margin-right: 0;
  }
  .corporateList li:last-child,
  .corporateList li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .corporateList li a:hover .listImg .img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .corporateList li a:hover .arrow {
    background: #335167;
  }
  .corporateList li a:hover .arrow::before,
  .corporateList li a:hover .arrow::after {
    background: #fff;
  }
  .corporateList li a:hover .arrow::before {
    right: calc((100% - 37px) / 2);
  }
  .corporateList li a:hover .arrow::after {
    right: calc((100% - 40px) / 2);
  }
}

@media all and (max-width: 680px) {
  .secFeature {
    padding-top: 40px;
  }
  .secFeature .inner {
    width: 90.627%;
  }
  .secFeature .secCommonTitle {
    margin-bottom: 23px;
  }
  .corporateList li {
    width: 100%;
    margin-bottom: 20px;
  }
  .corporateList li:nth-child(1) .listImg .img {
    background-image: url(../img/property_list/property_list_img01_sp.jpg);
  }
  .corporateList li:nth-child(2) .listImg .img {
    background-image: url(../img/property_list/property_list_img02_sp.jpg);
  }
  .corporateList li:last-child {
    margin-bottom: 0;
  }
  .corporateList li .listImg {
    height: 160px;
  }
  .corporateList li .listTextBox {
    padding: 10px 0 0;
  }
  .corporateList li .arrow {
    width: 38px;
    height: 38px;
  }
  .corporateList li .arrow::before {
    width: 10px;
    right: calc((100% - 10px) / 2);
  }
  .corporateList li .arrow::after {
    width: 5px;
    top: calc((100% - 3px) / 2);
    right: calc((100% - 11px) / 2);
  }
  .corporateList li .listTitle {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
  .corporateList li .listTitle .jp {
    font-size: 15px;
  }
}

/* 特集から探す
***************************************************************/
/* ニュース&トピックス
***************************************************************/
.secNewsTopics {
  padding-top: 138px;
}

.secNewsTopics .inner {
  width: 1150px;
  margin: auto;
}

.secNewsTopics .secCommonTitle {
  margin-bottom: 53px;
}

.secNewsTopics .newsTopicsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secNewsTopics .contBox {
  width: 550px;
  margin-right: 50px;
}

.secNewsTopics .contBox:nth-child(2n) {
  margin-right: 0;
}

.secNewsTopics .contBox .newsTopicsTitle {
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1;
  color: #335167;
  text-align: center;
  border-top: 2px solid #335167;
  border-bottom: 2px solid #335167;
  padding: 13px 0;
}

.secNewsTopics .contBox .contBoxInner {
  padding-top: 38px;
  height: 340px;
  overflow-y: scroll;
  border-bottom: 2px solid #335167;
}

.secNewsTopics .contBox .newsList li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
}

.secNewsTopics .contBox .newsList li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.secNewsTopics .contBox .newsList li .listDataBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 5px;
}

.secNewsTopics .contBox .newsList li .listDataBox .date {
  width: 130px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #c4c4c4;
  padding: 5px 0;
}

.secNewsTopics .contBox .newsList li .listDataBox .listCatBox {
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secNewsTopics .contBox .newsList li .listDataBox .listCatBox .listCat {
  width: 124px;
  display: block;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
  padding: 5px 5px 6px;
  margin: 0 5px 5px 0;
}

.secNewsTopics .contBox .newsList li .listDataBox .listCatBox .listCat.type01 {
  background: #335167;
}

.secNewsTopics .contBox .newsList li .listDataBox .listCatBox .listCat.type04 {
  background: #c49036;
}

.secNewsTopics .contBox .newsList li .listDataBox .listCatBox .listCat.type02 {
  background: #508688;
}

.secNewsTopics .contBox .newsList li .listTitle {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #335167;
  line-height: 24px;
}

.secNewsTopics .contBox .newsList li a {
  display: block;
}

@media all and (min-width: 681px) {
  .secNewsTopics .contBox .newsList li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .secNewsTopics .contBox .newsList li a:hover {
    opacity: 0.6;
  }
}

@media all and (max-width: 680px) {
  .secNewsTopics {
    padding-top: 90px;
  }
  .secNewsTopics .inner {
    width: 84.377%;
  }
  .secNewsTopics .secCommonTitle {
    margin-bottom: 40px;
  }
  .secNewsTopics .contBox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .secNewsTopics .contBox:last-child {
    margin-bottom: 0;
  }
  .secNewsTopics .contBox .newsTopicsTitle {
    font-size: 18px;
    padding: 11px 0;
  }
  .secNewsTopics .contBox .contBoxInner {
    padding-top: 20px;
  }
  .secNewsTopics .contBox .newsList li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .secNewsTopics .contBox .newsList li .listDataBox .date {
    padding: 5px 0;
  }
  .secNewsTopics .contBox .newsList li .listDataBox .listCatBox .listCat {
    padding: 5px 5px 6px;
    margin: 0 0 5px 0;
  }
  .secNewsTopics
    .contBox
    .newsList
    li
    .listDataBox
    .listCatBox
    .listCat:last-child {
    margin-bottom: 0;
  }
  .secNewsTopics .contBox .newsList li .listTitle {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* ニュース&トピックス
***************************************************************/
/* イベント・ショウルーム
***************************************************************/
.secEventShowroom {
  padding: 127px 0 105px;
}

.secEventShowroom .inner {
  width: 1150px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.secEventShowroom .secCommonTitle {
  text-align: left;
  margin-bottom: 50px;
}

.secEventShowroom .secCommonTitle span {
  display: inline-block;
  vertical-align: middle;
}

.secEventShowroom .secCommonTitle .en {
  margin-right: 8px;
  margin-bottom: 0;
}

.secEventShowroom .contBox {
  width: 540px;
  margin-right: 70px;
  position: relative;
}

.secEventShowroom .contBox::before {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  width: 2px;
  height: 100%;
  background: #dedede;
}

.secEventShowroom .contBox:nth-child(2n) {
  margin-right: 0;
}

.secEventShowroom .contBox:nth-child(2n)::before {
  content: none;
}

.secEventShowroom .eventList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secEventShowroom .eventList li {
  width: 258px;
  margin-right: 24px;
}

.secEventShowroom .eventList li:nth-child(2n) {
  margin-right: 0;
}

.secEventShowroom .eventList li .listImg {
  height: 174px;
}

.secEventShowroom .eventList li .listImg .img {
  width: 100%;
  height: 100%;
}

.secEventShowroom .eventList li .listTextBox {
  margin-top: 12px;
}

.secEventShowroom .eventList li .listDate {
  font-size: 14px;
  letter-spacing: 0;
  color: #335167;
  line-height: 24px;
}

.secEventShowroom .eventList li .listTitle {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
  color: #335167;
  line-height: 27px;
  margin-top: 5px;
}

.secEventShowroom .eventList li a {
  display: block;
}

.secEventShowroom .showroomList li .listImg {
  height: 268px;
}

.secEventShowroom .showroomList li .listImg .img {
  width: 100%;
  height: 100%;
}

.secEventShowroom .listBtn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.secEventShowroom .arrow {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #dedede;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.secEventShowroom .arrow::before,
.secEventShowroom .arrow::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #335167;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.secEventShowroom .arrow::before {
  width: 18px;
  top: 50%;
  right: calc((100% - 18px) / 2);
}

.secEventShowroom .arrow::after {
  width: 7px;
  top: calc((100% - 5px) / 2);
  right: calc((100% - 21px) / 2);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.secEventShowroom .listBtnText {
  width: calc(100% - 58px);
  padding-left: 18px;
}

.secEventShowroom .listBtnText span {
  display: block;
}

.secEventShowroom .listBtnText .jp {
  font-size: 20px;
  font-weight: 500;
  color: #335167;
}

@media all and (min-width: 681px) {
  .secEventShowroom .eventList li .listImg {
    overflow: hidden;
  }
  .secEventShowroom .eventList li .listImg .img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .secEventShowroom .eventList li .listTextBox {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .secEventShowroom .eventList li a:hover .listImg .img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .secEventShowroom .eventList li a:hover .listTextBox {
    opacity: 0.6;
  }
  .secEventShowroom .showroomList li .listImg {
    overflow: hidden;
  }
  .secEventShowroom .showroomList li .listImg .img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .secEventShowroom .showroomList li a:hover .listImg .img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .secEventShowroom .listBtn:hover .arrow {
    background: #335167;
  }
  .secEventShowroom .listBtn:hover .arrow::before,
  .secEventShowroom .listBtn:hover .arrow::after {
    background: #fff;
  }
  .secEventShowroom .listBtn:hover .arrow::before {
    right: calc((100% - 37px) / 2);
  }
  .secEventShowroom .listBtn:hover .arrow::after {
    right: calc((100% - 40px) / 2);
  }
}

@media all and (max-width: 680px) {
  .secEventShowroom {
    padding: 85px 0 60px;
  }
  .secEventShowroom .inner {
    width: 90.627%;
    display: block;
  }
  .secEventShowroom .secCommonTitle {
    text-align: center;
    margin-bottom: 25px;
  }
  .secEventShowroom .secCommonTitle span {
    display: block;
  }
  .secEventShowroom .secCommonTitle .en {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .secEventShowroom .contBox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }
  .secEventShowroom .contBox::before {
    content: none;
  }
  .secEventShowroom .contBox:last-child {
    margin-bottom: 0;
  }
  .secEventShowroom .eventList li {
    width: 100%;
    margin-right: 0;
    padding-bottom: 20px;
    margin-bottom: 17px;
    border-bottom: 1px solid #dedede;
  }
  .secEventShowroom .eventList li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .secEventShowroom .eventList li .listImg {
    width: 146px;
    height: 99px;
  }
  .secEventShowroom .eventList li .listTextBox {
    width: calc(100% - 146px);
    margin-top: 0;
    padding-left: 9px;
  }
  .secEventShowroom .eventList li .listDate {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 5px;
  }
  .secEventShowroom .eventList li .listTitle {
    font-size: 15px;
    line-height: 2;
    margin-top: 2px;
  }
  .secEventShowroom .eventList li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .secEventShowroom .showroomList li .listImg {
    height: 143px;
  }
  .secEventShowroom .listBtn {
    margin-top: 14px;
  }
  .secEventShowroom .arrow {
    width: 38px;
    height: 38px;
  }
  .secEventShowroom .arrow::before {
    width: 10px;
    right: calc((100% - 10px) / 2);
  }
  .secEventShowroom .arrow::after {
    width: 5px;
    top: calc((100% - 3px) / 2);
    right: calc((100% - 11px) / 2);
  }
  .secEventShowroom .listBtnText {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
  .secEventShowroom .listBtnText .jp {
    font-size: 15px;
  }
}

/* イベント・ショウルーム
***************************************************************/
/* 昭和住宅の住まい
***************************************************************/
.secShowaHouse {
  padding: 120px 0 153px;
}

.secShowaHouse .inner {
  width: 1150px;
  margin: auto;
}

.secShowaHouse .secCommonTitle {
  margin-bottom: 60px;
}

.secShowaHouse .showaHouseList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secShowaHouse .showaHouseList li {
  width: 366px;
  height: 160px;
  border: 2px solid #335167;
  margin: 0 26px 26px 0;
}

.secShowaHouse .showaHouseList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #335167;
  padding: 0 25px 0 30px;
  height: 100%;
  position: relative;
  z-index: 0;
}

.secShowaHouse .showaHouseList li .listTextBox {
  width: 100%;
}

.secShowaHouse .showaHouseList li .listTitle {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  margin-bottom: 8px;
}

.secShowaHouse .showaHouseList li .listText {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
}

.secShowaHouse .showaHouseList li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.secShowaHouse .showaHouseList li i span {
  display: block;
  width: 11px;
  height: 3px;
  position: relative;
}

.secShowaHouse .showaHouseList li i span::before,
.secShowaHouse .showaHouseList li i span::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1px;
}

.secShowaHouse .showaHouseList li i span::before {
  width: 100%;
  left: 0;
  bottom: 0;
}

.secShowaHouse .showaHouseList li i span::after {
  width: 4px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media all and (min-width: 681px) {
  .secShowaHouse .showaHouseList li:nth-child(3n) {
    margin-right: 0;
  }
  .secShowaHouse .showaHouseList li:last-child,
  .secShowaHouse .showaHouseList li:nth-last-child(2),
  .secShowaHouse .showaHouseList li:nth-last-child(3) {
    margin-bottom: 0;
  }
  .secShowaHouse .showaHouseList li a {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .secShowaHouse .showaHouseList li a i {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .secShowaHouse .showaHouseList li a:hover {
    background: #5e788b;
  }
  .secShowaHouse .showaHouseList li a:hover i {
    right: 15px;
  }
}

@media all and (max-width: 680px) {
  .secShowaHouse {
    padding: 80px 0 70px;
  }
  .secShowaHouse .inner {
    width: 90.627%;
  }
  .secShowaHouse .secCommonTitle {
    margin-bottom: 33px;
  }
  .secShowaHouse .showaHouseList li {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }
  .secShowaHouse .showaHouseList li:last-child {
    margin-bottom: 0;
  }
  .secShowaHouse .showaHouseList li a {
    padding: 20px 12px 21px 19px;
  }
  .secShowaHouse .showaHouseList li .listTitle {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 27px;
    margin-bottom: 8px;
  }
  .secShowaHouse .showaHouseList li .listText {
    line-height: 20px;
  }
  .secShowaHouse .showaHouseList li i {
    width: 30px;
    height: 30px;
    top: 19px;
    right: 12px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .secShowaHouse .showaHouseList li i span {
    width: 8px;
    height: 2px;
  }
  .secShowaHouse .showaHouseList li i span::after {
    width: 3px;
  }
}

/* 昭和住宅の住まい
***************************************************************/
/* 昭和住宅のハウススタイル
***************************************************************/
.secHouseStyle {
  background: #f2f2f2;
  padding: 125px 0 122px;
}

.secHouseStyle .inner {
  width: 1200px;
  margin: auto;
}

.secHouseStyle .secCommonTitle {
  margin-bottom: 50px;
}

.secHouseStyle .houseStyleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*下記付け加え*/
  /*width:820px;
    margin: 0 190px 0 190px;*/
  /*ここｍで付け加え*/
}

.secHouseStyle .houseStyleList li {
  width: 383px;
  margin: 0 25.5px 25.5px 0;
}

.secHouseStyle .houseStyleList li .listInner {
  display: block;
}

.secHouseStyle .houseStyleList li .listLogoBox {
  padding-top: 28px;
  height: 174px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.secHouseStyle .houseStyleList li .listLogoBox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 77px);
  background: #fff;
  z-index: -1;
}

.secHouseStyle .houseStyleList li .listLogoBox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0 191.5px 77px 191.5px;
  z-index: -1;
}

.secHouseStyle .houseStyleList li .listLogoBox .listLogo {
  width: 100%;
}

.secHouseStyle .houseStyleList li .listLogoBox .listLogo img {
  width: auto;
  margin: auto;
}

.secHouseStyle .houseStyleList li .listLogoBox .listLogoText {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #404040;
  margin-top: 16px;
}

.secHouseStyle .houseStyleList li .listImg {
  width: 100%;
  height: 239px;
  overflow: hidden;
  margin-bottom: 23px;
}

.secHouseStyle .houseStyleList li .listImg:last-child {
  margin-bottom: 0;
}

.secHouseStyle .houseStyleList li .listImg .img {
  width: 100%;
  height: 100%;
}

.secHouseStyle .houseStyleList li .listTypeBox {
  margin-bottom: 10px;
}

.secHouseStyle .houseStyleList li .listTypeBox:last-child {
  margin-bottom: 0;
}

.secHouseStyle .houseStyleList li .listTypeBox .type {
  height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 500;
  background: #404040;
  margin-bottom: 10px;
}

.secHouseStyle .houseStyleList li .listTypeBox .type:last-child {
  margin-bottom: 0;
}

.secHouseStyle .houseStyleList li .listTypeBox.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.secHouseStyle .houseStyleList li .listTypeBox.column2 .type {
  width: 186px;
  margin: 0 11px 11px 0;
}

/*
.popup-banner {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 270px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index:999;
    display: none; 初期状態では非表示 
}

.popup-banner img {
    width: 100%;
    height: auto;
}

.popup-banner a:hover {
    opacity: 0.6;
}






.close-button5 {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

*/

/*フローティングバナー*/
.floating-bnr {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 320px;
  max-width: 90vw;
  height: auto;
  z-index: 9999;
}
.floating-bnr a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

/*閉じるボタン*/
.bnr_close {
  background-color: #f8f8f8;
  border: none;
  border-radius: 25px;
  box-shadow: 0 0 7px rgb(0, 0, 0, 0.4);
  color: #777;
  cursor: pointer;
  font-weight: bold;
  padding: 5px 8px;
  position: absolute;
  right: -4px;
  top: -2px;
}
.fa-xmark:before {
  content: "×";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
}

@media all and (min-width: 681px) {
  .secHouseStyle .houseStyleList li:nth-child(3n) {
    margin-right: 0;
  }
  .secHouseStyle .houseStyleList li:last-child,
  .secHouseStyle .houseStyleList li:nth-last-child(2),
  .secHouseStyle .houseStyleList li:nth-last-child(3) {
    margin-bottom: 0;
  }
  .secHouseStyle .houseStyleList li .listTypeBox.column2 .type:nth-child(2n) {
    margin-right: 0;
  }
  .secHouseStyle .houseStyleList li .listTypeBox.column2 .type:last-child,
  .secHouseStyle
    .houseStyleList
    li
    .listTypeBox.column2
    .type:nth-last-child(2) {
    margin-bottom: 0;
  }
  .secHouseStyle .houseStyleList li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .secHouseStyle .houseStyleList li a .listImg .img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .secHouseStyle .houseStyleList li a:hover {
    opacity: 0.6;
  }
  .secHouseStyle .houseStyleList li a:hover .listImg .img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media all and (max-width: 680px) {
  .secHouseStyle {
    padding: 70px 0 72px;
  }
  .secHouseStyle .inner {
    width: 81.25% !important;
  }
  .secHouseStyle .secCommonTitle {
    margin-bottom: 40px;
  }

  .secHouseStyle .houseStyleList {
    /*下記付け加え*/
    /*width:100%;
    margin: 0 ;*/
    /*ここｍで付け加え*/
  }

  .secHouseStyle .houseStyleList li {
    width: 100%;
    margin: 0 0 11px 0;
  }
  .secHouseStyle .houseStyleList li .listInner {
    padding-bottom: 9px;
    position: relative;
    z-index: 0;
  }
  .secHouseStyle .houseStyleList li .listInner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    background: #fff;
    z-index: -1;
  }
  .secHouseStyle .houseStyleList li .listLogoBox {
    padding-top: 24px;
    height: 120px;
  }
  .secHouseStyle .houseStyleList li .listLogoBox::before {
    height: calc(100% - 53px);
  }
  .secHouseStyle .houseStyleList li .listLogoBox::after {
    top: 0;
    border-width: 0 40.7vw 53px 40.7vw;
  }
  .secHouseStyle .houseStyleList li .listLogoBox .listLogo img {
    max-height: 37px;
  }
  .secHouseStyle .houseStyleList li .listLogoBox .listLogoText {
    font-size: 13px;
    margin-top: 10px;
  }
  .secHouseStyle .houseStyleList li .listImg {
    height: 162px;
    margin-bottom: 6px;
  }
  .secHouseStyle .houseStyleList li .listTypeBox {
    padding: 0 9px;
    margin-bottom: 4px;
  }
  .secHouseStyle .houseStyleList li .listTypeBox .type {
    height: 24px;
    font-size: 12px;
    margin-bottom: 4px;
  }
  .secHouseStyle .houseStyleList li .listTypeBox.column2 .type {
    width: calc((100% - 4px) / 2);
    margin: 0 4px 4px 0;
  }
  .secHouseStyle .houseStyleList li .listTypeBox.column2 .type:nth-child(2n) {
    margin-right: 0;
  }
  .secHouseStyle .houseStyleList li .listTypeBox.column2 .type:last-child,
  .secHouseStyle
    .houseStyleList
    li
    .listTypeBox.column2
    .type:nth-last-child(2) {
    margin-bottom: 0;
  }
  .secHouseStyle .houseStyleList li:nth-child(1) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .secHouseStyle .houseStyleList li:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .secHouseStyle .houseStyleList li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  /*    
 .popup-banner2 {
    position: fixed;
    bottom:47px;
    right: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index:999;
    display: none;  初期状態では非表示 
}

.popup-banner2 img {
    width: 100%;
    height: auto;
}

.close-button6 {
    position: absolute;
    top: 2px;
    right: 5px;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    padding: 0;
}

   */

  /*フローティングバナー*/
  .floating-bnr {
    /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);*/
    display: none;
    position: fixed;
    bottom: 48px;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 9999;
  }
  .floating-bnr a:hover {
    opacity: 0.7;
    transition: 0.2s;
  }

  /*閉じるボタン*/
  .bnr_close {
    background-color: #f8f8f8;
    border: none;
    border-radius: 22px;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.4);
    color: #777;
    cursor: pointer;
    font-weight: bold;
    padding: 1px 5px;
    position: absolute;
    right: 2px;
    top: -2px;
  }
  .fa-xmark:before {
    content: "×";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
  }
}

/* 昭和住宅のハウススタイル
***************************************************************/
/* 絞り込み条件ボックス
***************************************************************/
.taxCheckListWrap {
  width: 1000px;
  margin: 0 auto 70px;
}

.taxCheckListWrap .taxCheckTitle {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.taxCheckListWrap .taxCheckListBox {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.taxCheckListWrap .taxCheckListBox:last-child {
  margin-bottom: 0;
}

.taxCheckListWrap .taxCheckListBox.term .taxCheckListTitle {
  width: 170px;
}

.taxCheckListWrap .taxCheckListBox.term .taxCheckList {
  width: calc(100% - 180px);
}

.taxCheckListWrap .taxCheckListBox.show,
.taxCheckListWrap .taxCheckListBox.term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.taxCheckListWrap .taxCheckListTitle {
  width: 135px;
  margin-right: 10px;
}

.taxCheckListWrap .taxCheckListTitle span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  background: #dedede;
  border-radius: 5px;
  padding: 8px 0 9px;
}

.taxCheckListWrap .taxCheckList {
  width: calc(100% - 145px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -10px 0;
}

.taxCheckListWrap .taxCheckList li {
  padding: 0 10px 10px 0;
}

.taxCheckListWrap .taxCheckList li span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  padding: 8px 20px 9px;
}

@media all and (max-width: 680px) {
  .taxCheckListWrap {
    width: 100%;
    margin: 40px auto;
  }
  .taxCheckListWrap .taxCheckTitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .taxCheckListWrap .taxCheckListBox {
    display: block;
  }
  .taxCheckListWrap .taxCheckListBox.term .taxCheckListTitle {
    width: 100%;
  }
  .taxCheckListWrap .taxCheckListBox.term .taxCheckList {
    width: 100%;
  }
  .taxCheckListWrap .taxCheckListTitle {
    width: 100%;
    margin: 0 0 10px;
  }
  .taxCheckListWrap .taxCheckListTitle span {
    font-size: 12px;
    padding: 6px 0 7px;
  }
  .taxCheckListWrap .taxCheckList {
    width: 100%;
  }
  .taxCheckListWrap .taxCheckList li span {
    font-size: 12px;
    padding: 6px 15px 7px;
  }
}

/* 絞り込み条件ボックス
***************************************************************/
/*# sourceMappingURL=property_list.css.map */
