@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: min(90%, 1400px);
  margin: clamp(40px, 8vw, 110px) auto 0;
  container: bukken-container / inline-size;
}
.bukken-grid {
  width: min(100%, 780px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
/* ======= 物件名 ======= */
.sec-bukken_name {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.sec-bukken_name .tag {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #fff;
  text-box: trim-both cap alphabetic;
  padding: 8px 10px;
  background-color: #172348;
  width: fit-content;
}
.sec-bukken_name h1 {
  font-size: clamp(2.0rem, 4.6vw, 3.2rem);
  color: #172348;
}
.sec-bukken_name p {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
/* ======= 物件写真 ======= */
.splide__track {
    margin-top: 10px;
}
/* ======= 物件価格 ======= */
.bukken_price {
  display: flex;
  flex-flow: row wrap;
  column-gap: 60px;
  text-align: left;
}
.price_box {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: clamp(4px, 1.6vw, 8px);
}
.price_box>img {
  width: clamp(28px, 2.6vw, 40px);
  height: fit-content;
  opacity: 0.8;
}
.price {
  font-size: clamp(2.8rem, 5.2vw, 4.0rem);
  line-height: normal;
  margin-bottom: 4px;
  color: #A78D3F;
}
.price::after {
  content: "万円";
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: bold;
  padding-left: 6px;
}
.rimawari {
  font-size: clamp(2.8rem, 5.2vw, 4.0rem);
  font-weight: bold;
  line-height: normal;
  margin-bottom: 4px;
  color: #A78D3F;
}
.rimawari span::before {
  content: "％";
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: bold;
  padding-left: 6px;
  color: #A78D3F;
}
.rimawari span {
  font-size: clamp(1.8rem, 3.4vw, 2.0rem);
  color: #333;
}
/* ======= 物件データ ======= */
.table {
  container: table-container / inline-size;
}
.table dl {
  border-bottom: solid 0.3px #999;
  padding: 10px 0;
}
.table dl dt, .table dl dd {
  padding: 4px 0;
  text-align: left;
  line-height: 1.5;
}
.table dl dt {
  color: #777;
}
dd span:not(:last-child) {
  display: block;
  margin-bottom: 6px;
}
.table dl.row_bold dt, .table dl.row_bold dd {
  font-size: clamp(1.8rem, 3.4vw, 2.0rem);
  font-weight: bold;
  color: #777;  
}
.table dl.row_bold dd {
  color: #333;
  width: 80%;
}
.table dl.row {
  display: flex;
  column-gap: 1rem;
}
.table dl.row dt {
  width: 30%;
}
.table dl.row dd {
  width: 70%;
}
@container table-container (min-width: 440px) {
  .table dl {
    display: flex;
    column-gap: 1rem;
  }
  .table dl dt,.table dl.row dt {
    width: 20%;
  }
  .table dl.row_bold dt {
    width: 28%;
  }
}
.bukken_LinkBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 0.8vw, 20px);
  margin-top: 20px;
}
.linkform-btn>a::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/icon-mail.svg") no-repeat center / contain;
  margin-right: 8px;
  width: 25px;
  height: 25px;
}
.btn02>a::before {
  background: url("../img/common/icon-line.svg") no-repeat center / contain;
}
.linkform-btn>a {
  font-size: clamp(1.6rem, 4vw, 2.0rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 20px 2rem;
  background-color: #4C5E71;
  text-box: trim-both cap alphabetic;
}
.btn02>a:last-child {
  background-color: #555E68;
}
@container bukken-container (min-width: 600px) {
  .bukken_LinkBtn {
    flex-direction: row;
  }
  .linkform-btn {
    width: 100%;
  }
}
@container bukken-container (min-width: 900px) {
  .bukken-grid {
    width: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(30px, 4.8vw, 100px);
  }
  .sec-bukken_name {
    grid-area: 1 / 1 / 2 / 8;
  }
  .sec-bukken_pic {
    grid-area: 2 / 1 / 3 / 8;
  }
  .bukken_price {
    grid-area: 1 / 8 / 2 / 13;
  }
  .sec-bukken_data {
    grid-area: 2 / 8 / 3 / 13;
  }
  .table dl.row_bold {
    padding-top: 0;
    align-items: center;
  }
  .table dl.row_bold dt {
    padding: 0;
    width: 44%;
  }
  .table dl.row_bold dd {
    width: 90%;
  }
  .bukken_LinkBtn {
    grid-area: 3 / 1 / 4 / 13;
    flex-direction: row;
    justify-content: center;
    column-gap: 40px;
  }
}
@container bukken-container (min-width: 1200px) {
  .sec-bukken_pic {
    grid-area: 2 / 1 / 4 / 8;
  }
  .bukken_LinkBtn {
    grid-area: 3 / 8 / 4 / 13;
    flex-flow: column nowrap;
  }
}
/* ======= 物件詳細 ======= */
.sec-bukken_detail {
  margin: clamp(80px, 8vw, 120px) auto 0;
  container: detail-container / inline-size;
}
.sec-bukken_detail>h2 {
  color: #444;
  font-size: clamp(2.6rem, 6.4vw, 3.8rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 3vw, 30px);
}
.sec-bukken_detail>h2::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/icon-outline.webp") no-repeat center / contain;
  width: clamp(28px, 8vw, 44px);
  height: clamp(28px, 8vw, 44px);
  margin-right: clamp(8px, 1.4vw, 14px);
}

.detail_table {
  border-collapse: collapse;
  border: solid #333;
  border-width: 1px 1px 0 1px;
  margin-bottom: 6px;
}
.detail_row {
  display: flex;
  flex-direction: column;
}
.detail_row dl {
  display: grid;
  grid-template-columns: minmax(120px, 30%) 1fr;
  border-bottom: solid 1px #333;
}
.detail_row dl dt, .detail_row dl dd {
  text-align: left;
  padding: clamp(10px, 2.4vw, 20px) clamp(6px, 2.4vw, 10px);
  line-height: 1.5;
}
.detail_row dl dt {
  background-color: #F0F0F0;
  border-right: solid 1px #333;
}
@container detail-container (min-width: 900px) {
  .detail_row {
    flex-direction: row;
    justify-content: flex-end;
  }
  .detail_row dl {
    flex: 1;
  } 
  .detail_row dl:nth-child(even) {
    border-left: solid 1px #333;
  }
}
.text-small p,.text-small ul li {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  text-align: left;
  line-height: normal;
}
/* ======= 周辺環境 ======= */
.sec-map {
  background-color: #D5D9DC;
  padding: clamp(40px, 6vw, 60px) 0 clamp(40px, 8vw, 80px);
  margin: clamp(80px, 8vw, 120px) auto 0;
  container: map-container / inline-size;
}
.sec-map>h2 {
  color: #444;
  font-size: clamp(2.6rem, 6.4vw, 3.8rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 3.0vw, 40px);
}
.sec-map>h2::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/icon-equipment.webp") no-repeat center / contain;
  width: clamp(28px, 8vw, 44px);
  height: clamp(28px, 8vw, 44px);
  margin-right: clamp(8px, 1.4vw, 14px);
}
.map-wrap {
  margin-inline: auto;
  width: min(90%, 1400px);
}
.map-wrap iframe {
  height: clamp(280px, 36vw, 450px); 
  width: 100%;
}
@container map-container (min-width: 1000px) {
  .map-wrap {
    display: flex;
    gap: 20px;
  }
}
/* ============== お問い合わせ ============== */
.contact-wrap {
  width: min(90%, 1400px);
  margin: clamp(80px, 8vw, 120px) auto clamp(100px, 8vw, 150px);
}
.tit-wrap {
  container: container / inline-size;
}
.tit-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(10px, 3vw, 30px);
}
.tit-inner .tit-txt h2 {
  font-size: clamp(2.6rem, 6.4vw, 3.8rem);
  letter-spacing: 0.1em;
  word-break: keep-all;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(6px, 3vw, 30px);
}
.tit-inner h2::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/icon-contact.webp")no-repeat center / contain;
  width: clamp(28px, 8vw, 44px);
  height: clamp(28px, 8vw, 44px);
  margin-right: clamp(8px, 1.4vw, 14px);
}
.tit-inner .tit-txt p {
  font-size: clamp(1.6rem, 2vw, 2.0rem);
  text-align: left;
  line-height: normal;
}
.tit-inner img {
  width: min(80%, 340px);
}  
@container container (min-width: 640px) {
  .tit-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .tit-inner img {
    width: min(50%, 560px);
  }
  .tit-inner .tit-txt {
    max-width: 760px;
  }  
  .tit-inner .tit-txt h2 {
    justify-content: flex-start;
  }  
}
table.formTable {
  margin-bottom: 20px;
  width: 100%;
}
table.formTable tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
table.formTable th, table.formTable td {
  display:block;
  text-align: left;
  font-size: clamp(1.8rem, 1.3vw, 2.0rem);
}
table.formTable th {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 20px;
  border-bottom: 0;
}
table.formTable th .red {
  background-color: #940000;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  text-align: center;
  padding: 1px 10px 2px;
}

