@charset "UTF-8";
html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP";
}
html body main.estate-second section.estate-top .estate-bg {
  padding: 130px 0px;
  background-position: 60% 70%;
}
@media screen and (max-width: 767px) {
  html body main.estate-second section.estate-top .estate-bg {
    background-size: inherit;
    background-position: top center;
  }
}
html body main.estate-second section.estate-top .estate-bg h2 {
  position: relative;
  padding-top: 50px;
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(30px); /* 初期状態で下に30px移動 */
  transition: opacity 1s ease, transform 1s ease; /* フェードインと位置移動のアニメーション */
}
html body main.estate-second section.estate-top .estate-bg h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  color: #2F2F2F;
  text-align: center;
  font-weight: 600;
  background: url(../images/estate-txt.svg) no-repeat top center;
  background-size: 180px auto;
  opacity: 0; /* 初期状態では透明にする */
  width: 300px;
  height: 200px;
  margin: 0 auto 40px auto;
  filter: blur(20px); /* 初期はぼかし効果を適用 */
  transition: opacity 1s ease, filter 1.3s ease; /* フェードインとぼかし効果のアニメーション */
}
@media screen and (max-width: 767px) {
  html body main.estate-second section.estate-top .estate-bg h2:before {
    letter-spacing: 2px;
  }
}
html body main.estate-second section.estate-top .estate-bg h2.fade-in {
  opacity: 1; /* フェードイン後の透明度 */
  transform: translateY(0); /* 元の位置に戻る */
}
html body main.estate-second section.estate-top .estate-bg h2.fade-in::before {
  opacity: 0.3; /* フェードイン後の透明度 */
  filter: blur(0); /* ぼかしを除去 */
}
html body main.estate-second #estate-photo .photo1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 {
    display: flex;
    flex-direction: column-reverse;
  }
}
html body main.estate-second #estate-photo .photo1 h2 {
  font-family: "Noto Sans JP";
  font-weight: 600;
  color: #2F2F2F;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 h2 {
    text-align: center;
    font-size: 2em;
  }
}
html body main.estate-second #estate-photo .photo1 h2 p {
  margin-bottom: 0px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 h2 p {
    text-align: center;
  }
}
html body main.estate-second #estate-photo .photo1 .subinfo {
  background: #BDC8D3;
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  font-weight: 600;
  color: #2F2F2F;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 .subinfo {
    text-align: center;
  }
}
html body main.estate-second #estate-photo .photo1 .biginfo {
  display: flex;
  border-bottom: 1px solid #2F2F2F;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 .biginfo {
    text-align: center;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  html body main.estate-second #estate-photo .photo1 .biginfo {
    flex-wrap: wrap;
  }
}
html body main.estate-second #estate-photo .photo1 .biginfo p {
  font-weight: 600;
  margin-bottom: 0px;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #estate-photo .photo1 .biginfo p {
    width: 100%;
  }
}
html body main.estate-second #estate-photo .photo1 .biginfo p strong {
  font-size: 2.7em;
  font-weight: 800;
  display: inline-block;
  margin: 0px 5px 0px 10px;
  font-feature-settings: "palt" on;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 .biginfo p strong {
    font-size: 2.2em;
  }
}
html body main.estate-second #estate-photo .photo1 .biginfo p.yatin {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .photo1 .biginfo p.yatin {
    text-align: center;
    margin-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  html body main.estate-second #estate-photo .photo1 .biginfo p.yatin {
    border-bottom: 1px solid #2F2F2F;
    margin-right: 0px;
  }
}
html body main.estate-second #estate-photo .photo1 .biginfo p.yatin strong, html body main.estate-second #estate-photo .photo1 .biginfo p.yatin span {
  color: #BC1414;
}
html body main.estate-second #estate-photo .photo1 .miniinfo dl {
  display: flex;
  font-size: 16px;
  color: #2F2F2F;
}
html body main.estate-second #estate-photo .photo1 .miniinfo dl dt {
  margin-right: 15px;
}
html body main.estate-second #estate-photo .photo1 .estate-topimg p {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 のアスペクト比 (3 / 4 = 0.75) */
  overflow: hidden;
}
html body main.estate-second #estate-photo .photo1 .estate-topimg p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像のオブジェクトフィットを指定 */
}
@media screen and (max-width: 575px) {
  html body main.estate-second #estate-photo .photo2 {
    margin: 0px 5px;
  }
}
html body main.estate-second #estate-photo .link-button {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #estate-photo .link-button {
    display: block;
    text-align: center;
  }
}
html body main.estate-second #estate-photo .link-button a {
  display: inline-block;
  color: #fff;
  padding: 15px 20px;
  font-size: 15px;
}
html body main.estate-second #estate-photo .link-button .out-link {
  background: #314457;
  margin: 15px;
}
html body main.estate-second #estate-photo .link-button .estate-link {
  background: #AC892A;
  margin: 15px;
}
html body main.estate-second #estate-photo .link-button svg {
  width: 15px;
  margin-left: 10px;
  position: relative;
  top: 2px;
}
html body main.estate-second #estate-photo .link-button i {
  margin-left: 10px;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #estate-photo .gallery-item p {
    font-size: 10px;
  }
}
html body main.estate-second #estate-photo .gallery-image a.gallery {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 のアスペクト比 (3 / 4 = 0.75) */
  overflow: hidden;
}
html body main.estate-second #estate-photo .gallery-image a.gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像のオブジェクトフィットを指定 */
}
html body main.estate-second #feature {
  padding-top: 0px;
}
html body main.estate-second #feature h2 {
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  margin: 20px -20px 40px -20px;
  font-weight: 600;
  font-size: 2.2em;
}
html body main.estate-second #feature h2::before, html body main.estate-second #feature h2::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid black;
  margin: 0 20px;
}
html body main.estate-second #detail {
  padding-top: 0px;
}
html body main.estate-second #detail .container {
  background: #F5F5F5;
  padding: 40px;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #detail .container {
    padding: 20px;
  }
}
html body main.estate-second #detail .container .detail-box {
  background: #fff;
  padding: 30px;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #detail .container .detail-box {
    padding: 15px;
  }
}
html body main.estate-second #detail .container .detail-box h3 {
  font-family: "Noto Serif JP", serif;
  color: #2F2F2F;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #BDC8D3;
  margin-top: 0px;
}
html body main.estate-second #detail .container .detail-box .tab-container {
  display: flex;
  margin-bottom: 20px;
}
html body main.estate-second #detail .container .detail-box .tab-container .tab-button {
  flex: 1;
  padding: 10px;
  margin: 0px 20px;
  background-color: #F5F5F5;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #detail .container .detail-box .tab-container .tab-button {
    margin: 0px 5px;
  }
}
html body main.estate-second #detail .container .detail-box .tab-container .tab-button.active {
  background-color: #BDC8D3;
}
html body main.estate-second #detail .container .detail-box .tab-content {
  display: none;
  padding: 20px;
}
html body main.estate-second #detail .container .detail-box .tab-content.active {
  display: block;
  text-align: center;
}
html body main.estate-second #detail .container .detail-box .tab-content.active img {
  max-height: 600px;
}
html body main.estate-second #detail .container .kodawari-box div.col-xs-4 {
  display: flex;
  flex-direction: column; /* 縦に要素を並べる */
  align-items: center; /* 中央揃え */
  text-align: center;
}
html body main.estate-second #detail .container .kodawari-box div.col-xs-4 img {
  padding: 10px 10px 0px 10px;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #detail .container .kodawari-box div.col-xs-4 img {
    padding: 5px;
  }
}
html body main.estate-second #detail .container .kodawari-box div.col-xs-4 p {
  font-size: 12px;
  line-height: 14px;
  height: 40px;
  text-align: center;
  font-feature-settings: "palt" on;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #detail .container .kodawari-box div.col-xs-4 p {
    font-size: 11px;
  }
}
html body main.estate-second #detail .container .other-box {
  margin-top: 30px;
}
html body main.estate-second #detail .container .other-box h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
html body main.estate-second #detail .container .other-box p {
  font-feature-settings: "palt" on;
}
html body main.estate-second #infomation {
  padding-top: 0px;
  max-width: 100%;
  overflow: hidden;
}
html body main.estate-second #infomation h2 {
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  margin: 20px -20px 40px -20px;
  font-weight: 600;
  font-size: 2.2em;
}
html body main.estate-second #infomation h2::before, html body main.estate-second #infomation h2::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid black;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #infomation .info-inner {
    margin: 0px 20px;
  }
}
html body main.estate-second #infomation .info-table {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
  border-top: 1px solid #D9E2EB;
  border-right: 1px solid #D9E2EB;
  flex-wrap: wrap;
  margin-top: 20px;
}
html body main.estate-second #infomation .info-table dl {
  display: flex;
  width: 50%;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid #D9E2EB;
  margin-bottom: 0px;
  color: #2F2F2F;
}
@media screen and (max-width: 575px) {
  html body main.estate-second #infomation .info-table dl {
    width: 100%;
  }
}
html body main.estate-second #infomation .info-table dl dt {
  width: 30%;
  background: #BDC8D3;
  padding: 15px 10px 15px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
