@charset "UTF-8";
/* 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;
}

.result_none {
  margin-bottom: 40px;
}

#page-top {
  display: none !important;
}

/*------------------------
  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%;
  }
}
/* main
=========================================== */
@media (max-width: 960px) {
  main {
    padding-top: 60px;
  }
}

#full_column {
  padding-top: 20px;
  background: #E9E5E2;
  font-size: 1.6rem;
}
#full_column h1 {
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: solid 1px #D5D5D5;
  position: relative;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  #full_column h1 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
#full_column h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 19%;
  border-bottom: 2px solid #A7988F;
}

#main_column {
  width: 100%;
  float: right;
}
@media (max-width: 1090px) {
  #main_column {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    float: none;
  }
}

.TNhitNum {
  font-size: 1.5rem;
}
.TNhitNum .number {
  font-size: 2rem;
}

.sortLink {
  display: flex;
  justify-content: end;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .sortLink {
    display: none;
  }
}
.sortLink p {
  font-size: 1.5rem;
  display: inline-block;
  font-weight: 600;
  background: #CCCCCC;
  line-height: 1;
  position: relative;
  line-height: 24px;
  width: 75px;
  text-align: left;
  padding-left: 10px;
  background: url("../img/sortlink.png") no-repeat;
  background-size: 75px 24px;
}
.sortLink a {
  padding: 0 3px;
  display: inline-block;
}
.sortLink span {
  font-weight: 600;
  padding: 0 3px;
  display: inline-block;
}

.sortLink_sp {
  text-align: right;
  float: right;
}

@media (max-width: 767px) {
  .bottom, .sortLink_sp {
    display: inline-block;
  }
}

/* articleWrapper
=========================================== */
.articleWrapper {
  display: block;
  padding: 20px 0;
  clear: both;
  position: relative;
}

.matometeCheck.flex {
  justify-content: left;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .matometeCheck.flex {
    margin-top: 0;
  }
}

.matometeCheck input[type=checkbox] {
  display: none;
}

