@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/

@charset "UTF-8";
/* リセットCSS */
html, body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めた幅と高さを設定 */
  font-family: sans-serif; /* 基本フォントを指定 */
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; /* リストのデフォルトマーカーを削除 */
}

a {
  text-decoration: none; /* リンクの下線を削除 */
  color: inherit; /* リンクの色を親要素に合わせる */
}

table {
  border-collapse: collapse; /* テーブルのボーダーを一つにまとめる */
  width: 100%; /* テーブルの幅を100%に設定 */
}

img {
  max-width: 100%; /* 画像の最大幅を親要素に合わせる */
  height: auto; /* 画像の高さを自動調整 */
}

button, input, textarea {
  font-family: inherit; /* フォーム要素のフォントを親要素に合わせる */
  border: none; /* フォーム要素のデフォルトボーダーを削除 */
  background: none; /* フォーム要素のデフォルト背景を削除 */
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans", sans-serif;
}

img.bottom_img {
  padding: 70px 0 30px;
}

/* リンクボタン */
.custom-button {
  display: inline-block;
  padding: 15px 80px;
  background-color: #000; /* 黒い背景色 */
  color: #fff; /* 白い文字色 */
  text-decoration: none; /* リンクの下線を消す */
  border-radius: 150px; /* 角丸の設定 */
  font-size: 16px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
	border: solid 1px #000;
}

.custom-button .arrow {
  margin-left: 8px; /* 矢印とテキストの間にスペースを追加 */
}

.custom-button:hover {
  background-color: #333; /* ホバー時の色変更 */
}

.btn_container {
  text-align: center;
	margin-top: 50px;
    margin-bottom: 20px;
}

/* リンクボタン　info */
div.btn_borrow .custom-button {
  padding: 15px 90px;
  font-size: 16px;
  margin: 0 0 60px;
	cursor: pointer;
}

/* リンクボタン　company */
#company .custom-button {
  font-size: 16px;
  margin: 10px 0 60px;
}

/* table */
.company-info {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}

.company-info th,
.company-info td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.company-info th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.company-info td {
  background-color: #fff;
}

/* 共通　ここまで */
/* about su */
#about_us {
    width: 77%;
	margin: 0 auto;
}
#about_us p.bottom_text {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 50px;
}
#about_us div.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 120px;
}
#about_us div.container div p {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  color: #454545;
  margin-left: 39px;
  margin-top: 5px;
  margin-bottom: 50px;
}
#about_us div.container h3 {
  font-size: 32px;
  color: #454545;
}
#about_us div h2 {
  font-size: 72px;
  color: #454545;
  border-left: solid 6px #E7380D;
  padding-left: 32px;
  font-weight: 500;
  height: 80px;
  line-height: 74px;
  position: relative; /* 疑似要素の基準位置を指定 */
  padding-right: 30px;
	margin-bottom: 5px;
}
#about_us div h2::after {
  content: ""; /* 疑似要素にコンテンツを追加 */
  display: block;
  position: absolute;
  top: 10%; /* テキストの中央にラインを配置 */
  left: 100%; /* h2の右端にラインを配置 */
  width: 100px; /* ラインの長さを指定 */
  height: 1px; /* ラインの高さ */
  background-color: #000; /* ラインの色 */
}

