/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* BREAKPOINT */
/* COLOR VARIABLE */
/* FONT VARIABLE */
/*OTHER VARIABLE */
#main.kanametown .firstRow {
  padding: 2.5rem 0;
}

#main.kanametown .firstRow .inner .firstTitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstTitle {
    font-size: 24px;
  }
}

#main.kanametown .firstRow .inner .desc {
  margin-bottom: 1.5rem;
}

#main.kanametown .firstRow .inner .desc p {
  text-align: center;
}

#main.kanametown .firstRow .inner .mainTitle {
  text-align: center;
  margin-bottom: 2.5rem;
}

#main.kanametown .firstRow .inner .mainTitle h3 {
  display: inline;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .mainTitle h3 {
    font-size: 24px;
  }
}

#main.kanametown .firstRow .inner .firstSection {
  display: flex;
  justify-content: center;
  gap: 5%;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstSection {
    justify-content: space-between;
    gap: 0;
  }
}

#main.kanametown .firstRow .inner .firstSection div {
  width: 45%;
  height: 41.4vw;
  border-radius: 50%;
  background-color: #FEB310;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5% 0;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstSection div {
    width: 31.5%;
    height: 227px;
    padding: 3% 0;
  }
}

#main.kanametown .firstRow .inner .firstSection div p {
  text-align: center;
  font-size: 3.75vw;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstSection div p {
    font-size: 18px;
  }
}

#main.kanametown .firstRow .inner .firstSection div img {
  height: 40px;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstSection div img {
    height: 60px;
  }
}

#main.kanametown .firstRow .inner .firstSection div h3 {
  font-weight: bold;
  font-size: 5vw;
}

@media screen and (min-width: 768px) {
  #main.kanametown .firstRow .inner .firstSection div h3 {
    font-size: 24px;
  }
}

#main.kanametown .secondRow {
  background-color: #F6F6F6;
  padding: 2rem 0;
}

#main.kanametown .secondRow .section-title {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .section-title {
    font-size: 1.5rem;
  }
}

#main.kanametown .secondRow .property-card {
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 0;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card {
    padding: 1.5rem 0;
  }
}

#main.kanametown .secondRow .property-card:hover .image .prop-img {
  transform: scale(1.05);
}

#main.kanametown .secondRow .property-card:first-child {
  border-top: 1px solid #D9D9D9;
}

#main.kanametown .secondRow .property-card .image {
  width: 40.5%;
  overflow: hidden;
}

#main.kanametown .secondRow .property-card .image .prop-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease;
}

#main.kanametown .secondRow .property-card .infoBox {
  flex: 1;
  padding-left: 4.5%;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .infoBox {
    padding-left: 5%;
  }
}

#main.kanametown .secondRow .property-card .prop-title {
  font-weight: 700;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .prop-title {
    font-size: 18px;
  }
}

#main.kanametown .secondRow .property-card .prop-price {
  color: #e60012;
  font-weight: 700;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .prop-price {
    font-size: 20px;
  }
}

#main.kanametown .secondRow .property-card .prop-price .unit {
  font-size: 11px;
  margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .prop-price .unit {
    font-size: 16px;
  }
}

#main.kanametown .secondRow .property-card .prop-price .area-size {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  color: #000000;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .prop-price .area-size {
    font-size: 1rem;
  }
}

#main.kanametown .secondRow .property-card .prop-address {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .prop-address {
    font-size: 1rem;
  }
}

#main.kanametown .secondRow .property-card .point-box {
  position: relative;
  border-top: 1px solid #FEB310;
  border-bottom: 1px solid #FEB310;
  padding-top: 0.8rem;
  margin-top: 0.75rem;
  background: #fff;
  padding: 0.75rem 0.75rem 0.5rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .point-box {
    padding: 1rem 0.75rem 0.5rem;
  }
}

#main.kanametown .secondRow .property-card .point-box .point-label {
  position: absolute;
  top: -12px;
  left: 0;
  background-color: #FEB310;
  padding: 0 1rem;
  font-family: "Kaushan Script", cursive;
  font-size: 0.8rem;
  font-weight: 700;
  transform: skewX(-10deg);
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .point-box .point-label {
    font-size: 15px;
  }
}

#main.kanametown .secondRow .property-card .point-box .point-label span {
  display: inline-block;
  transform: skewX(10deg);
}

#main.kanametown .secondRow .property-card .point-box p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .property-card .point-box p {
    font-size: 1rem;
  }
}

#main.kanametown .secondRow .btnBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

#main.kanametown .secondRow .btn-custom {
  background-color: #333333;
  font-size: 12px;
  color: white;
  padding: 0.65rem 1rem;
  width: 74%;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #333;
}

#main.kanametown .secondRow .btn-custom:hover {
  background-color: transparent;
  color: #000;
}

@media screen and (min-width: 768px) {
  #main.kanametown .secondRow .btn-custom {
    font-size: 1rem;
  }
}

#main.kanametown .secondRow .btn-custom i {
  position: absolute;
  right: 0.5rem;
  top: 13px;
}

#main.kanametown .thirdRow {
  padding: 2.5rem 0;
  background-color: #F2F1EC;
}

#main.kanametown .thirdRow .section-title {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 768px) {
  #main.kanametown .thirdRow .section-title {
    font-size: 1.5rem;
  }
}

#main.kanametown .thirdRow ul {
  display: flex;
  justify-content: space-between;
}

#main.kanametown .thirdRow ul li {
  width: 47.5%;
  background-color: #FFF;
}

@media screen and (min-width: 768px) {
  #main.kanametown .thirdRow ul li {
    width: 31.5%;
  }
}

#main.kanametown .thirdRow ul li:last-child {
  display: none;
}

@media screen and (min-width: 768px) {
  #main.kanametown .thirdRow ul li:last-child {
    display: block;
  }
}

#main.kanametown .thirdRow ul li a {
  background-color: #FFF;
  padding: 10px;
  display: block;
}

#main.kanametown .thirdRow ul li a:hover .img div {
  transform: scale(1.05);
}

#main.kanametown .thirdRow ul li a .img {
  margin-bottom: 10px;
  width: 100%;
  height: 30vw;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  #main.kanametown .thirdRow ul li a .img {
    height: 150px;
  }
}

#main.kanametown .thirdRow ul li a .img div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  transform: scale(1);
}

#main.kanametown .thirdRow ul li a .detail h4 {
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  #main.kanametown .thirdRow ul li a .detail h4 {
    font-size: 18px;
  }
}

#main.kanametown .thirdRow ul li a .detail .desc {
  display: none;
}

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