@charset 'UTF-8';

/* リキャプチャバッジ非表示
--------------------------- */
.grecaptcha-badge { visibility: hidden; }


/* 404
--------------------------- */
.p404_txt{
	margin-bottom: 0;
	margin-top: 1rem;
}

.txt_block p{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	height: auto;
}

/********************
/* 準備中
********************/
.page_block_just{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page_block_just .inner{
	text-align: center;
}
.page_block_just .txt_block p + p{
	margin-top: 1rem;
}
.page_block_just .vm{
	margin-top: 2.77rem;
}


/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 767px以下用の記述 */
@media screen and (max-width: 767px) {
  .col-sm-m20-bottom {
    margin-bottom: 20px;
  }
  .col-sm-none {
    display: none;
  }
}
/* 576px以下用の記述 */
@media screen and (max-width: 576px) {
  .col-xs-m40-bottom {
    margin-bottom: 40px;
  }
  .col-xs-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
PC/SP切り替え
*******************************/
.pc-none{
    display: block;
}
.sp-none{
    display: none;
}
@media screen and (min-width: 768px){
    .pc-none{
        display: none;
    }
    .sp-none{
        display: block;
    }
}

/**************************
/* watermark
**************************/
.watermark{
	position: relative;
}
.watermark::after{
	position: absolute;
	content: "";
	background-image: url("../images/watermark.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/**************************
/* fontsize
**************************/
.f18{
	font-size: 1.153rem;
}
.f20{
	font-size: 1.153rem;
}
.f23{
	font-size: 1.192rem;
}
.f25{
	font-size: 1.23rem;
}
.f30{
	font-size: 1.33rem;
}
.f35{
	font-size: 1.44rem;
}
.f40{
	font-size: 1.53rem;
}
@media screen and (min-width: 768px){
	.f18{
		font-size: 1.179rem;
	}
	.f20{
		font-size: 1.3rem;
	}
	.f23{
		font-size: 1.365rem;
	}
	.f25{
		font-size: 1.43rem;
	}
	.f30{
		font-size: 1.54rem;
	}
	.f35{
		font-size: 1.65rem;
	}
	.f40{
		font-size: 1.769rem;
	}
}
@media screen and (min-width: 1400px){
	.f18{
		font-size: 1.2rem;
	}
	.f20{
		font-size: 1.333rem;
	}
	.f23{
		font-size: 1.533rem;
	}
	.f25{
		font-size: 1.666rem;
	}
	.f30{
		font-size: 2rem;
	}
	.f35{
		font-size: 2.33rem;
	}
	.f40{
		font-size: 2.66rem;
	}
}

/*******************************
/* 背景色
*******************************/
.bg_gray, .bg_white{
	position: relative;
}
.bg_gray::before, .bg_white::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg_gray::before{
	background-color: #f4f4f4;
}
.bg_white::before{
	background-color: #fff;
}

/*******************************
見出し
*******************************/
/* c-title1 */
.c-title1{
	font-size: 2.69rem;
	color: #000;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 2.76rem;
}
.c-title1 .f-jp{
	font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	display: block;
	color: #323232;
	font-size: 1rem;
	margin-top: 0.83rem;
}
@media screen and (min-width: 768px){
	.c-title1{
		font-size: 3.07rem;
		margin-bottom: 4.427rem;
	}
}
@media screen and (min-width: 1400px){
	.c-title1{
		font-size: 4rem;
		margin-bottom: 5.66rem;
	}
	.c-title1 .f-jp{
		margin-top: 0.9rem;
	}
}

/*******************************
/* BUTTON
*******************************/
/* vm */
.vm{
	display: inline-flex;
	align-items: center;
	justify-content: center; 
	width: 180px;
	height: 45px;
	border-radius: 45px;
	font-size: 0.846rem;
	color: #000;
	border: 1px solid rgba(180,180,180,0.5);
	transition: .3s;
}
.vm:hover{
	text-decoration: none;
	background-color: #000;
	border: 1px solid rgba(0,0,0,0.5);
	color: #fff;
}
@media screen and (min-width: 1200px){
	.vm{
		height: 50px;
	}
}
@media screen and (min-width: 1400px){
	.vm{
		width: 200px;
		height: 55px;
		font-size: 0.933rem;
	}
}
/* 黒ベタvm */
.vm.inversion{
	background-color: #000;
	color: #fff;
	border: none;
}
.vm.inversion:hover{
	background-color: #000;
	color: #fff;
	opacity: 0.7;
}

/*******************************
container
*******************************/
.container_block{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.container_acv{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.container_single{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.container_page{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;	
}
@media screen and (min-width: 768px){
	.container_block{
		width: 83.33%;
	}
	.container_acv{
		width: 83.33%;
	}
	.container_single{
		width: 83.33%;
		max-width: 700px;
	}
	.container_page{
		width: 83.33%;		
	}
}
@media screen and (min-width: 1800px){
	.container_block{
		width: 77.77%;
	}
	.container_acv{
		width: 72.22%;
	}
	.container_page{
		width: 66.66%;
		max-width: 1200px;
	}
}
/*******************************
パンクズ
*******************************/
#pls{
	width: 87.1794%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 2.3rem;
	margin-top: 3.417rem;
}
#pan {
    font-size: 0.84rem;
    display: flex;
    flex-wrap: wrap;
	color: #b4b4b4;
}
.pan-line{
	width: 40px;
	position: relative;
	display: block;
	margin: 0 1rem;
}
.pan-line::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(50,50,50,0.5);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#pan a{
	color: #323232;
    text-decoration: none;
	transition: .3s;
}
#pan a:hover{
	opacity: 0.7;
} 
#pan .current-item{
	color: #b4b4b4;
}
@media screen and (min-width: 992px){
	#pls{
		width: 91.11%;
		padding-bottom: 2.69rem;
		margin-top: 7.13rem;
	}
}
@media screen and (min-width: 1200px){
	#pan{
		font-size: 0.93rem;
	}
	.pan-line{
		width: 50px;
	}
}
@media screen and (min-width: 1400px){
	#pls{
		padding-bottom: 3.2rem;
		margin-top: 9.26rem;
	}
}

/*******************************
/* フォーム/テーブル
*******************************/
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 60%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
}
#form {
	max-width: 100%;
}
#form th span {
	font-size: 0.8em;
	color: #FFF;
	background-color: #C00;
	padding: 3px;
}
#form th, #form td{
	font-size: 0.92rem;
	font-weight: 500;
	padding: 1.64rem 0;
	border-bottom: 1px solid rgba(179,179,179,0.5);
	color: #000;
}
#form tr:first-child th, #form tr:first-child td{
	border-top: 1px solid rgba(179,179,179,0.5);
}
#form th {
  width: 30%;
	vertical-align: baseline;
}
#form td {
	text-align: left;
}
#form2 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form2 th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form2 th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}
#form3 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form3 tr {
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  display: flex;
}
#form3 th {
  width: 150px;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}
#form3 th span {
  background-color: #808080;
  display: inline-block;
  width: 150px;
}
#form3 td {
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 4rem;
}
#form3 td .tel_txt1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#form3 td .tel_txt2 {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: block;
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 10px 0 10px 10px;
  margin: 10px 0;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media screen and (min-width: 1400px){
	#form th, #form td{
		font-size: 0.93rem;
	}
}
@media only screen and (max-width:479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  #form {
    max-width: 100%;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 20px 0 0;
	  border-bottom: none;
  }
	#form tr:first-child td{
		border-top: none;
	}
  #form td {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 8px 0 20px;
  }
  #form2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form2 th {
    width: 50%;
    border-top: none;
    text-align: center;
  }
  #form2 td {
    width: 100%;
    display: block;
    border-top: none;
    text-align: center;
  }
  #form3 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form3 tr {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  #form3 th {
    width: 50%;
    display: block;
    border-top: none;
  }
  #form3 td {
    width: 100%;
    display: block;
    border-top: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  #form3 tr:first-child th {
    /*	border-top: 1px solid #ddd;*/
  }
  /* テキストエリアの設定 */
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
  }
  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
