@charset "UTF-8";
/**
 * ラベル
 * NOTE: 
**/
.label {
  display: inline-block;
  font-size: 14px;
}
.label_default {
  border-radius: var(--site-btn-radius);
  background: var(--site-c-main);
  color: #fff;
  padding: 13px 16px;
}
.label_default:hover {
  color: #fff;
}
.label_default input {
  margin-right: 4px;
}
.label_must {
  display: inline-block;
  background: var(--site-c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 13px;
}
/**
 * ボタン
 * NOTE: ボタンは、ボタンスタイルにしたい要素に直接指定してください。
 * NOTE: 使用例 <button type="submit" class="btn"><span>送る</span></button>
 * NOTE: 使用例 <button type="submit" class="btn_small"><span>送る小さい</span></button>
 * NOTE: 使用例 <button type="submit" class="btn btn_red"><span>赤い</span></button>
 * NOTE: 使用例 <button type="submit" class="btn_small btn_red"><span>赤い小さい</span></button>
**/
/**
 * ボタン基本
**/
.btn {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: var(--site-btn-radius);
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: var(--site-btn-height);
  padding-inline: 1em;
  position: relative;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}

.btn_small {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: var(--site-btn-radius);
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: var(--site-btn-small-height);
  padding-inline: 1em;
  position: relative;
  cursor: pointer;
}
.btn_small:hover, .btn_small:focus {
  border-color: #3773d2;
  background: #3773d2;
  color: #fff;
}
/**
 * 実行ボタン
**/
.btn_action {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: var(--site-btn-radius);
  border: solid 1px #3773d2;
  background: #3773d2;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1ex;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: var(--site-btn-height);
  margin: 0 auto;
  position: relative;
  vertical-align: middle;
}
.btn_action:hover, .btn_action:focus {
  border-color: #3773d2;
  background: #3773d2;
  color: #fff;
}
/**
 * 検索ボタン
**/
.btn_search {
  box-shadow: var(--site-btn-shadow);
  border-radius: var(--site-btn-radius);
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  width: 100%;
  height: var(--site-btn-height);
  margin: 0 auto;
}
.btn_search::before {
  /*
  content: "\f002";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: relative;
  top: 0;
  left: -6px;
  transform: scale(1.25, 1.25) translate(0, 6%);
*/
  content: '';
  display: inline-block;
  background-image: url("/common/images/icon_magnify_w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin: 0 0.375em 0 0;
  transform: scale(1, 1) translate(0, 6%);
}
.btn_search span {
  display: inline-block;
}
.btn_search:hover, .btn_search:focus {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
/**
 * 検索ボタン（エリア）
**/
.btn_area_serach {
  box-shadow: var(--site-btn-shadow);
  border-radius: var(--site-btn-radius);
  border: var(--site-c-main-light);
  background: var(--site-c-main-light);
  color: var(--site-c-main-hue);
  width: 100%;
  height: var(--site-btn-small-height);
  margin: 0 auto;
}
.btn_area_serach:hover, .btn_area_serach:focus {
  border: var(--site-c-main-light);
  background: var(--site-c-main-light);
  color: var(--site-c-main-hue);
}
.btn_area_serach::before {
  content: "\f601";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  left: -0.375em;
  transform: scale(1, 1) translate(0, 6%);
}
.btn_area_serach::after {
  display: none;
}
.btn_area_serach span {
  display: inline-block;
}
/**
 * クリアボタン
**/
.btn_clear {
  box-shadow: var(--site-btn-shadow);
  border-radius: var(--site-btn-radius);
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  width: 100%;
  height: var(--site-btn-height);
  margin: 0 auto;
}
.btn_clear::before {
  content: "\f057";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  position: relative;
  top: 0;
  left: -6px;
  transform: scale(1.25, 1.25) translate(0, 6%);
}
.btn_clear span {
  display: inline-block;
}
.btn_clear:hover, .btn_clear:focus {
  border-color: var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
/**
 * ボタンカラーリング
**/
.btn_default {
  /*border-color: var(--site-c-main);*/
  /*background: var(--site-c-main);*/
  /*color: #fff;*/
  border-color: var(--site-c-main-hue);
  background: var(--site-c-main-hue);
  color: #fff;
}
.btn_default:hover, .btn_default:focus {
  /*border-color: var(--site-c-main);*/
  /*background: var(--site-c-main);*/
  /*color: #fff;*/
  border-color: var(--site-c-main-hue);
  background: var(--site-c-main-hue);
  color: #fff;
}
.btn_plain {
  /*border-color: var(--site-c-main);*/
  /*background: #fff;*/
  /*color: var(--site-c-main);*/
  border-color: var(--site-c-main-hue);
  background: #fff;
  color: var(--site-c-main-hue);
}
.btn_plain:hover, .btn_plain:focus {
  /*border-color: var(--site-c-main);*/
  /*background: #fff;*/
  /*color: var(--site-c-main);*/
  border-color: var(--site-c-main-hue);
  background: #fff;
  color: var(--site-c-main-hue);
}
.btn_red {
  border-color: red;
  background: red;
  color: #fff;
}
.btn_red:hover, .btn_red:focus {
  border-color: red;
  background: red;
  color: #fff;
}
.btn_green {
  border-color: green;
  background: green;
  color: #fff;
}
.btn_green:hover, .btn_green:focus {
  border-color: green;
  background: green;
  color: #fff;
}
.btn_blue {
  border-color: blue;
  background: blue;
  color: #fff;
}
.btn_blue:hover, .btn_blue:focus {
  border-color: blue;
  background: blue;
  color: #fff;
}
.btn_yellow {
  border-color: yellow;
  background: yellow;
  color: var(--font-c);
}
.btn_yellow:hover, .btn_yellow:focus {
  border-color: yellow;
  background: yellow;
  color: var(--font-c);
}
/**
 * ボタン用途別
**/
/* ボタン 地図を見る */
.btn.btn_map {
  border: 1px solid var(--site-border-c);
  background: #fff;
  color: var(--font-c);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  width: auto;
  height: 22px;
  margin: 0 0 0 1ex;
  padding: 0 0.5ex;
}
.btn.btn_map::before {
  content: '';
  display: block;
  background-image: url("/common/images/icon_map_outline.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 0.5ex;
  transform: translate(0, 3.333%);
}
/* ボタン すべての写真を見る */
.btn.btn_more_photo {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--font-c);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  width: auto;
  height: var(--site-btn-small-height);
  margin: 0;
  padding: 0 12px;
}
.btn.btn_more_photo.has--border {
  box-shadow: none;
  border: 1px solid;
}
.btn.btn_more_photo::before {
  content: '\f35c';
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 6px;
  transform: translate(0, 3.333%) scale(1.25);
}

/**
 * ボタンそのものがformの場合
 * NOTE: 中身のスタイルをすべてリセットします。
**/
form.btn {
  display: inline-block;
  padding-inline: 0;
}
form.btn [type="button"],
form.btn [type="submit"] {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  outline: none;
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  width: 100%;
  height: 100%;
  padding-inline: 1em;
  cursor: inherit;
}

/**
 * ボタンがmbaseの構造の時
 * NOTE: 中身のスタイルをすべてリセットします。
**/
.btn:has(a),
.btn:has([type="submit"]),
.btn:has([type="button"]) {
  /* NOTE: ここに padding-inline: 0;以外の記述は禁止 */
  padding-inline: 0;
}
.btn>a,
.btn>[type="submit"],
.btn>[type="button"] {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  width: 100%;
  height: 100%;
  padding-inline: 1em;
  position: relative;
  cursor: pointer;
}


/**
 * ボタン親要素
 * NOTE: ボタンをグループ化します。
**/
.box_btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  max-width: 575px;
  margin: 0 auto;
  padding: 4px 0 0;
}
.box_btn + * {
  margin-top: 16px;
}
@media (max-width: 959.98px) {
  .box_btn {
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .box_btn {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .box_btn {
    flex-wrap: wrap;
  }
}

/**
 * 特別な構造のボタン（基本スタイル）
 * NOTE: mbaseライクのラッパー付きのボタン
 * NOTE: 使用例 <div class="btn btn_net"><button type="submit"><span>送る</span></button></div>
**/
.btn_req, .btn_inq, .btn_net, .btn_kuchikomi, .btn_like, .btn_tel {
  display: block;
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: inherit;
}
.btn_req a, .btn_inq a, .btn_net a, .btn_kuchikomi a, .btn_like a, .btn_tel a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(45deg, var(--site-c-main) 0%, var(--site-c-main-hue) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 12px 0 1.25em;
  height: var(--site-btn-small-height);
  position: relative;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .btn_req a, .btn_inq a, .btn_net a, .btn_kuchikomi a, .btn_like a, .btn_tel a {
    font-size: 12px;
  }
}
.btn_req a, .btn_tel a {
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
.btn_req a::before, .btn_inq a::before, .btn_net a::before, .btn_kuchikomi a::before, .btn_like a::before, .btn_tel a::before {
  content: '\f0e0';
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 1;
  text-rendering: auto;
  transform: translate(0, 0) scale(1, 1);
  transform-origin: right center;
  margin: 0 1ex 0 0;
}
.btn_req a::before {
  content: '';
  display: inline-block;
  background-image: url("/common/images/icon_doc.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  transform: translate(0, 0) scale(1, 1);
  transform-origin: right center;
  margin: 0 1ex 0 0;
}
.btn_inq a::before {
  content: '';
  display: inline-block;
  background-image: url("/common/images/icon_talk.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1em;
  height: 1em;
  transform: translate(0, 0) scale(1, 1);
  transform-origin: right center;
  margin: 0 1ex 0 0;
}
@media (max-width: 767.98px) {
  .btn_inq a::before, .btn_req a::before {
    margin-right: .5rem
  }
}
.btn_kuchikomi a::before {
  content: "\f075";
  content: "\f27a";
  content: "\f4ad";
}
.btn_like a::before {
  content: "\f004";
}
.btn_tel a::before {
  content: "\f095";
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--site-c-main);
  color: #fff;
  width: 1.75em;
  height: 1.75em;
  transform: translate(0, 0) scale(0.75, 0.75);
  transform-origin: right center;
}
.btn_req a > span, .btn_inq a > span, .btn_net a > span, .btn_kuchikomi a > span, .btn_like a > span, .btn_tel a > span {
  display: block;
}
.btn_tel.btn_tel_in > span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  font-feature-settings: "palt";
  text-align: center;
  padding: 4px 0;
  opacity: 0.5;
}
/**
 * 特別な構造のボタン
 * NOTE: .box_btn内部での並び順
**/
.box_btn .btn_kuchikomi {
  order: 0;
}
.box_btn .btn_like {
  order: 1;
}
.box_btn .btn_net {
  order: 3;
}
.box_btn .btn_tel {
  order: 2;
}