/* service */
#service {
  padding-bottom: 100px;
  width: 77%;
  margin: 0 auto;
}
#service p.bottom_text {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 100px;
}
#service div.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 150px;
}
#service div.container div p {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  color: #454545;
  margin-left: 39px;
  margin-top: 0;
  margin-bottom: 50px;
}
#service div.container h3 {
  font-size: 32px;
  color: #454545;
}
#service div h2 {
  font-size: 72px;
  color: #454545;
  border-left: solid 6px #E7380D;
  padding-left: 32px;
  font-weight: 500;
  height: 80px;
  line-height: 74px;
  position: relative; /* 疑似要素の基準位置を指定 */
  padding-right: 30px;
	margin-bottom: 10px;
}
#service div h2::after {
  content: ""; /* 疑似要素にコンテンツを追加 */
  display: block;
  position: absolute;
  top: 10%; /* テキストの中央にラインを配置 */
  left: 100%; /* h2の右端にラインを配置 */
  width: 100px; /* ラインの長さを指定 */
  height: 1px; /* ラインの高さ */
  background-color: #000; /* ラインの色 */
}
#service div.sub_container {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#service div.sub_container img {
  width: 45%;
  margin-right: 68px;
}
#service div.sub_container div.number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E7380D;
  height: 85px;
}
#service div.sub_container div.number span {
  font-size: 15px;
  font-weight: 600;
  margin-right: 10px;
}
#service div.sub_container div.number p {
  font-size: 48px;
  font-weight: bold;
}
#service div.sub_container h3 {
font-size: 24px;
    color: #454545;
    border-left: solid 2px #E7380D;
    padding-left: 15px;
    height: 55px;
    position: relative;
    padding-right: 30px;
    letter-spacing: 1px;
    margin-bottom: 35px;
    line-height: 50px;
}
#service div.sub_container.sub2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#service div.sub_container.sub2 div {
  margin-right: 68px;
}
#service div.sub_container.sub2 img {
  margin-right: 0;
}
#service div.sub_container.sub2 div h3 {
  border-left: solid 2px #00A53D;
}
#service div.sub_container.sub2 div div.number {
  color: #00A53D;
}
#service div.sub_container.sub3 div h3 {
  border-left: solid 2px #0D64E7;
}
#service div.sub_container.sub3 div div.number {
  color: #0D64E7;
}
#service div.sub_container.sub3 {
	margin-bottom: 80px;
}

/* information */
#information {
  padding-top: 120px;
  width: auto;
  max-width: 100%;
  background-color: #eee;
	padding-bottom: 50px;
}

#information div.inner {
	width: 77%;
	margin: 0 auto;
}

#information p.bottom_text {
  font-size: 16px;
  line-height: 32px;
}
#information div.container {
  width: 77%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#information div.container div p {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  color: #454545;
  margin-left: 39px;
  margin-top: 0;
  margin-bottom: 50px;
}
#information div.container h3 {
  font-size: 32px;
  color: #454545;
}
#information div h2 {
  font-size: 72px;
  color: #454545;
  border-left: solid 6px #E7380D;
  padding-left: 32px;
  font-weight: 500;
  height: 80px;
  line-height: 74px;
  position: relative; /* 疑似要素の基準位置を指定 */
  padding-right: 30px;
	text-align: left;
	margin-bottom: 10px;
}
#information div h2::after {
  content: ""; /* 疑似要素にコンテンツを追加 */
  display: block;
  position: absolute;
  top: 10%; /* テキストの中央にラインを配置 */
  left: 47%; /* h2の右端にラインを配置 */
  width: 100px; /* ラインの長さを指定 */
  height: 1px; /* ラインの高さ */
  background-color: #000; /* ラインの色 */
}
#information div.borrow {
  border-top: 1px #000 dotted;
	margin-bottom: 30px;
}
#information div.borrow div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#information div.borrow div div {
}

#information div.inner div p.bukken {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  color: #454545;
  margin-top: 0;
  margin-bottom: 50px;
}

/* company */
#company {
	width: 77%;
	margin: 0 auto;
}
#company p.bottom_text {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 50px;
}
#company div.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 120px;
}
#company div.container div p {
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  color: #454545;
  margin-left: 39px;
  margin-top: 0;
  margin-bottom: 50px;
}
#company div.container h3 {
  font-size: 32px;
  color: #454545;
}
#company div h2 {
  font-size: 72px;
  color: #454545;
  border-left: solid 6px #00A53D;
  padding-left: 32px;
  font-weight: 500;
  height: 80px;
  line-height: 74px;
  position: relative; /* 疑似要素の基準位置を指定 */
  padding-right: 30px;
	margin-bottom: 10px;
}
#company div h2::after {
  content: ""; /* 疑似要素にコンテンツを追加 */
  display: block;
  position: absolute;
  top: 10%; /* テキストの中央にラインを配置 */
  left: 100%; /* h2の右端にラインを配置 */
  width: 100px; /* ラインの長さを指定 */
  height: 1px; /* ラインの高さ */
  background-color: #000; /* ラインの色 */
}

