@charset "UTF-8";
@import url("global.css");
ul.syubetsutab {
  margin-bottom: 80px;
  display: flex;
  border: #252122 1px solid;
}
ul.syubetsutab li {
  width: 50%;
  flex-shrink: 0;
  border: #252122 1px solid;
  box-sizing: border-box;
}
ul.syubetsutab li a {
  display: block;
  text-align: center;
  padding: 12px 7px 12px 10px;
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 3px;
  position: relative;
  color: #fff;
  background-color: #252122;
  overflow: hidden;
}
ul.syubetsutab li a::before {
  content: "\f0d7";
  font-family: "Font Awesome 5 free";
  font-size: 32px;
  line-height: 32px;
  width: 32px;
  position: absolute;
  color: #fff;
  left: 50%;
  margin-left: -16px;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  bottom: -10px;
  opacity: 0;
}
ul.syubetsutab li a:hover {
  padding: 4px 7px 20px 10px;
}
ul.syubetsutab li a:hover::before {
  opacity: .5;
  bottom: 0;
}
.land ul.syubetsutab li#tab-land a, .house ul.syubetsutab li#tab-house a {
  color: #252122;
  background-color: #fff;
  padding: 4px 7px 20px 10px;
  cursor: default;
}
.land ul.syubetsutab li#tab-land a::before, .house ul.syubetsutab li#tab-house a::before {
  color: #F08803;
  bottom: 0;
  opacity: 1;
}

/* ------------------------------
 Index-Page
------------------------------ */
ul.list {
  display: flex;
  margin: 0 -12px;
  flex-wrap: wrap;
}
ul.list li {
  width: 33.3333333333%;
  box-sizing: border-box;
  padding: 0 12px;
  margin-bottom: 50px;
}
ul.list li a {
  display: block;
  text-align: center;
  border: #252122 1px solid;
  padding: 5px 20px 20px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
ul.list li a .title {
  background-color: rgba(169, 170, 170, 0.3);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 10px;
  margin: 0 -15px 15px;
}
ul.list li a .data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
ul.list li a .data .image {
  width: 160px;
  max-width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}
ul.list li a .data .image figure {
  height: 0;
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
ul.list li a .data .image figure img {
  position: absolute;
  top: 0;
  left: 0;
}
ul.list li a .data .image figure img.objectfit {
  object-fit: contain;
}
ul.list li a .data dl {
  flex-grow: 1;
  padding-left: 10px;
  margin-right: -10px;
  font-size: 15px;
}
ul.list li a .data dl dt {
  font-weight: bold;
}
ul.list li a .data dl dd {
  line-height: 1.4;
}
ul.list li a .data dl dd + dt {
  margin-top: 12px;
}
ul.list li a .joken {
  color: #a9aaaa;
  font-weight: bold;
}
ul.list li a .osusume {
  border: #a9aaaa 1px solid;
  color: #F08803;
  font-weight: bold;
  display: inline-block;
  padding: 3px 30px;
  margin: 5px 5px 0;
}
ul.list li a .syodan {
  border: #a9aaaa 1px solid;
  color: #a9aaaa;
  font-weight: bold;
  display: inline-block;
  padding: 3px 30px;
  margin: 5px 5px 0;
}
ul.list li a .new {
  background-color: #F08803;
  color: #fff;
  font-weight: bold;
  padding: 3px 20px;
  box-sizing: border-box;
  position: absolute;
  top: -40px;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  z-index: 2;
}
ul.list li a .new::before {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #F08803 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -8px;
}
ul.list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #252122;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 0;
}
ul.list li a::after {
  content: "";
  width: 60px;
  height: 5px;
  background: url("../img/arrow3.png") center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2px 0 0 -30px;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateX(-40px);
  opacity: 0;
}
ul.list li a:hover::before {
  opacity: .5;
}
ul.list li a:hover::after {
  opacity: 1;
  transform: none;
}

/* ------------------------------
 Entry-Page
------------------------------ */
.entry .entrycats {
  margin: 0 20px 30px;
}
.entry .entrycats span {
  display: inline-block;
  background-color: #a9aaaa;
  color: #fff;
  padding: 3px 20px;
  font-size: 15px;
  min-width: 150px;
  margin: 0 5px;
  box-sizing: border-box;
  font-weight: bold;
}
.entry .entrycats span.cat {
  background-color: #F08803;
}
.entry .entrytitle {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.entry #exarea {
  background-color: #eee;
  padding: 30px 0;
  margin-bottom: 80px;
}
.entry #exarea .block {
  position: relative;
  display: flex;
  align-items: center;
}
.entry #exarea .mainimage {
  height: 480px;
  text-align: right;
  width: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding-right: 30px;
}
.entry #exarea .mainimage a {
  display: block;
  height: 100%;
  position: relative;
}
.entry #exarea .mainimage a img {
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 0;
}
.entry #exarea .mainimage a:hover {
  opacity: .7;
}
.entry #exarea .databox {
  width: 50%;
  text-align: left;
  box-sizing: border-box;
  padding: 0 30px;
}
.entry #exarea .databox .subimage {
  display: flex;
  margin: 0 -7px 20px;
}
.entry #exarea .databox .subimage li {
  width: 14.2857142857%;
  box-sizing: border-box;
  padding: 0 7px;
}
.entry #exarea .databox .subimage li a {
  display: block;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
