@charset "UTF-8";

/****************************************
	こちらは各サイト独自のcssを記載します
*****************************************/

/* TOP
-----------------------*/
/* topslide */
.sec_topslide {
  height: fit-content;
  position: relative;
}
@media (min-width:768px) {
	.sec_topslide {
		height: 72vw;
	}
}

/* タイトル装飾 */
.top_h2 {
  font-size: 2.4em;
	font-weight: bold;
	margin-bottom: 2rem;
}

.ttl_deco {
	font-size: 1.3rem;
    letter-spacing: .5px;
	position: relative;
	display: inline-block;
}
.ttl_deco:before {
    background: #e6eef3;
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    top: 10px;
    left: 26px;
    z-index: -1;
}
.ttl_deco.deco_wh:before {
    background: var(--bg-main-color);
}
.wrap p.ttl_deco {
  margin-bottom: 0;
    font-size: 1rem;
}
.ttl_deco:after {
	content: '';
	position: absolute;
	top: 50%;
	width: 55px;
	left: calc(50% - 23px);
	display: inline-block;
	height: 1px;
	background-color: #333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	z-index: -2;
}
.ttl_deco.deco_wh:after {
    background-color: #fff;
}

@media (min-width: 768px) {
  .top_h2 {
	font-size: 2.3em;
  }
}


/* cd-fixed-bg 背景画像固定パララックス */
.cd-fixed-bg-on {
	background-color: rgba(0,53,81,.9);
	color: #FFF;
}
.cd-fixed-bg {
	box-sizing: border-box;
	color: #FFF;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

.cd-fixed-bg.cd-bg01  {
  background-image: url('../img/top/para_img01_dummy.jpg');
}
.cd-fixed-bg.cd-bg02  {
  background-image: url('../img/top/para_img02_dummy.jpg');
}



/*****************************************
	Elements Page1
*****************************************/
/* ギャラリー
   elements---0002
-----------------------------------*/
.gallery01 li, .gallery01 li:first-of-type, .gallery02 li, .gallery02 li:last-of-type {
  width: 100%;
  margin: 0 0 3%;
}

.gallery03 {
  columns: 1;
}
.gallery03 li {
  padding-bottom: 3%;	
}
.gallery03 img {
	width:100%;
	height:auto;
	vertical-align: bottom;	
}

@media (min-width:768px) {
  .gallery01 li {
  	float: left;
    margin: 0 0 2% 0;
    width: 32%;
  }
  .gallery01 li:first-of-type {
    margin: 0 2% 2% 0;
    width: 65.7%;
  }
  .gallery02 li {
    float: left;
    margin: 0 2% 2% 0;
    width: 32%;
  }
  .gallery02 li:nth-of-type(3) {
    margin: 0 0 2% 0;
  }
  .gallery02 li:last-of-type {
    width: 66%;
    margin: 0 0 2% 0;
  }
  .gallery03 {
    columns: 3;
  }
  .gallery03 li {
    padding-bottom: 5%;
  }
}


/* control_list
   elements---0003
-----------------------------------*/
.item_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.item_list .item_list_blk {
	width: 47%;
	margin-bottom: 0;
}
.item_list .item_list_blk p {
    margin: .6rem 0 1rem;
}

@media (min-width:768px) {
	.item_list .item_list_blk {
		width: 30%;
		margin-bottom: 1.5em;
		text-align: center;
	}
}



/* control_list
   elements---0004
-----------------------------------*/
.control_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.control_list .blk {
	width: 100%;
	margin-bottom: 35px;
	position: relative;
}

.control_list .blk:first-of-type:before,
.control_list .blk:nth-of-type(2):before,
.control_list .blk:first-of-type:after,
.control_list .blk:nth-of-type(2):after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: calc(50% - 2px);
    width: 4px;
    height: 30px;
    border-radius: 9999px;
    background-color: var(--acent-color);
    transform-origin: 50% 1px;
}
.control_list .blk:first-of-type:before,
.control_list .blk:nth-of-type(2):before {
	transform: rotate(45deg);
}
.control_list .blk:first-of-type:after,
.control_list .blk:nth-of-type(2):after {
	transform: rotate(-45deg);
}

.control_list .blk dl {
	border: var(--main-color) 2px solid;
	border-radius: 10px;
	padding: 1em;
	text-align: center;
	margin-bottom: 1em;
}
.control_list .blk dl dt {
	font-size: 1.5em;
}
.control_list .blk dl dd {
	font-size: 1.125em;
}

@media (min-width: 768px) {
	.control_list .blk {
		width: 28%;
		margin-bottom: 0;
	}
	.control_list .blk:first-of-type:after, .control_list .blk:nth-of-type(2):after {
		top: 20px;
		right: -60px;
		bottom: 0;
		transform: rotate(0);
	}
}