.matometeCheck label {
  background: #675B58;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: inline-block;
  margin: 13px 0;
  padding: 7px 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .matometeCheck label {
    font-size: 1.2rem;
    margin: 0;
    padding: 10px 14px;
  }
}
.matometeCheck label:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border: 8px solid transparent;
  border-top: 10px solid #675B58;
}
.matometeCheck label:before {
  content: "";
  background-image: url("/base/img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 23px;
  height: 18px;
  vertical-align: middle;
  transition: all .3s;
}
@media (max-width: 1090px) {
  .matometeCheck label:before {
    width: 23px;
    height: 18px;
    margin-right: 6px;
  }
}
@media (hover: hover) {
  .matometeCheck label:hover {
    background: #55976E;
    color: #fff;
    transition: all .3s;
  }
  .matometeCheck label:hover:after {
    border-top: 10px solid #55976E;
    transition: all .3s;
  }
}

.matometeCheck a {
  background: #55976E;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: inline-block;
  margin: 13px 0;
  padding: 7px 30px;
  font-weight: 600;
}
@media (max-width: 1090px) {
  .matometeCheck a {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .matometeCheck a {
    font-size: 1.2rem;
  }
}
.matometeCheck a:before {
  content: "";
  background-image: url("/base/img/mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 30px;
  height: 19px;
  vertical-align: middle;
  transition: all .3s;
}
@media (max-width: 1090px) {
  .matometeCheck a:before {
    width: 24px;
    height: 14px;
    margin-right: 6px;
  }
}
@media (hover: hover) {
  .matometeCheck a:hover {
    background: #675B58;
    color: #fff;
    transition: all .3s;
  }
}

.articleCheckBox {
  display: inline-block;
}

.TNpagenations a {
  color: #1C1108;
  padding: 5px 10px;
  display: inline-block;
}
@media (hover: hover) {
  .TNpagenations a:hover {
    opacity: 0.7;
  }
}
.TNpagenations span {
  color: #fff;
  background: #ccc;
  padding: 5px 10px;
  display: inline-block;
}

.article {
  background: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .article {
    position: relative;
  }
}
.article h2 {
  position: relative;
}
.article h2 a, .article h2 span {
  font-size: 2.4rem;
  font-weight: 600;
  color: #231815;
  padding: 20px 0 15px 20px;
  transition: all .3s;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .article h2 a, .article h2 span {
    font-size: 1.8rem;
    padding: 21px 0 15px 10px;
  }
}
.article h2 a input[type="checkbox"], .article h2 span input[type="checkbox"] {
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .article h2 a input[type="checkbox"], .article h2 span input[type="checkbox"] {
    padding-left: 10px;
  }
}
@media (hover: hover) {
  .article h2 a:hover {
    color: #55976E;
  }
}
.article h2 .newlabel {
  position: absolute;
  top: 0;
  right: 10px;
  background: #FFEC79;
  font-size: 1.5rem;
  width: 53px;
  height: 24px;
  line-height: 24px;
  padding: 0 3px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .article h2 .newlabel {
    right: auto;
    left: 0;
  }
}
.article .articleBox {
  padding: 0 20px 20px 20px;
}
@media screen and (max-width: 767px) {
  .article .articleBox {
    padding: 0 10px 10px 10px;
  }
}
.article .articleBox > div.flex.flexbox-container {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .article .articleBox > div.flex.flexbox-container {
    flex-direction: column;
    justify-content: space-between;
  }
}
.article .articleBox .articleLeft {
  width: 247px;
}
@media screen and (max-width: 800px) {
  .article .articleBox .articleLeft {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleLeft {
    width: 100px;
  }
}
.article .articleBox .articleLeft .articleImg {
  position: relative;
}
.article .articleBox .articleLeft .label_agenew {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(53, 36, 33, 0.75);
  font-size: 1.5rem;
  line-height: 54px;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
  font-weight: 600;
}
@media (max-width: 767px) {
  .article .articleBox .articleLeft .label_agenew {
    top: -9px;
    right: -9px;
  }
}
.article .articleBox .articleLeft .roomimg {
  width: 247px;
  height: 247px;
  overflow: hidden;
  z-index: 100;
  margin-bottom: 20px;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .article .articleBox .articleLeft .roomimg {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleLeft .roomimg {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1100px) {
  .article .articleBox .articleBtn {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 6px;
    width: 100%;
  }
}
.article .articleBox .articleBtn a {
  border: 1px solid #675B58;
  width: 100%;
  max-width: 240px;
  line-height: 47px;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
  transition: all .3s;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .article .articleBox .articleBtn a {
    line-height: 40px;
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .article .articleBox .articleBtn a:hover {
    background: #55976E;
    color: #fff;
    border: 1px solid #55976E;
  }
}
.article .articleBox .articleBtn .detailbtn {
  background: #fff;
  color: #675B58;
}
.article .articleBox .articleBtn .favorite {
  background: #675B58;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleBtn .favorite {
    position: absolute;
    top: 0;
    right: 0;
    width: 61px;
    height: 35px;
    margin-top: 0;
    font-size: 1.3rem;
  }
  .article .articleBox .articleBtn .favorite span {
    display: none;
  }
}
.article .articleBox .articleBtn .favorite:before {
  content: "";
  background-image: url("../img/booknote_add.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 15px;
  height: 28px;
  vertical-align: middle;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleBtn .favorite:before {
    margin-right: 5px;
    width: 13px;
    height: 25px;
  }
}
.article .articleBox .articleBtn .delete {
  background: #aaa;
  border: 1px solid #aaa;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .article .articleBox .articleBtn .delete {
    margin-top: 0;
  }
}
.article .articleBox .articleBtn .delete:hover {
  background: #858585;
  border: 1px solid #858585;
}
.article .articleBox .articleBtn .delete:before {
  content: "";
  background-image: url("/base/img/delete_folder.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 23px;
  height: 17px;
  vertical-align: middle;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleBtn .delete:before {
    margin-right: 5px;
    width: 20px;
    height: 15px;
  }
}
.article .articleBox .articleRight {
  width: calc(100% - 287px);
}
@media screen and (max-width: 800px) {
  .article .articleBox .articleRight {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 767px) {
  .article .articleBox .articleRight {
    width: 100%;
  }
}
.article .articleBox .articleRight.flex {
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  .article .articleBox .articleRight.flex {
    gap: 30px;
  }
}
.article .articleBox .articleRight.flex .flexBox.infoBox {
  width: 68%;
}
@media screen and (max-width: 1100px) {
  .article .articleBox .articleRight.flex .flexBox.infoBox {
    width: 100%;
  }
}
.article .articleBox .articleRight.flex .flexBox.articleBtn {
  width: 30%;
}
@media screen and (max-width: 1100px) {
  .article .articleBox .articleRight.flex .flexBox.articleBtn {
    width: 100%;
  }
}
.article .articleBox dl.condTbl {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .article .articleBox dl.condTbl {
    position: absolute;
    top: 80px;
    left: 120px;
    width: calc(100% - 110px);
  }
}
.article .articleBox dl.condTbl > div.flex {
  width: 50%;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .article .articleBox dl.condTbl > div.flex {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.article .articleBox dl.condTbl dt {
  vertical-align: top;
  margin-bottom: 1px;
}
.article .articleBox dl.condTbl dt .label {
  color: #595757;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  background: #F4EFE9;
  display: inline-block;
  width: 90px;
  line-height: 28px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .article .articleBox dl.condTbl dt .label {
    font-size: 1.4rem;
    width: 60px;
  }
}
.article .articleBox dl.condTbl dd {
  color: #595757;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.8rem;
  vertical-align: top;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .article .articleBox dl.condTbl dd {
    font-size: 1.4rem;
  }
}
.article .articleBox dl.condTbl dd span {
  font-weight: 600;
  font-size: 2.4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .article .articleBox dl.condTbl dd span {
    font-size: 1.8rem;
  }
}
.article .articleBox table.articleTable th {
  padding-top: 15px;
  white-space: nowrap;
  vertical-align: top;
  text-align: center;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .article .articleBox table.articleTable th {
    width: 22px;
  }
}
.article .articleBox table.articleTable td {
  padding-top: 13px;
  font-size: 1.6rem;
  vertical-align: top;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .article .articleBox table.articleTable td {
    font-size: 1.2rem;
  }
}
.article .articleBox table.articleTable td .floor {
  margin-left: 5px;
}
.article .articleBox table.articleTable td .train {
  white-space: nowrap;
  margin-right: 5px;
  display: inline-block;
}
.article .articleBox table.roomlistTable {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .article .articleBox table.roomlistTable {
    width: 100%;
  }
}
.article .articleBox table.roomlistTable th {
  background: #eee;
  text-align: center;
  padding: 5px 17px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .article .articleBox table.roomlistTable th {
    padding: 7px 5px;
    font-size: 1.2rem;
  }
}
.article .articleBox table.roomlistTable td {
  padding: 5px 17px;
  text-align: center;
  border: 1px solid #ccc;
}
.article .articleBox table.roomlistTable td br {
  display: none;
}
@media screen and (max-width: 767px) {
  .article .articleBox table.roomlistTable td {
    padding: 7px 5px;
    font-size: 1.2rem;
    vertical-align: middle;
  }
  .article .articleBox table.roomlistTable td br {
    display: block;
  }
}
.article .articleBox table.roomlistTable td a {
  text-decoration: underline;
}
@media (hover: hover) {
  .article .articleBox table.roomlistTable td a:hover {
    opacity: 0.8;
  }
}
.article .articleBox table.roomlistTable td.tl {
  text-align: left;
}
.article .articleBox .iconList.flex {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .article .articleBox .iconList.flex {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.article .articleBox .iconList.flex li {
  width: 25%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1.3rem;
  background: #E9E9E9;
  color: #A7A7A7;
  text-align: center;
  line-height: 30px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .article .articleBox .iconList.flex li {
    width: calc( 100% / 3 );
    font-size: 1.2rem;
  }
}
.article .articleBox .iconList.flex li.on {
  background: #fff;
  color: #1C1108;
}
.article .articlePoint {
  background: #F4EFE9;
  padding: 10px 20px;
  justify-content: flex-start;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .article .articlePoint {
    align-items: flex-start;
    padding: 10px 10px;
  }
}
.article .articlePoint dt {
  width: 77px;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 500;
  border-right: 1px solid #707070;
}
@media (max-width: 767px) {
  .article .articlePoint dt {
    border-right: none;
    width: 100%;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .article .articlePoint dt br {
    display: none;
  }
}
.article .articlePoint dd {
  font-size: 1.6rem;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .article .articlePoint dd {
    font-size: 1.3rem;
    padding-left: 0;
  }
}

#building_content .articleBox > div.flex.flexbox-container {
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #building_content .articleBox > div.flex.flexbox-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #building_content .articleBox .articleRight {
    width: calc(100% - 110px);
    margin-top: -15px;
    margin-bottom: 20px;
  }
}

/* side
=========================================== */
#side {
  width: 255px;
  float: left;
  display: block;
}
#side h3 {
  background: #A7988F;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 46px;
}
#side .subttl {
  background: #eee;
  text-align: left;
  line-height: 45px;
  font-size: 1.7rem;
  padding: 0 10px;
  font-weight: 600;
  border-top: 1px solid #D5D5D5;
}
#side .area {
  background: #fff;
  padding: 10px;
}
#side .box {
  background: #fff;
}
#side .column {
  padding: 10px;
}
#side .list.select {
  margin-top: 40px;
}
#side .submit {
  padding: 15px 0;
}
#side .equip_sub {
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.4;
  margin-bottom: 5px;
}
#side .list.jyoken {
  font-size: 1.5rem;
}
#side .fee_list {
  margin-top: 15px;
}
#side .fee_list .flex li {
  width: calc( 100% / 3 );
  font-size: 1.4rem;
  text-decoration: underline;
  cursor: pointer;
}
@media (hover: hover) {
  #side .fee_list .flex li:hover {
    opacity: 0.7;
  }
}
#side .area_list.flex li {
  width: 50%;
}
#side .flex.all li {
  width: 100%;
}

