@charset "UTF-8";
/**
 * レスポンシブのブレイクポイント設定
 */
/*
COLORS
================================================ */
:root {
  --black: #000;
  --black-thin: #333;
  --black_thin2: #4C4A4A;
  --grey_bg: #F1F1F1;
  --grey_border: #ddd;
  --grey-dark: #666;
  --grey-dark_bg: #E2E2E2;
  --white: #fff;
  --beige: #F4EDE0;
  --red: #C2221C;
  --green: #549B1D;
  --yellow: #e3bd10;
  --orange: #FD9C28;
  --blue: #1132a6;
  --skyblue: #10a3e3;
  --pink: #e145b1;
  --purple: #925BE9;
}

#asahi-home {
  background: var(--grey-dark_bg);
}
@media (min-width: 769px) {
  #asahi-home {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  #asahi-home {
    padding: 8vw 0;
  }
}
#asahi-home .list_asahi-home {
  display: flex;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home {
    flex-wrap: wrap;
    gap: 50px;
    width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home {
    flex-direction: column;
    gap: 8vw 0;
  }
}
#asahi-home .list_asahi-home > li {
  background: var(--white);
  overflow: hidden;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li {
    width: 300px;
    border-radius: 10px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.1s;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li {
    border-radius: 3.125vw;
    box-shadow: 1.875vw 1.875vw 0px 0px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li.slide_link:hover {
    transform: scale(1.03);
  }
}
#asahi-home .list_asahi-home > li a {
  color: var(--black-thin);
  text-decoration: none;
}
#asahi-home .list_asahi-home > li .thumb {
  display: block;
  height: 0;
  padding-bottom: 66.666%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#asahi-home .list_asahi-home > li .information {
  position: relative;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information {
    padding: 40px 20px 20px;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information {
    padding: 12.5vw 6.25vw 6.25vw;
  }
}
#asahi-home .list_asahi-home > li .information .type {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--white);
  padding: 0.5em;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information .type {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information .type {
    font-size: 4.0625vw;
  }
}
#asahi-home .list_asahi-home > li .information .plan {
  position: absolute;
  top: 0.3em;
  right: 0.5em;
  font-weight: 500;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information .plan {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information .plan {
    font-size: 5vw;
  }
}
#asahi-home .list_asahi-home > li .information .name,
#asahi-home .list_asahi-home > li .information .access {
  line-height: 1.75;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information .name,
#asahi-home .list_asahi-home > li .information .access {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information .name,
#asahi-home .list_asahi-home > li .information .access {
    font-size: 4.375vw;
  }
}
#asahi-home .list_asahi-home > li .information .price {
  font-weight: 700;
  margin-top: 0.75em;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information .price {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information .price {
    font-size: 6.4875vw;
  }
}
#asahi-home .list_asahi-home > li .information .btn {
  text-align: center;
  width: 100%;
  color: var(--black-thin);
  margin-top: 1em;
  padding: 0;
}
@media (min-width: 769px) {
  #asahi-home .list_asahi-home > li .information .btn {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  #asahi-home .list_asahi-home > li .information .btn {
    font-size: 4.375vw;
  }
}
#asahi-home .list_asahi-home > li .information .btn span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  padding: 0 3em;
  border: solid 1px var(--black-thin);
  border-radius: 1.25em;
  box-sizing: border-box;
}
#asahi-home .list_asahi-home > li .information .btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translateY(-50%);
  width: 20px;
  height: 25px;
  background-image: url("../img/real-estate/icon_external-link.svg");
  background-size: 100%;
}

@media (min-width: 769px) {
  #auction {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #auction {
    padding-top: 8vw;
  }
}
#auction .list_auction {
  display: flex;
}
@media (min-width: 769px) {
  #auction .list_auction {
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #auction .list_auction {
    flex-direction: column;
    width: 100%;
    gap: 5vw 0;
  }
}
@media (min-width: 769px) {
  #auction .list_auction li {
    width: 480px;
    transition: all 0.1s;
  }
}
@media (max-width: 768px) {
  #auction .list_auction li {
    width: 100%;
  }
}
@media (min-width: 769px) {
  #auction .list_auction li:hover {
    transform: scale(1.02);
  }
}