.pagination{
	margin-top: 4.3153rem;
	font-size: 1.11rem;
	line-height: 1;
}
.pagination ul{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}
.pagination ul li{
	list-style: none;
}
.pagination ul li + li{
	margin-left: 5px;
}
.pagination ul li a:hover{
	text-decoration: none;
}
.page-numbers{
	color: #000;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.active.page-numbers{
	color: #b4b4b4;
}
@media screen and (min-width: 1400px){
	.pagination{
		margin-top: 8.271rem;
		font-size: 1.2rem;
	}
	.pagination ul li + li{
		margin-left: 7px;
	}
	.page-numbers{
		width: 30px;
		height: 30px;
	}
}

/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 30px;
  text-align: center;
}
/*************************
/* single.php 日付
*************************/
#date span {
	color: #878787;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0;
}
/* single.php ページ送り
----------------------------------------------------------------------------------------------------*/

#next {
  background-color: #efefef;
  padding: 10px;
  margin-top: 30px;
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 35px;
}
.nx_left a:hover {
  background-color: #828282;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left2.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
}
.nx_right a:hover {
  background-color: #828282;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right2.png);
  background-repeat: no-repeat;
  background-position: right center;
}
/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}
#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #000 1px solid;
  border-bottom: #000 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #next{
	text-align: right;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
    margin-top: 0.5rem;
    color: #000;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: #f7f7f5;
}
#prev_next #prev {
  border-right: #000 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #000 solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #000;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 auto;
    width: auto;
}
#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell;
}
#prev_next #prev_no {
  border-right: #000 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #000;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #000;
  -webkit-box-shadow: 0 0 0 3px #000;
  -moz-box-shadow: 0 0 0 3px #000;
  text-align: center;
}
#prev_next_home:hover {
opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
@media screen and (min-width: 768px){
    #prev_next #prev, #prev_next #next{
        padding: 40px 10px 20px;
    }
}
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
768px PREV NEXT
--------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
  /*-- ここまで --*/
}
/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: auto;
}
.gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery img {
  margin-bottom: 5px;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
}
/*******************************
/* youtube　gmapレスポンシブ対応
***************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*******************************
/* レスポンシブ改行
***************************/
@media screen and (min-width: 576px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
@media screen and (min-width: 992px){
	.br_max991{
		display: none;
	}
	.br_min992{
		display: block;
	}
}
@media screen and (max-width: 991px){
	.br_max991{
		display: block;
	}
	.br_min992{
		display: none;
	}
}
@media screen and (min-width: 1200px){
	.br_max1199{
		display: none;
	}
	.br_min1200{
		display: block;
	}
}
@media screen and (max-width: 1199px){
	.br_max1199{
		display: block;
	}
	.br_min1200{
		display: none;
	}
}
@media screen and (min-width: 1400px){
	.br_max1399{
		display: none;
	}
	.br_min1400{
		display: block;
	}
}
@media screen and (max-width: 1399px){
	.br_max1399{
		display: block;
	}
	.br_min1400{
		display: none;
	}
}
@media screen and (min-width: 1500px){
	.br_min1500{
		display: block;
	}
}
@media screen and (max-width: 1499px){
	.br_min1500{
		display: none;
	}
}
@media screen and (min-width: 1600px){
	.br_min1600{
		display: block;
	}
}
@media screen and (max-width: 1599px){
	.br_min1600{
		display: none;
	}
}
@media screen and (min-width: 1700px){
	.br_min1700{
		display: block;
	}
}
@media screen and (max-width: 1699px){
	.br_min1700{
		display: none;
	}
}
@media screen and (min-width: 1800px){
	.br_min1800{
		display: block;
	}
}
@media screen and (max-width: 1799px){
	.br_min1800{
		display: none;
	}
}

.br_768-991{
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.br_768-991{
		display: block;
	}
}
.br_768-1199{
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
	.br_768-1199{
		display: block;
	}
}
.br_992-1499{
	display: none;
}
@media screen and (min-width: 992px) and (max-width: 1499px){
	.br_992-1499{
		display: block;
	}
}
.br_768-991none{
	display: block;
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.br_768-991none{
		display: none;
	}
}

/*****************************
/* form_customize
*****************************/
.form_outer{
	margin-top: 5.06rem;
}
.form_intro{
	margin-bottom: 3.81rem;
}
.form_intro p{
	color: #000;
	font-size: 0.93rem;
	line-height: 2;
	margin-bottom: 0;
}
.form_intro p .form_label_req{
	margin-right: 5px;
	margin-left: 0;
}
@media screen and (min-width: 768px){
	.form_outer{
		margin-top: 7.95rem;
	}
	.form_intro{
		margin-bottom: 4.53rem;
	}
}
@media screen and (min-width: 1400px){
	.form_outer{
		margin-top: 8.9rem;
	}
	.form_intro{
		margin-bottom: 4.53rem;
	}
}
#form_customize{
	width: 100%;
	max-width: 840px;
}
#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
    background-color: #fff;
    border: none;
    padding: 1.15rem 1rem;
	font-size: 1rem;
	font-weight: 500;
    margin: 0;
    width: 100%;
	border-radius: 0;
	line-height: 1.5;
	outline: none;
	resize: none;
}
#form_customize input[type="text"], #form_customize input[type="email"], #form_customize input[type="tel"], #form_customize textarea, #form_customize select{
	color: #000;
}
#form_customize input:focus, #form_customize select:focus, #form_customize textarea:focus{
	outline: none;
}
#form_customize .form_block{
	margin-bottom: 2rem;
}
/* プレースホルダー */
#form_customize .wpcf7-form-control::placeholder{
	color: #d1d1d1;
	opacity: 1;
}
/* ラベル */
#form_customize .form_c_label{
	font-size: 1.01rem;
	margin-bottom: 0.75rem;
	line-height: 1.5;
	color: #000;
}
/* 必須 */
.form_label_req{
	margin-left: 5px;
	color: #c31a00;
}
/* 入力してください */
#form_customize .wpcf7-not-valid-tip{
	font-size: 0.88rem;
	color: #c40000;
}
/* 個人情報 */
#form_customize .form_c_agree{
	border-bottom: none;
	margin-top: 1.5rem;
	margin-bottom: 2.033rem;
	text-align: center;
}
#form_customize .form_block.form_c_agree{
	padding-bottom: 0;
	margin-bottom: 2.7769rem;
}
#form_customize .form_block.form_c_agree::after{
	display: none;
}
#form_customize .form_c_agree .form_check_box{
	margin-bottom: 0.86rem;
}
#form_customize .form_c_agree .form_check_box .wpcf7-list-item-label{
	font-size: 1rem;
}
#form_customize .form_c_agree .form_check_box .wpcf7-list-item{
	width: 100%;
	margin-right: 0;
}
.f_note{
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0;
}
.f_note a{
	color: #000;
	text-decoration: underline;
	transition: .3s;
}
.f_note a:hover{
	opacity: 0.7;
	transition: .3s;
}
/* 送信ボタン */
#form_customize .form_c_submit{
	border-bottom: none;
	margin-bottom: 0 !important;
	padding-bottom: 0;
	position: relative;
	text-align: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#form_customize .form_block.form_c_submit{
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}
#form_customize .form_block.form_c_submit::after{
	display: none;
}
#form_customize .form_c_submit input{
	width: 100%;
	max-width: 300px;
	height: 60px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1.07rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	background-color: #000;
	color: #fff;
	border-radius: 80px;
	margin-bottom: 0;
	padding: 0;
	transition: .3s;
}
#form_customize .form_c_submit input:hover{
	opacity: 0.7;
	transition: .3s;
}
#form_customize .form_c_submit .wpcf7-spinner{
	position: absolute;
	margin: 0;
	top: 0;
	left: calc((50% + 100px) + 30px);
	transform: translateX(-50%);
}
/* リキャプチャ文章 */
.form_end_txt{
	font-size: 0.769rem;
	color: #737373;
	text-align: center;
	margin-top: 1.72rem;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.form_intro p{
		text-align: center;
	}
	#form_customize .form_block{
		margin-bottom: 2.87rem;
	}
	/* ラベル */
	#form_customize .form_c_label{
		margin-bottom: 0.94rem;
	}
	#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
		padding: 1.83rem 2rem;
	}
	/* 個人情報 */
	#form_customize .form_c_agree .form_check_box{
		margin-bottom: 10px;
	}
	/* 送信ボタン */
	#form_customize .form_block.form_c_submit{
		justify-content: center;
	}
	#form_customize .form_c_submit input{
		max-width: 400px;
		height: 80px;
	}
}
@media screen and (min-width: 1400px){
	#form_customize .form_block{
		margin-top: 3.13rem;
	}
	/* ラベル */
	#form_customize .form_c_label{
		font-size: 1.06rem;
		margin-bottom: 1.03rem;
	}
	/* 個人情報 */
	#form_customize .form_block.form_c_agree{
		margin-bottom: 3.8rem;
	}
	/* 送信ボタン */
	#form_customize .form_c_submit input{
		font-size: 1.13rem;
	}
	/* リキャプチャ文章 */
	.form_end_txt{
		font-size: 0.86rem;
		margin-top: 2.7rem;
	}
}