/* sp_jyoken


.sp_jyoken{
  display: none;
  @media (max-width: 1090px) {
    display: block;
    a input{
      position: fixed;
      bottom: 0;
      right: 0;
      z-index: 1000;
      width: 30%;
      margin: 0;
      height: 50px;
      background: #A7988F;
      color: #fff;
      font-weight: 600;
    }
  }
  @media (max-width: 767px) {
    a input{
      font-size: 1.2rem;
    }
  }
}
=========================================== */
.sp_jyoken {
  display: none;
}

@media (max-width: 1090px) {
  .sp_jyoken {
    display: block;
  }

  #sp_jyoken_button {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
    width: 30%;
    margin: 0;
    height: 50px;
    background: #A7988F;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
  }

  #side {
    position: fixed;
    z-index: 20;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    border-left: solid 1px #ddd;
    transition: all 0.5s ease-out;
    overflow: auto;
    padding-bottom: 100px;
  }

  #side.nav-menu-open {
    right: 0;
  }

  #overlay {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease-out;
  }

  #overlay.overlay-on {
    visibility: visible;
    opacity: 1;
  }
}
/* side_search
=========================================== */
button.side_search {
  background: #595757;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 5rem;
  margin: 0 auto;
  opacity: 1;
  text-align: center;
  transition: all .2s ease-in-out;
  transition: all .3s ease;
  width: 80%;
  border: none;
  cursor: pointer;
  font-family: YuGothic, 'Yu Gothic', "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
@media (hover: hover) {
  button.side_search:hover {
    background: #55976E;
    color: #fff;
  }
}

/* .その他の条件で選ぶ */
.accodion2 {
  display: none;
}

.searchBox {
  padding: 10px;
}

.ac-label {
  cursor: pointer;
  position: relative;
  background: #eee;
  text-align: left;
  font-size: 1.7rem;
  padding: 10px;
  border-top: 1px solid #D5D5D5;
}
.ac-label p {
  font-weight: 600;
}

/* .ac-labelを親要素としてアイコン位置を絶対値で指定 */
.icon-wrap {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
}

/* .icon-wrapの中でプラスを中央に位置させるために.iconを親要素に設定 */
.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* プラスアイコン */
/* ２本の線を.icon-wrapの中央に並行に重ねる */
.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #231815;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.ac-label.on .icon:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* form
=========================================== */
/* 共通 */
input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #231815;
  background: #fff;
  font-size: 1.6rem;
  font-family: YuGothic, "Yu Gothic", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  cursor: pointer;
  padding: 8px 12px;
  border: solid 1px #CCC;
}