#header-upper {
	display: none;
}

h1.front-post {
	display: none;
}




/* contact */
#contact {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: #eee;
}
#contact p.first_text {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
  letter-spacing: 2px;
}
#contact div.container {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  margin: 0 auto;
  padding-bottom: 100px;
}
#contact div.container div.first p:first-child {
  font-size: 64px;
	margin-top: 30px;
  margin-bottom: 35px;
}
#contact div.container div.first p:nth-child(2) {
  margin-bottom: 30px;
}
#contact div.container div.first a {
  padding: 12px 38px;
}
#contact div.container div:not(:last-child) {
  border-right: solid 1px #000; /* 最後の要素以外にボーダーを適用 */
  width: 30%;
  margin-right: 5%;
}
#contact div.container div:not(:last-child) p {
  margin: 0;
}
#contact div.container div.second p {
  margin-bottom: 10px;
}
#contact div.container div.second p:first-child {
  margin-top: 35px;
}
#contact div.container div.theed {
  margin-top: 35px;
}
#contact div.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#wrapper {
	max-width: 100%;
}

#information div.inner div p.bukken {
	margin-left: 40px;
}


#information div.inner div p.kariru {
	margin: 20px 0;
	font-size: 20px;
}

div.socialicon {
	display: none;
}

div.footer__logo {
/* 	display: none; */
	margin-bottom: 60px !important;
}

div.footer__logo a{
	font-size: 20px;
}

div.footer__logo a:hover{
	color: inherit;
	opacity: 0.6;
}

#footer {
	padding-top: 100px;
	background: #454545;
}

body {
    font-family: "Zen Kaku Gothic New", "Noto Sans", sans-serif;
}

h2 {
	font-weight: 400!important;
    font-family: "Zen Kaku Gothic New", "Noto Sans", sans-serif!important;
}

#content {
        width: 77%;
        margin: 0 auto;
        float: none;
    }


.page-id-175 #content,.page-id-253 #content {
	padding-bottom: 20px;
    }

.company_table {
	margin-bottom: 50px;
}

@media(max-width:500px) {
	body.page-id-175 .company_table table tr td:first-child {
	width: 30%;
}
}



#post-253,#post-175 {
	width: 1024px;
	margin: 0 auto;
}

#post-175 h1 span,#post-253 h1 span {
border-bottom: solid #00a53d 2px;
    padding-bottom: 10px;
}

#post-253 .post h2::after {
	height: 2px;
    background: #00a53d;
	    margin-top: 0;
    width: 100px;
}

#post-175 h3,#post-253 h3 {
border-left: 3px solid #00a53d;
    height: 25px;
    line-height: 23px;
	font-size: 19px;
	margin-top: 30px;
}

#post-175 p,#post-253 p {
  margin-top: 20px;
}

#post-253 p {
    font-size: 16px;
    line-height: 26px;
}

.linkBtn, .post .linkBtn {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    background: #00a53d;
    padding: 0;
    margin: 0 auto;
    border-radius: 5px;
    transition: all .3s;
}

#post-21 {
	width: 85%;
	max-width: 1024px;
	margin: 0 auto;
}

.post table th {
    width: 25%;
    color: var(--color-font);
    font-weight: 600;
    background: #00a53d0a;
}

.wpcf7-form .must {
    background: #ff3100;
}

div.flex_jia {
	display: flex;
	margin-top: 20px;
}

div.flex_jia img {
	width: 40%;
	margin-right: 20px;
}

#post-253 div.flex_jia p {
	margin-top: 0;
}

#post-253 h3 {
	margin-top: 100px;
}


#post-253 div.post {
}

#about_us p.bottom_text,#service p.bottom_text {
	font-size: 18px;
}

p {
	font-size: 16px;
}

