@charset "UTF-8";
/**
 * ラベル
 * NOTE: 
**/
.label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.label_default {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  background: var(--site-c-main);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  padding: 6px 12px;
}
.label_default:hover {
  color: #fff;
}
.label_default input {
  margin-right: 4px;
}

.label_plain {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  padding: 5px 12px;
}

.label_gray {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  background: var(--site-c-gray);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  padding: 6px 12px;
}

.label_must {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  background: var(--site-c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  padding: 6px 12px;
}

.label_code {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  border: solid 1px #00e;
  background: #fff;
  color: #00e;
  font-size: 12px;
  font-weight: 500;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.25;
  word-spacing: 0.5ex;
  padding: 5px 1.25ex;
}


/**
 * ボタン
 * 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: 5px;
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-weight: 700;
  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: 5px;
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: var(--site-btn-height);
  padding-inline: 1em;
  position: relative;
  cursor: pointer;
}
.btn_small:hover,
.btn_small:focus {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  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: 5px;
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  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: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}


/**
 * 検索ボタン
**/
.btn_search {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: solid 2px 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%);
}
.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: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
  width: 100%;
  height: var(--site-btn-small-height);
  margin: 0 auto;
}
.btn_search:hover,
.btn_search:focus {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
.btn_area_serach::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  left: -0.375em;
  transform: scale(1.25, 1.25) translate(0, 6%);
}
.btn_area_serach::after {
  display: none;
}
.btn_area_serach span {
  display: inline-block;
}


/**
 * 編集ボタン
**/
.btn_edit {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 5px;
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 13px;
  height: 32px;
  padding: 0 8px;
}
.btn_edit:hover,
.btn_edit:focus {
  border: solid 1px 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;
}
.btn_default:hover,
.btn_default:focus {
  border-color: var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}

.btn_plain {
  border-color: var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
.btn_plain:hover,
.btn_plain:focus {
  border-color: var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}

.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);
}


/**
 * ボタンそのものがformの場合
 * NOTE: 中身のスタイルをすべてリセットします。
**/
form.btn {
  display: inline-block;
  padding: 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%;
  margin: 0;
  padding-inline: 1em;
  cursor: inherit;
}


/**
 * ボタン親要素
**/
.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_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_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: 6px;
  background: linear-gradient(45deg, var(--site-c-main) 0%, var(--site-c-main-hue) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 1em 0 1.25em;
  height: var(--site-btn-small-height);
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  .btn_net a,
  .btn_kuchikomi a,
  .btn_like a,
  .btn_tel a {
    font-size: 12px;
  }
}

.btn_tel a {
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}

.btn_net a::before,
.btn_kuchikomi a::before,
.btn_like a::before,
.btn_tel a::before {
  content: '\e1fe';
  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.25, 1.25);
  transform-origin: right center;
  margin: 0 1ex 0 0;
}

.btn_net a::before {
  content: "\f0e0";
}
.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: 2em;
  height: 2em;
  transform: translate(0, 0) scale(1, 1);
  transform-origin: right center;
}

.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;
}


