@charset "UTF-8";
/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* -----------------------------------------------------------
// 	お知らせ掲載（ページ訪問時に1度だけ表示）
// ----------------------------------------------------------- */
body.open_popup {
  overflow: hidden;
}

.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bg_onetime_popup h2 {
  font-weight: 600;
  font-size: 165%;
  text-align: center;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .bg_onetime_popup h2 {
    font-size: 143%;
  }
}
@media only screen and (max-width: 767px) {
  .bg_onetime_popup h2 {
    font-size: 129%;
  }
}
.bg_onetime_popup .txt_caution {
  font-size: 100%;
  text-align: center;
  line-height: 1.8em;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .bg_onetime_popup .txt_caution {
    font-size: 108%;
  }
}
@media only screen and (max-width: 767px) {
  .bg_onetime_popup .txt_caution {
    font-size: 108%;
  }
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 50%;
  background-color: #fff;
  padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .onetime_popup {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .onetime_popup {
    width: 90%;
    padding: 40px 30px;
    max-height: 80vh;
    overflow: scroll;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.onetime_popup .box_old {
  margin-top: 1em;
  text-align: center;
}

.onetime_popup_title {
  position: relative;
  padding: 1em 80px;
  margin: 0px;
  background-color: #3388dd;
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
}

.onetime_popup_title_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #000;
  content: "";
}

.onetime_popup_title_close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.onetime_popup_title_close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
  padding: 60px 30px;
  text-align: center;
}

/* -----------------------------------------------------------
	.空室検索下
----------------------------------------------------------- */
.con_old {
  display: block;
  margin: 15px auto;
  text-align: center;
  border: 1px solid red;
  width: 90%;
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
}
.con_old .st {
  font-size: 129%;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .con_old .st {
    font-size: 115%;
  }
}
@media only screen and (max-width: 767px) {
  .con_old .st {
    font-size: 108%;
  }
}
.con_old .txt {
  font-size: 115%;
  color: #ff0000;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .con_old .txt {
    font-size: 108%;
  }
}
@media only screen and (max-width: 767px) {
  .con_old .txt {
    font-size: 93%;
  }
}
.con_old .box_old {
  margin-top: 15px;
}

.modal_search .con_old {
  width: 100%;
}