#footer .footnav ul > li {
	font-size: 15px;
}

.linkBtn, .post .linkBtn {
	padding: 10px;
}

#contact div.container div.second p:first-child {
	margin-top: 0;
}

#post-253 {
    max-width: 1024px;
	width: 80%;
}

/* Ipad Iphone */
@media print, screen and (max-width: 1024px) {
		nav#mainNav {
		margin-right: 0;
	}
    #content, #content.wide {
        width: 100%;
    }
	#about_us div.container {
		display: block;
	}
	#about_us div h2 {
		text-align: left;
	}
	#about_us div h2::after {
		top: 4%;
        left: 49%;
	}
	#about_us div.container h3 {
    font-size: 26px;
    margin-bottom: 10px;
    padding-left: 0;
    color: #454545;
    }
	
	#about_us div.container h3 br {
	display: none;
    }
	#about_us div h2::after,#service div h2::after,#information div h2::after {
      display: none;
	}
	#header .logo,body #header .logo {
		display: none;
	}
}

/* Ipad Iphone */
@media print, screen and (max-width: 768px) {
	#front-sectionPost{
		width: 90%;
	}
	#company div.container{
		padding-top: 80px;
	}
	#company{
		width: 90%;
	}
	#information div.inner{
		width: 90%;
	}
	#service{
		width: 90%;
	}
	#about_us{
		width : 90%;
	}
	div.footer__logo {
	margin-bottom: 30px !important;
	}
	#footer {
	padding-top: 40px;
	}
	#service div.sub_container,#service div.sub_container.sub2 {
		display: block;
	}
	#service div.sub_container img {
		width: 100%;
	}
	#about_us div h2,#service div h2,#information div h2 {
		font-size: 50px;
	}
	#contact div.container {
		width: 95%;
	}
	#contact div.container div.first p:first-child {
		font-size: 54px;
	}
	#contact div.container div.second p:first-child {
		margin-top: 0;
	}
	#contact div.container div:not(:last-child) {
		width: auto;
	}
	.custom-button {
		font-size: 14px;
	}
	#contact div.container {
		display: block;
	}
	#contact div.container div:not(:last-child) {
		border: none;
	}
	#contact div.container {
		width: 80%;
	}
	#contact p.first_text {
		width: 80%;
		margin: 0 auto;
	}
	#service p.bottom_text,#about_us p.bottom_text,sub_container p {
		font-size: 16px;
	}
	#service div.sub_container,#service p.bottom_text {
		margin-bottom: 30px;
	}
	#service div.sub_container h3 {
		font-size: 20px;
	}
	#service div.sub_container.sub2 div {
		margin-right: 0;
	}
	#information div h2 {
		font-size: 40px;
	}
	#company div h2 {
		font-size: 50px;
	}
	#company div h2::after {
		display: none;
	}
	div.flex_jia {
		display: block;
	}
	div.flex_jia img {
    width: auto;
    margin-bottom: 30px;
}
	
	#about_us div.container,#service div.container {
		padding-top: 70px;
	}
	
	#service div.sub_container.sub3 {
		margin-bottom: 0;
	}
	
	.bottom-loop span {
		font-size: 50px;
	}
	
	#contact div.container div.first a {
		width: 300px;
	}
	#post-253 h3 {
		margin-top: 50px;
	}
}

@media print, screen and (max-width: 380px) {
    #about_us div h2, #service div h2, #information div h2 {
        font-size: 45px;
    }
	#service div.sub_container h3 {
        font-size: 19px;
    }
	#post-253 {
    max-width: 1024px;
    width: 85%;
	margin: 0 auto;
}
	
	div.first {
		text-align: center;
	}
	#company .custom-button {
		font-size: 14px;
	}
	div.button_wrap {
	text-align: left;
	margin-left: 40px;
}
}

@media print, screen and (min-width: 380px) {
.second br {
	display: none;
}
}

@media print, screen and (max-width: 1366px) {
	#post-175 {
		width: 85%;
		margin: 0 auto;
	}
}

#post-175 p {
	font-size: 16px;
}

