@charset "UTF-8";
/*
Theme Name: 高梁市空き家バンク
*/
/********************************
# 目次

 - reset
 - general
 - component
   → ヘッダ・フッタ・グロナビ **以外** の、各ページで共用するパーツをここに置く
   → WordPressネイティブなCSS＆プラグインのCSSもここに置く
   → 接頭辞は 'c-'
   → 書く場所はこの位置をキープする事
 - layout
   → 接頭辞は 'l-'
   → 書く場所はこの位置をキープする事
 - WordPress WordPressが使用するクラス
 - header
 - content-wrap
 - aside
 - main
 - footer
 - home トップページ
 - news お知らせ一覧・詳細 デフォルトの投稿タイプ
 - bank 空き家情報バンク一覧 カスタム投稿タイプ
 - bank-single 空き家情報バンク詳細ページ
 - search トップページ・空き家情報バンク共用の検索フォーム部分
 - page-about 空き家情報バンクについて 固定ページ
 - page-foruser 移住希望者の方へ 固定ページ
 - page-forowner 空き家所有者の方へ 固定ページ
 - page-support 制度一覧 固定ページ
 - page-contact お問合せ 固定ページ
 - 404 ページ
*********************************/
/********************************
# 規約

 - ブロック相当部分とエレメント相当部分の区切りはアンダースコア2つ
 - エレメントとモディファイの区切りはハイフン2つ
 - 単語の区切りはハイフン1つ
 - 要素・クラス名の後に半角スペース1
 - 要素・クラス名毎に改行
 - プロパティの前にはスペ4
 - プロパティ毎に改行
 - メディアクエリはセレクタ毎に分けて書く

----
# 汎用クラス

 - 接頭辞は'u-'
 - utility.css で設定している各クラスを参照
 - font-size -> fz 等の略称はemmetで採用されているものを使用しています

----
# JS用クラス

 - 接頭辞は'js-'
 - slick等、IDを指定して動かすもの専用

----
# ステートメント用クラス

接頭辞は'is_'

.is_active
クリックされた状態・現在選択されている状態を表現

注意：.is_activeには直接スタイルを当てない（スタイル汚染の原因になる）
BAD
.is_active {
    font-weight: bold;
}
GOOD
.hogehoge.is_active {
    font-weight: bold;
}
*********************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/********************************
general
*********************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
    scroll-padding-top: 7.4rem;
  }
}

body {
  text-size-adjust: 100%;
  /*Chrome,Safari*/
  -webkit-text-size-adjust: 100%;
  /*EgdeMobile*/
  -ms-text-size-adjust: 100%;
  /*firefox*/
  -moz-text-size-adjust: 100%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3rem;
    min-width: 0;
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img:not([class]):hover {
  opacity: 0.5;
}

.pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

.pc-i {
  display: inline;
}
@media screen and (max-width: 750px) {
  .pc-i {
    display: none !important;
  }
}

.md1-only-dn {
  display: block;
}
@media screen and (max-width: 1000px) {
  .md1-only-dn {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .md1-only-dn {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
}

/********************************
component 接頭辞はc-
*********************************/
.c-txt {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}
@media screen and (max-width: 750px) {
  .c-txt {
    font-size: 3.6rem;
  }
}

.c-txt + * {
  margin-top: 40px;
}

@media screen and (max-width: 750px) {
  .c-txt--sp {
    padding: 0 3rem;
  }
}

.c-small {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .c-small {
    font-size: 3rem;
  }
}

.c-breadcrumb {
  width: 1000px;
  margin: 30px auto 0;
}
@media screen and (max-width: 1000px) {
  .c-breadcrumb {
    width: 100%;
    padding: 0 20px;
  }
}

.c-breadcrumb + * {
  margin-top: 55px;
}
@media screen and (max-width: 1000px) {
  .c-breadcrumb + * {
    margin-top: 20px;
  }
}

.c-breadcrumb-arrow {
  margin: 0 10px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb-arrow {
    width: 1.4rem;
    height: 2.6rem;
    margin: 0 1.5rem;
  }
}

.c-img + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-img + * {
    margin-top: 5rem;
  }
}

.c-upper {
  text-transform: uppercase;
}

.c-h2-group {
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f1f5;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .c-h2-group {
    position: relative;
    flex-direction: column;
    padding-bottom: 2rem;
    margin: 0 3rem;
  }
}

@media screen and (max-width: 750px) {
  .c-h2-group--m0 {
    margin-left: 0;
    margin-right: 0;
  }
}

.c-h2-group + * {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .c-h2-group + * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 750px) {
  .c-h2-group + * {
    margin-top: 6rem;
  }
}

.c-h2 {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-h2 {
    font-size: 5rem;
  }
}

.c-h2::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 30px;
  background-image: url("../img/common/ico_h2.webp");
  background-size: contain;
  margin-right: 15px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 750px) {
  .c-h2::before {
    width: 4rem;
    height: 5.7rem;
    margin-right: 2rem;
    top: 1rem;
  }
}

.c-h2-small {
  font-family: "Roboto";
  color: #a5a4af;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.c-h3 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  width: fit-content;
  padding-bottom: 20px;
  border-bottom: 5px solid #e63616;
}
@media screen and (max-width: 750px) {
  .c-h3 {
    width: 100%;
    font-size: 4rem;
    line-height: 1.5;
  }
}

.c-h3::after {
  content: "";
  width: 25px;
  height: 5px;
  background-color: #40a8c0;
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-h3::after {
    width: 2.5rem;
  }
}

.c-h3 + * {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .c-h3 + * {
    margin-top: 5rem;
  }
}

.c-h3--train::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  background: url("../img/home/ico_access-train.webp") no-repeat;
  background-size: contain;
  position: relative;
  top: 2px;
}

.c-h3--car::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background: url("../img/home/ico_access-car.webp") no-repeat;
  background-size: contain;
  position: relative;
  top: 6px;
  margin-right: 5px;
}

.c-h4 {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-h4 {
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

.c-h4::before {
  content: "■ ";
  color: #e63616;
}

.c-h4 + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-h4 + * {
    margin-top: 5rem;
  }
}

.c-notice {
  font-weight: bold;
  color: #e63616;
}

.c-btn {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #40a8c0;
  border-bottom: 4px solid #328699;
}
@media screen and (max-width: 750px) {
  .c-btn {
    font-size: 3rem;
    line-height: 1.7;
    padding: 2rem 1rem;
  }
}

.c-btn:hover {
  text-decoration: none;
  background-color: #328699;
  border-bottom: 4px solid #40a8c0;
}

.c-step-h4-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-step-h4-group + * {
  margin-top: 40px;
}

.c-step-h4-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 3px;
  padding-right: 35px;
}

