@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'メイリオ', 'Exo', sans-serif;
  color: #181818;
}

*, *::before, *::after {
  box-sizing: inherit;
}

input, select, textarea, button {
  font-size: 14px;
  padding: 5px;
  font-family: inherit;
  color: #666666;
  background: #fff;
  box-sizing: border-box;
  border: solid 1px #D1D1D1;
  border-radius: 5px;
  max-width: 100%;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}

span, a, img, em, strong, big, small, cite, input, textarea, legend, label {
  font-size: 14px;
  font-style: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}

label {
  font-size: 14px;
  color: #666666;
}

select:focus {
  border: 1px solid #1B898D;
  outline: 0;
}

.container {
  position: relative;
}

select {
  -webkit-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効 */
}

select::-ms-expand {
  display: none;
  /* デフォルトのスタイルを無効(IE用) */
}

/* セレクトボックスの矢印デザイン変更 */

select {
  padding: 5px 23px 5px 5px;
}

.select-custom {
  position: relative;
  display: inline-block;
}

.select-custom::after {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA4MzYwMjQyOTc3NTExRTc5OTJCOUJCQjU5MjkyRDEwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA4MzYwMjQzOTc3NTExRTc5OTJCOUJCQjU5MjkyRDEwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDgzNjAyNDA5Nzc1MTFFNzk5MkI5QkJCNTkyOTJEMTAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDgzNjAyNDE5Nzc1MTFFNzk5MkI5QkJCNTkyOTJEMTAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7HPqo2AAAAe0lEQVR42mL8//8/AyWAiYFCQLEBLDCGiYkJSRrPnDmD1QUbgPg/AbwBnxdygPgLHou/QNXgNOAJENfgMaAGqgZvIE4B4nNYxM9B5QjGwl8gToXS+MTwRiO6bbhchTcdwPyLN1xYiAhxRnwxw0IgvWwklKAYh35mAggwAMvOKAM1LXlxAAAAAElFTkSuQmCC) center no-repeat;
  display: block;
  width: 1.8em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

input:focus {
  border: 1px solid #1B898D;
  outline: 0;
}

/* チェックBOX */

input[type=checkbox] {
  display: none;
}

.checkbox {
  margin: 5px 5px 5px 0;
}

.checkbox label {
  padding-left: 23px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.checkbox label:before {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.checkbox input[type=checkbox]:checked+label:before {
  content: '\2713';
  font-size: 14px;
  color: #fff;
  background-color: #1B898D;
  text-align: center;
}

p {
  font-size: 14px;
  color: #181818;
  line-height: 1.7;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

table {
  width: 100%;
  word-break: break-all;
  word-wrap: break-all;
}

th {
  font-size: 16px;
  padding: 5px 0;
  color: #181818;
}

td {
  font-size: 16px;
  color: #181818;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #181818;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

#contents {
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.contents {
  margin-top: 20px;
}

.contentbox {
  padding: 10px 20px 20px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
}

.modal-box {
  margin: 0 auto;
}

/* font */

.bold {
  font-weight: bold;
}

.color_mint {
  color: #1B898D;
}

.color_red {
  color: #F80404;
}

.color_white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.font15 {
  font-size: 15px;
}

.font14 {
  font-size: 14px;
}

.fontwun {
  font-weight: unset !important;
}

.yen {
  text-align: right !important;
}

.whitesp {
  white-space: nowrap;
}

/*flex*/

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.flex-end {
  align-items: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.wrapre {
  flex-wrap: wrap-reverse;
}

.no-wrap {
  flex-wrap: nowrap;
}

/*color*/

.bg_white {
  background-color: #fff;
}

/*margin*/

.mar0auto {
  margin: 0 auto;
}

.mar20 {
  margin: 20px;
}

.mart0 {
  margin-top: 0!important;
}

.mart5 {
  margin-top: 5px;
}

.mart10 {
  margin-top: 10px;
}

.mart20 {
  margin-top: 20px;
}

.mar20tb {
  margin: 20px 0;
}

.mar30tb {
  margin: 30px 0;
}

.mar10tb {
  margin: 10px 0;
}

.mar5lr {
  margin: 0 5px;
}

.marl20 {
  margin-left: 20px;
}

.marl5 {
  margin-left: 5px;
}

.marl10 {
  margin-left: 10px;
}

.marr8 {
  margin-right: 10px;
}

.marr10 {
  margin-right: 10px;
}

.marr5 {
  margin-right: 5px;
}

.marb0 {
  margin-bottom: 0 !important;
}

.marb10 {
  margin-bottom: 10px;
}

.marb20 {
  margin-bottom: 20px;
}

.marb30 {
  margin-bottom: 30px;
}

.mart30 {
  margin-top: 30px;
}

/*padding*/

.pad5 {
  padding: 5px !important;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.pad30 {
  padding: 30px;
}

.pad60 {
  padding: 60px;
}

.padt0 {
  padding-top: 0 !important;
}

.padb0 {
  padding-bottom: 0 !important;
}

.padb20 {
  padding-bottom: 20px;
}

.padb30 {
  padding-bottom: 30px;
}

.pad0 {
  padding: 0 !important;
}

.pad0010 {
  padding: 0 0 10px !important;
}

.pad20bt {
  padding: 0 20px;
}

.pad30tb {
  padding: 30px 0;
}

.pad3020 {
  padding: 30px 20px;
}

.padtrlb20 {
  padding: 0 20px 20px;
}

.pa100tb {
  padding: 100px 50px;
}

/* width */

.maxw950 {
  max-width: 950px;
}

.wid15 {
  width: 15%;
}

.wid10 {
  width: 10%;
}

.widauto {
  width: auto;
}

/* button */

.btn_ptn2 {
  display: inline-block;
  border-radius: 30px;
  background: #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
}

.btn_ptn2:hover {
  opacity: 0.7;
}

.btn_ptn2 a {
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 7px 30px;
}

.btn_ptn3 {
  display: inline-block;
  border-radius: 30px;
  background: #fff;
  border: solid 1px #666666;
  box-shadow: 1px 1px 1px 1px #d1d1d1;
}

.btn_ptn3:hover {
  opacity: 0.7;
}

.btn_ptn3 a {
  color: #666666;
  font-size: 14px;
  display: block;
  padding: 7px 30px;
}

.btn_ptn4 {
  display: inline-block;
  border-radius: 5px;
  background: #fff;
  border: solid 1px #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
}

.btn_ptn4:hover {
  opacity: 0.7;
}

.btn_ptn4 a {
  color: #1B898D;
  font-size: 14px;
  display: block;
  padding: 7px 10px;
}

.btn_ptn5 {
  display: inline-block;
  border-radius: 30px;
  background: #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
  color: #fff;
  font-size: 14px;
  padding: 7px 30px;
  cursor: pointer;
}

.btn_ptn5:hover {
  opacity: 0.7;
}

.btn_ptn6 label {
  border-radius: 5px;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  border: solid 1px #1B898D;
  padding: 5px 10px;
  color: #1B898D;
  font-size: 14px;
  padding: 5px 10px;
}

.btn_ptn6 input:checked+label {
  background: #1B898D;
  color: #fff!important;
}

/*header*/

.header_pc {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 10px;
}

.header_menu_pc {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.header_menu_pc li {
  display: block;
  border: solid 1px #1B898D;
  border-radius: 5px;
  text-align: center;
  margin-right: 5px;
  min-width: 100px;
}

.header_menu_pc li:hover {
  background: #1B898D;
}

.header_menu_pc li a:hover {
  color: #fff;
  opacity: 1;
}

.header_menu_pc li a {
  display: block;
  padding: 7px;
  font-weight: bold;
  color: #1B898D;
}

.droppy--header {
  min-width: 110px;
  margin-left: 5px;
  text-align: right;
}

.droppy--header li a {
  font-weight: bold;
  font-size: 12px;
}

header {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99
}

header .logo {
  width: 160px;
}

header img {
  max-width: 100%;
}

.header_menu_sp {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 10px 0 0;
}

.header_menu_sp li {
  position: relative;
  background: #1B898D;
  text-align: center;
  width: 25%;
  border: solid 1px #fff;
}

.header_menu_sp li a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 6px;
}

.header_menu_sp img {
  width: 30px;
}

/* search-box */

.search-form {
  margin-bottom: 5px;
}

.wrap-search-header .search-form {
  width: 290px;
}

.search-form__input {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}

input[type=search] {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-form__submit {
  border-radius: 0 4px 4px 0;
}

.search-form__submit {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  font-size: 13px;
  color: #fff;
  background-color: #1B898D;
  text-shadow: none;
  background-image: none;
  font-weight: 600;
  padding: 7px 16px;
  border: unset;
  cursor: pointer;
}

.search-form__text-field {
  border: solid 1px #1B898D;
  margin-bottom: 0;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 12px;
  width: 230px;
  padding: 8px;
}

.search-form__submit i {
  font-size: 15px;
}

.fa-user.icon--first {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #ebebeb;
  top: 7px;
  line-height: 24px;
  color: #979797;
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
}

/* slide */

.slider {
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transition: 3s;
}

.slick-initialized {
  opacity: 1
}

/*side_menu*/

.fa-exclamation-circle {
  color: #F80404;
  font-size: 25px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.Unread_newarrival {
  background: #E9F4F5;
  border-radius: 5px;
  padding: 10px;
  position: relative;
}

.Unread_newarrival a:link {
  font-size: 14px;
}

/* .Unread_newarrival a:visited{
 color: #666666;
} */

.Unread_newarrival span {
  font-weight: bold;
  color: #F80404;
  font-size: 16px;
}

.side_linkbtn ul {
  margin-top: 10px;
}

.side_linkbtn li p {
  margin: 5px auto 0;
  background: #E9F4F5;
  border-radius: 15px;
  text-align: center;
  width: 200px;
}

.side_linkbtn li a {
  color: #1B898D;
  font-weight: bold;
  font-size: 12px;
  display: block;
  padding: 5px;
}

.side_linkbtn li a:hover {
  color: #fff;
  background: #1B898D;
  border-radius: 15px;
  opacity: 1;
}

.active_btn_color {
  color: #fff!important;
  background: #1B898D;
  border-radius: 15px;
}

.searchbox {
  line-height: 30px;
  background: #363636;
  margin: 10px 0;
  text-align: center;
}

.searchbox a {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  display: block;
}

.title {
  display: block;
  color: #1B898D;
  margin-top: 10px;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.sbtitle1 p {
  display: block;
  color: #1B898D;
  padding: 20px 0 0;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

aside::-webkit-scrollbar {
  width: 12px;
}

aside::-webkit-scrollbar-track {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777;
}

aside::-webkit-scrollbar-thumb {
  background: #1B898D;
  border-radius: 10px;
  box-shadow: none;
}

/* main */

main {
  width: calc(100% - 260px);
  margin-left: 260px;
  padding-right: 10px;
  /* height: 3000px; */
}

aside {
  width: 230px;
  height: 73vh;
  margin-top: 22px;
  padding: 0 10px 10px;
  position: fixed;
  overflow: scroll;
  overflow-x: hidden;
}

/*条件検索*/

.search_conditions {
  background: #E9F4F5;
  padding: 10px;
  margin-bottom: 15vh;
  /* min-height: 2600px; */
}

.search_conditions p {
  background: #E9F4F5;
  padding: 2px 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #1B898D;
  font-weight: bold;
  margin: 10px 0 5px;
}

.search_conditions_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search_conditions_inner label:after {
  content: unset!important;
}

.search_conditions_inner input[type=text] {
  width: 100%;
}

.address_details {
  border-radius: 50px!important;
  display: inline-block;
  background-color: #f9f9f9!important;
  font-weight: normal!important;
  color: #666666!important;
  padding: 2px 10px!important;
  position: relative;
  cursor: pointer;
  margin-top: 10px;
}

.address_details::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f057";
  margin-left: 5px;
}

#side_linkbtn2 input[type=text] {
  width: 49.5%;
}

.search_conditions_inner label {
  font-size: 14px!important;
  color: #666666;
  font-weight: normal!important;
  margin: 0!important;
}

.anchor {
  padding-top: 73px!important;
  margin-top: -73px!important;
}

.property_type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#municipality {
  background: #E9F4F5;
  padding: 10px;
}

.property_type_inner {
  margin: 0 5px 5px 0;
}

.property_type_inner label {
  color: #1B898D;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fff;
  border: solid 1px #1B898D;
  text-align: center;
  font-size: 14px!important;
  cursor: pointer;
  display: block;
  width: 88px;
}

.property_type_inner input:checked+label {
  background: #1B898D;
  color: #fff!important;
}

.invalid_btn {
  color: #666666!important;
  border: solid 1px #666666!important;
}

.invalid_search-form_submit {
  background-color: #666666!important;
}

.property_type2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #E9F4F5;
  padding: 10px;
}

.property_type_inner2 {
  margin: 0 5px 5px 0;
  position: relative;
}

.property_type_inner2 label {
  color: #1B898D!important;
  padding: 3px 7px;
  border-radius: 5px;
  background: #fff;
  border: solid 1px #1B898D;
  text-align: center;
  font-size: 14px!important;
  cursor: pointer;
  display: block;
  width: 15px;
  min-height: 150px;
}

.property_type_inner2::after {
  border-top: 2px solid #1B898D!important;
  content: "";
  flex-grow: 1!important;
  min-width: 5px!important;
  position: absolute;
  top: 50%;
  left: -5px;
}

.property_type_inner2 input:checked+label {
  background: #1B898D;
  color: #fff!important;
}

.dividedinto_two {
  width: 49.5%;
}

.dividedinto_two li {
  width: 48%;
}

.dividedinto_three {
  width: 22%;
}

.dividedinto_four {
  width: 27%;
}

.titlecolor {
  border: solid 3px #ffff00;
}

/*モーダル*/

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  border-radius: 5px;
}

.modal-close {
  text-align: center;
  margin-top: 20px;
}

.modal-close a {
  color: #1B898D;
}



/* content-footer */

#content-footer {
  margin: 0;
  padding: 0;
}

#content-footer .inq-fixed {
  padding: 5px 0;
  background-color: rgba(0, 0, 0, .4);
  font-size: 13px;
  color: #fff;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.content-footer-box {
  padding: 10px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* footer */

footer {
  padding: 20px 0 0;
  background: #1B898D;
  margin-top: 20px;
}

.copy {
  text-align: center;
  padding-bottom: 20px;
}

.copy p {
  color: #fff;
  font-size: 12px;
}

.copy p a {
  color: #fff;
  font-size: 14px;
}

/* Back to top */

#PageTopBtn {
  position: fixed;
  bottom: 15px;
  right: 20px;
}

#PageTopBtn a {
  display: block;
  outline: none;
}

#PageTopBtn a:hover {
  text-decoration: none;
}

#PageTopBtn {
  z-index: 1000;
}

#PageTopBtn img {
  width: 30px;
  z-index: 200;
}