#post-21 .linkBtn, .post .linkBtn {
	padding: 0;
}

#post-23 .linkBtn {
    padding: 15px;
}

#content {
	width: 100%;
}

.page-item-23 a {
	display: none;
}

.cat-item-1 {
	display: none;
}

.custom-button:hover {
	color: 000;
	background: #fff;
	border: solid 1px #000;
}

.wpcf7-form a {
	text-decoration: underline;
}

.image_auth_jp_description {
	font-size: 12px;
}

#breadcrumb {
	position: relative;
	z-index: 99999;
}

#header .logo a {
	font-size: 16px;
}

div.header__catchphrase {
	display: none!important;
}

h2.bottom-loop {
	margin-bottom: 50px !important;
}
.post .package_parts {
  .c-common-title {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: var(--px16);
    margin-bottom: var(--px30);
  }
  .c-common-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e64a19;
  }
    h2.c-common-title::after,
    .post .package_parts h2.c-common-title::after{
    content: none !important;
  }
  .c-common-title__main {
    display: flex;
    align-items: center;
    font-size: var(--px40);
    font-family: var(--font-family01);
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
  }
  .c-common-title__main::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: var(--color-secondary);
    margin-left: var(--px20);
  }
  .c-common-title__sub {
    font-size: var(--px12);
    font-family: var(--font-family02);
    color: var(--color-secondary);
    margin-top: 4px;
    text-align: left;
  }
  .c-common-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--px14);
    font-weight: bold;
    color: #fff;
    padding: var(--px12) var(--px24);
    transition: opacity 0.3s;
    min-width: 120px;
  }
  .c-common-btn:hover {
    opacity: 0.8;
  }
  .c-common-btn--rental {
    background-color: #00a03e;
  }
  .c-common-btn--buy {
    background-color: #f39800;
  }
}

/* --- Main Styles (PC First) --- */
.post .package_parts {
  .c-real-estate-category-container {
    display: flex;
    justify-content: space-between;
    gap: var(--px60);
    max-width: var(--content-max-width);
    margin: 5rem auto;
    width: 95%;
  }
  .c-real-estate-category-section {
    flex: 1;
  }
  .c-real-estate-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--px12);
  }
}

/* --- Media Query (SP) --- */
@media screen and (max-width: 768px) {
  .post .package_parts {
    .c-real-estate-category-container {
      flex-direction: column;
      gap: var(--px40);
    }
    .c-common-title__main {
      font-size: var(--px30);
    }
    .c-real-estate-category-list {
      gap: 8px;
    }
    .c-common-btn {
      flex: 1 1 calc(50% - 8px);
      min-width: 0;
      padding: var(--px12) 8px;
    }
  }
}

div.main_photo {
  width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}
#main-photo-img {
    transition: opacity 0.3s ease;
}
#main-photo-img.is-loading {
    opacity: 0;
}
.item-gallery {
    width: 100%;
  	max-width: 1024px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 0 auto;
}

.item-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

@media (max-width: 768px) {
    .item-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 400px) {
	div.main_photo {
	width: 100%;
	margin: 0 auto;
}
}

div.main_photo img {
	width: 100%;
}
@media (min-width: 768px) {
div.info_wrap {
	width: 100%;
  max-width: 1024px;
	margin: 0 auto;
	margin-top: 20px;
}
}

div.info_wrap p {
	border-top: 1px solid #ccc;
	padding: 10px 0 10px 10px;
}

div.info_wrap table {
	text-align: left;
	border-right: solid 1px #ccc;
}
@media (max-width: 768px) {
    .info_wrap table,
    .info_wrap table tbody,
    .info_wrap table tr,
    .info_wrap table th,
    .info_wrap table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .info_wrap table tr {
        display: flex;
        flex-wrap: wrap;
    }

    .info_wrap table th {
        width: 30%;
    }
    .info_wrap table td {
        width: 70%;
    }

    .info_wrap table th:empty,
    .info_wrap table td:empty {
        display: none;
    }
}
@media (max-width: 500px) {
	div.info_wrap table {
	width: 90%;
    margin: 0 auto;
    margin-top: 15px;
}
}