/* CUSTOM SELECTBOX */
#form_customize select{
	color: #000;
	-webkit-appearance: none;
    appearance: none;
}
#form_customize select.selected{
	color: #000;
}
/* CUSTOM CHECKBOX */
#form_customize .form_check_box .wpcf7-form-control{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.25rem;
}
#form_customize .form_check_box .wpcf7-list-item{
	margin: 0;
	display: block;
	width: 100%;
}
#form_customize .form_check_box label{
	cursor: pointer;
	margin-bottom: 0;
}
#form_customize .form_check_box input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
#form_customize .form_check_box .wpcf7-list-item-label{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-size: 1rem;
	color: #000;
	line-height: 1.5;
}
#form_customize .form_check_box .wpcf7-list-item-label::before, #form_customize .form_check_box .wpcf7-list-item-label::after {
	content: "";
	border-radius: inherit;
	transition: .2s;
}
#form_customize .form_check_box .wpcf7-list-item-label::before{
	left: 0;
	display: block;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	background-color: #fff;
	border-radius: 0;
	border: none;
}
#form_customize .form_check_box .wpcf7-list-item-label::after{
	position: absolute;
	top: 15px;
	left: 15px;
	width: 10px;
	height: 10px;
	background-color: #000;
	border-radius: 0;
	opacity: 0;
}
#form_customize .form_check_box input:checked ~ .wpcf7-list-item-label::after{
	opacity: 1;
}
@media screen and (min-width: 768px){
	#form_customize .form_check_box .wpcf7-list-item{
		width: auto;
		margin-right: 2.3rem;
	}
	#form_customize .form_check_box .wpcf7-list-item-label::before{
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	#form_customize .form_check_box .wpcf7-list-item-label::after{
		width: 12px;
		height: 12px;
		top: 19px;
		left: 19px;
	}
}
/* CUSTOM RADIO */
#form_customize .form_check_box.radio .wpcf7-list-item-label::before{
	border-radius: 50%;
}
#form_customize .form_check_box.radio .wpcf7-list-item-label::after{
	border-radius: 50%;
}

/* 来場希望日時 */
#form_customize .datetime{
	display: flex;
	justify-content: space-between;
}
#form_customize .datetime .select_item{
	margin-bottom: 0;
	width: calc((100% - 15px)/2);
	position: relative;
}
#form_customize .datetime .select_item::after{
	position: absolute;
	content: "";
	width: 10px;
	height: 5px;
	display: block;
	background-image: url("../images/arrow_down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
}
#form_customize .datetime select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
@media screen and (min-width: 768px){
	#form_customize .datetime .select_item{
		width: calc((100% - 20px)/2);
	}
	#form_customize .datetime .select_item::after{
		right: 2rem;
	}
}
/* 住所 */
#form_customize .add .form-input__small300{
	width: 50%;
	max-width: 340px;
	margin-bottom: 7px;
}
#form_customize #autozip{
	display: none !important;
} 
@media screen and (min-width: 768px){
	#form_customize .add .form-input__small300{
		margin-bottom: 10px;
	}
}



