#index {
  background-color: #DCE2E6;
}
#index article {
  width: min(1520px, 100%);
  box-sizing: border-box;
  padding: 45px 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #index article {
    padding: 20px 5%;
  }
}
@media screen and (max-width: 769px) {
  #index article {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
#index article h2 {
  font-size: 60px;
  font-weight: 700;
  color: #124A7B;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #index article h2 {
    font-size: 42px;
    text-align: center;
  }
}
@media screen and (max-width: 769px) {
  #index article h2 {
    font-size: 25px;
  }
}
#index article div img {
  max-height: 513px;
}
@media screen and (max-width: 1024px) {
  #index article div img {
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 769px) {
  #index article div img {
    max-height: 250px;
  }
}

#outline {
  width: min(1520px, 100%);
  box-sizing: border-box;
  padding: 130px 70px 180px 70px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #outline {
    padding: 60px 5% 90px 5%;
  }
}
#outline #intro {
  margin: 0 0 130px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 190px;
}
@media screen and (max-width: 769px) {
  #outline #intro {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: 0 0 60px 0;
  }
}
#outline #intro div:first-child {
  width: 40%;
}
@media screen and (max-width: 769px) {
  #outline #intro div:first-child {
    width: 100%;
  }
}
#outline #intro div:first-child img {
  max-height: 395px;
}
@media screen and (max-width: 769px) {
  #outline #intro div:first-child img {
    max-height: 200px;
    margin: 0 0 10px 0;
  }
}
#outline #intro div:last-child {
  width: 60%;
  text-align: justify;
}
@media screen and (max-width: 769px) {
  #outline #intro div:last-child {
    width: 100%;
  }
}
#outline #intro div:last-child h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 769px) {
  #outline #intro div:last-child h2 {
    font-size: 25px;
  }
}
#outline #intro div:last-child p {
  font-size: 18px;
  line-height: 2;
}
#outline nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 769px) {
  #outline nav ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
#outline nav ul li {
  background-image: url(/assets/images/original/fudosan-toushi_propertista_buyandsell_button.png);
  background-size: 40px 40px;
  background-position: right 20px center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 769px) {
  #outline nav ul li {
    background-position: right 10px center;
    background-size: 20px 20px;
  }
}
#outline nav ul li:hover {
  opacity: 0.8;
}
#outline nav ul li:nth-child(1) {
  background-color: #5880a2;
}
#outline nav ul li:nth-child(2) {
  background-color: #d74c53;
}
#outline nav ul li:nth-child(3) {
  background-color: #7ec078;
}
#outline nav ul li:nth-child(4) {
  background-color: #ed954c;
}
#outline nav ul li a {
  font-size: 26px;
  padding: 40px 0;
  display: block;
}
@media screen and (max-width: 1024px) {
  #outline nav ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 769px) {
  #outline nav ul li a {
    font-size: 13px;
    text-align: left;
    padding: 20px 0 20px 10px;
  }
}

.list.buy {
  background-color: #e6ecf1;
}
.list.buy h3 p {
  display: inline-block;
  background-color: #124A7B;
}
.list.sell {
  background-color: #f9e5e6;
}
.list.sell h3 p {
  display: inline-block;
  background-color: #C7000A;
}
.list.service {
  background-color: #ecf6eb;
}
.list.service h3 p {
  display: inline-block;
  background-color: #48A63F;
}
.list.qa {
  background-color: #fdefe5;
}
.list.qa h3 p {
  display: inline-block;
  background-color: #E56800;
}
.list article {
  width: min(1520px, 100%);
  box-sizing: border-box;
  padding: 110px 70px 170px 70px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .list article {
    padding: 50px 5% 80px 5%;
  }
}
@media screen and (max-width: 769px) {
  .list article {
    flex-direction: column;
    gap: 40px;
  }
}
.list article small {
  display: block;
  width: 100px;
  padding: 0 10px 0 0;
  box-sizing: border-box;
  font-size: 10px;
  line-height: 30px;
  text-align: right;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  left: 70px;
  top: 35px;
}
@media screen and (max-width: 769px) {
  .list article small {
    transform: scale(0.5) rotate(-90deg);
    left: 20px;
    top: 25px;
  }
}
.list article small::before, .list article small::after {
  content: " ";
  width: 1px;
  height: 20px;
  display: block;
  position: absolute;
  transform: rotate(-45deg);
  transform-origin: left top;
  right: 0;
  top: 0;
}
.list article small::after {
  right: -10px;
}
.list article small.blue {
  color: #124A7B;
  border-top: #124A7B solid 1px;
}
.list article small.blue::before, .list article small.blue::after {
  background: #124A7B;
}
.list article small.red {
  color: #C7000A;
  border-top: #C7000A solid 1px;
}
.list article small.red::before, .list article small.red::after {
  background: #C7000A;
}
.list article small.green {
  color: #006030;
  border-top: #006030 solid 1px;
}
.list article small.green::before, .list article small.green::after {
  background: #006030;
}
.list article small.orange {
  color: #E56800;
  border-top: #E56800 solid 1px;
}
.list article small.orange::before, .list article small.orange::after {
  background: #E56800;
}
.list article span {
  font-size: 16px;
  text-align: justify;
  line-height: 1;
  margin: 0 0 5px 0;
  display: block;
}
.list article h3 {
  font-size: 35px;
  color: #fff;
  text-align: justify;
  margin: 0 0 70px 0;
}
@media screen and (max-width: 769px) {
  .list article h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
  }
}
.list article h3 p {
  padding: 7px 5px;
}
.list article section {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 769px) {
  .list article section {
    flex-direction: column;
    gap: 40px;
  }
}
.list article section .category {
  width: 40%;
  text-align: justify;
}
@media screen and (max-width: 769px) {
  .list article section .category {
    width: 100%;
  }
}
.list article section .category div img {
  box-shadow: 5px 5px 3px 2px rgba(0, 0, 0, 0.1);
}
.list article section .summary {
  width: 60%;
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .list article section .summary {
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 769px) {
  .list article section .summary {
    width: 100%;
    padding: 0;
  }
}
.list article section .summary p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 769px) {
  .list article section .summary p {
    font-size: 16px;
    margin: 0 0 20px 0;
  }
}
.list article section .summary a {
  width: 380px;
  display: block;
  padding: 35px 0;
  font-size: 21px;
  font-weight: 500;
  color: #000;
  box-shadow: 0 4px 3px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-image: url(/assets/images/original/fudosan-toushi_propertista_buyandsell_arrow.png);
  background-size: 22px 13px;
  background-position: 95% center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 769px) {
  .list article section .summary a {
    width: 100%;
    font-size: 18px;
    padding: 20px 0;
  }
}
.list article section .summary a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=static_original_fudosan-toushi_propertista_guidebook_design_231206.css.map */
