/*==============================
	global
==============================*/
.inner {
  width: 87.5%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.sec {
  padding: 20% 0;
}

.fnt-pink {
  color: #ee8070;
}

.fnt-bold {
  font-weight: bold;
}

.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.secondaryInner {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}

.txtLink {
  text-align: right;
  margin-right: 1rem;
}
.txtLink a {
  text-decoration: underline;
  position: relative;
  transition: .3s;
}
.txtLink a:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 0px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .3s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1rem;
  margin: auto;
}
.txtLink a:hover {
  opacity: .8;
}
.txtLink a:hover:after {
  right: -1.3rem;
}

@media screen and (min-width: 768px) {
  .inner {
    width: 90%;
  }

  .sec {
    padding: 5% 0;
  }

  .sp_only {
    display: none;
  }

  .pc_only {
    display: block;
  }
}
/*==============================
	btn
==============================*/
.btn {
  width: 71.4%;
  margin: 0 auto;
}
.btn a {
  width: 100%;
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 10px 0;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.btn a:before, .btn a:after {
  content: '';
  display: block;
  position: absolute;
  background: #333;
}
.btn a:before {
  width: calc(100% + 5px);
  height: 1px;
  bottom: -5px;
  right: -5px;
}
.btn a:after {
  width: 1px;
  height: calc(100% + 5px);
  bottom: -5px;
  right: -5px;
}
.btn a:hover {
  transform: translate(3px, 3px);
  opacity: .8;
}
.btn.color-accent a {
  background: #ee8070;
}
.btn.color-accent a:before, .btn.color-accent a:after {
  background: #ee8070;
}
.btn.color-contact a {
  background: #da341c;
}
.btn.color-contact a:before, .btn.color-contact a:after {
  background: #da341c;
}

.btn + .btn {
  margin-top: 9%;
}

@media screen and (min-width: 768px) {
  .btn {
    width: 200px;
  }

  .btn + .btn {
    margin-top: 20px;
  }
}
/*==============================
	estateList
==============================*/
.estateList {
  margin-bottom: 24%;
}
.estateList .slick-slide {
  background: #FFF;
  border-radius: 8px;
  box-sizing: border-box;
  margin: 0 15px;
  position: relative;
}
.estateList .slick-slide:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #da341c transparent;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.estateList .slick-slide div {
  height: 100%;
}
.estateList .slick-slide li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  height: 100%;
}
.estateList .slick-slide li div {
  height: auto;
}
.estateList li a {
  height: 100%;
  display: block;
  padding: 20px;
  box-sizing: border-box;
  transition: .3s;
}
.estateList li a:hover {
  opacity: .8;
}
.estateList li .pht {
  margin-bottom: 6%;
}
.estateList li .name {
  font-size: 5vw;
  font-weight: bold;
  margin-bottom: 3%;
}
.estateList li table {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
  font-size: 4.375vw;
}
.estateList li table th {
  background: #ee8070;
  color: #FFF;
  text-align: center;
  width: 40%;
}
.estateList li table td {
  padding-left: 5%;
}