/* control_list
   elements---0006
-----------------------------------*/
blockquote {
    position: relative;
    padding: 45px 15px 5px;
	margin-bottom: 1.5em;
    box-sizing: border-box;
    background: var(--main-color);
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 15px;
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
	color: #aaa;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

/* control_list
   elements---img-4
-----------------------------------*/
.clm_wrap {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
}
.clm_wrap .clm_blk {
	width: 100%;
	margin: 0 0 5%;
}
.clm_wrap .clm_blk_ttl {
	background: var(--btn-color);
    padding: 1rem;
	position: relative;
	text-align: center;
	color: #fff;
	line-height: 1.3;
    font-size: 1.4em;
	border-radius: 5px;
}
.display_none {
	display: none;
}
.clm_wrap .clm_blk_ttl.open {
	border-radius: 5px 5px 0 0;
}
	.acc_label {
		cursor: pointer;
	}
	.acc_label i {
		display: block;
		width: 18px;
		height: 18px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		transform-origin: center center;
		transition-duration: 0.2s;
		top: 50%;
		position: absolute;
		right: 4%;
		transform: translateY(-50%);
	}
	.acc_label i:before, .acc_label i:after {
		display: flex;
		content: '';
		background-color: #fff;
		border-radius: 10px;
		width: 18px;
		height: 4px;
		position: absolute;
		top: 7px;
		left: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		transform-origin: center center;
	}
	.acc_label i:before {
		width: 4px;
		height: 18px;
		top: 0;
		left: 7px;
	}
	.acc_label.open i:before {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
.clm_wrap .clm_blk_inner {
	padding: 1em;
	border: var(--btn-color) 1px solid;
    border-radius: 0 0 5px 5px;
}

.clm_wrap .blk .txt_blue {
	font-size: 1.2em;
    margin-bottom: 0.5em;
}
.clm_blk .blk2_area .blk:nth-of-type(1) {
	width: 32%;
}
.clm_blk .blk2_area .blk:nth-of-type(2) {
	width: 63%;
}
.clm_wrap .blk2_area .blk:first-of-type p:last-of-type {
	text-align: center;
}
	
@media (min-width:768px) {
	.clm_wrap .clm_blk {
		width: 46%;
	}
	.clm_wrap .clm_blk_inner {
    	padding: 1em 2em;
	}
}



/*****************************************
	Elements Page2
*****************************************/
/* フロー表パターン１
   elements---0006
-----------------------------------*/

.flow_blk {
	display: flex;
	flex-wrap: wrap;
} 
.flow_ttl {
	background: var(--bg-sub-color);
	text-align: center;
	font-size: 1.4em;
	color: var(--acent-color);
	width: 100%;
	box-sizing: border-box;
	position: relative;
	padding: .8em;
	display: flex;
    justify-content: center;
    align-items: center;
}
.flow_column {
	background: var(--bg-sub-color);
	padding: 2em;
	box-sizing: border-box;
	width: 100%;
}

.arrow_down {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  margin-bottom: 5px;
}

.arrow_down::before,
.arrow_down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 30px;
  border-radius: 9999px;
  background-color: var(--acent-color);
  transform-origin: 50% calc(100% - 1px);
}

.arrow_down::before {
  transform: rotate(45deg);
}

.arrow_down::after {
  transform: rotate(-45deg);
}

@media (min-width:678px) {
	.flow_column {
		width: 80%;
	}
	.flow_ttl {
		width: 20%;
		font-size: 1.625em;
	}
}


/* フロー表パターン2
   elements---0007
-----------------------------------*/

.flow_inner {
	padding-left: 25px;
    padding-bottom: 3rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.flow_inner:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #bdbdbd;
    position: absolute;
    top: 0;
    left: 6px;
    z-index: -2;
}

.flow_inner .flow_blk {
	padding-top: 3rem;
	display: block;
}
.flow_heading {
	font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    position: relative;
	color: var(--acent-color);
}
.flow_heading:before {
    --size: 16px;
    content: "";
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--acent-color);
    position: absolute;
	left: -26px;
	top: calc(0.5em * 1 - 7px);

}
.flow_content {
	margin-top: 1rem;
}
.flow_head {
	padding: 1.3rem 1.5rem;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #bdbdbd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px 10px 0 0;
    background-color: var(--bg-sub-color);
}
.flow_head h2 {
	font-size: 1.25rem;
	color: var(--bg-main-color);
}
.flow_body {
    padding: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.flow_body_wrap, .flow_body_wrap table th {
	    width: 100%;
	}
.flow_img {
	margin: 1.5rem 0 0;
	width: 100%;
}

@media (min-width: 768px) {
	.flow_inner .flow_blk {
		padding-top: 5rem;
	}
	.flow_inner {
	    padding-left: 48px;
	}
	.flow_heading {
		font-size: 2.4rem;
	}
	.flow_heading:before {
	    left: -48px;
		top: calc(0.5em * 1 - 8px);
	}
	.flow_content {
		margin-top: 2.5rem;
	}
	.flow_head {
		padding: 2rem 3rem;
	}
	.flow_head h2 {
	    font-size: 1.5rem;
	}
	.flow_body {
		padding: 3rem;
	}	.flow_body_wrap {
		width: 65%;
	}
	.flow_body_wrap table th {
		width: 25%;
	}
	.flow_img {
	position: absolute;
	top: -5rem;
	right: 2rem;
	transform: rotate(5deg);
	width: 350px;
	}
}


/*****************************************
	Elements Page3
*****************************************/

/* スタッフ紹介
   elements---0002
-----------------------------------*/
.box_shadow {
	box-shadow: #ccc 0 0 5px;
	padding: 3%;
	box-sizing: border-box;
}
.staff_blk {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.staff_photo {
	width: 55%;
	margin: 0!important;
}
.staff_name {
	font-size: 1.6rem;
    font-weight: bold;
}
.staff_name .degree,
.staff_name .en_name{
	font-size: .95rem;
	display: block;
	line-height: 1.3;
}

.staff_blk .staff_name {
	margin: 0!important;
	width: 40%;
}



/*****************************************
	Elements Page4
*****************************************/
/* 比較表 */
.price-box01 {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.price-box01>div {
	width: 100%;
	margin-bottom: 20px;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
}
	.price-box01 .box-left {
		border: 2px solid #ccc;
	}
	.price-box01 .box-right {
		border: 2px solid var(--main-color);
	}
.price-box01 .ttl {
    margin: 0 20px 15px;
    padding: 3px 15px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
	font-size: 1.15em;
}
	.price-box01 .box-left .ttl {
		background: #ccc;
		color: #333;
	}
.price-box01 .staff-date {
    padding: 0 40px;
    margin-bottom: 20px;
}
	.price-box01 .box-left .staff-date {
		padding: 0 20px;
	}
.staff-date li {
    display: flex;
}
.price-box01 .staff-date .date {
    font-weight: bold;
    width: 30px;
}
.price-box01 .staff-date .detail {
    width: calc(100% - 30px);
}
.price-box01 .child-box {
    margin: 0 20px 20px;
}
.price-box01 .child-box dt {
    padding: 3px 15px;
    text-align: center;
    background: #cfdee8;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.price-box01 .child-box dd {
    background: var(--bg-sub-color);
    padding: 15px 20px;
}
.price-box01 .child-box .staff-date {
    padding: 0;
    margin-bottom: 0;
}
.price-box01 .price {
    margin: auto 0 0;
    text-align: right;
    padding: 7px 20px;
    border-top: 2px solid var(--main-color);
    font-weight: bold;
    color: var(--main-color);
}
.price-box01 .price .num {
    font-size: 150%;
    position: relative;
    top: 2px;
}
.price-box01 .box-left .price {
	border-top: 2px solid #ccc;
	color: #333;
}

@media (min-width: 768px) {

	.price-box01 {
		margin-bottom: 15px;
	}
	.price-box01 > div {
		    width: 32%;
			margin-bottom: 0;
	}
}


/* 料金表 */
.tbl_price th {
	border: #ccc 1px solid;
	background: #e6eef3;
	text-align: left;
	padding: 2%;
}
.tbl_price td {
	border: #ccc 1px solid;
	background: #fff;
	text-align: right;
	padding: 2%;
}
.tbl_price tr:first-of-type th, .tbl_price tr:first-of-type td {
	border-top: #ccc 1px solid;
}


/* スタッフ紹介
   elements---FAQ
-----------------------------------*/
.faq-blk {
  position: relative;
}

.faq-blk-content-area .faq-content {
  display: none;
}
.faq-blk-content-area .faq-content.show {
  display: block;
}

.faq-blk-box {
  border-bottom: solid 2px #fff;
  margin-bottom: 2px;
  padding: 32px;
  background: var(--bg-sub-color);
}
.faq-blk-q {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  text-shadow: 4px 6px 68px #bacad4;
}
.faq-blk-q:before {
  content: "Q";
  color: var(--acent-color);
  font-size: 24px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 0;
  top: -6px;
}
.faq-blk-a {
  font-size: 13px;
  position: relative;
  padding-left: 32px;
}
.faq-blk-a:before {
  content: "A";
  color: #c9d0d2;
  font-size: 20px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 2px;
  top: -7px;
}

@media (min-width: 768px) {
  .faq-blk-q {
    font-size: 20px;
  }
  .faq-blk-q:before {
    top: -3px;
  }
  .faq-blk-box {
    padding: 44px;
  }
  .faq-blk-a {
    font-size: 14px;
  }
  .faq-blk-a:before {
    top: -5px;
  }
}

/*****************************************
	Elements Page5
*****************************************/

.aces_txt {
	font-size: 1.25em;
}

/*説明文用*/
pre code {
    display: block;
    line-height: 1.75em;
    padding: 1em 1.5em;
    overflow-x: auto;
}
code {
    background: rgb(200 205 227 / 45%);
    border-radius: 4px;
    font-size: 1.1em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

/* BELIFEHOME top page */
.blh_main {
  color: var(--blh-text);
  background: #fff;
}

.blh_main .wrap {
  max-width: 1600px;
  width: calc(100% - 60px);
  padding: 0;
}

.blh_business .wrap,
.blh_property_page .wrap,
.blh_company .wrap,
.blh_contact_page .wrap {
  max-width: 1600px;
  width: calc(100% - 60px);
  padding: 0;
}

.blh_mv {
  position: relative;
  padding-bottom: 70px;
}

.blh_mv_visual {
  width: calc(100% - 140px);
  margin: 0 auto;
  height: 720px;
  overflow: hidden;
  z-index: 100;
  position: relative;
}

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

.blh_mv_bg {
  width: 51%;
  height: 300px;
  background: var(--blh-green);
  border-radius: 10px 0 0 10px;
  position: absolute;
  bottom: 20%;
  right: 0;
  z-index: 1;
}

.blh_mv_txt {
  position: relative;
  margin-top: 40px;
  z-index: 2;
}

.blh_mv h1 {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 64px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #111;
}

.blh_mv p {
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.blh_philosophy {
  background: #fff;
  padding: 180px 0 80px;
}

.blh_philosophy .sec_page_wrap {
  max-width: 100%;
}

.blh_philosophy_inner {
  display: flex;
  gap: 8%;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: -120px auto 0;
}

.blh_philosophy_figure {
  position: relative;
  width: 48%;
  margin: 0;
  flex-shrink: 0;
  overflow: visible;
}

.blh_watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  transform: translateY(-38%);
  z-index: 2;
  pointer-events: none;
  margin: 0;
  max-width: 100%;
  font-size: clamp(22px, 10vw, 192px);
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-sizing: border-box;
}

.blh_philosophy_img {
  margin: 0;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 3;
  position: relative;
}

.blh_philosophy_img img {
  width: 100%;
  display: block;
}

.blh_philosophy_txt {
  width: 48%;
}

.blh_philosophy h2 {
  margin: 0 0 32px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 34px;
  line-height: 1.8;
}

.blh_philosophy_txt p {
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 2;
}

.blh_btn {
  margin: 34px 0 0;
}

.blh_btn a {
  display: inline-block;
  min-width: 286px;
  line-height: 59px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  background: var(--blh-green);
  border: 1px solid var(--blh-green);
  border-radius: 70px;
  box-shadow: 0 3px 20px rgba(0, 162, 115, 0.4);
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.blh_btn a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--blh-green-hover);
  border-color: var(--blh-green-hover);
}

.blh_btn a i {
  margin-left: 8px;
}

.blh_btn_center {
  text-align: center;
}

.blh_label {
  margin: 0 0 16px;
  color: var(--blh-green);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: none;
}

.blh_strength {
  background: #f8fcfb;
  padding: 96px 0 140px;
}

.blh_strength h2,
.blh_property h2 {
  margin: 0 0 20px;
  text-align: center;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 34px;
}

.blh_intro {
  margin-bottom: 48px;
  text-align: center;
  font-size: 15px;
  line-height: 2.4;
}

.blh_strength_list {
  max-width: 1000px;
  margin: 0 auto;
}

.blh_strength_item {
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 4%;
  justify-content: space-between;
}

.blh_strength_item.reverse {
  flex-direction: row-reverse;
}

.blh_strength_img {
  margin: 0;
  width: 48%;
  border-radius: 8px;
  overflow: hidden;
}

.blh_strength_img img {
  width: 100%;
  display: block;
}

.blh_strength_txt {
  width: 48%;
  position: relative;
}

.blh_strength_txt h3 {
  margin: 0 0 18px;
  position: relative;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 32px;
  line-height: 2;
}

.blh_num {
  position: absolute;
  top: -64px;
  left: -4px;
  margin: 0;
  color: rgba(0, 162, 115, 0.15);
  font-size: 136px;
  font-weight: 700;
  line-height: 1;
}

.blh_divider {
  margin: 0;
  height: 500px;
  overflow: hidden;
}

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

.blh_property {
  padding: 100px 0 110px;
}

.blh_property--works {
  background: #f8fcfb;
}

.blh_property_card {
  max-width: 950px;
  margin: 0 auto;
  border: 1px solid var(--blh-line);
  background: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

a.blh_property_card:hover {
  text-decoration: none;
  color: inherit;
  border-color: var(--blh-green);
  box-shadow: 0 6px 28px rgba(0, 162, 115, 0.12);
}

.blh_card_img {
  width: 41%;
  margin: 0;
}

.blh_card_img img {
  width: 100%;
  display: block;
}

.blh_card_txt {
  width: 53%;
}

.blh_tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 14px 5px;
  border: 1px solid #1c99cd;
  border-radius: 4px;
  color: #1c99cd;
  font-size: 13px;
  font-weight: 700;
}

.blh_property_card h3 {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 30px;
  line-height: 1.4;
}

.blh_property_card dl {
  margin-bottom: 8px;
  display: flex;
  font-size: 16px;
  line-height: 1.6;
}

.blh_property_card dt {
  width: 75px;
  flex-shrink: 0;
}

.blh_property_card dt i {
  margin-right: 6px;
}

.blh_more {
  margin: 20px 0 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.blh_more .blh_more_txt {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #777;
  border-bottom: 1px solid #777;
  padding-bottom: 6px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.blh_more i {
  color: #777;
  font-size: 12px;
  transition: color 0.25s ease;
}

.blh_property_card:hover .blh_more .blh_more_txt {
  color: var(--blh-green);
  border-color: var(--blh-green);
}

.blh_property_card:hover .blh_more i {
  color: var(--blh-green);
}

@media (max-width: 1023px) {
  .blh_main .wrap {
    width: calc(100% - 30px);
  }

  .blh_mv {
    margin-top: 76px;
  }

  .blh_mv_visual {
    width: 100%;
    height: 70vw;
  }

  .blh_mv_txt {
    margin-top: 20px;
  }

  .blh_mv h1 {
    font-size: 44px;
    line-height: 1.3;
  }

  .blh_mv p {
    font-size: 13px;
    line-height: 1.7;
  }

  .blh_philosophy {
    padding: 70px 0;
  }

  .blh_philosophy_inner {
    margin-top: -36px;
    display: block;
  }

  .blh_philosophy_figure {
    width: 100%;
  }

  .blh_watermark {
    top: -60px;
    left: -20px;
    right: 0;
    transform: none;
    text-align: center;
    font-size: clamp(48px, 12vw, 120px);
  }

  .blh_philosophy_img,
  .blh_philosophy_txt {
    width: 100%;
  }

  .blh_philosophy_txt {
    margin-top: 28px;
  }

  .blh_philosophy h2 {
    font-size: 30px;
    line-height: 1.6;
  }

  .blh_philosophy_txt p br {
    display: none;
  }

  .blh_btn a {
    min-width: 220px;
    line-height: 52px;
    font-size: 14px;
  }

  .blh_strength {
    padding: 62px 0 80px;
  }

  .blh_strength h2,
  .blh_property h2 {
    font-size: 40px;
    line-height: 1.25;
  }

  .blh_strength_item,
  .blh_strength_item.reverse {
    display: block;
    margin-bottom: 36px;
  }

  .blh_strength_img,
  .blh_strength_txt {
    width: 100%;
  }

  .blh_strength_txt {
    margin-top: 16px;
  }

  .blh_num {
    top: -42px;
    font-size: 96px;
  }

  .blh_strength_txt h3 {
    font-size: 28px;
    line-height: 1.6;
  }

  .blh_strength_txt > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .blh_divider {
    height: 240px;
  }

  .blh_property {
    padding: 65px 0;
  }

  .blh_property_card {
    display: block;
    padding: 16px;
  }

  .blh_card_img,
  .blh_card_txt {
    width: 100%;
  }

  .blh_card_txt {
    margin-top: 16px;
  }

  .blh_property_card h3 {
    font-size: 24px;
  }

  .blh_property_card dl {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .blh_mv {
    padding-bottom: 0;
  }
  .blh_mv h1 {
    font-size: 24px;
  }
  .blh_mv .sec_page_wrap {
    margin: 0 0 10%;
  }

  .blh_mv_bg {
    height: 150px;
  }

  .blh_strength h2,
  .blh_property h2 {
    font-size: 34px;
  }

  .blh_strength_txt h3 {
    font-size: 22px;
  }

  .blh_watermark {
    top: -40px;
  }

  .blh_philosophy h2 {
    font-size: 26px;
  }
}

/* BELIFEHOME business page
-----------------------*/
.blh_business {
  background: #fff;
  color: var(--blh-text);
}

.blh_subhero {
  background: #f8fcfb;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 295px;
  height: 295px;
}

@media (min-width: 798px) {
  .blh_subhero {
    margin-top: 77px;
  }
}

.blh_subhero.subhero_bg {
  background: url("../img/common/bg_header.jpg") center center / cover no-repeat;
}

.blh_subhero > .wrap {
  height: 100%;
  min-height: 295px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.blh_subhero .sec_page_wrap {
  margin: 0;
  width: 100%;
}

.blh_subhero_txt {
  padding-left: 32px;
  max-width: 760px;
  color: var(--blh-text);
  position: relative;
  z-index: 1;
  width: 100%;
}

.blh_subhero.subhero_bg .blh_subhero_txt {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.blh_subhero_txt h1 {
  margin: 0 0 18px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 36px;
  line-height: 1.3;
}

.blh_subhero_txt p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.blh_business_sec {
  background: #f8fcfb;
  padding: 74px 0 140px;
}

.blh_business_item {
  max-width: 1180px;
  margin: 0 auto 86px;
  position: relative;
}

.blh_business_item:last-of-type {
  margin-bottom: 0;
}

.blh_business_photo {
  margin: 0;
  width: 72%;
  border-radius: 8px;
  overflow: hidden;
}

.blh_business_photo img {
  width: 100%;
  display: block;
}

.blh_business_item.reverse .blh_business_photo {
  margin-left: auto;
}

.blh_business_num {
  margin: 0;
  position: absolute;
  top: 38px;
  right: 0;
  color: rgba(0, 162, 115, 0.2);
  font-size: 220px;
  line-height: 1;
  font-weight: 700;
}

.blh_business_item.reverse .blh_business_num {
  left: 0;
  right: auto;
}

.blh_business_txt {
  margin-top: 36px;
}

.blh_business_txt h2 {
  margin: 0 0 26px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-text);
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.blh_business_txt p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 1023px) {
  .blh_business .wrap,
  .blh_property_page .wrap,
  .blh_company .wrap,
  .blh_contact_page .wrap {
    width: calc(100% - 30px);
  }

  .blh_subhero {
    height: 295px;
  }

  .blh_subhero_txt {
    padding-left: 0;
    max-width: 100%;
  }

  .blh_subhero_txt h1 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .blh_subhero_txt p {
    font-size: 13px;
    line-height: 1.8;
  }

  .blh_business_sec {
    padding: 44px 0 80px;
  }

  .blh_business_item {
    margin-bottom: 58px;
  }

  .blh_business_photo {
    width: 100%;
  }

  .blh_business_num {
    top: 14px;
    right: 10px;
    font-size: 96px;
  }

  .blh_business_item.reverse .blh_business_num {
    left: 10px;
  }

  .blh_business_txt {
    margin-top: 20px;
  }

  .blh_business_txt h2 {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .blh_business_txt p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* BELIFEHOME available page
-----------------------*/
.blh_property_page {
  background: #fff;
  color: var(--blh-text);
}

.blh_sale_summary {
  background: #fff;
  padding: 66px 0;
}

.blh_sale_summary_inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blh_sale_photo {
  margin: 0;
  width: 56%;
}

.blh_sale_photo img {
  width: 100%;
  display: block;
}

.blh_sale_overview {
  width: 38%;
}

.blh_sale_overview h2 {
  margin: 14px 0 18px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 40px;
  line-height: 1.35;
}

.blh_sale_overview dl {
  margin-bottom: 6px;
  display: flex;
  font-size: 16px;
  line-height: 1.6;
}

.blh_sale_overview dt {
  width: 75px;
  flex-shrink: 0;
}

.blh_sale_overview dt i {
  margin-right: 6px;
}

.blh_sale_price {
  margin: 24px 0 0;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
}

.blh_sale_plot {
  background: #f8fcfb;
  padding: 84px 0 110px;
}

.blh_sale_plot h2,
.blh_sale_info h2 {
  margin: 0 0 54px;
  text-align: center;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 48px;
  line-height: 1.2;
}

.blh_sale_plot h2::after,
.blh_sale_info h2::after {
  content: "";
  display: block;
  width: 39px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--blh-green);
}

.blh_sale_placeholder {
  max-width: 720px;
  height: 457px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blh-line);
  color: #f00;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 20px;
}

.blh_sale_info {
  background: #fff;
  padding: 96px 0 110px;
}

.blh_sale_info_inner {
  max-width: 1180px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blh_sale_info_inner .blh_sale_placeholder {
  width: 49%;
  max-width: none;
  margin: 0;
}

.blh_sale_table {
  width: 45%;
  margin: 0;
}

.blh_sale_table th,
.blh_sale_table td {
  border: 1px solid #e6e6e6;
  padding: 18px 20px;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}

.blh_sale_table th {
  width: 200px;
  background: #f8f8f8;
  font-weight: 700;
}

.blh_sale_table td {
  background: #fff;
}

@media (max-width: 1023px) {
  .blh_sale_summary {
    padding: 40px 0;
  }

  .blh_sale_summary_inner {
    display: block;
  }

  .blh_sale_photo,
  .blh_sale_overview {
    width: 100%;
  }

  .blh_sale_overview {
    margin-top: 20px;
  }

  .blh_sale_overview h2 {
    font-size: 28px;
  }

  .blh_sale_overview dl {
    font-size: 14px;
  }

  .blh_sale_price {
    font-size: 30px;
  }

  .blh_sale_plot {
    padding: 58px 0 70px;
  }

  .blh_sale_plot h2,
  .blh_sale_info h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .blh_sale_placeholder {
    width: 100%;
    height: 240px;
    font-size: 16px;
  }

  .blh_sale_info {
    padding: 62px 0 70px;
  }

  .blh_sale_info_inner {
    margin-bottom: 34px;
    display: block;
  }

  .blh_sale_info_inner .blh_sale_placeholder,
  .blh_sale_table {
    width: 100%;
  }

  .blh_sale_table {
    margin-top: 20px;
  }

  .blh_sale_table th,
  .blh_sale_table td {
    padding: 12px;
    font-size: 13px;
  }

  .blh_sale_table th {
    width: 38%;
  }
}

/* BELIFEHOME company page
-----------------------*/
.blh_company {
  background: #fff;
  color: var(--blh-text);
}

.blh_company_info {
  background: #fff;
  padding: 96px 0 78px;
}

.blh_company_table {
  max-width: 960px;
  margin: 0 auto;
}

.blh_company_table th,
.blh_company_table td {
  border-bottom: 1px solid #ddd;
  padding: 24px 16px;
  font-size: 15px;
  line-height: 1.8;
  vertical-align: middle;
}

.blh_company_table th {
  width: 180px;
  font-weight: 500;
  text-align: left;
}

.blh_company_map {
  max-width: 960px;
  margin: 44px auto 0;
}

.googlemaps {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}
.googlemaps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.blh_company_map p {
  margin: 0;
}

.blh_company_map img {
  width: 100%;
  display: block;
}

.blh_company_map_link {
  margin-top: 8px !important;
  text-align: right;
}

.blh_company_map_link a {
  color: #9ca3af;
  font-size: 11px;
}

.blh_company_message {
  background: #f8fcfb;
  padding: 112px 0 124px;
}

.blh_company_message .wrap {
  max-width: 800px;
}

.blh_company_message h2 {
  margin: 0 0 52px;
  text-align: center;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 48px;
  line-height: 1.2;
}

.blh_company_message p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 2;
}

.blh_company_sign {
  text-align: right;
  font-weight: 500;
  margin-top: 26px !important;
}

@media (max-width: 1023px) {
  .blh_company_info {
    padding: 54px 0 50px;
  }

  .blh_company_table th,
  .blh_company_table td {
    padding: 14px 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .blh_company_table th {
    width: 120px;
  }

  .blh_company_map {
    margin-top: 24px;
  }

  .blh_company_map_link a {
    font-size: 10px;
  }

  .blh_company_message {
    padding: 62px 0 70px;
  }

  .blh_company_message h2 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .blh_company_message p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* BELIFEHOME contact page
-----------------------*/
.blh_contact_page {
  background: #fff;
  color: var(--blh-text);
}

.blh_contact_page .blh_subhero_txt h1 {
  margin-bottom: 16px;
}

.blh_contact_form_sec {
  background: #fff;
}

.blh_contact_form_sec .sec_page_wrap {
  max-width: 768px;
  margin: 0 auto;
}

.blh_contact_phone_box {
  background: #f8fcfb;
  text-align: center;
  padding: 52px 20px;
  margin-bottom: 48px;
}

.blh_contact_phone_box h2 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.blh_contact_phone_num {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  font-size: 40px;
  line-height: 1.3;
}

.blh_contact_phone_num a {
  color: var(--font-base-color);
}

.blh_contact_phone_box p:not(.blh_contact_phone_num) {
  margin-bottom: 0;
  font-size: 13px;
  color: #6b7280;
}

.blh_contact_form_ttl {
  margin: 0 0 44px;
  text-align: center;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 48px;
  line-height: 1.2;
}

.blh_form_error,
.blh_form_notice {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.8;
}

.blh_form_error {
  color: #a40000;
  background: #fff2f2;
  border: 1px solid #ffd1d1;
}

.blh_form_error p,
.blh_form_notice {
  margin: 0;
}

.blh_form_notice {
  color: #11643a;
  background: #effcf4;
  border: 1px solid #b8e6c8;
}

.blh_contact_page .form_contact {
  margin: 0;
}

.blh_contact_page .frm_tbl {
  margin: 0;
}

.blh_contact_page .frm_tbl th,
.blh_contact_page .frm_tbl td {
  display: block;
  border: 0;
  padding: 0;
}

.blh_contact_confirm_page .frm_tbl td {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.blh_contact_page .frm_tbl tr {
  display: block;
  margin-bottom: 22px;
}

.blh_contact_page .frm_tbl tr:last-of-type {
  margin-bottom: 0;
}

.blh_contact_page .frm_tbl th {
  margin-bottom: 8px;
  text-align: left;
}

.blh_contact_page .frm_tbl th .required {
  margin-left: 6px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  background: #f3f4f6;
  color: #666;
  font-size: 11px;
  line-height: 1.5;
  vertical-align: text-bottom;
}

.blh_contact_page .frm_tbl input[type="text"],
.blh_contact_page .frm_tbl input[type="email"],
.blh_contact_page .frm_tbl input[type="tel"],
.blh_contact_page .frm_tbl textarea,
.blh_contact_page .frm_tbl select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 16px;
  font-size: 15px;
  color: var(--blh-text);
  border-radius: 0;
}

.blh_contact_page .frm_tbl textarea {
  min-height: 169px;
  resize: vertical;
}

.blh_contact_page .frm_tbl td > p {
  margin: 6px 0 0;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}

.blh_contact_page .form_contact .btn {
  margin-top: 36px;
}

.blh_contact_page .form_contact .btn p {
  margin: 0;
}

.blh_contact_page .form_contact .form_btn {
  text-align: center;
}

.blh_contact_page .form_contact .form_btn input[type="submit"] {
  min-width: 287px;
  line-height: 59px;
  border: 1px solid var(--blh-green);
  border-radius: 70px;
  background: var(--blh-green);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 20px rgba(0, 162, 115, 0.4);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.blh_contact_page .form_contact .form_btn input[type="submit"]:hover {
  background: var(--blh-green-hover);
  border-color: var(--blh-green-hover);
  color: #fff;
}

.blh_form_privacy {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: #555;
  line-height: 1.5;
}

.blh_thanks_box {
  padding: 56px 24px;
  text-align: center;
  background: #f8fcfb;
}

.blh_thanks_box p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.blh_thanks_btn {
  margin-top: 30px !important;
}

.blh_thanks_btn a {
  display: inline-block;
  min-width: 287px;
  line-height: 59px;
  border: 1px solid var(--blh-green);
  border-radius: 70px;
  background: var(--blh-green);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 0 3px 20px rgba(0, 162, 115, 0.4);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.blh_thanks_btn a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--blh-green-hover);
  border-color: var(--blh-green-hover);
}

@media (max-width: 1023px) {
  .blh_contact_page .blh_subhero_txt p {
    font-size: 14px;
  }

  .blh_contact_phone_box {
    padding: 34px 16px;
    margin-bottom: 32px;
  }

  .blh_contact_phone_box h2 {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .blh_contact_phone_num {
    font-size: 32px;
  }

  .blh_contact_form_ttl {
    margin-bottom: 26px;
    font-size: 34px;
  }

  .blh_contact_page .frm_tbl tr {
    margin-bottom: 16px;
  }

  .blh_contact_confirm_page .frm_tbl td {
    padding: 12px;
    font-size: 14px;
  }

  .blh_contact_page .frm_tbl input[type="text"],
  .blh_contact_page .frm_tbl input[type="email"],
  .blh_contact_page .frm_tbl input[type="tel"],
  .blh_contact_page .frm_tbl textarea,
  .blh_contact_page .frm_tbl select {
    font-size: 14px;
    padding: 12px;
  }

  .blh_contact_page .form_contact .btn {
    margin-top: 26px;
  }

  .blh_contact_page .form_contact .form_btn input[type="submit"] {
    min-width: 240px;
    line-height: 52px;
    font-size: 14px;
  }

  .blh_thanks_box {
    padding: 40px 18px;
  }

  .blh_thanks_box p {
    font-size: 14px;
    line-height: 1.9;
  }

  .blh_thanks_btn a {
    min-width: 240px;
    line-height: 52px;
    font-size: 14px;
  }
}

/* BELIFEHOME privacy page
-----------------------*/
.blh_privacy_sec {
  max-width: 920px;
  margin: 0 auto;
}

.blh_privacy_lead {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.9;
}

.blh_privacy_block + .blh_privacy_block {
  margin-top: 32px;
}

.blh_privacy_block h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 26px;
  line-height: 1.4;
}

.blh_privacy_block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.blh_privacy_block ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.blh_privacy_block li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.8;
}

/* BELIFEHOME error page
---------------------*/
.blh_error_sec {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.blh_error_sec h2 {
  margin: 0 0 22px;
  font-family: "Noto Serif JP", var(--font-ttl-family);
  color: var(--blh-heading);
  font-size: 42px;
  line-height: 1.3;
}

.blh_error_sec p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.blh_error_btn {
  margin-top: 34px !important;
}

.blh_error_btn a {
  display: inline-block;
  min-width: 287px;
  line-height: 59px;
  border: 1px solid var(--blh-green);
  border-radius: 70px;
  background: var(--blh-green);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 20px rgba(0, 162, 115, 0.4);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.blh_error_btn a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--blh-green-hover);
  border-color: var(--blh-green-hover);
}

@media (max-width: 1023px) {
  .blh_privacy_lead {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.9;
  }

  .blh_privacy_block + .blh_privacy_block {
    margin-top: 24px;
  }

  .blh_privacy_block h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .blh_privacy_block p,
  .blh_privacy_block li {
    font-size: 14px;
  }

  .blh_error_sec h2 {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .blh_error_sec p {
    font-size: 14px;
  }

  .blh_error_btn a {
    min-width: 240px;
    line-height: 52px;
    font-size: 14px;
  }
}