html body main.estate-second #infomation .info-table dl dd {
  width: 70%;
  padding: 15px 10px 15px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
html body main.estate-second #infomation .info-table dl dd a {
  color: #1866aa;
  text-decoration: underline;
}
html body main.estate-second #map {
  padding-top: 0px;
}
html body main.estate-second #map p.address {
  text-align: center;
  margin: 20px 0px;
}
html body main.estate-second #map h2 {
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  margin: 20px -20px 40px -20px;
  font-weight: 600;
  font-size: 2.2em;
}
html body main.estate-second #map h2::before, html body main.estate-second #map h2::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid black;
  margin: 0 20px;
}
html body main.estate-second #other-estate {
  background: #BDC8D3;
}
html body main.estate-second #other-estate .titleblock h2 {
  font-family: "Noto Serif JP", serif;
  color: #2F2F2F;
  text-align: center;
  font-weight: 600;
  background: url(../images/other-txt.svg) no-repeat top left;
  background-size: 180px auto;
  padding-top: 50px;
  width: 300px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 767px) {
  html body main.estate-second #other-estate .titleblock h2 {
    letter-spacing: 2px;
  }
}
html body main.estate-second #other-estate .row div.item {
  text-align: center;
}
html body main.estate-second #other-estate .row div.item a.imgfit {
  display: block;
  transition: all 0.7s;
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 のアスペクト比 (3 / 4 = 0.75) */
  overflow: hidden;
}
html body main.estate-second #other-estate .row div.item a.imgfit img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像のオブジェクトフィットを指定 */
}
html body main.estate-second #other-estate .row div.item a.imgfit:hover {
  transition: all 0.7s;
  opacity: 0.7;
}
html body main.estate-second #other-estate .row div.item p {
  text-align: center;
  margin-top: 10px;
  display: block;
  width: 100%;
}

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