.c-step-h4-sub__txt {
  font-family: "Roboto";
  font-weight: bold;
  color: #fff;
  padding: 4px 3px;
}
@media screen and (max-width: 750px) {
  .c-step-h4-sub__txt {
    font-size: 3.6rem;
    padding: 0.4rem 0.3rem;
  }
}

.c-step-h4-sub__num {
  font-size: 40px;
  font-family: "Roboto";
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-step-h4-sub__num {
    font-size: 6rem;
  }
}

.c-step-h4 {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-step-h4 {
    font-size: 3.6rem;
  }
}

.c-step-h4-group--user .c-step-h4-sub {
  background: url("../img/for-user/ico_small-arrow-right.webp") no-repeat right center/20px 17px;
}
.c-step-h4-group--user .c-step-h4-sub__txt {
  background-color: #40a8c0;
}
.c-step-h4-group--user .c-step-h4-sub__num {
  color: #40a8c0;
}

.c-step-h4-group--owner .c-step-h4-sub {
  background: url("../img/for-owner/ico_small-arrow-right.webp") no-repeat right center/20px 17px;
}
.c-step-h4-group--owner .c-step-h4-sub__txt {
  background-color: #e63616;
}
.c-step-h4-group--owner .c-step-h4-sub__num {
  color: #e63616;
}

.c-step-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .c-step-block {
    display: block;
  }
}

.c-step-block--db {
  display: block;
}

.c-step-block + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-step-block + * {
    margin-top: 4rem;
  }
}

.c-step-block__img {
  width: 220px;
}
@media screen and (max-width: 1000px) {
  .c-step-block__img {
    width: 25%;
  }
}
@media screen and (max-width: 750px) {
  .c-step-block__img {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 750px) {
  .c-step-block__img + * {
    margin-top: 3rem;
  }
}

.c-step-block__img img {
  display: block;
  margin: 0 auto;
}

.c-step-block__txt {
  width: 450px;
}
@media screen and (max-width: 1000px) {
  .c-step-block__txt {
    width: 73%;
  }
}
@media screen and (max-width: 750px) {
  .c-step-block__txt {
    width: 100%;
  }
}

.c-btn--userowner {
  width: fit-content;
  margin-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1000px) {
  .c-btn--userowner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-btn--userowner2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 80px;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-btn--userowner2 {
    width: 100%;
    padding: 2rem 1rem;
  }
}

.c-btn--userowner2 p {
  text-align: left;
}
@media screen and (max-width: 750px) {
  .c-btn--userowner2 p {
    text-align: center;
  }
}

.c-btn--userowner2::after {
  position: absolute;
  content: "＞";
  color: #fff;
  font-size: 20px;
  top: 25px;
  right: 29px;
}
@media screen and (max-width: 750px) {
  .c-btn--userowner2::after {
    content: "";
  }
}

.c-btn--userowner3 {
  margin-left: 0;
  margin-right: 0;
}

.c-btn--userowner3 + * {
  margin-top: 40px;
}

.c-btn--owner {
  background-color: #e63616;
  border-bottom: 4px solid #99240f;
}

.c-btn--owner:hover {
  background-color: #99240f;
  border-bottom: 4px solid #e63616;
}

.c-userowner-arrow {
  margin-top: 40px;
  margin-left: 205px;
}
@media screen and (max-width: 1000px) {
  .c-userowner-arrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-userowner-arrow + * {
  margin-top: 40px;
}

.c-userowner-colorbox {
  padding: 40px;
}
@media screen and (max-width: 750px) {
  .c-userowner-colorbox {
    padding: 3rem;
  }
}

.c-userowner-colorbox + * {
  margin-top: 80px;
}

.c-userowner-colorbox.l-flex {
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 750px) {
  .c-userowner-colorbox--adobe {
    flex-direction: column;
  }
}

@media screen and (max-width: 750px) {
  .c-userowner-colorbox--adobe a {
    width: 30rem;
  }
}

@media screen and (max-width: 750px) {
  .c-userowner-colorbox--adobe a img {
    width: 100%;
  }
}

.c-userowner-colorbox--user {
  background-color: #ecf7f9;
}

.c-userowner-colorbox--owner {
  background-color: #fdebe8;
}

.c-userowner-list + * {
  margin-top: 50px;
}

.c-userowner-list-item {
  padding: 20px 15px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .c-userowner-list-item {
    padding: 4rem 2rem;
  }
}

.c-userowner-list-item:last-of-type {
  border-bottom: 1px solid #ccc;
}

.c-userowner-list-item a {
  padding: 10px 0 10px 40px;
  background: url("../img/common/ico_pdf.webp") no-repeat left center/24px 29px;
}
@media screen and (max-width: 750px) {
  .c-userowner-list-item a {
    font-size: 3rem;
    padding: 1rem 0 1rem 7rem;
    background: url("../img/common/ico_pdf.webp") no-repeat left center/4.8rem 5.8rem;
  }
}

.c-status--open {
  background-color: #40a8c0;
}

.c-status--view {
  background-color: #007f1f;
}

.c-status--stop {
  background-color: #a0d4e0;
}

.c-status--nego {
  background-color: #e63616;
}

.c-status--contract {
  background-color: #a8a8a8;
}

/********************************
layout 接頭辞はl-
*********************************/
.l-w1100 {
  width: 1100px;
  margin: 0 auto;
}

.l-w1000 {
  width: 1000px;
  margin: 0 auto;
}

.l-w960 {
  width: 960px;
  margin: 0 auto;
}

.l-w750 {
  width: 750px;
  margin: 0 auto;
}

.l-flex {
  display: flex;
}

.l-flex--pc {
  display: flex;
}

.l-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.l-flex-wrap--pc {
  display: flex;
  flex-wrap: wrap;
}

.l-tac {
  text-align: center;
}

.l-tac {
  text-align: center;
}

/********************************
WordPressネイティブなCSS＆プラグインのCSS
*********************************/
.wp-pagenavi {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 80px auto 0;
  font-size: 18px;
  font-family: "Roboto";
}
@media screen and (max-width: 750px) {
  .wp-pagenavi {
    column-gap: 1rem;
    margin-top: 8rem;
    font-size: 3rem;
  }
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  color: #40a8c0;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi .first,
  .wp-pagenavi .last {
    width: fit-content;
  }
}
.wp-pagenavi a {
  text-decoration: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  min-width: 25px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 0;
    width: 5rem;
    height: 5rem;
  }
}
.wp-pagenavi .current {
  background-color: #40a8c0;
  color: #fff;
}
.wp-pagenavi .page {
  font-weight: bold;
  border: 1px solid #ccc;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover {
  background-color: #ecf7f9;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #40a8c0;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: fit-content;
  }
}
.wpcf7-list-item {
  margin-left: 0;
}