form input[type="text"], form textarea {
  width:100%;
  padding:5px;
  font-size:110%;
  display:block;
  border: solid 1px #333;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display:block;
  width:100%;
  max-width: 370px;
  margin: 0 auto;
  height:60px;
  transition: 0.3s;
  background-color: #373737;
  color: #fff;
  font-size: 1.8rem;
}
.privacy-policy>small {
  font-size: 1.4rem;
  text-align: left;
  margin:  0 0 60px 5px;
  display: inline-block;
  text-indent: -1rem;
  line-height: 20px;
}
.privacy-policy>small a {
  font-size: 1.4rem;
  text-decoration: underline;
  color: blue;
}
@media only screen and (min-width:767px) {
  /* ============== お問い合わせ ============== */
  table.formTable tr {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  table.formTable th {
    display: flex;
    flex-basis: 30%;
    margin-top: 0;
  }
  table.formTable td {
    flex-basis: 70%;
  }
}
@media only screen and (min-width:1000px) {
  /*  問い合わせ　リンク ここから  */ 
  .linkform-btn>a:hover
  {
    background-color: #333;
    transition: 0.6s;
  }
  /* ============== お問い合わせ ここから ============== */
  form input[type="submit"]:hover, form input[type="reset"]:hover {
    background-color: #777777;
  }
  
}



