html {
  color: #333;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
  -ms-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -o-font-smoothing: antialiased;
  -o-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #f5f5f5;
}
body {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}
@media screen and ( max-width: 1024px ) {
  body.is-fixed {
    height: 100vh;
    overflow: hidden;
  }
}
/* header */
.header {
  width: 100%;
  background-color: #fff;
}
@media screen and ( max-width: 1024px ) {
  .wrapper {
    padding-top: 60px;
  }
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
  }
  .header.is-active {
    height: 100%;
    background: rgb(255 255 255 / 90%);
  }
}
@media screen and ( min-width: 1025px ) {
  .header_inner {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;
  }
}
@media screen and ( max-width: 1024px ) {
  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }
}
@media screen and ( min-width: 1025px ) {
  .header_logo {
    height: 60px;
  }
}
@media screen and ( max-width: 1024px ) {
  .header_logo {
    height: 40px;
  }
}
.header_logo img {
  width: auto;
  height: 100%;
  aspect-ratio: 75 / 14;
}
.header_navi {
  background-color: #3980f4;
}
@media screen and ( max-width: 1024px ) {
  .header_navi {
    display: none;
    margin: 10px;
    border-radius: 8px;
  }
}
.header_navi .navi {
  margin: auto;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and ( min-width: 1025px ) {
  .header_navi .navi {
    max-width: 1200px;
  }
}
@media screen and ( max-width: 1024px ) {
  .header_navi .navi {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
  }
}
.header_navi .navi_list {
  display: flex;
}
@media screen and ( max-width: 1024px ) {
  .header_navi .navi_list {
    flex-direction: column;
  }
  .header_navi .navi_list li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
@media screen and ( min-width: 1025px ) {
  .header_navi .navi_list li:last-child {
    margin-left: auto;
  }
}
.header_navi .navi_list a {
  display: block;
}
@media screen and ( min-width: 1025px ) {
  .header_navi .navi_list a {
    padding: 0 24px;
    line-height: 40px;
  }
}
@media screen and ( max-width: 1024px ) {
  .header_navi .navi_list a {
    line-height: 56px;
  }
}
.header_menu {
  width: 40px;
  height: 40px;
  position: relative;
  background-color: #3980f4;
  border-radius: 4px;
}
.header_menu > span {
  display: inline-block;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 10px;
  background-color: #fff;
  border-radius: 2px;
  transition: all .4s;
}
.header_menu > span:nth-of-type(1) {
  top: 12px;
}
.header_menu > span:nth-of-type(2) {
  top: 19px;
}
.header_menu > span:nth-of-type(3) {
  top: 26px;
}
.header_menu.is-open > span:nth-of-type(1) {
  top: 19px;
  transform: rotate(-45deg);
}
.header_menu.is-open > span:nth-of-type(2) {
  opacity: 0;
}
.header_menu.is-open > span:nth-of-type(3) {
  top: 19px;
  transform: rotate(45deg);
}
/* info */
.info_wrap {
  text-align: center;
  background-color: #fff;
}
@media screen and ( min-width: 1025px ) {
  .info_wrap {
    padding: 32px 0 24px;
  }
}
@media screen and ( max-width: 1024px ) {
  .info_wrap {
    padding: 24px 0 20px;
  }
}
.info_text {
  font-weight: 700;
  line-height: 1;
}
@media screen and ( min-width: 1025px ) {
  .info_text {
    font-size: 2.4rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .info_text {
    font-size: 1.4rem;
  }
}
.info_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}
@media screen and ( min-width: 1025px ) {
  .info_contact {
    margin-top: 20px;
  }
}
@media screen and ( max-width: 1024px ) {
  .info_contact {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
  }
}
.info_contact .text {
  font-size: 1.3rem;
}
.info_contact a {
  display: flex;
  align-items: center;
  padding: 10px 44px;
  color: #fff;
  font-size: 1.6rem;
  background-color: #3980f4;
  border-radius: 2px;
}
.info_contact a::before {
  content: "";
  width: 32px;
  height: 25px;
  margin-right: 16px;
  background: url(../images/common/icon-mail.svg) no-repeat;
}
@media screen and ( min-width: 1025px ) {
  .info_contact a {
    margin-left: 48px;
  }
}
/* content */
.content_wrapper {
  margin: auto;
}
@media screen and ( min-width: 1025px ) {
  .content_wrapper {
    display: flex;
    gap: 16px;
    width: 1200px;
    padding: 16px 0 80px;
  }
}
@media screen and ( max-width: 1024px ) {
  .content_wrapper {
    padding: 20px 0;
  }
}
.main_wrap {
  background: #fff;
}
@media screen and ( min-width: 1025px ) {
  .main_wrap {
    width: 928px;
    flex: 1;
    order: 2;
    padding: 40px 24px;
  }
}
@media screen and ( max-width: 1024px ) {
  .main_wrap {
    padding: 40px 15px;
  }
}
@media screen and ( min-width: 1025px ) {
  .contents,
  .column {
    margin-top: 64px;
  }
}
@media screen and ( max-width: 1024px ) {
  .contents,
  .column {
    margin-top: 40px;
  }
}
.content_slider {
  width: 100%;
}
.contents .content_list,
.column .column_list {
  display: flex;
  margin-top: 24px;
}
@media screen and ( min-width: 1025px ) {
  .contents .content_list,
  .column .column_list {
    gap: 24px;
  }
}
@media screen and ( max-width: 1024px ) {
  .column_list {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.contents .content_list li {
  width: 202px;
}
.contents .content_list .content_image {
  border: 1px solid #dedede;
  overflow: hidden;
}
@media screen and ( min-width: 1025px ) {
  .contents .content_list .content_image {
    height: 143px;
  }
}
@media screen and ( max-width: 1024px ) {
  .contents .content_list .content_image {
    height: 180px;
  }
}
.contents .content_list .content_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents .content_title {
  margin-top: 8px;
  font-size: 1.4rem;
}
.column .column_list li {
  border: 1px solid #dedede;
}
.column .column_list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.column .column_image {
  flex: 0 0 auto;
  width: 102px;
  height: 102px;
  overflow: hidden;
}
.column .column_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column .column_tag {
  display: inline-block;
  padding: 4px 16px;
  font-size: 1.1rem;
  line-height: 1;
  background: #ccc;
  border-radius: 10px;
}
.column .column_title {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.column .column_title .flg_end {
  font-size: 1.1rem;
}
.column .column_text {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
}
/* head */
.section_title_l {
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.section_title_m{
  font-weight: 700;
  line-height: 1;
}
@media screen and ( min-width: 1025px ) {
  .section_title_l {
    font-size: 3.2rem;
  }
  .section_title_m{
    font-size: 2.4rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .section_title_l {
    font-size: 2.4rem;
  }
  .section_title_m{
    font-size: 1.8rem;
  }
}
/* button */
.button_more {
  border: 1px solid #dedede;
}
@media screen and ( min-width: 1025px ) {
  .button_more {
    width: 320px;
    margin: 64px auto 0;
  }
}
@media screen and ( max-width: 1024px ) {
  .button_more {
    width: 80%;
    margin: 40px auto 0;
  }
}
.button_more a {
  display: block;
  font-size: 1.6rem;
  line-height: 44px;
  text-align: center;
}
/* banner */
.block_banner {
  width: 100%;
  overflow: hidden;
}
.block_banner a {
  display: block;
  border: 1px solid #dedede;
}
@media screen and ( min-width: 1025px ) {
  .block_banner {
    margin-top: 64px;
  }
}
@media screen and ( max-width: 1024px ) {
  .block_banner {
    margin-top: 40px;
  }
}
.block_banner img {
  width: 100%;
  object-position: center;
}
.banner_text {
  margin-top: 8px;
  color: #3980f4;
  font-size: 1.4rem;
}
/* side */
.side_banner {
  width: 256px;
}
.side_banner ul {
  padding: 8px;
  background: #fff;
}
.side_banner li:not(:first-child) {
  margin-top: 8px;
}
.side_banner img {
  width: 100%;
  height: auto;
}
/* footer */
.footer {
  background: #3980f4;
}
.footer_inner {
  padding-top: 24px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
.copyright {
  padding: 8px 0;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}
/* fudousan plugin */
.search_wrap {
  text-align: left;
}
@media screen and ( min-width: 1025px ) {
  .search_wrap {
    width: 576px;
    margin: 40px auto 0;
  }
}
@media screen and ( max-width: 1024px ) {
  .search_wrap {
    margin: 32px auto 0;
  }
}
.form_head {
  line-height: 1;
}
.form_head::before {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
@media screen and ( min-width: 1025px ) {
  .form_head {
    font-size: 1.8rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .form_head {
    font-size: 1.6rem;
  }
}

.widget_fudo_search .form_head::before {
  content: url(../images/common/icon-key.svg);
}
.widget_fudo_b_k {
  margin-top: 40px;
}
.widget_fudo_b_k .form_head::before {
  content: url(../images/common/icon-type.svg);
}
.search_bottomlink {
  text-align: center;
}
.search_bottomlink a {
  text-decoration: underline;
}
@media screen and ( min-width: 1025px ) {
  .search_bottomlink {
    margin-top: 64px;
  }
  .search_bottomlink a {
    font-size: 1.6rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .search_bottomlink {
    margin-top: 40px;
  }
  .search_bottomlink a {
    font-size: 1.4rem;
  }
}
.search-form .form_unit {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 0;
}
.search-form .search-field {
  flex: 1;
  padding: 0 16px;
  font-size: 1.6rem;
  line-height: 56px;
  text-align: left;
  background: #f5f5f5;
  border-radius: 2px;
}
.search-form .search-submit {
  width: 56px;
  height: 56px;
  text-align: center;
  background: #3980f4;
  border-radius: 2px;
}
.search-item .shubetsu {
  margin-top: 16px;
}
.search-item .form_label {
  margin-bottom: 8px;
}
.search-type {
  margin-top: 24px;
}
.search-type ul {
  display: flex;
  gap: 16px;
}
.search-type li {
  width: 50%;
  font-size: 1.6rem;
  line-height: 56px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 2px;
  cursor: pointer;
}
.search-type li.is-active {
  color: #fff;
  background-color: #3980f4;
}
.search-type_item-wrap {
  display: none;
}
.search-type_item {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.search-type_item .select_wrap {
  width: 50%;
}
.search-item_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  margin: 48px auto 0;
  padding: 10px 0;
  color: #fff;
  font-size: 1.6rem;
  background-color: #3980f4;
  border-radius: 2px;
}
.search-item_submit::before {
  content: "";
  width: 32px;
  height: 25px;
  margin-right: 16px;
  background: url(../images/common/icon-search.svg) no-repeat;
}
.search-item_submit:disabled {
  background-color: #ccc;
}
@media screen and ( min-width: 1025px ) {
  .latest_properties {
    margin-top: 80px;
  }
}
@media screen and ( max-width: 1024px ) {
  .latest_properties {
    margin-top: 64px;
  }
}
.latest_properties .property_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 24px;
}
.latest_properties .property_list a {
  display: flex;
  gap: 16px;
  padding: 16px;
}
.latest_properties li {
  width: 428px;
  border: 1px solid #dedede;
}
.latest_properties .property_image {
  flex: 0 0 auto;
  width: 102px;
  height: 102px;
  overflow: hidden;
}
.latest_properties .property_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest_properties .property_data {
  font-size: 1.4rem;
  line-height: 1;
}
.latest_properties .property_title {
  line-height: 1.6;
}
.latest_properties .property_rent {
  font-size: 3.2rem;
}
.latest_properties .rent_unit {
  font-size: 1.6rem;
  font-weight: 500;
}
.latest_properties .property_route,
.latest_properties .property_area {
  margin-top: 4px;
  padding-left: 17px;
  text-indent: -17px;
  line-height: 1.4;
}
.latest_properties .property_route::before,
.latest_properties .property_area::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 16px;
  vertical-align: top;
}
.latest_properties .property_route::before {
  background: url(../images/common/icon-route.svg) no-repeat;
}
.latest_properties .property_area::before {
  background: url(../images/common/icon-area.svg) no-repeat;
}
#nendebcopy {
  display: none;
}
/* fudo */
.fudo .entry-title {
  font-size: 3.2rem;
  font-weight: 700;
}
.fudo .entry-title .new_mark {
  display: inline-block;
  width: 32px;
  margin-left: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  background: #f00;
  border-radius: 50%;
  vertical-align: 8px;
}
/* sheet */
.list_sheet {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 0;
}
.list_sheet li {
  padding: 8px;
  text-align: center;
}
@media screen and ( min-width: 1025px ) {
  .list_sheet li {
    width: 25%;
  }
}
@media screen and ( max-width: 1024px ) {
  .list_sheet li {
    width: 50%;
  }
}
.list_sheet dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  background: #3980f4;
}
.list_sheet [class^="file_"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
}
.list_sheet .file_pdf::before {
  background: url(../images/sheet/icon_pdf.gif) no-repeat;
}
.list_sheet .file_xls::before {
  background: url(../images/sheet/icon_excel.gif) no-repeat;
}
.list_sheet dd {
  margin-top: 16px;
  cursor: pointer;
}
.list_sheet .sheet_download {
  display: inline-block;
  margin-top: 8px;
  line-height: 1;
  background: #df0905;
  border: double 4px #fff;
  border-radius: 16px;
}
.list_sheet .sheet_download a {
  display: block;
  padding: 6px 16px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}
.list_sheet .preview_open {
  margin-top: 8px;
  color: #3980f4;
  font-size: 1.3rem;
  font-weight: 500;
}
.sheet_preview {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media screen and ( max-width: 1024px ) {
  .sheet_preview {
    width: 80%;
  }
}
.sheet_preview .preview_close {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  background: #3980f4;
  border-radius: 4px;
  cursor: pointer;
}
.overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgb(0 0 0 / 80%);
}
/* form */
.select_wrap {
  position: relative;
  background: #f5f5f5;
}
.select_wrap::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 18px;
  right: 16px;
  background: url(../images/common/icon-arrow_select.svg) no-repeat;
  background-size: contain;
}
select {
  width: 100%;
  padding: 0 44px 0 16px;
  position: relative;
  font-size: 1.6rem;
  line-height: 40px;
  border-radius: 2px;
  z-index: 1;
}
@media screen and ( min-width: 1025px ) {
  .bs_form {
    margin-top: 80px;
  }
  #toiawasesaki {
    margin-top: 80px;
  }
}
@media screen and ( max-width: 1024px ) {
  .bs_form {
    margin-top: 40px;
  }
  #toiawasesaki {
    margin-top: 40px;
  }
}
#toiawasesaki .form_description {
  margin-top: 24px;
  text-align: center;
}
@media screen and ( min-width: 1025px ) {
  #toiawasesaki .form_description {
    font-size: 1.6rem;
  }
}
@media screen and ( max-width: 1024px ) {
  #toiawasesaki .form_description {
    font-size: 1.4rem;
  }
}
#toiawasesaki .contact_tel {
  display: block;
  font-size: 4rem;
}
#toiawasesaki .note {
  margin-top: 8px;
}
@media screen and ( min-width: 1025px ) {
  #toiawasesaki .note {
    font-size: 1.3rem;
  }
}
@media screen and ( max-width: 1024px ) {
  #toiawasesaki .note {
    font-size: 1.2rem;
  }
}
/* contact form */
@media screen and ( min-width: 1025px ) {
  .form_wrap {
    width: 560px;
    margin: 40px auto 0;
  }
}
@media screen and ( max-width: 1024px ) {
  .form_wrap {
    margin: 32px auto 0;
  }
}
.form_wrap dt {
  margin-top: 24px;
  font-size: 1.4rem;
  line-height: 1;
}
.form_wrap dt.required::after {
  margin-left: 8px;
  padding: 1px 6px;
  content: "必須";
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  background: #f00;
  border-radius: 4px;
  vertical-align: middle;
}
.form_wrap dd {
  width: 100%;
  margin-top: 8px;
}
.form_wrap .sub_text {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}
.form_wrap input[type="text"],
.form_wrap input[type="tel"],
.form_wrap input[type="email"],
.form_wrap input[type="number"],
.form_wrap textarea {
  width: 100%;
  padding: 8px 16px;
  font-size: 1.6rem;
  text-align: justify;
  background: #f5f5f5;
  border-radius: 2px;
}
.form_wrap input[type="text"],
.form_wrap input[type="tel"],
.form_wrap input[type="email"],
.form_wrap input[type="number"] {
  line-height: 40px;
}
.form_wrap textarea {
  height: 148px;
  resize: none;
}
.form_wrap .radio {
  margin-top: 16px;
}
.form_wrap .radio label {
  display: flex;
  align-items: center;
  gap: 0 8px;
  position: relative;
  cursor: pointer;
}
.form_wrap .radio label::before,
.form_wrap .radio label:has(:checked)::after {
  content: '';
  border-radius: 50%;
}
.form_wrap .radio label::before {
  width: 18px;
  height: 18px;
  background-color: #e6edf3;
}
.form_wrap .radio label:has(:checked)::after {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
  background-color: #3980f4;
}
.form_wrap input[type="radio"] {
  display: none;
}
.form_wrap .button_form {
  margin-top: 40px;
  text-align: center;
}
.form_wrap .submit {
  width: 320px;
  padding: 16px 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  background-color: #3980f4;
  border-radius: 2px;
}

/* utility */
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.bg-whitesmoke {
  background-color: #f5f5f5;
}
.font-em-red {
  color: #f00;
  font-weight: 500;
}


/* device support */
@media screen and ( min-width: 1025px ) {
  .sp_only {
    display: none!important;
  }
}
@media screen and ( max-width: 1024px ) {
  .pc_only {
    display: none!important;
  }
}

/* template name */
.disp_template_file {
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 1.1rem;
  background: #ff0;
  z-index: 9999;
}