/* ============================ */
/* POST INDEX */
.c-post-index{
	border-top: 1px solid rgba(204,204,204,0.5);
	margin-top: 3.01rem;
	padding-top: 3.84rem;
}
.c-post-index .sg_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
.c-post-index__link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid rgba(150,150,150,0.25);
	position: relative;
}
.c-post-index__link::after{
	position: absolute;
	content: "";
	width: 5px;
	height: 7px;
	background-image: url("../images/pagenation_arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.c-post-index__link.link-prev::after{
	transform: translate(-50%,-50%) rotate(180deg);
}
.c-post-index__link.is-disable {
	opacity: 0.5;
	pointer-events: none;
}
.c-post-index__link:hover{
	text-decoration: none;
	opacity: 1;
	transition: .3s;
}
.c-post-index__text {
	line-height: 2;
	text-align: center;
	color: #000;
	font-size: 1rem;
	letter-spacing: 0;
	text-decoration: underline;
	margin: 0 30px;
	transition: .3s;
}
.c-post-index__text:hover{
	opacity: 0.7;
}
@media screen and (min-width: 992px){
	.c-post-index__text{
		margin: 0 40px;
	}
}
@media screen and (min-width: 1200px){
	.c-post-index{
		margin-top: 5.06rem;
		padding-top: 6.66rem;
	}
	.c-post-index__text{
		margin: 0 50px;
	}
}

/**************************
/* EVENT　共通
**************************/
.event_outer{
	padding: 3.84rem 0 0;
}
.ev_item{
	margin-top: 40px;
}
.ev_item:nth-of-type(1){
	margin-top: 0;
}
.ev_item a{
	color: #323232;
}
.ev_item a:hover{
	text-decoration: none;
	opacity: 1;
}
.ev_img.zoom{
	width: 100%;
	aspect-ratio: 1 / 1;
	margin-bottom: 1.238rem;
	position: relative;
}
.ev_img.zoom img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.event_end{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	letter-spacing: 0.1em;
	font-size: 1.153rem;
}
.ev_tit{
	line-height: 1.5;
	margin-bottom: 0;
}
.ev_place{
	font-size: 0.846rem;
	position: relative;
	padding-left: 16px;
	margin-top: 0.169rem;
	margin-bottom: 0;
}
.ev_place::before{
	position: absolute;
	content: "";
	width: 10px;
	height: 15px;
	display: block;
	background-image: url("../images/icon_map.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 2px;
	left: 0;
}
.ev_date{
	display: flex;
	margin-top: 1.05rem;
}
.ev_date .item{
	font-size: 0.769rem;
	background-color: #3c3c3c;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 67px;
	height: 24px;
	margin-right: 10px;
}
.ev_date .con{
	font-size: 0.84rem;
	padding-top: 2px;
}
@media screen and (min-width: 768px){
	.ev_block{
		display: flex;
		flex-wrap: wrap;
	}
	.ev_item{
		width: calc((100% - 50px)/3);
		margin-right: 25px;
		margin-top: 40px;
	}
	.ev_item:nth-of-type(2), .ev_item:nth-of-type(3){
		margin-top: 0;
	}
	.ev_item:nth-of-type(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 992px){
	.event_outer{
		padding: 7.69rem 0 0;
	}
	.ev_item{
		width: calc((100% - 100px)/3);
		margin-right: 50px;
		margin-top: 60px;
	}
	.ev_date .item{
		margin-right: 15px;
	}
	.ev_date .con{
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1400px){
	.event_outer{
		padding: 10rem 0 0;
	}
	.ev_item{
		width: calc((100% - 120px)/3);
		margin-top: 70px;
		margin-right: 60px;
	}
	.ev_img.zoom{
		margin-bottom: 1.6rem;
	}
	.event_end{
		font-size: 1.2rem;
	}
	.ev_place{
		font-size: 0.933rem;
		padding-left: 20px;
		margin-top: 0.3rem;
	}
	.ev_place::before{
		width: 12px;
		height: 18px;
		top: 3px;
	}
	.ev_date{
		margin-top: 1.46rem;
	}
	.ev_date .item{
		width: 80px;
		height: 28px;
		font-size: 0.8rem;
		margin-right: 25px;
	}
	.ev_date .con{
		font-size: 0.933rem;
	}
}
/* single */
.event_eye{
	margin-top: 2.3rem;
}
.ev_eye_comment{
	margin-top: 3.44rem;
}
.ev_btn{
	text-align: center;
	margin-top: 3.07rem;
}
.ev_btn .vm{
	background-color: #000;
	color: #fff;
	border: none;
	transition: .3s;
}
.ev_btn .vm:hover{
	background-color: #000;
	color: #fff;
	opacity: 0.7;
}
.ev_con_block{
	margin-top: 3.84rem;
}
.ev_con_img{
	margin-top: 2.3rem;
}
.ev_map.youtube{
	padding: 0;
	aspect-ratio: 7 / 4;
	margin-top: 2.3rem;
}
.form_outer .c-title1{
	margin-bottom: 1.99rem;
}
.form_outer .c-title1 .f-jp{
	font-size: 1.153rem;
}
@media screen and (min-width: 768px){
	.ev_con_block{
		margin-top: 6.66rem;
	}
	.ev_btn{
		margin-top: 4.61rem;
	}
	.ev_map.youtube{
		margin-top: 3.46rem;
	}
}
@media screen and (min-width: 1400px){
	.event_eye{
		margin-top: 3.33rem;
	}
	.ev_eye_comment{
		margin-top: 4.93rem;
	}
	.ev_btn{
		margin-top: 5.33rem;
	}
	.ev_con_block{
		margin-top: 6.66rem;
	}
	.ev_con_img{
		margin-top: 3.33rem;
	}
	.ev_map.youtube{
		margin-top: 4rem;
	}
	.form_outer .c-title1{
		margin-bottom: 3.96rem;
	}
	.form_outer .c-title1 .f-jp{
		font-size: 1.2rem;
	}
}



/**************************
/* 建築家
**************************/
/*-- modal --*/
/* モーダル本体 */
.modal_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7777;
  display: none;
  width: 100vw;
  height: 100vh;        /* 常に全画面 */
  background: #1e1e1e;
  color: #fff;
  box-sizing: border-box;
  padding-top: 100px;    /* ヘッダー余白など */
  overflow: hidden;     /* 中身は inner に任せる */
}

/* 中身ラッパー（スクロールエリア） */
.modal_box--inner {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

/* 閉じるボタン */
.modal_close {
  position: absolute;
  width: 35px;
  height: 20px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
}

/* その他 */
.modal_open {
  display: inline-flex;
}

.modal_link a {
  color: #fff;
}

.archi_modal img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px){
	/* モーダル本体 */
	.modal_box{
		padding-top: 140px;
	}
	/* 閉じるボタン */
	.modal_close{
		top: 60px;
	}
}
@media screen and (min-width: 1600px){
	.modal_box{
		padding-top: 215px;
	}
	/* 閉じるボタン */
	.modal_close{
		top: 95px;
	}
}




.archi_modal{
	width: 80%;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 60px;
}
.archi_modal_img.watermark::after{
	width: 65px;
	height: 10px;
	bottom: 5px;
	right: 10px;
	filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}
.archi_modal_txtArea{
	color: #bebebe;
}
.archi_modal_profile{
	margin-bottom: 3.61rem;
}
.archi_modal_profile .f25{
	letter-spacing: 0.06em;
	color: #fff;
	margin-bottom: 0.738rem;
}
.modal_archi_office{
	font-size: 0.769rem;
	margin-bottom: 1.838rem;
}
.modal_archi_office .f-eng{
	letter-spacing: 0;
}
.archi_modal_profile .txt_block, .modal_archi_message .txt_block{
	text-align: justify;
	line-height: 1.86;
}
.modal_archi_message .title{
	color: #fff;
	font-size: 1.07rem;
	letter-spacing: 0;
	margin-bottom: 1.4rem;
}
.modal_archi_message .f20{
	margin-bottom: 0.89rem;
}
@media screen and (min-width: 768px){
	.archi_modal{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding-bottom: 100px;
	}
	.archi_modal_img, .archi_modal_txtArea{
		width: 45.45%;
	}
	.archi_modal_txtArea{
		align-self: center;
	}
	.modal_archi_office{
		font-size: 0.84rem;
	}
}
@media screen and (min-width: 992px){
	.archi_modal_img.watermark::after{
		width: 70px;
		bottom: 10px;
		right: 15px;
	}
}
@media screen and (min-width: 1400px){
	.archi_modal_img.watermark::after{
		width: 75px;
		height: 12px;
		bottom: 15px;
		right: 20px;
	}
	.archi_modal_profile{
		margin-bottom: 4.43rem;
	}
	.archi_modal_profile .f25{
		margin-bottom: 0.9rem;
	}
	.modal_archi_office{
		font-size: 0.86rem;
		margin-bottom: 2.63rem;
	}
	.modal_archi_message .title{
		font-size: 1.2rem;
		margin-bottom: 1.66rem;
	}
	.modal_archi_message .f20{
		margin-bottom: 1.23rem;
	}
}
@media screen and (min-width: 1600px){
	.archi_modal{
		padding-bottom: 95px;
	}
}
@media screen and (max-width: 767px){
	.archi_modal_img{
		margin-bottom: 3.44rem;
	}
}

/**************************
/* ESTAE　共通
**************************/
.archive-estate-search-wrap{
	position: relative;
	padding: 2.5rem 2.5rem 3rem;
}
.archive-estate-search-wrap::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: -1;
}
.estate_item{
	margin-top: 3.34rem;
	position: relative;
}
.estate_item::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: -1;	
}
.estate_item:nth-of-type(1){
	margin-top: 0;
}
.estate_item a{
	color: #323232;
}
.estate_item a:hover{
	text-decoration: none;
	opacity: 1;
}
.estate_img.zoom{
	width: 100%;
	aspect-ratio: 165 / 103;
	position: relative;
}
.estate_img.zoom img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.estate_txtArea{
	width: 86%;
	margin-right: auto;
	margin-left: auto;
	padding: 1.7rem 0 2.5rem;
}
.estate_term{
	width: 80px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.923rem;
	z-index: 1;
	margin-bottom: 1.238rem;
}
.estate_term.sale{
	color: #fff;
	background-color: #000;
	border: 1px solid #000;
}
.estate_term.used-house{
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
}
.estate_term.leased{
	color: #fff;
	background-color: #8c8c8c;
	border: 1px solid #8c8c8c;
}
.estate_tit{
	font-size: 1.07rem;
	line-height: 1.5;
	margin-bottom: 1.338rem;
}
.estate_details_flex{
	display: flex;
}
.estate_details_flex + .estate_details_flex{
	margin-top: 8px;
}
.estate_details_flex.es_price{
	align-items: center;
}
.estate_details_item, .estate_details_con{
	line-height: 1.5;
}
.estate_details_item{
	text-align: justify;
	text-align-last: justify;
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
	width: 65px;
}
.estate_details_item::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 14px;
	top: 2px;
	right: 0;
	background-color: #000;
}
.estate_details_con{
	width: calc(100% - (65px + 10px));
}
.es_price .estate_details_con span{
	font-size: 1.5rem;
	margin-right: 2px;
	line-height: 1;
}
@media screen and (min-width: 768px){
	.estate_block{
		display: flex;
		flex-wrap: wrap;
	}
	.estate_item{
		width: calc((100% - 25px)/2);
		margin-right: 25px;
	}
	.estate_item:nth-of-type(2){
		margin-top: 0;
	}
	.estate_item:nth-of-type(2n){
		margin-right: 0;
	}
}
@media screen and (min-width: 992px){
	.estate_acv_flex{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.archive-estate-search-wrap{
		width: 250px;
		padding: 2.5rem 2rem 3rem;
		position: sticky;
		top: 100px;
	}
	.estate_acv_content{
		width: calc((100% - 250px) - 7%);
	}
}
@media screen and (min-width: 1200px){
	.archive-estate-search-wrap{
		top: 130px;
	}
	.estate_txtArea{
		width: 83.333%;
	}
	.estate_term{
		width: 90px;
		height: 30px;
		font-size: 0.866rem;
	}
	.estate_tit{
		font-size: 1.133rem;
		margin-bottom: 1.166rem;
	}
	.estate_details_item, .estate_details_con{
		font-size: 0.866rem;
	}
}
@media screen and (min-width: 1400px){
	.archive-estate-search-wrap{
		width: 300px;
	}
	.estate_acv_content{
		width: calc((100% - 300px) - 7%);
	}
	.estate_item{
		width: calc((100% - 60px)/3);
		margin-top: 4.68rem;
		margin-right: 30px;
	}
	.estate_item:nth-of-type(2n){
		margin-right: 30px;
	}
	.estate_item:nth-of-type(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1600px){
	.estate_item:nth-of-type(3){
		margin-top: 0;
	}
}
@media screen and (min-width: 1800px){
	.container_acv.estate_acv{
		width: 77.777%;
	}
	.estate_item{
		width: calc((100% - 80px)/3);
		margin-right: 40px;
	}
	.estate_item:nth-of-type(2n){
		margin-right: 40px;
	}
	.estate_item:nth-of-type(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1599px){
	.estate_item{
		width: calc((100% - 30px)/2);
		margin-right: 30px;
	}
	.estate_item:nth-of-type(3n){
		margin-right: 30px;
	}
	.estate_item:nth-of-type(2n){
		margin-right: 0;
	}
}
@media screen and (max-width: 767px){
	.estate_tit{
		font-size: 1.1538rem;
	}
}
/* Search Filter */
.sf_item + .sf_item{
	margin-top: 1.723rem;
}
.archive-estate-search-wrap .search-filter-label{
	font-size: 1.066rem;
	color: #000;
	font-weight: 500;
}
.archive-estate-search-wrap #search-filter-input-combobox-0::placeholder, .archive-estate-search-wrap #search-filter-input-combobox-1::placeholder{
	font-size: 1rem;
}
.archive-estate-search-wrap .search-filter-component-combobox-base{
	border: 1px solid rgba(180,180,180,0.5);
	border-radius: 0;
	padding-left: 1rem;
}
.archive-estate-search-wrap .search-filter-component-combobox-base--focused:hover{
	border: 1px solid rgba(180,180,180,0.5);
	border-radius: 0;
}
.archive-estate-search-wrap .search-filter-component-combobox .search-filter-component-combobox__selection, .archive-estate-search-wrap .search-filter-component-combobox input[type="text"], .archive-estate-search-wrap .search-filter-input-checkbox__label{
	font-size: 1rem;
	color: #000;
	font-weight: 500;
}
.archive-estate-search-wrap #search-filter-input-checkbox-0{
	display: flex;
	flex-wrap: wrap;
}
.archive-estate-search-wrap #search-filter-input-checkbox-0 .search-filter-input-checkbox{
	margin-right: 20px;
}
.archive-estate-search-wrap .search-filter-input-checkbox__control{
	display: none;
}
.archive-estate-search-wrap .search-filter-input-checkbox__label{
	position: relative;
	padding-left: 18px;
}
.archive-estate-search-wrap .search-filter-input-checkbox__label::before{
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	border: 1px solid rgba(180,180,180,0.5);
	display: block;
	top: 4px;
	left: 0;
}
.archive-estate-search-wrap .search-filter-input-checkbox__label::after{
	position: absolute;
	content: "";
	background-image: url("../images/check.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 8px;
	height: 8px;
	top: 7px;
	left: 3px;
	opacity: 0;
}
.archive-estate-search-wrap .search-filter-input-checkbox--is-active .search-filter-input-checkbox__label::after{
	opacity: 1;
}
.archive-estate-search-wrap .search-filter-input-button{
	max-width: 200px;
	border-radius: 40px;
	margin: 0 auto !important;
	font-size: 1rem !important;
	color: #000;
	font-weight: 500;
	height: 45px;
	border: 1px solid rgba(180,180,180,0.5);
	transition: .3s;
}
.archive-estate-search-wrap .search-filter-input-button:hover, .archive-estate-search-wrap .search-filter-input-button:focus{
	background-color: #000 !important;
	border: 1px solid rgba(0,0,0,0.5) !important;
	color: #fff !important;
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.archive-estate-search-wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 3.5rem 4rem 3rem;
	}
	.sf_item{
		width: 100%;
	}
	.sf_item.half_768{
		width: calc((100% - 30px)/2);
	}
	.sf_item.half_768 + .sf_item.half_768{
		margin-top: 0;
		margin-left: 30px;
	}
}
@media screen and (min-width: 1200px){
	.archive-estate-search-wrap{
		padding: 3rem 2rem 3.5rem;
	}
	.archive-estate-search-wrap .search-filter-label{
		font-size: 1rem;
	}
	.archive-estate-search-wrap .search-filter-input-checkbox__label{
		padding-left: 20px;
		font-size: 1rem;
	}
	.archive-estate-search-wrap #search-filter-input-combobox-0::placeholder, .archive-estate-search-wrap #search-filter-input-combobox-1::placeholder{
		font-size: 0.866rem;
	}
	.archive-estate-search-wrap .search-filter-component-combobox .search-filter-component-combobox__selection, .archive-estate-search-wrap .search-filter-component-combobox input[type="text"], .archive-estate-search-wrap .search-filter-input-checkbox__label{
		font-size: 0.866rem;
	}
	.archive-estate-search-wrap .search-filter-input-button{
		height: 50px;
		font-size: 0.866rem !important;
	}
}
.search-filter-component-combobox-base__listbox{
	border: 1px solid rgba(180,180,180,0.5) !important;
}
.search-filter-component-combobox-base__listbox-option{
	font-size: 1rem !important;
	padding: .5em 1rem !important;
}
@media screen and (min-width: 1200px){
	.search-filter-component-combobox-base__listbox-option{
		font-size: 0.866rem !important;
	}
}