.entry #exarea .databox .subimage li a::before {
  content: "";
  box-sizing: border-box;
  border: #F08803 3px solid;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 0;
}
.entry #exarea .databox .subimage li a img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.entry #exarea .databox .subimage li a:hover::before {
  opacity: 1;
}
.entry #exarea .databox .subimage li a:hover img {
  opacity: .5;
}
.entry #exarea .databox .data table {
  width: 100%;
  border-collapse: collapse;
  border-top: #fff 1px solid;
  text-align: left;
}
.entry #exarea .databox .data table tr {
  border-bottom: #fff 1px solid;
  line-height: 1.5;
}
.entry #exarea .databox .data table th {
  font-weight: bold;
  padding: 15px 20px;
  white-space: nowrap;
}
.entry #exarea .databox .data table td {
  padding: 15px 20px;
}
.entry #exarea .databox .pdf {
  margin-top: 20px;
}
.entry #exarea .databox .pdf a {
  display: block;
  background-color: #252122;
  border-radius: 2px;
  color: #fff;
  padding: 8px 30px;
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 19px;
  position: relative;
}
.entry #exarea .databox .pdf a::before {
  content: "\f1c1";
  display: inline-block;
  vertical-align: 5%;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  margin-right: 10px;
}
.entry #exarea .databox .pdf a::after {
  content: "\f101";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  line-height: 30px;
  right: 20px;
  top: 50%;
  margin-top: -15px;
}
.entry #exarea .databox .pdf a:hover {
  background-color: #a9aaaa;
}
.entry #commentarea {
  text-align: center;
  margin: 0 20px 80px;
}
.entry #commentarea p + p {
  margin-top: 20px;
}
.entry table.kukaku {
  border: #a9aaaa 1px solid;
  width: 100%;
  box-sizing: border-box;
  border-collapse: collapse;
  text-align: center;
  line-height: 1.4;
}
.entry table.kukaku tr {
  border-bottom: #a9aaaa 1px solid;
}
.entry table.kukaku tr:nth-of-type(even) {
  background-color: rgba(238, 238, 238, 0.8);
}
.entry table.kukaku thead tr {
  border-bottom: #a9aaaa 1px solid;
  background-color: #a9aaaa;
}
.entry table.kukaku tbody tr:last-child {
  border: none;
}
.entry table.kukaku th {
  padding: 12px 10px;
  font-weight: bold;
  color: #fff;
}
.entry table.kukaku td {
  padding: 12px 10px;
}
.entry table.data {
  margin-top: 60px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-top: #ddd 1px solid;
}
.entry table.data tr {
  border-bottom: #ddd 1px solid;
}
.entry table.data th {
  white-space: nowrap;
  padding: 15px 15px;
  text-align: center;
  background-color: rgba(221, 221, 221, 0.3);
  position: relative;
  font-weight: bold;
}
.entry table.data th::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: #fff 3px solid;
}
.entry table.data td {
  padding: 15px 15px;
}
.entry aside.information {
  margin: 30px 0;
  border: #ccc 1px solid;
  padding: 10px 10px 20px;
  text-align: center;
}
.entry aside.information h3 {
  background-color: rgba(221, 221, 221, 0.3);
  padding: 5px;
  margin-bottom: 10px;
}
.entry aside.information h3 strong {
  font-weight: bold;
}
.entry aside.information dl {
  display: inline-block;
  text-align: left;
  font-size: 15px;
}
.entry aside.information dl dt {
  float: left;
  width: 140px;
  font-weight: bold;
  clear: both;
}
.entry aside.information dl dd {
  margin-left: 140px;
}
.entry #map {
  background-color: #a9aaaa;
  margin: 40px 0 60px;
}
.entry #map .map {
  position: relative;
  height: 540px;
  border-left: #fff 2px solid;
  border-right: #fff 2px solid;
}
.entry #map .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.entry .modelbanner {
  margin: 80px 0;
}
.entry .modelbanner a {
  display: block;
  height: 220px;
  position: relative;
  background: url("../event/img/banner_bg.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
}
.entry .modelbanner a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #252122;
  opacity: .3;
  z-index: 1;
}
.entry .modelbanner a p {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 35px;
}
.entry .modelbanner a p span {
  display: block;
}
.entry .modelbanner a p span.text {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}
.entry .modelbanner a p span.text img {
  display: block;
  margin: 0 auto;
}
.entry .modelbanner a p span.button {
  font-weight: bold;
  font-size: 21px;
  width: 300px;
  margin: 0 auto;
  background-color: rgba(37, 33, 34, 0.9);
  padding: 5px 0;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.entry .modelbanner a p span.button::after {
  content: "\f101";
  font-family: "Font Awesome 5 free";
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  vertical-align: -2px;
  margin-left: 12px;
}
.entry .modelbanner a:hover p span.button {
  background-color: #F08803;
}

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

 Responsive-Breakpoint-1 (1300px)
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Index
  ------------------------------ */
  ul.list {
    margin: 0 -2%;
  }
  ul.list li {
    width: 50%;
    padding: 0 2%;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #exarea .mainimage {
    padding-right: 20px;
  }
  .entry #exarea .databox {
    padding: 0 20px;
  }
  .entry #exarea .databox .subimage {
    margin: 0 -5px 20px;
  }
  .entry #exarea .databox .subimage li {
    padding: 0 5px;
  }
  .entry #exarea .databox .data table th {
    padding: 15px 20px;
  }
  .entry #exarea .databox .data table td {
    padding: 15px 10px;
  }
  .entry #map .map {
    border: none;
    margin: 0 -50px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 960px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  ul.syubetsutab li a {
    font-size: 18px;
  }
  ul.syubetsutab li a:hover {
    padding: 12px 7px 12px 10px;
  }
  ul.syubetsutab li a:hover::before {
    opacity: 0;
  }

  /* ------------------------------
   Index
  ------------------------------ */
  ul.list {
    margin: 0 -10px;
  }
  ul.list li {
    padding: 0 10px;
    margin-bottom: 40px;
  }
  ul.list li a {
    padding: 5px 15px 20px;
  }
  ul.list li a .title {
    font-size: 16px;
    margin: 0 -10px 15px;
  }
  ul.list li a .data dl {
    margin-right: 0;
  }
  ul.list li a .data dl dd {
    font-size: 14px;
  }
  ul.list li a p {
    font-size: 15px;
  }
  ul.list li a .new {
    top: -38px;
  }
  ul.list li a::before {
    display: none;
  }
  ul.list li a::after {
    display: none;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry .entrycats {
    margin: 0 0 20px;
  }
  .entry .entrytitle {
    font-size: 26px;
    margin: 0 10px 40px;
  }
  .entry #exarea {
    background-color: transparent;
    padding: 0 30px;
    margin-bottom: 50px;
  }
  .entry #exarea .block {
    display: block;
  }
  .entry #exarea .mainimage {
    text-align: center;
    width: auto;
    padding-right: 0;
    margin-bottom: 20px;
    height: auto;
  }
  .entry #exarea .mainimage a {
    height: 0;
    padding-top: 70%;
    position: relative;
  }
  .entry #exarea .mainimage a img.objectfit {
    position: absolute;
    object-fit: contain;
  }
  .entry #exarea .databox {
    width: auto;
    padding: 0;
  }
  .entry #exarea .databox .subimage {
    justify-content: center;
    margin: 0 -6px 20px;
  }
  .entry #exarea .databox .subimage li {
    padding: 0 6px;
  }
  .entry #exarea .databox .data table {
    border-top: #a9aaaa 1px solid;
    font-size: 15px;
  }
  .entry #exarea .databox .data table tr {
    border-bottom: #a9aaaa 1px solid;
  }
  .entry #exarea .databox .data table th {
    text-align: center;
  }
  .entry #commentarea {
    margin: 0 0 60px;
  }
  .entry table.kukaku {
    font-size: 14px;
  }
  .entry table.data {
    margin-top: 50px;
  }
  .entry aside.information dl {
    font-size: 14px;
  }
  .entry aside.information dl dt {
    width: 130px;
  }
  .entry aside.information dl dd {
    margin-left: 130px;
  }
  .entry #map .map {
    margin: 0 -30px;
    height: 480px;
  }
  .entry .modelbanner {
    margin: 60px 0;
  }
  .entry .modelbanner a {
    height: 180px;
  }
  .entry .modelbanner a p {
    padding-top: 25px;
  }
  .entry .modelbanner a p span {
    display: block;
  }
  .entry .modelbanner a p span.text {
    margin-bottom: 15px;
  }
  .entry .modelbanner a p span.text img {
    width: 220px;
  }
  .entry .modelbanner a p span.button {
    font-size: 19px;
    width: 300px;
    padding: 0 0;
    background-color: #F08803;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  ul.syubetsutab {
    margin-bottom: 60px;
  }

  /* ------------------------------
   Index
  ------------------------------ */
  ul.list {
    display: block;
    margin: 0;
  }
  ul.list li {
    width: auto;
    padding: 0;
    margin-bottom: 30px;
  }
  ul.list li a .new {
    top: -27px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry .entrycats span {
    padding: 3px 20px;
    min-width: inherit;
  }
  .entry .entrytitle {
    font-size: 21px;
    margin: 0 10px 30px;
  }
  .entry #exarea {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .entry #exarea .mainimage {
    margin-bottom: 10px;
  }
  .entry #exarea .databox .subimage {
    flex-wrap: wrap;
    margin: 0 -5px 20px;
  }
  .entry #exarea .databox .subimage li {
    width: 20%;
    padding: 0 5px;
  }
  .entry #exarea .databox .data table {
    font-size: 15px;
  }
  .entry #exarea .databox .data table th {
    padding: 15px 10px;
  }
  .entry #exarea .databox .data table td {
    padding: 15px 10px;
  }
  .entry #exarea .databox .pdf a {
    font-size: 18px;
  }
  .entry #commentarea {
    text-align: justify;
    margin: 0 20px 50px;
  }
  .entry table.kukaku {
    font-size: 14px;
    display: block;
  }
  .entry table.kukaku thead {
    float: left;
    display: block;
  }
  .entry table.kukaku thead tr {
    border-bottom: none;
    border-right: #F08803 1px solid;
    background-color: #a9aaaa;
  }
  .entry table.kukaku tbody {
    display: block;
    overflow-x: auto;
    position: relative;
    white-space: nowrap;
    width: auto;
    letter-spacing: -0.4em;
  }
  .entry table.kukaku tbody tr:last-child {
    border: none;
  }
  .entry table.kukaku tr {
    display: inline-block;
    letter-spacing: 0;
    border-bottom: none;
    border-right: #eee 1px solid;
  }
  .entry table.kukaku th {
    display: block;
    padding: 12px;
  }
  .entry table.kukaku td {
    display: block;
    padding: 12px;
  }
  .entry table.data {
    margin-top: 40px;
    border: #a9aaaa 1px solid;
    display: block;
  }
  .entry table.data thead, .entry table.data tbody {
    display: block;
  }
  .entry table.data tr {
    display: block;
    border-bottom: none;
  }
  .entry table.data tr:last-of-type td {
    border: none;
  }
  .entry table.data th {
    display: block;
    padding: 15px 15px;
  }
  .entry table.data td {
    text-align: center;
    display: block;
    padding: 10px 15px 20px;
    border-bottom: #a9aaaa 1px solid;
  }
  .entry aside.information {
    margin: 20px 0;
    padding: 10px 10px 20px;
  }
  .entry aside.information dl {
    font-size: 14px;
  }
  .entry aside.information dl dt {
    float: none;
    width: auto;
    clear: none;
    margin-top: 5px;
  }
  .entry aside.information dl dd {
    margin-left: 0;
  }
  .entry #map {
    margin: 30px 0 40px;
  }
  .entry #map .map {
    margin: 0 -20px;
    height: 360px;
  }
  .entry .modelbanner {
    margin: 50px -20px;
  }
  .entry .modelbanner a {
    height: 150px;
  }
  .entry .modelbanner a p {
    padding-top: 20px;
  }
  .entry .modelbanner a p span {
    display: block;
  }
  .entry .modelbanner a p span.text {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .entry .modelbanner a p span.text img {
    width: 200px;
  }
  .entry .modelbanner a p span.button {
    font-size: 16px;
    width: 240px;
  }
  .entry .modelbanner a p span.button::after {
    font-size: 24px;
    vertical-align: -3px;
  }
}

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