.info_wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
	border-top: solid 1px #ddd;
}

.info_wrap th, .info_wrap td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.info_wrap th {
    background-color: #f0f0f0;
    font-weight: bold;
    width: 12%;
}

.info_wrap td {
    background-color: #ffffff;
    width: 38%;
}

div.button_wrap {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 400px) {
div.button_wrap {
}
}

a.back_1 {
	text-decoration: underline;
}

body:not(.home) #wrapper {
	width: 100%;
}

body:not(.home) #content.wide {
	padding-bottom: 0;
}


@media print, screen and (min-width: 800px) {
	#cat-post .post4b li {
	    width: 33%;
	    margin: 0;
	    padding: 0 1% 45px 1%;
	}
}

 .post4b {
	width: 100%;
    justify-content: start;
    max-width: 1500px;
}
ul.postlist {
    width: 95%;
    margin: 0 auto 10rem auto;
    max-width: 1500px;
}
.post4b_link {
	font-size: 15px;
	right: 15px;
}

.page-id-21 #wrapper {
	padding-bottom: 50px;
}

.post4b li {
	margin-right: 20px;
}

.pagenav {
	width: 300px;
	margin: 50px auto;
}

p.bukken_name {
	margin-top: 5px;
}

#information div,#information div.borrow div {

}



.page-id-253 #wrapper,.page-id-175 #wrapper {
	padding-bottom: 100px;
}


.page-id-19 #wrapper {
    width: 70%!important;
    padding-bottom: 100px;
}

.page-id-17 #wrapper {
    width: 70%!important;
    padding-bottom: 100px;
}



.post-type-archive-property div#thumb img,.category-news div#thumb img {
	display: none;
}

#information div.borrow div {
	display: block;
}

#information div.borrow > div {
	display: flex;
	flex-wrap: nowrap;
}




@media print, screen and (max-width: 768px) {
	#information div.borrow > div {
		display: block;
	}
	#information div.borrow div div {
		width: 100%;
		margin-bottom: 30px;
	}
	#information div.borrow div div img {
		width: 100%;
	}
}

#information div.borrow div img {
	width: 100%;
}

.post4b {
}

.bu_all_wrap {
	width: 80%;
	margin: 0 auto;
}

.bu_all_wrap > div {
	margin-bottom: 100px;
}

.bu_all_wrap > div.add_midasi {
	margin-bottom: 0px;
	text-align: center;
	
}

.bu_all_wrap > div.add_midasi  {
	margin-bottom: 15px;
	text-align: center;
}


.bu_all_wrap > div.add_midasi button {
background: #10a541;
    color: #fff;
    padding: 5px 50px;
    font-size: 16px;
    margin-right: 20px;
	cursor: pointer;
}

.borrow > div {
	display: flex;
    gap: 30px;
	flex-wrap: wrap;
	justify-content: unset;
}

div.img_all_wrap {
	width: 31%;
}

@media (max-width:1100px) {
	div.img_all_wrap {
	width: 47%;
}
}

@media (max-width:500px) {
	div.img_all_wrap {
	width: 100%;
}
}


div.img_wrap {
	aspect-ratio: 350 / 220;
}

p.kariru {
	background: #00A53D;
    color: #fff;
    font-size: 16px;
    padding: 5px 20px;
    display: inline-block;
}
#information div.inner div p.kariru {
	font-size: 17px;
	margin-bottom: 5px;
}

p.kariru.kau {
	background: #FFA800;
}

#cat-post {
	
}
@media(min-width:768px) {
div.img_wrap {
	aspect-ratio: 350 / 220;
}
}

div.img_wrap img {
	width:100%;
	height:100%;
	object-fit:cover;
}

#information div.borrow div div {
	
}

@media (max-width: 768px) {
	.img_all_wrap {
		width: 100%
	}
	.bu_all_wrap > div.add_midasi button {
    background: #10a541;
    color: #fff;
    padding: 10px 50px;
    font-size: 16px;
    margin-right: 20px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
}
}