input::placeholder {
  font-size: 1.6rem;
}

label {
  cursor: pointer;
}

/* ラジオボタン */
.radioBox a {
  display: inline-block;
}
.radioBox input[type=radio] {
  appearance: none;
  position: relative;
  border: none;
}
.radioBox input[type=radio]::before,
.radioBox input[type=radio]::after {
  content: "";
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.radioBox input[type=radio]::before {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 16px;
  width: 16px;
  left: 0;
}
.radioBox input[type=radio]::after {
  background-color: #675B58;
  opacity: 0;
  height: 10px;
  width: 10px;
  left: 4px;
}
.radioBox input[type=radio]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}

/* チェックボックス */
input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"] {
  padding-left: 25px;
  /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
  display: inline-block;
  height: 18px;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: inline-block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ccc;
  width: 16px;
  /*チェックボックスの横幅*/
  height: 16px;
  /*チェックボックスの縦幅*/
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

input[type="checkbox"]::after {
  border-bottom: 2px solid #666464;
  border-left: 2px solid #666464;
  opacity: 0;
  height: 5px;
  width: 9px;
  transform: rotate(-45deg);
  left: 3px;
  top: 4px;
}

input[type="checkbox"]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}

.all.flex li {
  padding-left: 28px;
  position: relative;
}
.all.flex li:before, .all.flex li:after {
  content: "";
  display: block;
  position: absolute;
}
.all.flex li:before {
  background-color: #C6BFBA;
  border-radius: 0%;
  border: 1px solid #C6BFBA;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  top: 14px;
  left: 0;
}
.all.flex li:after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  height: 5px;
  width: 9px;
  transform: rotate(-45deg);
  top: 9px;
  left: 3px;
}

