/* base
=========================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Roboto:wght@500;700&display=swap");
html {
  scroll-behavior: smooth;
}

/* rent_common
=========================================== */
@media (max-width: 960px) {
  main {
    padding-top: 60px;
  }
}

/*------------------------
  flex
}------------------------*/
.flexbox-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-step {
  display: flex;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.area_flex {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .flexbox-container {
    flex-direction: column;
    justify-content: stretch;
  }

  .area_flex {
    justify-content: space-between;
  }

  .col2 {
    width: 100%;
  }

  .col4 {
    width: 46%;
  }
}
/* sitemap
=========================================== */
#sitemap {
  margin-bottom: 60px;
}
#sitemap a:hover {
  opacity: 0.7;
}
#sitemap h1 {
  background: #675B58;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  padding: 16px 0;
  margin-bottom: 60px;
  margin-top: 20px;
}
#sitemap h1 br {
  display: none;
}
@media screen and (max-width: 767px) {
  #sitemap h1 {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: YuGothic, "Yu Gothic", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    border: none;
    background: #675B58;
    color: #fff;
    padding: 13px 0;
    margin: 20px auto;
    text-align: center;
  }
  #sitemap h1 br {
    display: block;
  }
}
#sitemap h2 {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: solid 1px #D5D5D5;
  position: relative;
  margin: 20px auto 25px auto;
  text-align: left;
}
@media (max-width: 767px) {
  #sitemap h2 {
    font-size: 1.6rem;
  }
}
#sitemap h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 19%;
  border-bottom: 2px solid #A7988F;
}
#sitemap .flex {
  align-items: flex-start;
}
#sitemap .flex > div {
  width: 25%;
}
@media (max-width: 1000px) {
  #sitemap .flex > div {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #sitemap .flex > div {
    width: 100%;
  }
}
#sitemap .flex .sub_titile2 {
  margin-top: 15px;
}
#sitemap .flex .rent2 {
  margin-top: 59px;
}
@media (max-width: 1000px) {
  #sitemap .flex .rent2 {
    margin-top: 0;
  }
}
#sitemap ul {
  margin-bottom: 30px;
}
#sitemap ul li {
  position: relative;
  margin-top: 15px;
  padding-left: 25px;
  font-size: 1.5rem;
}
#sitemap ul li:before {
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 9px;
  border-bottom: 1px solid #e7e8ec;
  border-left: 1px solid #e7e8ec;
  content: "";
}

.flexbox-container.madori {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
}

.flexbox-container.area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .flexbox-container.area {
    flex-direction: row;
  }
}
.flexbox-container.area li {
  width: 20%;
}
@media screen and (max-width: 800px) {
  .flexbox-container.area li {
    width: 33%;
  }
}
@media screen and (max-width: 500px) {
  .flexbox-container.area li {
    width: 50%;
  }
}