/* デフォルトではすべて表示 */
.property {
  display: block;
}

/* 非表示にするクラス */
.hidden {
  display: none;
}


nav#mainNav ul ul.sub-menu #menu-item-381 {
	background: #fff;
}

nav#mainNav ul ul.sub-menu #menu-item-381:hover {
	opacity: 0.7;
}

nav#mainNav ul ul.sub-menu #menu-item-382 {
	background: #fff;
}

nav#mainNav ul ul.sub-menu #menu-item-382:hover {
	opacity: 0.7;
}

.post4b_link {
	bottom: 30px;
}

#header a.head_btn.tel_btn {
    background: #00A53D;
}

#header a.head_btn {
	background: #FFA800;
}

#about_us div.container h3 {
	margin: 0;
}

.post h3 {
	border-bottom: none;
}

#front_bottom_content {
	background: #fff;
}

#front_bottom_content h1 {
  text-align: left;
}

#front_bottom_content h1 span {
  font-size: 72px;
    color: #454545;
    border-left: solid 6px #00A53D;
    padding-left: 32px;
    font-weight: 500;
    height: 80px;
    line-height: 74px;
    position: relative;
    padding-right: 30px;
    margin-bottom: 10px;
}

p.time.cat-news.first {
	background: #CF2E2E;
}

body.category-1 #wrapper {
	max-width: 1024px;
    width: 80%;
}

body.category-1 #wrapper {
	padding: 70px;
}

body.category-1 #wrapper .wide {
	padding: 0;
}

body.single-post #wrapper {
	max-width: 1024px;
    width: 80%;
}

#copyright {
	background: #454545;
}

div.button_wrap button {
	background: #00A53D;
    color: #fff;
    padding: 10px 50px;
    font-size: 18px;
	margin-right: 20px;
	margin-bottom: 30px;
	cursor: pointer;
}
div.button_wrap .buttons {
	background: #00A53D;
    color: #fff;
    padding: 10px 50px;
    font-size: 18px;
	margin-right: 20px;
	margin-bottom: 30px;
	cursor: pointer;
}
div.button_wrap .buttons.buys {
  background: #FFA800;
}
.kaubtn {
	cursor: pointer;
}


div.button_wrap button:last-child {
	background: #FFA800;
}

span.terms {
	padding: 3px 25px;
    display: inline-block;
    color: #fff;
}

.borrow-group-color {
	background: #00A53D;
}

.buy-group-color {
	background: #FFA800;
}

body #content.wide.bukken1 {
    padding-bottom: 0;
    padding-top: 0;
}

.post4b li:nth-child(4n+2):last-child {
	margin-right: 0;
}






    body.home nav#mainNav ul li li a{
        background: rgb(255 153 0);
        color: #ffffff;
    }

    body.home nav#mainNav ul li li a:hover{
        background: rgb(255 153 0);
        color: #ffffff;
    }


body.home nav#mainNav ul li.current-menu-item ul.sub-menu li a {
	        background: rgb(255 153 0);
        color: #ffffff;
}

body.home nav#mainNav ul li.current-menu-item ul.sub-menu li a {
	  opacity: 0.5;
}



/* 下層のホバー */
    nav#mainNav ul li ul.sub-menu li a {
        background: rgb(255 153 0);
        color: #ffffff;
    }

    nav#mainNav ul li ul.sub-menu li a:hover {
        opacity: 1!important;
		background: rgb(255 177 59);
        color: #ffffff;
    }

    nav#mainNav ul li ul.sub-menu li:hover {
        opacity: 1!important;
		background: rgb(255 153 0);
        color: #ffffff;
    }



body.mobile #breadcrumb {
    margin-top: 0;
    position: relative;
    z-index: 0;
}

.aligncenter {
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}


.page-id-23 #post-23 .linkBtn {
    padding: 15px;
    margin-bottom: 70px;
    border-radius: 100px;
}

.page-id-23 #post-23 .post {
    padding: 0 15px;
}

div.pc_center {
	text-align: center;
}