/* セレクトボックス */
select {
  width: 100px;
  padding: 8px 8px;
  border: solid 1px #CCC;
  margin-bottom: 15px;
  vertical-align: baseline;
  appearance: none;
  background: #fff url(/search/img/arrow_down.png) right 7px center no-repeat;
  background-size: 10px auto;
  border: 1px solid #aaa;
}

select.w135 {
  width: 135px;
  font-size: 1.3rem;
}

.select_wrapper {
  position: relative;
}
.select_wrapper:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
}

/*タブ切り替え全体のスタイル*/
.result {
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
@media (max-width: 767px) {
  .result .sortBox {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.result .tabs {
  margin-top: 50px;
  padding-bottom: 0;
  margin: 0 auto;
}
.result .tab_item {
  width: 152px;
  height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
  color: #595757;
  margin-top: -43px;
}
@media (max-width: 1090px) {
  .result .tab_item {
    margin-top: 1px;
  }
}
@media (max-width: 767px) {
  .result .tab_item {
    width: 50%;
    font-size: 1.2rem;
  }
}
.result .tab_item.tabL {
  border-radius: 22px 0 0 22px;
  background: #fff;
}
.result .tab_item:not(.tabL) {
  border-radius: 0 22px 22px 0;
  background: #fff;
}
.result input[name="tab_item"] {
  display: none;
}
.result .tab_content {
  display: none;
  padding: 20px 0;
  clear: both;
  position: relative;
}
.result #building:checked ~ #building_content,
.result #room:checked ~ #room_content {
  display: block;
}
.result .tabs input:checked + .tab_item {
  background-color: #55976E;
  color: #fff;
}

/* おすすめ物件
=========================================== */
@media (max-width: 536px) {
  .rent_list_section {
    background: #E9E5E2;
    width: 100%;
    padding-top: 0;
  }
  .rent_list_section .container {
    width: 100%;
  }
}

ul.rent_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1080px) {
  ul.rent_list {
    justify-content: center;
  }
}
@media (max-width: 536px) {
  ul.rent_list {
    background: #E9E5E2;
    width: 100%;
  }
}
ul.rent_list li {
  overflow: hidden;
  width: 247px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1080px) {
  ul.rent_list li {
    width: 42%;
  }
}
@media (max-width: 536px) {
  ul.rent_list li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    overflow: visible;
    position: relative;
    background: #fff;
    height: 180px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  ul.rent_list li .thumb {
    width: 110px;
  }
}
@media (max-width: 536px) {
  ul.rent_list li .thumb {
    position: absolute;
    top: 70px;
    left: 10px;
  }
}
ul.rent_list li .thumb .roomimg {
  width: 247px;
  height: 247px;
  overflow: hidden;
  z-index: 100;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  ul.rent_list li .thumb .roomimg {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  ul.rent_list li .thumb .roomimg {
    width: 100px;
    height: 100px;
  }
}
ul.rent_list li .label_agenew {
  position: absolute;
  width: 54px;
  height: 54px;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(53, 36, 33, 0.75);
  font-size: 1.5rem;
  line-height: 54px;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
  font-weight: 600;
}
@media (max-width: 767px) {
  ul.rent_list li .label_agenew {
    top: -9px;
    right: -9px;
  }
}
ul.rent_list li .newlabel {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFEC79;
  font-size: 1.5rem;
  width: 53px;
  height: 24px;
  line-height: 24px;
  padding: 0 3px;
  text-align: center;
  z-index: 200;
}
@media (max-width: 536px) {
  ul.rent_list li .newlabel {
    top: -70px;
    left: -10px;
  }
}
ul.rent_list li .articleBtn .favorite {
  background: #675B58;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #675B58;
  width: 200px;
  line-height: 47px;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  transition: all .3s;
}
ul.rent_list li .articleBtn .favorite:before {
  content: "";
  background-image: url("../img/booknote_add.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 15px;
  height: 28px;
  vertical-align: middle;
  transition: all .3s;
}
@media screen and (max-width: 536px) {
  ul.rent_list li .articleBtn .favorite {
    position: absolute;
    top: 0;
    right: 0;
    width: 61px;
    height: 35px;
    margin-top: 0;
    font-size: 1.3rem;
  }
  ul.rent_list li .articleBtn .favorite span {
    display: none;
  }
}
ul.rent_list li .articleBtn .favorite:before {
  content: "";
  background-image: url("../img/booknote_add.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 12px;
  width: 15px;
  height: 28px;
  vertical-align: middle;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  ul.rent_list li .articleBtn .favorite:before {
    margin-right: 5px;
    width: 13px;
    height: 25px;
  }
}
@media (hover: hover) {
  ul.rent_list li .articleBtn .favorite:hover {
    background: #55976E;
    color: #fff;
    border: 1px solid #55976E;
  }
}
ul.rent_list li .item {
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  ul.rent_list li .item {
    float: left;
    padding-top: 10px;
  }
}
@media (max-width: 536px) {
  ul.rent_list li .item {
    float: none;
  }
}
ul.rent_list li .item .property {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 536px) {
  ul.rent_list li .item .property {
    position: absolute;
    top: 30px;
    left: 10px;
  }
}
ul.rent_list li .item .access_txt {
  display: block;
}
@media (max-width: 536px) {
  ul.rent_list li .item .rent {
    position: absolute;
    top: 70px;
    left: 130px;
  }
}
ul.rent_list li .item .price {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 536px) {
  ul.rent_list li .item .access {
    position: absolute;
    top: 105px;
    left: 130px;
  }
}
@media (max-width: 536px) {
  ul.rent_list li .articleBtn {
    position: absolute;
    top: 0;
    right: 0;
  }
}
ul.rent_list li:hover a .thumb {
  overflow: hidden;
}
@media (max-width: 536px) {
  ul.rent_list li:hover a .thumb {
    overflow: visible;
  }
}
ul.rent_list li:hover a .thumb img {
  transform: scale(1.1);
  opacity: 0.7;
  transition: 0.5s;
}

/* 選択した物件のお問い合わせ
=========================================== */
#contact {
  margin-bottom: 100px;
}
@media (max-width: 840px) {
  #contact {
    margin-bottom: 60px;
  }
}
#contact h3 {
  font-size: 2.4rem;
  color: #fff;
  background: #675B58;
  padding: 18px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 840px) {
  #contact h3 {
    font-size: 1.8rem;
  }
}
#contact .form_container {
  max-width: 820px;
  width: 100%;
  padding: 40px 24px 60px;
  margin: 0 auto;
  background: #fff;
}
@media (max-width: 840px) {
  #contact .form_container {
    padding: 30px 15px;
  }
}
@media (max-width: 540px) {
  #contact .form_container {
    padding: 15px;
  }
}
#contact .commonTbl tr {
  border-bottom: dotted 1px #CCCCCC;
}
#contact .commonTbl th, #contact .commonTbl td {
  padding: 20px 0;
}
#contact .commonTbl th {
  width: 32%;
  text-align: right;
  vertical-align: top;
  padding-right: 20px;
}
@media (max-width: 840px) {
  #contact .commonTbl th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 0 10px;
  }
}
#contact .commonTbl td {
  width: 68%;
}
@media (max-width: 840px) {
  #contact .commonTbl td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 0 20px;
  }
}
#contact .commonTbl td input[name=mail] {
  width: 100%;
}
#contact .commonTbl td select {
  width: 200px;
}
@media (max-width: 540px) {
  #contact .commonTbl td input {
    width: 100%;
  }
}
#contact .commonTbl .f_left {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 540px) {
  #contact .commonTbl .f_left {
    width: 100%;
  }
}
#contact .commonTbl .f_left input {
  margin-bottom: 10px;
}
@media (max-width: 540px) {
  #contact .commonTbl .f_left:last-child input {
    margin-bottom: 0;
  }
}
#contact .commonTbl .form_note {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 8px;
}
@media (max-width: 540px) {
  #contact .commonTbl .form_note {
    font-size: 1.2rem;
  }
}
#contact .commonTbl .chkrequired:not(select) {
  background: #F8E2E6;
}
#contact #privacyArea {
  text-align: center;
  margin: 30px 0;
}
@media (max-width: 540px) {
  #contact #privacyArea label {
    font-size: 1.2rem;
  }
}
#contact #privacyArea a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
#contact .submit button[type=submit] {
  font-family: YuGothic, "Yu Gothic", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  -webkit-appearance: none;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 24px;
  width: 70%;
  color: #fff;
  margin: 0 auto;
  background: #595757;
  text-align: center;
  transition: .3s all;
  line-height: 1.8;
  padding: 10px;
  border: none;
}
#contact .submit button[type=submit]:hover {
  background-color: #6B6464;
  transition: .3s all;
}
@media (max-width: 540px) {
  #contact .submit button[type=submit] {
    font-size: 18px;
    width: 80%;
    line-height: 1.5;
  }
}
#contact .req, #contact .option {
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  padding: 4px 8px;
  text-align: center;
  margin-left: 14px;
  white-space: nowrap;
}
#contact .req {
  background: #595757;
}
#contact .option {
  background: #ccc;
}