@media screen and (min-width: 768px) {
  .estateList {
    width: 83%;
    margin: 0 auto 8%;
  }
  .estateList .slick-slide {
    margin: 0 7.5px;
  }
  .estateList li .name {
    font-size: 1.3333333333vw;
  }
  .estateList li .pht {
    margin-bottom: 5%;
  }
  .estateList li table {
    border-spacing: 0 5px;
    font-size: 1.1666666667vw;
  }
  .estateList li table td {
    padding-left: 5%;
  }
}
@media screen and (min-width: 992px) {
  .estateList .slick-slide {
    margin: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .estateList li .name {
    font-size: 16px;
  }
  .estateList li table {
    font-size: 14px;
  }
}
/*==============================
	pageTtl
==============================*/
.pageTtl {
  width: 100%;
  height: 0;
  padding-top: 62.5%;
  position: relative;
}
.pageTtl h2 {
  width: 65%;
  text-align: center;
  padding: 10% 5%;
  box-sizing: border-box;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
}

@media screen and (min-width: 768px) {
  .pageTtl {
    padding-top: 21.9%;
  }
  .pageTtl h2 {
    max-width: 314px;
    padding: 3% 0;
  }
}
/*==============================
	blockTtl
==============================*/
.blockTtl {
  font-weight: bold;
  font-size: 6.25vw;
  border-bottom: solid 3px #ee8070;
  margin-bottom: 6%;
  line-height: 1.4;
  background: #fdf6f4;
  padding: 2% 4%;
}

@media screen and (min-width: 768px) {
  .blockTtl {
    font-size: 2.1666666667vw;
    margin-bottom: 2%;
    padding: 1% 2%;
  }
}
@media screen and (min-width: 1200px) {
  .blockTtl {
    font-size: 26px;
  }
}
/*===========================
	mainContents
===========================*/
.mainContents {
  padding: 8% 0 20%;
}

@media screen and (min-width: 768px) {
  .mainContents {
    padding: 2% 0 6%;
  }
}
/*===========================
	breadcrumb
===========================*/
.breadcrumb {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: auto;
  white-space: nowrap;
}
.breadcrumb li {
  font-size: 3.75vw;
  color: #777777;
}
.breadcrumb li a {
  color: #777777;
}
.breadcrumb li:after {
  content: "/";
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumb li:last-child:after {
  content: none;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 4%;
  }
  .breadcrumb li {
    font-size: 1.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumb li {
    font-size: 14px;
  }
}
/*==============================
	infoTable
==============================*/
.infoTable {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.infoTable th, .infoTable td {
  width: 100%;
  padding: 4%;
  display: block;
  box-sizing: border-box;
}
.infoTable th {
  font-weight: normal;
  background: #dcdcdc;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .infoTable {
    border-top: solid 1px #dcdcdc;
  }
  .infoTable th, .infoTable td {
    width: auto;
    display: table-cell;
    padding-top: 1%;
    padding-bottom: 1%;
  }
  .infoTable th {
    width: 25%;
    border-bottom: solid 1px #FFF;
    text-align: center;
  }
  .infoTable td {
    width: 75%;
    border-bottom: solid 1px #dcdcdc;
    padding-left: 2%;
    padding-right: 2%;
  }
}
/*===========================
	layout
===========================*/
.moduleWrap {
  margin-bottom: 12%;
}

.is-flex {
  flex: none;
}

.col {
  margin-bottom: 20px;
}

.is-flex.gutters {
  margin-left: -3.3%;
}

.is-flex.gutters > .col {
  margin-left: 3.3%;
}

.is-flex.is-mobile {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.is-flex.gutters.is-offset {
  margin-left: 0;
}

.is-flex.gutters.is-offset > .col {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .moduleWrap {
    margin-bottom: 6%;
  }

  .is-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .is-flex.gutters {
    margin-left: -2%;
  }

  .is-flex.gutters > .col {
    margin-left: 2%;
  }

  .is-flex.is-mobile > * + * {
    margin-top: 0%;
  }

  .is-flex.gutters.is-offset {
    margin-left: -2%;
  }

  .is-flex.gutters.is-offset > .col {
    margin-left: 2%;
  }
}
@media screen and (min-width: 992px) {
  .is-flex.gutters {
    margin-left: -3%;
  }

  .is-flex.gutters > .col {
    margin-left: 3%;
  }

  .is-flex.gutters.is-offset {
    margin-left: -3%;
  }

  .is-flex.gutters.is-offset > .col {
    margin-left: 3%;
  }
}
/*==============================
	column
==============================*/
.is-mb1 {
  width: 8.333333%;
}

.is-mb2 {
  width: calc(8.333333% * 2);
}

.is-mb3 {
  width: calc(8.333333% * 3);
}

.is-mb4 {
  width: calc(8.333333% * 4);
}

.is-mb5 {
  width: calc(8.333333% * 5);
}

.is-mb6 {
  width: calc(8.333333% * 6);
}

.is-mb7 {
  width: calc(8.333333% * 7);
}

.is-mb8 {
  width: calc(8.333333% * 8);
}

.is-mb9 {
  width: calc(8.333333% * 9);
}

.is-mb10 {
  width: calc(8.333333% * 10);
}

.is-mb11 {
  width: calc(8.333333% * 11);
}

.is-mb12 {
  width: 100%;
}

.is-flex.gutters > .is-mb1 {
  width: calc(8.333333% - 3.3%);
}

.is-flex.gutters > .is-mb2 {
  width: calc(8.333333% * 2 - 3.3%);
}

.is-flex.gutters > .is-mb3 {
  width: calc(8.333333% * 3 - 3.3%);
}

.is-flex.gutters > .is-mb4 {
  width: calc(8.333333% * 4 - 3.3%);
}

.is-flex.gutters > .is-mb5 {
  width: calc(8.333333% * 5 - 3.3%);
}

.is-flex.gutters > .is-mb6 {
  width: calc(8.333333% * 6 - 3.3%);
}

.is-flex.gutters > .is-mb7 {
  width: calc(8.333333% * 7 - 3.3%);
}

.is-flex.gutters > .is-mb8 {
  width: calc(8.333333% * 8 - 3.3%);
}

.is-flex.gutters > .is-mb9 {
  width: calc(8.333333% * 9 - 3.3%);
}

.is-flex.gutters > .is-mb10 {
  width: calc(8.333333% * 10 - 3.3%);
}

.is-flex.gutters > .is-mb11 {
  width: calc(8.333333% * 11 - 3.3%);
}

.is-flex.gutters > .is-mb12 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-pc1 {
    width: 8.333333%;
  }

  .is-pc2 {
    width: calc(8.333333% * 2);
  }

  .is-pc3 {
    width: calc(8.333333% * 3);
  }

  .is-pc4 {
    width: calc(8.333333% * 4);
  }

  .is-pc5 {
    width: calc(8.333333% * 5);
  }

  .is-pc6 {
    width: calc(8.333333% * 6);
  }

  .is-pc7 {
    width: calc(8.333333% * 7);
  }

  .is-pc8 {
    width: calc(8.333333% * 8);
  }

  .is-pc9 {
    width: calc(8.333333% * 9);
  }

  .is-pc10 {
    width: calc(8.333333% * 10);
  }

  .is-pc11 {
    width: calc(8.333333% * 11);
  }

  .is-pc12 {
    width: 100%;
  }

  .is-flex.gutters > .is-pc1 {
    width: calc(8.333333% - 2%);
  }

  .is-flex.gutters > .is-pc2 {
    width: calc(8.333333% * 2 - 2%);
  }

  .is-flex.gutters > .is-pc3 {
    width: calc(8.333333% * 3 - 2%);
  }

  .is-flex.gutters > .is-pc4 {
    width: calc(8.333333% * 4 - 2%);
  }

  .is-flex.gutters > .is-pc5 {
    width: calc(8.333333% * 5 - 2%);
  }

  .is-flex.gutters > .is-pc6 {
    width: calc(8.333333% * 6 - 2%);
  }

  .is-flex.gutters > .is-pc7 {
    width: calc(8.333333% * 7 - 2%);
  }

  .is-flex.gutters > .is-pc8 {
    width: calc(8.333333% * 8 - 2%);
  }

  .is-flex.gutters > .is-pc9 {
    width: calc(8.333333% * 9 - 2%);
  }

  .is-flex.gutters > .is-pc10 {
    width: calc(8.333333% * 10 - 2%);
  }

  .is-flex.gutters > .is-pc11 {
    width: calc(8.333333% * 11 - 2%);
  }

  .is-flex.gutters > .is-pc12 {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .is-pc1 {
    width: 8.333333%;
  }

  .is-pc2 {
    width: calc(8.333333% * 2);
  }

  .is-pc3 {
    width: calc(8.333333% * 3);
  }

  .is-pc4 {
    width: calc(8.333333% * 4);
  }

  .is-pc5 {
    width: calc(8.333333% * 5);
  }

  .is-pc6 {
    width: calc(8.333333% * 6);
  }

  .is-pc7 {
    width: calc(8.333333% * 7);
  }

  .is-pc8 {
    width: calc(8.333333% * 8);
  }

  .is-pc9 {
    width: calc(8.333333% * 9);
  }

  .is-pc10 {
    width: calc(8.333333% * 10);
  }

  .is-pc11 {
    width: calc(8.333333% * 11);
  }

  .is-pc12 {
    width: 100%;
  }

  .is-flex.gutters > .is-pc1 {
    width: calc(8.333333% - 3%);
  }

  .is-flex.gutters > .is-pc2 {
    width: calc(8.333333% * 2 - 3%);
  }

  .is-flex.gutters > .is-pc3 {
    width: calc(8.333333% * 3 - 3%);
  }

  .is-flex.gutters > .is-pc4 {
    width: calc(8.333333% * 4 - 3%);
  }

  .is-flex.gutters > .is-pc5 {
    width: calc(8.333333% * 5 - 3%);
  }

  .is-flex.gutters > .is-pc6 {
    width: calc(8.333333% * 6 - 3%);
  }

  .is-flex.gutters > .is-pc7 {
    width: calc(8.333333% * 7 - 3%);
  }

  .is-flex.gutters > .is-pc8 {
    width: calc(8.333333% * 8 - 3%);
  }

  .is-flex.gutters > .is-pc9 {
    width: calc(8.333333% * 9 - 3%);
  }

  .is-flex.gutters > .is-pc10 {
    width: calc(8.333333% * 10 - 3%);
  }

  .is-flex.gutters > .is-pc11 {
    width: calc(8.333333% * 11 - 3%);
  }

  .is-flex.gutters > .is-pc12 {
    width: 100%;
  }
}