/**************************
/* ESTATE　single
**************************/
.estate_sgl_main{
	max-width: 900px;
}
/* メインスライダー */
.es_gallery {
  width: 100%;
}
.es_gallery .es_gallery-item {
  position: relative;
  aspect-ratio: 308 / 191;
}
.es_gallery .es_gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイルスライダー */
.es_gallery-thumb{
	margin: 10px -5px 0;
}
.es_gallery-thumb .es_gallery-thumb-item {
	aspect-ratio: 308 / 191;
	opacity: 0.5;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
	padding: 0 5px;
}
.es_gallery-thumb .es_gallery-thumb-item.slick-current{
	opacity: 1;
}
.es_gallery-thumb .es_gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px){
	.es_gallery-thumb {
		margin: 14px -7px 0;
	}
	.es_gallery-thumb .es_gallery-thumb-item{
		padding: 0 7px;
	}
}
@media screen and (min-width: 1200px){
	.es_gallery-thumb {
		margin: 20px -10px 0;
	}
	.es_gallery-thumb .es_gallery-thumb-item{
		padding: 0 10px;
	}
}
/* 説明・PDF */
.es_des{
	margin-top: 2.3rem;
	padding: 2rem 0 1.5rem;
}
.es_des .inner{
	width: 84%;
	margin: 0 auto;
}
.es_btn{
	margin-top: 2.3rem;
}
.es_btn .vm{
	background-color: #000;
	color: #fff;
	border: 1px solid rgba(0,0,0,0.5);
	width: 230px;
}
.es_btn .vm:hover{
	opacity: 0.7;
}
@media screen and (min-width: 768px){
	.es_des{
		margin-top: 2.69rem;
		padding: 2.5rem 0;
	}
	.es_des .inner{
		display: flex;
		align-items: flex-end;
	}
	.es_description{
		flex: 1;
	}
	.es_printing{
		text-align: right;
	}
	.es_printing a{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 130px;
		height: 40px;
		font-size: 0.846rem;
		background-color: #fff;
		color: #000;
		border: 1px solid rgba(180,180,180,0.5);
		border-radius: 45px;
		transition: .3s;
	}
	.es_printing a:hover{
		text-decoration: none;
		background-color: #000;
		color: #fff;
		border: 1px solid rgba(0,0,0,0.5);
	}
	.es_btn{
		margin-top: 2.69rem;
	}
}
@media screen and (min-width: 1200px){
	.es_des{
		margin-top: 3.33rem;
		padding: 3rem 0;
	}
	.es_printing a{
		font-size: 0.8666rem;
		width: 150px;
		height: 45px;
	}
	.es_btn{
		margin-top: 3.33rem;
	}
	.es_btn .vm{
		width: 300px;
	}
}
@media screen and (min-width: 1400px){
	.es_btn .vm{
		width: 320px;
	}
}
@media screen and (max-width: 767px){
	.es_printing{
		display: none;
	}
}
/* 概要 */
.es_table th, .es_table td{
	border: 1px solid #dee2e6;
}