/********************************
header
*********************************/
@media screen and (max-width: 750px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}

.header__h1-wrap {
  padding: 14px 0;
  background: #fdebe8;
}
@media screen and (max-width: 750px) {
  .header__h1-wrap {
    padding: 4rem 0;
  }
}

.header__h1 {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .header__h1 {
    width: 49rem;
  }
}

@media screen and (max-width: 750px) {
  .header__h1 img {
    width: 100%;
  }
}

.header__btn-menu {
  display: none;
  position: absolute;
  top: 1.3rem;
  right: 1rem;
  width: 8.8rem;
  height: 11.8rem;
  background: url("../img/header/menu-on.webp") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .header__btn-menu {
    display: block;
  }
}

.header__btn-menu.is-active {
  background: url("../img/header/menu-close.webp") no-repeat;
  background-size: contain;
}

.header__gnav {
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  .header__gnav {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .header__gnav {
    display: none;
  }
}

.header__gnav-list {
  justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
  .header__gnav-list {
    flex-wrap: wrap;
  }
}
.header__gnav-list .gnav-list__item {
  font-size: 14px;
  font-weight: 500;
  flex: 1 1 0;
  text-align: center;
  border-left: 2px solid #ccc;
}
@media screen and (max-width: 1000px) {
  .header__gnav-list .gnav-list__item {
    flex: none;
    width: 25%;
    border-left: 1px solid #ccc;
  }
}
.header__gnav-list .gnav-list__item:hover {
  background-color: #ecf7f9;
}
.header__gnav-list .gnav-list__item a {
  display: block;
  padding: 20px 15px;
  width: 100%;
  white-space: nowrap;
}
.header__gnav-list .gnav-list__item a:hover {
  text-decoration: none;
}
.header__gnav-list .gnav-list__item:has(a:hover),
.header__gnav-list .gnav-list__item:has(a:hover) + .gnav-list__item {
  border-left: 2px solid #ecf7f9;
}
@media screen and (max-width: 1000px) {
  .header__gnav-list .gnav-list__item:has(a:hover),
  .header__gnav-list .gnav-list__item:has(a:hover) + .gnav-list__item {
    border-left: 1px solid #ecf7f9;
  }
}
.header__gnav-list .gnav-list__item:last-of-type {
  border-right: 2px solid #ccc;
}
@media screen and (max-width: 1000px) {
  .header__gnav-list .gnav-list__item:last-of-type {
    border-right: none;
  }
}
.header__gnav-list .gnav-list__item--current a {
  color: #fff;
}
.header__gnav-list .gnav-list__item--current + .gnav-list__item {
  border-left: 2px solid #40a8c0 !important;
}
.header__gnav-list .gnav-list__item--current {
  background-color: #40a8c0 !important;
  border-color: #40a8c0 !important;
}

.header__gnav-sp {
  display: none;
  padding-left: 8rem;
  width: 100%;
  position: absolute;
}

.header__gnav-sp.is-active {
  display: none;
}
@media screen and (max-width: 750px) {
  .header__gnav-sp.is-active {
    display: block;
  }
}

.header__gnav-sp-list {
  background-color: #fdebe8;
}

.gnav-sp-list__item:not(:first-of-type) {
  border-top: 1px solid #ccc;
}

.gnav-sp-list__item a {
  display: inline-block;
  font-size: 3rem;
  padding: 2rem;
}

.gnav-sp-list__item a::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2.4rem;
  background: url("../img/header/ico_arrow-right.webp") no-repeat;
  background-size: contain;
  position: relative;
  top: 0.2rem;
  margin-right: 2rem;
}

/********************************
content-wrap
*********************************/
.content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .content-wrap {
    width: 100%;
    flex-direction: column;
    padding: 0 20px;
  }
}
@media screen and (max-width: 750px) {
  .content-wrap {
    margin-top: 5rem;
    padding: 0;
  }
}