/**************************
/* INFORMATION　共通
**************************/
.info_item a{
	display: block;
}
.info_item a:hover{
	text-decoration: none;
}
.info_img.zoom{
	aspect-ratio: 4 / 3;
	position: relative;
	margin-bottom: 1.23rem;
}
.info_img.zoom img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info_cat{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #3c3c3c;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.03em;
	font-size: 0.76rem;
	width: 82px;
	height: 25px;
}
.info_tit{
	font-size: 1.07rem;
	color: #000;
	margin-bottom: 0.58rem;
}
.info_date{
	color: #8b8b8b;
	font-size: 0.76rem;
	letter-spacing: 0.03em;
	margin-bottom: 0;
}
@media screen and (min-width: 1200px){
	.info_tit{
		font-size: 1rem;
		letter-spacing: 0.06em;
	}
}
@media screen and (min-width: 1400px){
	.info_img.zoom{
		margin-bottom: 1.36rem;
	}
	.info_cat{
		font-size: 0.73rem;
		width: 90px;
		height: 27px;
		margin-bottom: 0.66rem;
	}
	.info_date{
		font-size: 0.73rem;
	}
}
/* archive */
.info_acv_container{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.info_acv_nav{
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.info_acv_nav li{
	list-style: none;
	position: relative;
	padding-top: 11px;
}
.info_acv_nav li.active::before{
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #000;
}
.info_acv_nav li + li{
	margin-left: 40px;
}
.info_acv_nav li a{
	display: block;
	letter-spacing: 0.03em;
	font-size: 1.153rem;
	color: rgba(0,0,0,0.3);
}
.info_acv_nav li a:hover{
	text-decoration: none;
}
.info_acv_nav li.active a{
	color: #000;
}
.info_block .info_item{
	margin-top: 2.77rem;
}
.info_block .info_item:nth-of-type(1){
	margin-top: 0;
}
@media screen and (min-width: 768px){
	.info_acv_container{
		width: 85.9375%;
	}
	.info_block{
		display: flex;
		flex-wrap: wrap;
	}
	.info_block .info_item{
		width: calc((100% - 50px)/3);
		margin-right: 25px;
	}
	.info_block .info_item:nth-of-type(2), .info_block .info_item:nth-of-type(3){
		margin-top: 0;
	}
	.info_block .info_item:nth-of-type(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 992px){
	.info_acv_nav{
		margin-bottom: 4rem;
	}
	.info_acv_nav li + li{
		margin-left: 50px;
	}
	.info_block .info_item{
		width: calc((100% - 75px)/4);
		margin-right: 25px;
		margin-top: 3.44rem;
	}
	.info_block .info_item:nth-of-type(4){
		margin-top: 0;
	}
	.info_block .info_item:nth-of-type(3n){
		margin-right: 25px;
	}
	.info_block .info_item:nth-of-type(4n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1400px){
	.info_acv_nav{
		margin-bottom: 4.73rem;
	}
	.info_acv_nav li + li{
		margin-left: 60px;
	}
	.info_acv_nav li a{
		font-size: 1.2rem;
	}
	.info_block .info_item{
		width: calc((100% - 120px)/4);
		margin-right: 30px;
		margin-top: 4.31rem;
	}
}
@media screen and (min-width: 1800px){
	.info_acv_container{
		width: 76.11%;
	}
}
/* single */
.s_info_main{
	margin-bottom: 2.67rem;
}
.container_single .info_cat{
	position: static;
	margin-bottom: 1.23rem;
}
.info_eye{
	margin-top: 2.13rem;
}
.info_contents{
	line-height: 1.78;
}
@media screen and (min-width: 768px){
	.container_single .info_cat{
		margin-bottom: 1.36rem;
	}
}
@media screen and (min-width: 1200px){
	.info_contents{
		font-size: 0.933rem;
	}
}
@media screen and (min-width: 1400px){
	.s_info_main{
		margin-bottom: 3.6rem;
	}
	.container_single .info_cat{
		margin-bottom: 1.36rem;
	}
	.info_eye{
		margin-top: 3.23rem;
	}
}
/* その他の記事 */
.single_other{
	position: relative;
	margin-top: 3.5rem;
	padding-top: 4.46rem;
}
.single_other::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background-color: rgba(179,179,179,0.5);
}
.single_other .c-title1{
	font-size: 2.3rem;
}
.single_other .c-title1 .f-jp{
	color: #000;
	font-weight: 500;
	font-size: 1.153rem;
}
.other_list_btn{
	text-align: center;
	margin-top: 2.29rem;
}
.other_list_btn .vm{
	border: none;
	background-color: #000;
	color: #fff;
	transition: .3s;
}
.other_list_btn .vm:hover{
	border: none;
	background-color: #000;
	color: #fff;
	opacity: 0.7;
}
@media screen and (min-width: 768px){
	.single_other .c-title1{
		font-size: 2.69rem;
	}
	.single_other .info_block{
		justify-content: center;
	}
	.other_list_btn{
		margin-top: 3.73rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.single_other .info_block .info_item:nth-of-type(4){
		display: none;
	}
}
@media screen and (min-width: 992px){
	.single_other{
		margin-top: 6rem;
		padding-top: 6.8rem;
	}
}
@media screen and (min-width: 1400px){
	.single_other{
		margin-top: 7.166rem;
		padding-top: 7.6rem;
	}
	.single_other .c-title1{
		font-size: 3.33rem;
	}
	.single_other .c-title1 .f-jp{
		font-size: 1.2rem;
	}
	.other_list_btn{
		margin-top: 4.36rem;
	}
}


/**************************
/* GALLERY
**************************/
/* archive */
.gallery_acv_container{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.gallery_block{
	margin-bottom: 0;
}
.gallery_block .gallery_item{
	text-align: center;
	margin-top: 2.77rem;
}
.gallery_block .gallery_item:nth-of-type(1){
	margin-top: 0;
}
.gallery_item a{
	display: block;
}
.gallery_item a:hover{
	text-decoration: none;
}
.gallery_img.zoom{
	margin-bottom: 1.23rem;
}
.gallery_tit{
	color: #323232;
	line-height: 1.5;
	margin-bottom: 0;
}
.gallery_small{
	color: #828282;
	font-size: 0.769rem;
	margin-top: 0.3rem;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.gallery_acv_container{
		width: 85.9375%;
	}
	.gallery_block{
		display: flex;
		flex-wrap: wrap;
	}
	.gallery_block .gallery_item{
		width: calc((100% - 50px)/2);
		margin-right: 50px;
	}
	.gallery_block .gallery_item:nth-of-type(2){
		margin-top: 0;
	}
	.gallery_block .gallery_item:nth-of-type(2n){
		margin-right: 0;
	}
}
@media screen and (min-width: 992px){
	.gallery_block .gallery_item{
		width: calc((100% - 80px)/3);
		margin-right: 40px;
	}
	.gallery_block .gallery_item:nth-of-type(3){
		margin-top: 0;
	}
	.gallery_block .gallery_item:nth-of-type(2n){
		margin-right: 40px;
	}
	.gallery_block .gallery_item:nth-of-type(3n){
		margin-right: 0;
	}
}
@media screen and (min-width: 1400px){
	.gallery_block .gallery_item{
		width: calc((100% - 120px)/3);
		margin-right: 60px;
		margin-top: 3.7rem;
	}
	.gallery_block .gallery_item:nth-of-type(2n){
		margin-right: 60px;
	}
	.gallery_block .gallery_item:nth-of-type(3n){
		margin-right: 0;
	}
	.gallery_img.zoom{
		margin-bottom: 1.7rem;
	}
	.gallery_small{
		font-size: 0.8rem;
		margin-top: 0.83rem;
	}
}
@media screen and (min-width: 1800px){
	.gallery_acv_container{
		width: 77.77%;
	}
}
/* single */
.gallery_area{
	display: flex;
	position: relative;
	font-size: 0.84rem;
	padding: 0.94rem 0;
	margin-top: 1.52rem;
}
.gallery_area::before, .gallery_area::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(179,179,179,0.5);
	left: 0;
}
.gallery_area::before{
	top: 0;
}
.gallery_area::after{
	bottom: 0;
}
.gallery_area .item{
	width: 37%;
}
.gallery_area .con{
	width: 63%;
}
.gallery_btn{
	margin-top: 3.07rem;
}
.gallery_btn .vm{
	border: none;
	background-color: #323232;
	color: #fff;
}
.gallery_btn .vm:hover{
	background-color: #323232;
	color: #fff;
	opacity: 0.7;
}
.gallery_sigle_img .info_contents{
	margin-top: 3rem;
}
@media screen and (min-width: 768px){
	.gallery_single_flex{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.gallery_eye_sp{
		display: none;
	}
	.gallery_eye_pc{
		display: block;
	}
	.gallery_single_tit{
		width: 28%;
		position: sticky;
		top: 100px;
	}
	.gallery_sigle_img{
		width: 65%;
	}
	.gallery_btn{
		margin-top: 3.84rem;
	}
	.gallery_sigle_img .info_contents{
		margin-top: 4rem;
	}
}
@media screen and (min-width: 992px){
	.gallery_single_tit{
		width: 25%;
		top: 120px;
	}
}
@media screen and (min-width: 1200px){
	.gallery_single_tit{
		top: 200px;
	}
}
@media screen and (min-width: 1400px){
	.gallery_btn{
		margin-top: 4rem;
	}
	.gallery_area{
		font-size: 0.8rem;
		padding: 1.42rem 0;
		margin-top: 1.93rem;
	}
	.gallery_sigle_img .info_contents{
		margin-top: 5rem;
	}
}
@media screen and (max-width: 767px){
	.gallery_eye_sp{
		display: block;
		margin-bottom: 2.67rem;
	}
	.gallery_eye_pc{
		display: none;
	}
	.gallery_sigle_img{
		margin-top: 3.84rem;
	}
}
.works_contents{
	margin-bottom: 0;
}
.works_contents li{
	list-style: none;
}
.works_img{
	margin-bottom: 5px;
}
.works_contents li:last-child .works_img:nth-last-child(2), .works_contents li:last-child .works_img:last-child{
	margin-bottom: 0;
}
.works_img_flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.works_img_flex .works_img{
	width: calc((100% - 5px)/2);
}
#main2 .works_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* その他の施工例 */
.single_other.gallery_other{
	margin-top: 5.76rem;
}
@media screen and (min-width: 992px){
	.single_other.gallery_other{
		margin-top: 8.65rem;
	}
}
@media screen and (min-width: 1200px){
	.single_other.gallery_other{
		margin-top: 10rem;
	}
}
/**************************
/* TOP designcasa GALLERY
**************************/
.gallery_slide_l, .gallery_slide_r {
	overflow: hidden;
	width: 100%;
}
.gallery_slide_r {
	margin-top: 10px;
}
.gallery_slide_flex {
	display: flex;
	flex-wrap: nowrap;
}
.gallery_slide_item {
	flex: 0 0 auto;
	width: 200px;       /* 最小幅 */
	margin-right: 10px;
}
.gallery_slide_item a{
	display: block;
	position: relative;
	aspect-ratio: 25 / 18;
}
.gallery_slide_item img, #page-main .gallery_slide_item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.gallery_slide_item .gallery_title {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: rgba(0,0,0,0.5);
	padding: 5px 10px;
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.153rem;
	letter-spacing: 0.06em;
}
.gallery_slide_item a:hover .gallery_title {
	opacity: 1;
}
#t_gallery .vm{
	margin-top: 3.076rem;
}
@media screen and (min-width: 768px){
	.gallery_slide_r{
		margin-top: 30px;
	}
	.gallery_slide_item{
		width: 300px;
		margin-right: 30px;
	}
}
@media screen and (min-width: 992px){
	.gallery_slide_item{
		width: 350px;
	}
	#t_gallery .vm{
		margin-top: 4.23rem;
	}
}
@media screen and (min-width: 1400px){
	.gallery_slide_r{
		margin-top: 40px;
	}
	.gallery_slide_item{
		width: 400px;
		margin-right: 40px;
	}
	.gallery_slide_item .gallery_title{
		font-size: 1.2rem;
	}
	#t_gallery .vm{
		margin-top: 4.66rem;
	}
}
@media screen and (min-width: 1600px){
	.gallery_slide_r{
		margin-top: 50px;
	}
	.gallery_slide_item{
		width: 450px;
		margin-right: 50px;
	}
}

/**************************
/* TOP designcasa 建築家
**************************/
/*-- slide --*/
.dc_arch_slide {
  overflow: hidden;
  width: 100%;
}

.dc_arch_flex {
  display: flex;
  flex-wrap: nowrap;
}

.dc_arch_item {
  flex: 0 0 auto;
  width: 240px;  /* 各アイテム幅（調整可） */
	aspect-ratio: 11 / 7;
}
.dc_arch_item a{
	cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	transition: .3s;
}
.dc_arch_img{
	width: 100%;
	height: 100%;
	display: block;
}
.dc_arch_img.watermark::after{
	width: 65px;
	height: 10px;
	bottom: 5px;
	right: 10px;
	filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}
.dc_arch_img img, #page-main .dc_arch_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.dc_arch_item a:hover{
	text-decoration: none;
}
@media screen and (min-width: 768px){
	.dc_arch_item{
		width: 300px;
	}
}
@media screen and (min-width: 992px){
	.dc_arch_item{
		width: 320px;
	}
	.dc_arch_img.watermark::after{
		width: 70px;
		bottom: 10px;
		right: 15px;
	}
}
@media screen and (min-width: 1400px){
	.dc_arch_item{
		width: 400px;
	}
	.dc_arch_img.watermark::after{
		width: 75px;
		height: 12px;
		bottom: 15px;
		right: 20px;
	}
}
@media screen and (min-width: 1600px){
	.dc_arch_item{
		width: 550px;
	}
}
/*******************************
/* モデルハウス
*******************************/
/* modelhouse archive */
.model_item{
	margin-top: 3.84rem;
}
.model_item:nth-of-type(1){
	margin-top: 0;
}
.model_imgArea{
	display: flex;
	position: relative;
	aspect-ratio: 11 / 6;
	margin-bottom: 2.69rem;
}
.model_imgArea::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
}
.model_img_item{
	width: 50%;
}
.model_img_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.model_exterior{
	position: absolute;
	width: 40%;
	height: 100px;
	bottom: -20px;
	right: 0;
	z-index: 1;
}
.model_exterior img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}
.model_item .f25{
	margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px){
	.model_block{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.model_item{
		width: calc((100% - 40px)/2);
	}
	.model_item:nth-of-type(2){
		margin-top: 0;
	}
}
@media screen and (min-width: 992px){
	.model_item{
		width: calc((100% - 50px)/2);
	}
	.model_imgArea{
		margin-bottom: 3.41rem;
	}
	.model_exterior{
		height: 140px;
		bottom: -25px;
	}
}
@media screen and (min-width: 1200px){
	.model_item{
		margin-top: 4rem;
	}
	.model_imgArea{
		margin-bottom: 3.2rem;
	}
	.model_item .f25{
		margin-bottom: 1.73rem;
	}
}
@media screen and (min-width: 1400px){
	.model_item{
		width: calc((100% - 80px)/2);
		margin-top: 5.33rem;
	}
	.model_exterior{
		height: 160px;
		bottom: -30px;
	}
	.model_item .f25{
		margin-bottom: 1.96rem;
	}
}
@media screen and (min-width: 1600px){
	.model_imgArea{
		margin-bottom: 4.03rem;
	}
	.model_exterior{
		height: 180px;
		bottom: -35px;
	}
}
/*** modelhouse single ***/
.container_model{
	width: 84.615%;
	margin-right: auto;
	margin-left: auto;
}
.container_model h1{
    font-size: 1.3rem;
	color: #323232;
    text-align: center;
    line-height: 1.5;
	margin-bottom: 2.57rem;	
}
@media screen and (min-width: 768px){
	.container_model{
		width: 83.33%;
	}
	.container_model h1{
		font-size: 1.53rem;
	}
}
@media screen and (min-width: 992px){
	.container_model h1{
		margin-bottom: 4.5rem;
	}
}
@media screen and (min-width: 1400px){
	.container_model{
		width: 77.77%;
		max-width: 1200px;
	}
	.container_model h1{
		font-size: 2rem;
		margin-bottom: 4.63rem;
	}
}
/* メインスライダー */
.model_main-swiper {
  width: 100%;
  margin: 0 auto;
}
.model_main-swiper .swiper-slide {
  position: relative;
  aspect-ratio: 16 / 9;
}
.model_main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイルスライダー */
.model_thumb-swiper {
  width: 100%;
  margin: 10px auto 0;
}
.model_thumb-swiper .swiper-slide {
	width: 80px; /* サムネイルサイズ */
	aspect-ratio: 16 / 9;
	opacity: 0.5;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.model_thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.model_thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 見どころポイント */
.model_point{
	margin-top: 5.38rem;
	padding: 4.69rem 0 4.84rem;
}
.model_point_block{
	margin-bottom: 0;
}
.model_point_block li{
	list-style: none;
	margin-top: 2.57rem;
}
.model_point_block li:first-child{
	margin-top: 0;
}
.model_point_img{
	margin-bottom: 1.92rem;
}
.model_point_no{
	letter-spacing: 0;
	font-size: 0.84rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #3c3c3c;
	color: #fff;
	width: 90px;
	height: 26px;
	border-radius: 40px;
	margin-bottom: 1.138rem;
}
.model_point_tit{
	margin-bottom: 0;
}
.model_point_comment{
	margin-top: 0.538rem;
}
@media screen and (min-width: 768px){
	.model_point_block{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.model_point_block li{
		width: calc((100% - 40px)/2);
		margin-top: 3.34rem;
	}
	.model_point_block li:nth-child(2){
		margin-top: 0;
	}
}
@media screen and (min-width: 992px){
	.model_point{
		margin-top: 8.46rem;
		padding: 7.76rem 0 7.84rem;
	}
	.model_point_block li{
		width: calc((100% - 50px)/2);
	}
}
@media screen and (min-width: 1200px){
	.model_point_no{
		font-size: 0.86rem;
		width: 100px;
		height: 30px;
	}
}
@media screen and (min-width: 1400px){
	.model_point{
		margin-top: 10rem;
		padding: 9.2rem 0 9.53rem;
	}
	.model_point_block li{
		width: calc((100% - 60px)/2);
		margin-top: 4.93rem;
	}
}
/* プラン */
.model_plan{
	margin: 4.68rem auto 5.38rem;
}
.model_plan_img{
	mix-blend-mode: multiply;
	margin-bottom: 2.3rem;
}
.model_plan_detail{
	width: 100%;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (min-width: 992px){
	.model_plan{
		margin: 7.66rem auto 8.46rem;
	}
	.model_plan_img{
		margin-bottom: 3.07rem;
	}
}
@media screen and (min-width: 1200px){
	.model_plan_img{
		margin-bottom: 3.33rem;
	}
}
@media screen and (min-width: 1400px){
	.model_plan{
		margin: 9rem auto 10rem;
	}
}
/* モデルハウス概要 */
.model_info{
	padding: 4.69rem 0 4.84rem;
}
.model_info .container_model{
	max-width: 700px;
}
.model_map{
	margin-top: 3.07rem;
}
@media screen and (min-width: 992px){
	.model_info{
		padding: 7.76rem 0 7.84rem;
	}
	.model_map{
		margin-top: 4.61rem;
	}
}
@media screen and (min-width: 1400px){
	.model_info{
		padding: 9.2rem 0 9.53rem;
	}
	.model_map{
		margin-top: 5.33rem;
	}
}
/* モデルハウスお問い合わせ */
.model_contact{
	margin-top: 4.68rem;
}
@media screen and (min-width: 992px){
	.model_contact{
		margin-top: 7.66rem;
	}
}
@media screen and (min-width: 1400px){
	.model_plan{
		margin-top: 9rem;
	}
}