/********************************
aside 
*********************************/
.aside {
  width: 250px;
}
@media screen and (max-width: 1000px) {
  .aside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .aside {
    display: block;
  }
}
.aside .aside__link {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .aside .aside__link {
    max-width: 30%;
  }
}
@media screen and (max-width: 750px) {
  .aside .aside__link {
    max-width: initial;
    width: calc(100% - 6rem);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.aside .aside__link + * {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .aside .aside__link + * {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .aside .aside__link + * {
    margin-top: 8rem;
  }
}
.aside .aside__search {
  background-color: #fdebe8;
}
@media screen and (max-width: 1000px) {
  .aside .aside__search {
    width: 100%;
  }
}
.aside .search__map {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .aside .search__map {
    width: 500px;
    margin: 50px auto;
  }
}
@media screen and (max-width: 750px) {
  .aside .search__map {
    width: 100%;
    margin: 0;
  }
}
.aside .search__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .aside .search__group {
    gap: 0 1.5rem;
  }
}
.aside .search__group + .search__group {
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .aside .search__group + .search__group {
    margin-top: 1.5rem;
  }
}
.aside .search__legend {
  width: 100%;
  color: #fff;
  background-color: #e63616;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
}
@media screen and (max-width: 750px) {
  .aside .search__legend {
    font-size: 3.6rem;
    padding: 1rem 2rem;
  }
}
.aside .search__choices {
  padding: 20px;
}
@media screen and (max-width: 750px) {
  .aside .search__choices {
    padding: 2rem;
  }
}
.aside .search__choices--radio {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
@media screen and (max-width: 750px) {
  .aside .search__choices--radio {
    gap: 1.5rem 3rem;
  }
}
.aside .search__choices--checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .aside .search__choices--checkbox {
    gap: 1.5rem;
  }
}
.aside .search__choices--checkbox2 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .aside .search__choices--checkbox2 {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .aside .search__choices,
  .aside .search__choices--checkbox {
    display: flex;
    gap: 15px;
    width: calc(100% - 21.5rem);
  }
}
@media screen and (max-width: 750px) {
  .aside .search__choice label,
  .aside .search__label {
    display: flex;
    align-items: center;
    gap: 0 1rem;
  }
}
.aside .search__select {
  margin: 20px 20px 0;
}
@media screen and (max-width: 750px) {
  .aside .search__select {
    font-size: 3rem;
    margin: 2rem 2rem 0;
  }
}
.aside .search__input {
  margin: 20px 20px 0;
}
@media screen and (max-width: 750px) {
  .aside .search__input {
    font-size: 2.9rem;
    margin: 2rem 2rem 0;
  }
}
.aside .search__submit {
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 8px;
}
@media screen and (max-width: 750px) {
  .aside .search__submit {
    padding: 1rem 0 0.8rem;
  }
}
.aside .search__submit:hover {
  cursor: pointer;
}
.aside .search__submit span {
  position: relative;
}
.aside .search__submit span::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("../img/home/ico_search.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: -30px;
}
@media screen and (max-width: 750px) {
  .aside .search__submit span::before {
    width: 3rem;
    height: 3rem;
    top: 0.6rem;
    left: -4.5rem;
  }
}
.aside .search__status-list + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .aside .search__status-list + * {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .aside .search__status-list-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    flex-direction: column;
  }
}
.aside .search__status-list-item + * {
  margin-top: 35px;
}
@media screen and (max-width: 750px) {
  .aside .search__status-list-item + * {
    margin-top: 4rem;
  }
}
.aside .search__status-term {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 3px 10px;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .aside .search__status-term {
    font-size: 3.6rem;
    display: block;
    width: fit-content;
    font-size: 3rem;
    padding: 0.5rem 1.5rem 0.8rem;
    margin: 0;
  }
}
@media screen and (max-width: 1000px) {
  .aside .aside__news-contact {
    width: 100%;
  }
}
.aside .aside__news,
.aside .aside__contact {
  margin-top: 80px;
  background-color: #fdebe8;
}
@media screen and (max-width: 1000px) {
  .aside .aside__news,
  .aside .aside__contact {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .aside .aside__news {
    padding: 6rem 0 12rem;
  }
}
.aside .aside__news-list-item {
  padding: 20px;
}
@media screen and (max-width: 750px) {
  .aside .aside__news-list-item {
    padding: 4rem;
  }
}
.aside .aside__news-list-item:first-of-type {
  padding-top: 0;
}
.aside .aside__news-list-item:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.aside .aside__news-link {
  font-weight: bold;
}
.aside .aside__news-meta {
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .aside .aside__news-meta {
    display: inline-block;
  }
}
.aside .aside__news-meta-date,
.aside .aside__news-meta-title {
  display: block;
}
.aside .aside__news-meta-date {
  font-size: 14px;
  font-family: "Roboto";
}
@media screen and (max-width: 750px) {
  .aside .aside__news-meta-date {
    font-size: 3rem;
  }
}
.aside .aside__news-meta-title {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .aside .aside__news-meta-title {
    font-size: 3.6rem;
  }
}
.aside .aside__news-excerpt {
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .aside .aside__news-excerpt {
    margin-top: 1.5rem;
    font-size: 3.6rem;
  }
}
.aside .c-btn--aside-news {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .aside .c-btn--aside-news {
    font-size: 3rem;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .aside .aside__contact {
    margin-top: 20px;
  }
}
.aside .aside__contact-list-item {
  line-height: 1.75;
  padding: 0 20px 40px;
}
.aside .aside__contact-list-item:not(:first-of-type) {
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.aside .aside__contact-name {
  font-size: 16px;
  font-weight: bold;
}
.aside .aside__contact-address {
  margin-top: 10px;
  font-size: 14px;
}
.aside .aside__contact-tel {
  font-family: "Roboto";
  font-size: 22px;
  font-weight: bold;
  color: #007f1f;
  margin-top: 10px;
}
.aside .aside__contact-hours {
  font-size: 14px;
  margin-top: 5px;
}
.aside .aside__contact-hours-lead {
  font-size: 16px;
  font-weight: bold;
}
.aside .c-btn--aside-mail {
  font-size: 14px;
}
.aside .aside__h2 {
  padding: 20px 0;
  border-bottom: 2px solid #e63616;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2 {
    padding: 2rem 0;
  }
}
.aside .aside__h2 + * {
  margin-top: 20px;
}
.aside .aside__h2--search {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--search {
    font-size: 5rem;
  }
}
.aside .aside__h2--search + * {
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .aside .aside__h2--search + * {
    margin-top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--search + * {
    margin-top: 0;
  }
}
.aside .aside__h2--search span::before {
  display: inline-block;
  content: "";
  width: 17px;
  height: 30px;
  background: url("../img/aside/ico_h2-search.webp");
  background-size: contain;
  position: relative;
  top: 4px;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--search span::before {
    width: 3.4rem;
    height: 6rem;
    margin-right: 2rem;
    top: 1.3rem;
  }
}
.aside .aside__h2--news {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--news {
    font-size: 5rem;
  }
}
.aside .aside__h2--news span::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 30px;
  background: url("../img/aside/ico_h2-news.webp");
  background-size: contain;
  position: relative;
  top: 4px;
  margin-right: 20px;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--news span::before {
    width: 2.8rem;
    height: 6rem;
    margin-right: 2rem;
    top: 1.3rem;
  }
}
.aside .aside__h2--contact {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .aside .aside__h2--contact {
    font-size: 3.6rem;
  }
}
.aside .aside__h2--contact span {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: url("../img/aside/ico_h2-contact.webp") no-repeat center left/19px 30px;
  padding-left: 30px;
}
/********************************
main 
*********************************/
.main {
  width: 710px;
}
@media screen and (max-width: 1000px) {
  .main {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .main {
    margin-top: 10rem;
  }
}

/********************************
footer 全ページ共通部品があればこちらに入れる
*********************************/
.footer {
  margin-top: 120px;
  padding-top: 45px;
  background-color: #fdebe8;
}
@media screen and (max-width: 750px) {
  .footer {
    margin-top: 8rem;
  }
}

.footer__inner {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 45px;
}
@media screen and (max-width: 1000px) {
  .footer__inner {
    width: 100%;
    padding: 0 20px 45px;
  }
}

.footer__nav {
  margin-top: 25px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.footer__nav-list--left-center {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .footer__nav-list--left-center {
    flex-direction: column;
    width: 50%;
  }
}

.footer__nav-list-item li {
  font-weight: 500;
}

.footer__nav-list-item--01 {
  width: 230px;
}
@media screen and (max-width: 1000px) {
  .footer__nav-list-item--01 {
    width: 100%;
  }
}

.footer__nav-list-item--02 {
  margin-left: 45px;
  width: 100px;
}
@media screen and (max-width: 1000px) {
  .footer__nav-list-item--02 {
    margin-top: 25px;
    margin-left: 0;
    width: 100%;
  }
}

.footer__nav-list-item--03 {
  margin-left: auto;
  width: 500px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer__nav-list-item--03 {
    margin-left: 0;
    flex-direction: column;
    width: 50%;
  }
}
.footer__nav-list-item--03 .footer__nav-inner-list {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .footer__nav-list-item--03 .footer__nav-inner-list {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .footer__nav-list-item--03 .footer__nav-inner-list + * {
    margin-top: 25px;
  }
}
.footer__nav-list-item--03 .footer__nav-inner-list li:not(.footer__nav-label) {
  margin-left: 30px;
  font-size: 14px;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .footer__nav-list-item--03 .footer__nav-inner-list li:not(.footer__nav-label) {
    font-size: 3rem;
  }
}
.footer__nav-list-item--03 .footer__nav-inner-list li:not(.footer__nav-label)::before {
  content: "- ";
}

.footer__nav-list-item--01 li,
.footer__nav-list-item--02 li,
.footer__nav-label {
  padding-left: 30px;
  background: url("../img/footer/ico_footer-list-arrow.webp") no-repeat left center/8px 14px;
}
.footer__nav-list-item--01 li:hover,
.footer__nav-list-item--02 li:hover,
.footer__nav-label:hover {
  background-position: 10px center;
}
.footer__nav-list-item--01 li a:hover,
.footer__nav-list-item--02 li a:hover,
.footer__nav-label a:hover {
  text-decoration: none;
}

.footer__nav-list-item--01 li + li,
.footer__nav-list-item--02 li + li {
  margin-top: 25px;
}

.footer__nav-label + * {
  margin-top: 25px;
}

.footer__nav-list-item--03 li:not(.footer__nav-label) + li {
  margin-top: 20px;
}

.footer__copyright {
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #40a8c0;
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    font-size: 3rem;
    padding: 1.5rem 0;
  }
}

.footer__address-wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 45px 0;
  border-top: 2px solid #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer__address-wrap {
    width: 100%;
    padding: 45px 20px;
  }
}

.footer__address-name {
  font-weight: 500;
}

.footer__address-detail {
  margin-top: 20px;
  font-size: 14px;
}

/********************************
home トップページ
*********************************/
.home {
  /* copilot追記分 */
  /* スライダーが初期化されたときの調整（js クラスに合わせる） */
  /* copilot追記ここまで */
}
.home .section__slider {
  margin: 30px auto 0;
  overflow-x: hidden;
  position: relative;
}
.home .section__slider .slick-dots li button::before {
  font-size: 15px;
  color: #e0f1f5;
  opacity: 1;
}
.home .section__slider .slick-dots li.slick-active button::before {
  color: #40a8c0;
}
.home .main section:not(.section__slider) + * {
  margin-top: 120px;
}
@media screen and (max-width: 750px) {
  .home .main section:not(.section__slider) + * {
    margin-top: 10rem;
  }
}
.home .mv-slick li {
  text-align: center;
}
.home .mv-slick li img {
  display: inline-block;
  height: auto;
}
.home .content-wrap {
  margin-top: 75px;
}
@media screen and (max-width: 750px) {
  .home .content-wrap {
    margin-top: 12rem;
  }
}
.home .akiya-bank__link {
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__link {
    margin: 0;
    position: absolute;
    bottom: -8rem;
    right: 0;
  }
}
.home .akiya-bank__link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 17px;
  background: url("../img/home/ico_arrow-right.webp") no-repeat;
  background-size: contain;
  margin-left: 10px;
  position: relative;
  top: 3px;
}
.home .akiya-bank__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px 0;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__list {
    gap: 0;
    margin-top: 13rem;
  }
}
.home .akiya-bank__list .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 3rem;
}
.home .akiya-bank__list .slick-dots li {
  margin: 0 2rem;
}
.home .akiya-bank__list .slick-dots li button::before {
  font-size: 15px;
  color: #e0f1f5;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__list .slick-dots li button::before {
    font-size: 3.5rem;
  }
}
.home .akiya-bank__list .slick-dots li.slick-active button::before {
  color: #40a8c0;
}
.home .akiya-bank__list-item {
  width: 330px;
  display: flex;
  flex-direction: column;
}
.home .akiya-bank__list-item .c-btn {
  margin-top: auto;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__list-item .c-btn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .home .akiya-bank__list-item {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__list-item {
    padding: 0 1rem;
  }
}
.home .akiya-bank__img {
  width: 330px;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 1000px) {
  .home .akiya-bank__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.home .akiya-bank__list.js-akiya-slick.slick-initialized {
  /* 各アイテムはスライド内で幅100% */
  /* キャッチの行数制限（モバイル向け） */
}
.home .akiya-bank__meta-wrap {
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__meta-wrap {
    margin-top: 1.5rem;
  }
}
.home .akiya-bank__meta-data {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.home .akiya-bank__meta-num {
  font-family: "Roboto";
  font-weight: bold;
}
.home .akiya-bank__meta-status {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 5px 10px 7px;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__meta-status {
    font-size: 3rem;
  }
}
.home .akiya-bank__meta-area {
  font-weight: 500;
}
.home .akiya-bank__meta-excerpt {
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .home .akiya-bank__meta-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.home .akiya__bnr {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .home .akiya__bnr {
    display: block;
    width: calc(100% - 6rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.home .akiya__bnr + * {
  margin-top: 120px;
}
@media screen and (max-width: 750px) {
  .home .akiya__bnr + * {
    margin-top: 10rem;
  }
}
.home .about__link {
  color: #e63616;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 750px) {
  .home .section__access {
    padding: 0 3rem;
  }
}
.home .access__img {
  padding-bottom: 40px;
  border-bottom: 1px dotted #73694e;
}
@media screen and (max-width: 750px) {
  .home .access__img {
    padding-left: 6rem;
    padding-bottom: 5rem;
  }
}
.home .section__access-train + * {
  margin-top: 80px;
}
.home .access-car__inner:not(:first-of-type) {
  padding-top: 40px;
  border-top: 1px dotted #746a4f;
}
@media screen and (max-width: 750px) {
  .home .access-car__inner:not(:first-of-type) {
    padding-top: 5rem;
  }
}
.home .access-car__inner + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .home .access-car__inner + * {
    margin-top: 5rem;
  }
}
.home .section__contact .c-btn--aside-mail {
  margin: 5rem 6rem 0;
}
.home .section__contact .c-btn--aside-mail img {
  width: 4rem;
  height: 3rem;
}
.home .contact__h2 {
  background-color: #fdebe8;
  border-bottom: 2px solid #e63616;
  padding: 3rem 0;
}
.home .contact__h2 span {
  display: block;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.7;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 9.8rem;
  background: url("../img/aside/ico_h2-contact.webp") no-repeat left 3.4rem/7rem 11.05rem;
}
.home .contact__list {
  margin-top: 5rem;
  padding: 0 3rem;
  font-size: 3.6rem;
  line-height: 1.7;
}
.home .contact__list-item + * {
  margin-top: 7rem;
  padding-top: 7rem;
  border-top: 1px solid #ccc;
}
.home .contact__name {
  font-weight: 500;
}
.home .contact__address {
  margin-top: 2rem;
}
.home .contact__tel {
  font-size: 5rem;
  color: #007f1f;
  font-weight: bold;
  margin-top: 3rem;
}
.home .contact__hours {
  margin-top: 3rem;
}
/********************************
news お知らせ一覧・詳細
*********************************/
@media screen and (max-width: 750px) {
  .post-type-archive-post .section__news,
  .single-post .section__news {
    padding: 0 3rem;
  }
}
.post-type-archive-post .news__list-item + *,
.single-post .news__list-item + * {
  margin-top: 80px;
}
.post-type-archive-post .news__list-h3-group,
.single-post .news__list-h3-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e63616;
}
@media screen and (max-width: 750px) {
  .post-type-archive-post .news__list-h3-group,
  .single-post .news__list-h3-group {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1.5rem;
    align-items: flex-start;
  }
}
.post-type-archive-post .news__list-h3-meta,
.single-post .news__list-h3-meta {
  font-size: 14px;
  font-family: "Roboto";
  font-weight: 500;
  padding: 5px 10px;
  background-color: #fdebe8;
}
@media screen and (max-width: 750px) {
  .post-type-archive-post .news__list-h3-meta,
  .single-post .news__list-h3-meta {
    font-size: 2.6rem;
    padding: 0.5rem 1rem;
  }
}
.post-type-archive-post .news__list-h3,
.single-post .news__list-h3 {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .post-type-archive-post .news__list-h3,
  .single-post .news__list-h3 {
    font-size: 3.6rem;
  }
}
.post-type-archive-post .news__list-txt,
.single-post .news__list-txt {
  margin-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.post-type-archive-post .news__list-link,
.single-post .news__list-link {
  display: flex;
  justify-content: flex-end;
}
.post-type-archive-post .news__list-link a,
.single-post .news__list-link a {
  font-weight: 500;
  margin-left: auto;
  width: fit-content;
}
.post-type-archive-post .news__list-link a::after,
.single-post .news__list-link a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 17px;
  background: url("../img/archive/ico_link-arrow.webp") no-repeat;
  background-size: contain;
  margin-left: 7px;
  position: relative;
  top: 2px;
}
.post-type-archive-post .news__single-txt,
.single-post .news__single-txt {
  margin-top: 15px;
}
.post-type-archive-post .news__single-txt p + p,
.single-post .news__single-txt p + p {
  margin-top: 20px;
}

/********************************
bank 空き家情報バンク一覧
*********************************/
.post-type-archive-bank .section__search-form .c-userowner-colorbox {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .section__search-form .c-userowner-colorbox {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .section__search-form {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .section__search-form .search__group {
    padding: 0;
  }
}
.post-type-archive-bank .section__search-form + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .section__search-form + * {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .section__bank {
    padding: 0 3rem;
  }
}
.post-type-archive-bank .bank__list-item {
  padding: 40px 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__list-item {
    padding: 4rem 0;
  }
}
.post-type-archive-bank .bank__list-item:last-of-type {
  border-bottom: 1px solid #ccc;
}
.post-type-archive-bank .bank__tag {
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f5;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__tag {
    padding-bottom: 1rem;
  }
}
.post-type-archive-bank .bank__tag + * {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__tag + * {
    margin-top: 2rem;
  }
}
.post-type-archive-bank .bank__tag-item + * {
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__tag-item + * {
    margin-left: 2rem;
  }
}
.post-type-archive-bank .bank__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__inner {
    flex-direction: column;
  }
}
.post-type-archive-bank .bank__gallery {
  width: 330px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__gallery {
    width: 100%;
    gap: 1.5rem 2%;
  }
}
.post-type-archive-bank .bank__gallery-large {
  width: 100%;
}
.post-type-archive-bank .bank__gallery-small {
  width: 100px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__gallery-small {
    width: 32%;
  }
}
.post-type-archive-bank .bank__info {
  width: 330px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info {
    width: 100%;
  }
}
.post-type-archive-bank .bank__info-status {
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-status {
    margin-top: 3rem;
  }
}
.post-type-archive-bank .bank__info-value {
  font-size: 18px;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-value {
    font-size: 3rem;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
  }
}
.post-type-archive-bank .bank__info-table {
  margin-top: 25px;
  width: 100%;
  border: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-table {
    margin-top: 3rem;
  }
}
.post-type-archive-bank .bank__info-table + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-table + * {
    margin-top: 4rem;
  }
}
.post-type-archive-bank .bank__info-table-th,
.post-type-archive-bank .bank__info-table-td {
  border-bottom: 1px solid #ccc;
  padding: 12px;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-table-th,
  .post-type-archive-bank .bank__info-table-td {
    padding: 2rem;
  }
}
.post-type-archive-bank .bank__info-table-th {
  font-size: 18px;
  font-weight: 500;
  width: 100px;
  background: #fdebe8;
}
@media screen and (max-width: 750px) {
  .post-type-archive-bank .bank__info-table-th {
    font-size: 3rem;
    width: 20rem;
  }
}
/********************************
single-bank 空き家情報バンク詳細
*********************************/
.single-bank {
  /* 複数 外側のdiv */
  /* 単数 中のspan */
  /* 各タクソノミーが含まれているとき */
}
@media screen and (max-width: 750px) {
  .single-bank .section__details {
    padding: 0 3rem;
  }
}
.single-bank .detail__meta-wrap + * {
  margin-top: 40px;
}
.single-bank .detail__meta01-dl {
  display: flex;
  column-gap: 30px;
}
.single-bank .detail__meta01-dl + * {
  margin-top: 25px;
}
.single-bank .detail__meta01-row {
  display: flex;
  align-items: center;
}
.single-bank .detail__meta01-dt-num {
  font-weight: 500;
  padding: 10px;
  background-color: #fdebe8;
}
.single-bank .detail__meta01-dd-num {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 18px;
  margin: 3px 0 0 10px;
}
.single-bank .detail__meta01-dt-status {
  font-weight: 500;
}
.single-bank .detail__meta01-dd-status {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
}
.single-bank .detail__meta02-dl {
  border: 1px solid #ccc;
  display: flex;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-dl {
    flex-wrap: wrap;
  }
}
.single-bank .detail__meta02-dl + * {
  margin-top: 30px;
}
.single-bank .detail__meta02-row {
  display: flex;
  width: 25%;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-row {
    width: 50%;
  }
}
.single-bank .detail__meta02-row:first-of-type {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-row:first-of-type {
    width: 100%;
  }
}
.single-bank .detail__meta02-dt,
.single-bank .detail__meta02-dd {
  padding: 10px 15px;
}
.single-bank .detail__meta02-dt {
  font-weight: 500;
  background-color: #fdebe8;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-dt {
    width: 14rem;
  }
}
.single-bank .detail__meta02-row:not(:first-of-type) .detail__meta02-dt {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-row:not(:first-of-type) .detail__meta02-dt {
    border-left: none;
    border-top: 1px solid #ccc;
  }
}
.single-bank .detail__meta02-dd {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-row:not(:first-of-type) .detail__meta02-dd {
    border-top: 1px solid #ccc;
    width: calc(100% - 14rem);
  }
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta02-row:nth-of-type(3) .detail__meta02-dt {
    border-left: 1px solid #ccc;
  }
}
.single-bank .detail__meta-facilities {
  display: flex;
  justify-content: space-between;
  gap: 0 5px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta-facilities {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem 2%;
  }
}
.single-bank .detail__meta-facility {
  text-align: center;
  color: #fff;
  width: 134px;
  padding: 20px 0;
  background-color: #aaa;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__meta-facility {
    width: 32%;
    padding: 2rem 0;
  }
}
.single-bank .detail__meta-facility--active {
  background-color: #e63616;
}
.single-bank .detail__large-img {
  text-align: center;
}
.single-bank .detail__large-img + * {
  margin-top: 40px;
}
.single-bank .detail__gallery-wrap {
  padding: 35px;
}
.single-bank .detail__gallery-wrap .c-txt {
  text-align: center;
}
.single-bank .detail__gallery-list {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__gallery-list {
    margin-top: 3rem;
    gap: 1rem 2%;
  }
}
.single-bank .detail__gallery-list-item {
  width: 120px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__gallery-list-item {
    width: 32%;
  }
}
.single-bank .detail__vr + * {
  margin-top: 40px;
}
.single-bank .detail__vr iframe {
  /* iframeのwidthを上書きするため!important */
  width: 600px !important;
  aspect-ratio: 2/1 !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single-bank .detail__summary-table,
.single-bank .detail__facilities-table,
.single-bank .detail__environment-table {
  width: 100%;
  border: 1px solid #ccc;
}
.single-bank .detail__summary-th,
.single-bank .detail__facilities-th,
.single-bank .detail__environment-th {
  width: 120px;
  padding: 10px 15px;
  font-weight: 500;
  text-align: left;
  background-color: #fdebe8;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__summary-th,
  .single-bank .detail__facilities-th,
  .single-bank .detail__environment-th {
    padding: 1rem 2rem;
  }
}
.single-bank .detail__summary-td,
.single-bank .detail__facilities-td,
.single-bank .detail__environment-td {
  padding: 10px 15px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__summary-td,
  .single-bank .detail__facilities-td,
  .single-bank .detail__environment-td {
    padding: 1rem 2rem;
  }
}
.single-bank .detail__summary tr:not(:first-of-type) .detail__summary-th,
.single-bank .detail__facilities tr:not(:first-of-type) .detail__facilities-th,
.single-bank .detail__environment tr:not(:first-of-type) .detail__environment-th {
  border-top: 1px solid #ccc;
}
.single-bank .detail__summary tr:not(:first-of-type) .detail__summary-td,
.single-bank .detail__facilities tr:not(:first-of-type) .detail__facilities-td,
.single-bank .detail__environment tr:not(:first-of-type) .detail__environment-td {
  border-top: 1px solid #ccc;
}
.single-bank .detail__summary + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__summary + * {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 750px) {
  .single-bank .detail__summary-th {
    width: 20rem;
  }
}
.single-bank .detail__facilities + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__facilities + * {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 750px) {
  .single-bank .detail__facilities-table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .single-bank .detail__facilities-th {
    line-height: 1.7;
    width: 20rem;
  }
}
.single-bank .detail__facilities-table tr:first-of-type .detail__facilities-th:nth-of-type(2),
.single-bank .detail__facilities-table tr:first-of-type .detail__facilities-td:nth-of-type(2) {
  border-top: 1px solid #ccc;
}
.single-bank .detail__facilities-td {
  width: 235px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__facilities-td {
    width: calc(100% - 20rem);
  }
}
.single-bank .detail__environment + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__environment-th {
    width: 20rem;
  }
}
.single-bank .detail__environment-td iframe {
  /* iframe上書きのため!important */
  width: 500px;
  aspect-ratio: 1.43/1;
}
@media screen and (max-width: 750px) {
  .single-bank .detail__environment-td iframe {
    width: 100%;
  }
}

/********************************
search トップページ・空き家情報バンク共用の検索フォーム部分
*********************************/
/********************************
about 空き家情報バンクについて
*********************************/
@media screen and (max-width: 750px) {
  .page-about .section__intro {
    padding: 0 3rem;
  }
}
.page-about .section__intro .c-userowner-colorbox {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 750px) {
  .page-about .section__intro .c-userowner-colorbox {
    gap: 0 2rem;
  }
}
.page-about .section__intro .c-userowner-colorbox .c-txt {
  width: 100%;
}
.page-about .section__intro .c-userowner-colorbox .c-btn {
  width: 260px;
}
@media screen and (max-width: 750px) {
  .page-about .section__intro .c-userowner-colorbox .c-btn {
    width: 100%;
  }
}
.page-about .section__image {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-about .section__image {
    margin-top: 8rem;
    padding: 0 3rem;
  }
}
.page-about .section__image .c-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/********************************
foruser 移住希望者の方へ
*********************************/
@media screen and (max-width: 750px) {
  .page-foruser .section__intro {
    padding: 0 3rem;
  }
}
.page-foruser .intro__lead span {
  display: inline;
  font-size: 24px;
  font-weight: 500;
  width: fit-content;
  padding: 0 3px 8px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .page-foruser .intro__lead span {
    font-size: 3.6rem;
    padding: 0 0.6rem 0.8rem;
  }
}
.page-foruser .intro__lead--user span {
  color: #40a8c0;
  background: linear-gradient(transparent 45%, #ecf7f9 0%);
}
.page-foruser .intro__lead + * {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .page-foruser .intro__lead + * {
    margin-top: 5px;
  }
}
.page-foruser .section__howto-use {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-foruser .section__howto-use {
    padding: 0 3rem;
    margin-top: 8rem;
  }
}
.page-foruser .section__documents {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-foruser .section__documents {
    padding: 0 3rem;
    margin-top: 8rem;
  }
}
.page-foruser .c-txt a {
  color: #40a8c0;
}

/********************************
forowner 空き家所有者の方へ
*********************************/
@media screen and (max-width: 750px) {
  .page-forowner .section__intro {
    padding: 0 3rem;
  }
}
.page-forowner .section__intro .intro__img {
  position: relative;
  top: -69px;
}
@media screen and (max-width: 750px) {
  .page-forowner .section__intro .intro__img {
    top: 0;
  }
}
.page-forowner .intro__lead span {
  display: inline;
  font-size: 24px;
  font-weight: 500;
  width: fit-content;
  padding: 0 3px 8px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .page-forowner .intro__lead span {
    font-size: 3.6rem;
    padding: 0 0.6rem 0.8rem;
  }
}
.page-forowner .intro__lead--user span {
  color: #40a8c0;
  background: linear-gradient(transparent 45%, #ecf7f9 0%);
}
.page-forowner .intro__lead--owner span {
  color: #e63616;
  background: linear-gradient(transparent 45%, #fdebe8 0%);
}
.page-forowner .intro__lead + * {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .page-forowner .intro__lead + * {
    margin-top: 5px;
  }
}
.page-forowner .section__howto-use {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-forowner .section__howto-use {
    padding: 0 3rem;
    margin-top: 8rem;
  }
}
.page-forowner .section__documents {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-forowner .section__documents {
    padding: 0 3rem;
    margin-top: 8rem;
  }
}

/********************************
support 制度一覧
*********************************/
.page-support .main .c-btn {
  font-size: 16px;
  width: 150px;
  padding: 10px;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .page-support .main .c-btn {
    font-size: 3rem;
    width: fit-content;
    padding: 1rem 3rem;
  }
}
@media screen and (max-width: 750px) {
  .page-support .section__support {
    padding: 0 3rem;
  }
}
.page-support .section__support + * {
  margin-top: 120px;
}
@media screen and (max-width: 750px) {
  .page-support .section__support + * {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 750px) {
  .page-support .section__foruser {
    padding: 0 3rem;
  }
}
.page-support .support__list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .page-support .support__list-item {
    gap: 2rem 0;
    padding-bottom: 3rem;
  }
}
.page-support .support__list-item + * {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .page-support .support__list-item + * {
    margin-top: 3rem;
  }
}
.page-support .support__h4 {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-support .support__h4 {
    font-size: 3.4rem;
  }
}
.page-support .support__h4--no-meta {
  width: fit-content;
}
.page-support .support__h4::before {
  content: "";
  width: 10px;
  height: 17px;
  display: inline-block;
  background: url("../img/support/ico_support-h4.webp") no-repeat;
  background-size: contain;
  margin-right: 9px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 750px) {
  .page-support .support__h4::before {
    width: 1rem;
    height: 1.7rem;
    margin-right: 0.9rem;
    top: -0.6rem;
  }
}
@media screen and (max-width: 750px) {
  .page-support .support__meta {
    width: 100%;
    display: flex;
    line-height: 1.5;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .page-support .support__meta + * {
    margin-top: 1rem;
  }
}
.page-support .support__meta-label {
  font-weight: bold;
  padding: 10px 15px;
  background-color: #fdebe8;
}

/********************************
contact お問合せ
*********************************/
@media screen and (max-width: 750px) {
  .page-contact .section__contact {
    padding: 0 3rem;
  }
}
.page-contact .section__contact + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-contact .section__contact + * {
    margin-top: 8rem;
  }
}
.page-contact .contact__dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 0;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dl {
    gap: 0;
  }
}
.page-contact .contact__dl + * {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dl + * {
    margin-top: 8rem;
  }
}
.page-contact .contact__dt {
  font-weight: 500;
  width: 130px;
  height: 55px;
  background-color: #fdebe8;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dt {
    width: 23rem;
    height: auto;
    padding: 2rem 0;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dt + * {
    margin-top: 1rem;
  }
}
.page-contact .contact__dt--address::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  background: url("../img/contact/ico_map-pin.webp") no-repeat;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dt--address::before {
    width: 2.4rem;
    height: 3.2rem;
    margin-right: 1rem;
  }
}
.page-contact .contact__dt--tel::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/contact/ico_tel.webp") no-repeat;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dt--tel::before {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1rem;
  }
}
.page-contact .contact__dt--time::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/contact/ico_time.webp") no-repeat;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dt--time::before {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1rem;
  }
}
.page-contact .contact__dd {
  width: 560px;
  margin-left: auto;
  line-height: 1.7;
}
@media screen and (max-width: 1000px) {
  .page-contact .contact__dd {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dd {
    width: 100%;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dd + * {
    margin-top: 4rem;
  }
}
.page-contact .contact__dd--tel {
  font-size: 22px;
  font-weight: 500;
  color: #007f1f;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__dd--tel {
    font-size: 4.5rem;
  }
}
.page-contact .section__form .c-btn {
  width: 330px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-contact .section__form {
    padding: 0 3rem;
  }
}
.page-contact .form__table {
  width: 100%;
}
.page-contact .form__table + * {
  margin-top: 40px;
}
.page-contact .form__table tr {
  border-bottom: 1px solid #ccc;
}
.page-contact .form__table input,
.page-contact .form__table textarea {
  border: 1px solid #ccc;
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .page-contact .form__table input,
  .page-contact .form__table textarea {
    font-size: 3.6rem;
  }
}
.page-contact .form__table textarea {
  width: 100%;
  max-width: 380px;
  line-height: 1.5;
  field-sizing: content;
}
@media screen and (max-width: 750px) {
  .page-contact .form__table textarea {
    max-width: 100%;
  }
}
.page-contact .form__checkbox {
  display: block;
}
.page-contact .form__checkbox + * {
  margin-top: 8px;
}
.page-contact .form__th {
  font-weight: 500;
  padding: 22px 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .page-contact .form__th {
    font-size: 3.6rem;
    padding: 2rem 0 0;
  }
}
.page-contact .form__th.form__th--required::after {
  content: "※";
  font-size: 10px;
  color: #e63616;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 750px) {
  .page-contact .form__th.form__th--required::after {
    font-size: 2.5rem;
  }
}
.page-contact .form__th--vat {
  vertical-align: top;
}
.page-contact .form__td {
  width: 500px;
  vertical-align: middle;
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  .page-contact .form__td {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .form__td .wpcf7-form-control-wrap {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .form__td .wpcf7-form-control-wrap + * {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .form__td .wpcf7-list-item {
    display: block;
    font-size: 3.6rem;
  }
}
.page-contact .form__td .wpcf7-list-item + * {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .page-contact .form__td .wpcf7-list-item + * {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .form__th,
  .page-contact .form__td {
    width: 100%;
    display: block;
  }
}
.page-contact .form__btn {
  border-top: none;
  border-left: none;
  border-right: none;
  background-image: url("../img/contact/ico_mail.webp");
  background-repeat: no-repeat;
  background-position: 40px 23px;
  background-size: 18px 14px;
}

/********************************
404 お探しのページは見つかりませんでした
*********************************//*# sourceMappingURL=style.css.map */