@charset "utf-8";

/*
Theme Name:心工務店-2509
Description:心工務店-2509変更
*/

/*----部品----*/
/*見出し*/
/*レベル1*/
.level1_heading {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 45px;
  text-align: center;
  color: #1a2937;
}
.level1_heading span {
  color: currentColor;
  font-size: 2rem;
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.home .level1_heading,
.about_sec .level1_heading,
.realestate_sec .level1_heading {
  text-transform: uppercase;
}

.level1_heading span:before {
  content: "";
  display: block;
  width: 150px;
  height: 7px;
  background: -webkit-repeating-linear-gradient(
    -45deg,
    #1a2937,
    #1a2937 2px,
    transparent 2px,
    transparent 4px
  );
  background: repeating-linear-gradient(
    -45deg,
    #1a2937,
    #1a2937 2px,
    transparent 2px,
    transparent 4px
  );
  /* 位置調整 */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 15px);
}

/*レベル2*/
.level2_heading {
  border-bottom: solid 1px #1a2937;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* ページ見出し */
.page-title {
  font-size: 2rem;
  text-align: center;
}

/*ボタン*/
.btn {
  display: inline-block;
  width: 350px;
  max-width: 100%;
  text-align: center;
  font-size: 1.125rem;
  color: #1a2937;
  font-weight: bold;
  padding: 15px 25px 15px 5px;
  transition: 0.25s;
  border: solid 1px #7d8c96;
  border-radius: 5px;
  position: relative;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #7d8c96;
  margin-left: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ホバー時 */
.btn:hover {
  color: #ffffff;
  background-color: #1a2937;
  border-color: #1a2937;
}
.btn:hover::after {
  background-color: #ffffff;
}

/* 影付きボタン */
.btn-boxhsadow {
  display: inline-block;
  width: 250px;
  text-align: center;
  font-weight: bold;
  max-width: 100%;
  font-size: 1.125em;
  color: #1a2937;
  border: solid 1px currentColor;
  box-shadow: 5px 5px currentColor;
  padding: 0.8em 1.2em;
  transition: 0.25s;
}
.btn-boxhsadow:hover {
  opacity: 0.65;
}

/* ボタン大 */
.btn-large {
  width: 500px;
}

/* ボタンピンク */
.btn-pk {
  color: #ffffff;
  background-color: #f75cbc;
  border-color: #f75cbc;
}
.btn-pk:after {
  background-color: #ffffff;
}
.btn-pk:hover {
  background-color: #ffffff;
  color: #f75cbc;
}
.btn-pk:hover:after {
  background-color: #f75cbc;
}

/* ボタングリーン */
.btn-gr {
  color: #ffffff;
  background-color: #2da794;
  border-color: #2da794;
}
.btn-gr:after {
  background-color: #ffffff;
}

/* ボタンボルドー */
.btn-bordeaux {
  color: #ffffff;
  background-color: #9b322d;
  border-color: #9b322d;
}
.btn-bordeaux:after {
  background-color: #ffffff;
}
.btn-bordeaux:hover,
.btn-bordeaux:focus {
  background-color: #ffffff;
  color: #9b322d;
  border-color: #9b322d;
}
.btn-bordeaux:hover:after,
.btn-bordeaux:focus:after {
  background-color: #9b322d;
}

/* ボタンネイビー */
.btn-navy {
  color: #ffffff;
  background-color: #1a2937;
  border-color: #1a2937;
}
.btn-navy:after {
  background-color: #ffffff;
}

/* アイコン付きボタン */
.btn_before-icon:before {
  display: inline-block;
  margin-right: 0.8em;
  vertical-align: middle;
  line-height: 1;
  transform: translateY(-2px);
}
.btn_before-icon_mail:before {
  content: url(images/icon_mail.png);
}
.btn_before-icon_tateuri:before {
  content: url(images/icon_tateuri.png);
}
.btn_before-icon_tochi:before {
  content: url(images/icon_tochi.png);
}
.btn_before-icon_pdf:before {
  content: url(images/icon_pdf.png);
}
.btn_before-icon_show-room:before {
  content: url(images/icon_show-room.png);
}
.btn_before-icon_fudousan:before {
  content: url(images/icon_fudousan.png);
}

.btn_area {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*リンク*/
.link {
  color: #9b322d;
}

/*注釈*/
.note-text {
  display: block;
  font-size: 0.8rem;
}
/*行頭リスト*/
.bullet-list {
  margin-bottom: 20px;
}
.bullet-list-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1em;
}
.bullet-list-item:last-child {
  margin-bottom: 0;
}
.bullet-list-item:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*ボタン横並び*/
.holizontal-btn-list {
  display: flex;
  justify-content: center;
}
.holizontal-btn-list > *:last-child {
  margin-right: 0;
}
.holizontal-btn-list > * {
  flex: 1 1 0;
  margin-right: 30px;
}
.holizontal-btn-list_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px 35px;
  font-weight: bold;
  font-size: 1.2em;
}

/*ラベル*/
.label {
  display: inline-block;
  padding: 0.3em 0.5em;
  color: #b3b3b3;
  border: solid 1px #b3b3b3;
  font-size: 0.5rem;
  font-weight: bold;
}

.label-warning {
  background-color: rgb(156, 11, 11);
  color: #ffffff;
  border-width: 0;
}

/*メディア*/
.media {
  display: flex;
  align-items: flex-start;
}
.media_img {
  margin-right: 5%;
}
.media_img img {
  width: 100%;
}
.media_body {
  flex: 1;
  min-width: 15em;
}
.media_body > * {
  margin-bottom: 20px;
}
.media_body > *:last-child {
  margin-bottom: 0;
}
.media_title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
}
.media_text {
  margin-bottom: 20px;
}

/*テキスト、画像が逆のタイプ*/
.media_reverse {
  flex-direction: row-reverse;
}
.media_reverse .media_body {
  margin-right: 5%;
}
.media_reverse .media_img {
  margin-right: 0;
}

/*画像が半分サイズのタイプ*/
.half-media {
  display: flex;
}
.half-media_img {
  flex: 0 1 48.33333%;
}
.half-media_img img {
  width: 100%;
}
.half-media_body {
  flex: 1;
  margin-right: 3.33333%;
}
.half-media_body > * {
  margin-bottom: 15px;
}
.half-media_body > *:last-child {
  margin-bottom: 0;
}

/*カード*/
.card a,
.card .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card .label-link {
  height: auto;
  display: inline-block;
}

/*.card_img{
	position:relative;
	overflow:hidden;
	padding-top:65%;
}
.card_img img{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50% , -50% );
	width:100%;
}*/
.card_img img {
  width: 100%;
  object-fit: cover;
  /*height: clamp(100px,11vw,203px);*/
  height: clamp(160px, 11vw, 203px);
}

.card_body {
  background-color: #ffffff;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card_body > *:last-child {
  margin-bottom: 0;
}
.card_body .btn {
  margin-top: auto;
}
.card_title {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 10px;
}
.card_text {
  margin-bottom: 1em;
}
.card_labels {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}
.card .inner .card_labels {
  margin-bottom: 0;
}
.card_labels > * {
  margin-right: 5px;
  margin-bottom: 10px;
}
.card_labels > *:last-child {
  margin-right: 0;
}
.card a:hover > * {
  opacity: 0.7;
}

/*トップイメージ*/
.jumbotron {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(32vw + -50px); /*高さ調整*/
  min-height: 280px;
  background-color: #cccccc;
  overflow: hidden;
}



.jumbotron_inner {
  max-width: 1000px;
  width: 90%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
	
	
}

:not(.swiper-slide) .jumbotron_body {
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  text-align: center;
  z-index: 2;
}

.swiper-slide .jumbotron_inner{
	max-width: 1000px;
  width: 90%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
	position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  z-index: 2;
	
}
.jumbotron .swiper-wrapper li a:hover{
	opacity:1;	
}

.jumbotron_body img {
  width: calc(12vw + -10px);
  min-width: 80px;
  margin-bottom: 10px;
}
.jumbotron_body > *:last-child {
  margin-bottom: 0;
}
.jumbotron_title {
  font-size: calc(1.5vw + 20px);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.jumbotron_text {
  font-size: 1.8em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

/* ページャー */
.pager {
  display: flex;
  overflow-x: auto;
}
.wp-pagenavi {
  text-align: center;
  display: flex;
  margin: 30px auto 20px;
}
.wp-pagenavi > *:last-child {
  margin-right: 0;
}
.wp-pagenavi > * {
  margin-right: 15px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #1a2937;
  border: solid 1px currentColor;
  transition: 0.2s;
}

.wp-pagenavi span.pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 70px;
}

.wp-pagenavi a:focus,
.wp-pagenavi a:hover,
.wp-pagenavi .current {
  border-color: #1a2937;
  background-color: #1a2937;
  opacity: 1;
  color: #ffffff;
}

/*テーブル*/
table {
  border-top: solid 1px #b3b3b3;
  width: 100%;
}
table th {
  width: 40%;
  font-weight: bold;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 5%;
  color: #1a2937;
  border-bottom: solid 1px #b3b3b3;
}
table td {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 5%;
  border-bottom: solid 1px #cccccc;
}
/*テーブルend*/

/*フォーム*/
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  border: solid 1px #555;
  padding: 5px;
  font-size: 1em;
}

input[type="number"] {
  max-width: 80px;
}

.mwform-checkbox-field {
  display: inline-block;
  margin: 0 15px 10px 0;
  white-space: nowrap;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 5px 0 0;
  transform: translateY(-3px);
}

select {
  cursor: pointer;
  background: transparent;
  background-image: none;
  box-shadow: none;
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  border: solid 1px #555;
  padding: 5px;
  font-size: 1em;
}

textarea {
  width: 100%;
  border-radius: 5px;
  border: solid 1px #555;
  padding: 5px;
  font-size: 1em;
}

input[type="submit"] {
  width: 350px;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #9b322d;
  font-weight: bold;
  padding: 20px 25px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  border-radius: 5px;
}

input[type="submit"].submit_back {
  font-weight: inherit;
  width: 200px;
  background-color: #cccccc;
  margin-right: 10px;
}

input[type="submit"]:focus,
input[type="button"]:hover {
  opacity: 0.7;
}

/* プレイスホルダー */
input::placeholder,
textarea::placeholder {
  color: #b4b4b4;
}
/*フォーム end*/

/*お問い合わせ*/

.cta_title {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 20px;
}

.cta .holizontal-btn-list_item {
  text-align: center;
  border: solid 1px #9b322d;
  padding: 20px;
  max-width: 100%;
}
.cta .holizontal-btn-list_item p {
  color: #9b322d;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}
.cta .holizontal-btn-list_item .link {
  color: #9b322d;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
}
.cta .holizontal-btn-list_item .btn {
  border-color: #9b322d;
  background-color: #9b322d;
  color: #ffffff;
}
.cta .holizontal-btn-list_item .btn:after {
  background-color: #ffffff;
}

/* モデルハウス */
.about_sec {
  margin-top: 120px;
  background-image: url(images/bg_about.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: rgba(255, 255, 255, 0.78);
  background-blend-mode: lighten;
}

.about_sec .level1_heading span:after {
  content: url(images/model_house.png);
  display: inline-block;
  margin-left: 10px;
}

.about_body {
  margin-bottom: 40px;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.about_body .media_title {
  font-size: 1.5em;
  margin-bottom: 0;
}
.about_img {
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 30px;
}
.about_img img {
  width: 60%;
  flex: 1;
}
.about_img:after {
  content: "";
  display: inline-block;
  width: 140px; /*画像の幅*/
  height: 90px; /*画像の高さ*/
  background-image: url(images/kengaku.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.about_detail {
  display: flex;
  flex-wrap: wrap;
}
.about_detail dt {
  width: 20%;
  margin-bottom: 5px;
}
.about_detail dd {
  width: 80%;
  margin-bottom: 5px;
}
.about_sec .btn {
  width: 400px;
}
/* googleマップ */
.about_sec .half-media_img iframe {
  width: 100%;
}

/* 背景画像切り抜き */
.about_sec:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top left, transparent 50%, #ffffff 50%) top
      left/ 50% 100% no-repeat,
    linear-gradient(to top right, transparent 50%, #ffffff 50%) top right / 50%
      100% no-repeat;
}

/* 不動産情報 */
.realestate_sec .level1_heading span:after {
  content: url(images/real-estate.png);
  display: inline-block;
  margin-left: 20px;
}
.real-estate_body .card_img {
  margin-bottom: 15px;
}
.real-estate_body .card_body {
  background-color: transparent;
  padding: 0;
}
.real-estate_body .btn {
  background-color: #ffffff;
  margin-top: 20px;
}
.real-estate_body .btn:hover,
.real-estate_body .btn:focus {
  color: #1a2937;
  background-color: #ffffff;
}
.real-estate_body .btn:hover:after,
.real-estate_body .btn:focus:after {
  background-color: #1a2937;
}

/* タブ切替 */
.real-estate_body .label {
  background-color: #ffffff;
}
.tab-labels {
  text-align: center;
}
.tab-label {
  width: 260px;
  max-width: 100%;
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9e2c5;
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  margin-right: 5px;
}
.tab-labels > *:last-child {
  margin-right: 0;
}
.tab-label--active {
  background-color: #e8e4d6;
}
.tab-panels {
  padding: 2em;
  background-color: #e8e4d6;
}

/* パンくずリスト */
.breadclumbs .post-post br {
  display: none;
}

/* スライダー部分 */
.main-slider {
  display: none;
}
.main-slider--active {
  display: block;
}

.real-estate_body .swiper-button-next,
.real-estate_body .swiper-button-prev {
  background-color: #ffffff;
  border: solid 1px #cccccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.8;
  background-size: 10px 18px;
  z-index: 3;
  top: 30%;
}
.real-estate_body .swiper-container {
  padding-left: 1px;
  padding-bottom: 1px;
}

/*補足クラス*/
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.mt-60 {
  margin-top: 60px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-60 {
  margin-bottom: 60px;
}
.sp {
  display: none;
}
/*=====================共通 end=====================*/

/*=====================各ページ=====================*/
/*------トップページ------*/
/* ヘッダー */
.home .header {
  background-color: transparent;
  
  	/*250822*/
	background-color: #1a2937;
    opacity: 0.9;
	/*250822end*/
}
.home .header_link_other .tateuri,
.home .header_link_other .tochi {
  background-color: #1a2937;
  border-color: #1a2937;
}

/* スクロールしたときの挙動 */
.home .scroll-header {
  background-color: #1a2937;
}
.home .scroll-header .header_link_other > * {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

/*トップイメージ*/
.home .jumbotron {
  /*高さ調整
  height: calc(42vw + -60px);
  min-height: 350px;
    min-height: 700px;*/
		aspect-ratio:96/37;
		height: unset;
    min-height: unset;
  position: relative;
	top:110px;
	margin-bottom:110px;
	margin-bottom:45px;
}
@media only screen and (max-width: 1080px){
.home .jumbotron {top:95px;margin-bottom:95px;}

}
@media only screen and (max-width: 600px){
	.home .jumbotron {top:75px;margin-bottom:75px;}
}

.home .jumbotron_body {
  /*transform: translate(-50%, -50%);*/
}

.home .jumbotron_body img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.home .jumbotron_body img:first-child {
  width: calc(10vw + -10px);
  min-width: 90px;
  opacity: 0.6;
}
.home .jumbotron_body img:last-child {
  width: calc(25vw + -20px);
  min-width: 180px;
}

/* スライダー画像 */
.jumbotron_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jumbotron_slider > * {
  height: 100%;
}
.jumbotron_slider img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*イベント*/
/* 見出しカラー変更 */
.event_sec .level1_heading {
  color: #9b322d;
}
.event_sec .level1_heading span:before {
  background: -webkit-repeating-linear-gradient(
    -45deg,
    #9b322d,
    #9b322d 2px,
    #fff 2px,
    #fff 4px
  );
  background: repeating-linear-gradient(
    -45deg,
    #9b322d,
    #9b322d 2px,
    #fff 2px,
    #fff 4px
  );
}
/*見出しアイコン*/
.event_sec .level1_heading span:after {
  content: url(images/event01.png);
  display: inline-block;
  margin-left: 20px;
}

.home .event {
  position: relative;
  padding: 20px;
  border: solid 4px #935858;
  border-radius: 15px;
}
.home .event:before {
  content: url(images/icon_new.png);
  position: absolute;
  left: 20px;
  top: -15px;
}
/* イベントタイトル改行調整 */
#event_sec .post-2862 .media_title br {
  display: none;
}

/* お知らせ */
.news_sec .level1_heading span:after {
  content: url(images/news.png);
  display: inline-block;
  margin-left: 20px;
}
.news {
  margin-bottom: 40px;
}
.vertical-posts > * {
  border-bottom: 1px solid #b3b3b3;
}
.vertical-posts time {
  display: block;
  font-weight: bold;
  margin-right: 5em;
  color: #1a2937;
}
.vertical-posts a {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.vertical-posts_body {
  width: 700px;
  display: flex;
}

/* インスタグラム */
.instagram_sec .heading {
  font-size: 2rem;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 40px;
  color: #1a2937;
}
.instagram_sec .heading:after {
  content: url(images/icon_insta02.png);
  display: inline-block;
  margin-left: 20px;
}
.insta-wrap {
  position: relative;
}
.to-insta {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.to-insta:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* 4つのこだわり */
.professional_sec .content {
  width: 100%;
  padding-bottom: 20px;
}
.professional_sec .level1_heading span:after {
  content: url(images/pro01.png);
  display: block;
  margin-bottom: 20px;
}
.professional_body {
  padding: 2em;
  background-color: #e8e4d6;
  margin-bottom: 30px;
}
.professional_body .half-media_body {
  padding: 20px;
  background-color: #ffffff;
}

.professional_body .level1_heading {
  margin-top: 40px;
}
.professional_body .level1_heading span:after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40px);
}
.professional_body .half-media_text {
  font-size: 1.125em;
  margin-bottom: 30px;
}
/* バナー */
.professional_sec .bnr_area {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
.bnrs-list .holizontal-btn-list {
  justify-content: space-between;
}
.bnrs-list .holizontal-btn-list_btn {
  padding: 0;
}
.bnrs-list .holizontal-btn-list_btn img {
  width: 100%;
}

/* 施工事例 */
.works_sec .level1_heading span:after {
  content: url(images/works.png);
  display: inline-block;
  margin-left: 20px;
}
.works_sec .card_img {
  border-radius: 10px;
}
.works_body {
  margin-bottom: 20px;
}
.works_body .btn {
  margin-top: auto;
}

/*------トップページ end------*/

/*------固定ページ------*/
.page-template-tenplate-no-keyvisual .content_main {
  margin-top: 112px;
}
/* ページ全般 */
.page-head {
  margin-bottom: 60px;
}
.page-head p {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}

/* こだわりページ */
.professional-content .content {
  max-width: 800px;
}
.professional-content .inner {
  position: relative;
}

.professional-content .lead {
  text-align: center;
  font-size: 1.5em;
  color: #4d4d4d;
  margin-bottom: 1.2em;
}
.professional-content p {
  line-height: 2;
  font-size: 1.125em;
}
.professional-content .media {
  margin-bottom: 10px;
}
.professional_img {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* 番号 */
.professional-content .inner:after {
  content: "";
  font-weight: bold;
  display: block;
  font-size: 4.375em;
  color: #ffffff;

  /* カウンター */
  counter-increment: number 1; /* number カウンタを増加 */
  content: "0" counter(number); /* 表示形式を指定 */

  /* 位置調整 */
  position: absolute;
  top: 5%;
  left: 0;
}
.professional-content:nth-of-type(2n) .inner:after {
  color: #f4f4f4;
}

/* 会社情報ページ */
.philosophy_body {
  text-align: center;
  font-size: 1.125em;
  line-height: 2;
}
.profile_sec th {
  letter-spacing: 0.5em;
  font-size: 1.2em;
  vertical-align: top;
}
.profile_sec table td {
  line-height: 2.2;
}
/* グーグルマップ */
.access_body iframe {
  width: 100%;
}

/* アフターサービスと保障ページ */
/* 充実したサポートとアフターサービス */
.support_wrapper {
  display: flex;
  margin-bottom: 10px;
}
.support_item {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  border: solid 1px #cccccc;
}
.support_item:last-child {
  margin-right: 0;
}

.support_item.item-before {
  border-color: #5b7777;
}
.support_item.item-before .support_head {
  background-color: #5b7777;
}

.support_item.item-after {
  border-color: #a67978;
}
.support_item.item-after .support_head {
  background-color: #a67978;
}

.support_item:las-child {
  margin-right: 0;
}
.support_head {
  color: #ffffff;
  background-color: #cccccc;
  text-align: center;
  font-weight: bold;
  padding: 5px;
}
.support_box {
  padding-left: 10px;
  padding-right: 10px;
}
.support_title {
  text-align: center;
  font-size: 1.125em;
  margin-bottom: 5px;
  font-weight: normal;
}
.support_body {
  padding: 20px;
  border-bottom: solid 1px #cccccc;
  position: relative;
  z-index: 0;
}
.support_body:after {
  display: block;
  position: absolute;
  opacity: 0.5;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.support_body.bl-1:after {
  content: url(images/bg_icon01.png);
}
.support_body.bl-2:after {
  content: url(images/bg_icon02.png);
}
.support_body.bl-3:after {
  content: url(images/bg_icon03.png);
}
.support_body.bl-4:after {
  content: url(images/bg_icon04.png);
}

.support_item.item-before .support_body {
  border-color: #5b7777;
}

.support_item.item-after .support_body {
  border-color: #a67978;
}
.support_body:last-child {
  border-bottom-width: 0;
}
.guarantee {
  display: flex;
  margin-bottom: 100px;
  border: solid 1px #b6a486;
}
.guarantee_head {
  padding: 20px;
  background-color: #b6a486;
  /* 中央揃え */
  display: flex;
  justify-content: center;
  align-items: center;
}
.guarantee_title {
  line-height: 1;
  font-weight: bold;
  font-size: 1.125em;
  color: #ffffff;
}
.guarantee_body {
  flex: 1;
  padding: 5px;
}
.guarantee_body ul {
  margin-left: 20px;
  margin-right: 20px;
}

/* 各種書類 */
.documents {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  color: #1a2937;
  border: solid 1px currentColor;
  padding: 20px;
}

.documents_title {
  font-weight: bold;
  text-align: center;
  font-size: 1.125em;
  margin-bottom: 20px;
}
.documents_title:after {
  content: url(images/icon_pdf.png);
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.documents_list > * {
  border-bottom: solid 1px #1a2937;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8em;
}

/* お引き渡しまでの流れ */
.flow_list {
  display: flex;
  flex-wrap: wrap;
}

.flow_list > * {
  width: calc((100% - 90px) / 7);
  border: solid 1px #a67978;
  margin-right: 15px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;

  display: flex;
  flex-direction: column;
}
.flow_list > *:last-child {
  margin-right: 0;
}

.flow_list > * span {
  display: block;
  color: #ffffff;
  font-size: 1.5em;
  padding: 5px;
  text-align: center;
  font-weight: bold;
  position: relative;
  background-color: #a67978;
}
/* 三角形 */
.flow_list span:after {
  content: "";
  display: block;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 15px solid #a67978;

  /* 位置調整 */
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
.flow_list > *:last-child span:after {
  display: none;
}
.flow_list > * div {
  padding: 10px;

  /* 中央揃え */
  margin-top: auto;
  margin-bottom: auto;
}

.flow_list > *:nth-of-type(-n + 4) {
  border-color: #5b7777;
}
.flow_list > *:nth-of-type(-n + 4) span {
  background-color: #5b7777;
}
.flow_list > *:nth-of-type(-n + 4) span:after {
  border-left-color: #5b7777;
}

/* 自社大工の強み */
.strengths {
  display: flex;
  margin-bottom: 30px;
}
.strengths-item {
  text-align: center;
  background-color: #b6a486;
  position: relative;
  width: 50%;
  padding: 8px;
  /* 中央揃え */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 三角形 */
.strengths-item:first-child:after {
  content: "";
  display: block;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #b6a486;
  /* 位置調整 */
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 1;
}
.strengths-item:last-child {
  background-color: #a67978;
}

.strengths-item p {
  font-size: 1.3em;
  line-height: 1;
  font-weight: bold;
  color: #ffffff;
}
.strengths-item span {
  font-size: 0.6em;
  margin-right: 5px;
}
.strengths-item strong {
  font-size: 1.2em;
}

/* 各種制度 */
.othersystem_wrapper {
  display: flex;
  align-items: center;
}

.othersystem_head {
  width: 20%;
  margin-right: 20px;
}
.othersystem_body {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

/* 各種制度取り扱い可能です */
.othersystem_comment {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
/* 左右装飾 */
.othersystem_comment:before,
.othersystem_comment:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 60px;
  background-color: #231815;
  position: absolute;
}
.othersystem_comment:before {
  margin-right: 1.25em;
  transform: translateY(-25px) rotate(-20deg);
  top: 50%;
  left: 10px;
}
.othersystem_comment:after {
  margin-left: 1.25em;
  transform: translateY(-25px) rotate(20deg);
  top: 50%;
  right: 10px;
}

.othersystem_lead {
  background: #eeece9;
  padding: 10px;
  height: 200px;
}

.othersystem_lead div {
  border: solid 3px #ffffff;
  padding: 10px;
  height: 100%;
  /* 中央揃え */
  display: flex;
  justify-content: center;
  align-items: center;
}
.othersystem_lead p {
  text-align: center;
}

.othersystem_item {
  width: calc((100% - 10px) / 2);
  border: solid 3px #cccccc;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  margin-right: 10px;
  margin-bottom: 10px;
}

.othersystem_item:nth-child(2n) {
  margin-right: 0;
}

.othersystem_body:after {
  content: "";
  display: block;
  clear: both;
}

.othersystem_item_body h3 {
  margin-bottom: 5px;
  font-size: 1.125em;
  font-weight: bold;
}
.othersystem_item:before {
  display: inline-block;
  margin-top: auto;
  margin-right: 20px;
  margin-bottom: auto;
}

.othersystem_item.jutaku-point:before {
  content: url(images/icon_money.png);
}
.othersystem_item.tyouki:before {
  content: url(images/icon_home.png);
}
.othersystem_item.zeh:before {
  content: url(images/icon_circle.png);
}
.othersystem_item.kosodate:before {
  content: url(images/icon_baby.png);
}

/* お問い合わせページ */
.form-comment {
  width: 560px;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.form-comment > *:last-child {
  margin-bottom: 0;
}
.form_tbl th .label {
  margin-left: 8px;
  transform: translateY(-3px);
}
.form_submit {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
/* お問い合わせ確認ページ */
.mw_wp_form_confirm td span {
  display: none;
}

/*------固定ページ end------*/

/*------ アーカイブページ ------*/
/* イベント */
.event {
  margin-bottom: 40px;
}
.event_body > * {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #cccccc;
}
.event_body > *:last-child {
  margin-bottom: 0;
  border-bottom-width: 0;
}

@media screen and (min-width: 600px) {
  .event_body .media_img {
    max-width: 320px;
  }
}

.event .media_title {
  font-size: 1.5em;
  text-align: center;
}
/* イベント終了表記 */
.category-kako .media_body .media_title:after {
  content: "終了いたしました";
  display: inline-block;
  margin-left: 20px;
  color: #ffffff;
  background: #adadad;
  padding: 5px 10px;
  font-size: 0.8em;
}

.event_details {
  font-size: 1.125em;
  display: flex;
  flex-wrap: wrap;
}
.event_details dt {
  margin-bottom: 10px;
  width: 20%;
  font-weight: bold;
}
.event_details dd {
  margin-bottom: 10px;
  width: 80%;
}
/*------ アーカイブページ end ------*/

/*------ 個別投稿ページ ------*/
/* 投稿ヘッダー */
.entry_header {
  max-width: 800px;
  margin-left: auto;
  margin-bottom: 40px;
  margin-right: auto;
}
.entry_label {
  padding: 20px;
  background-color: #f4f4f4;
  margin-bottom: 10px;
}
.entry_label .label_list {
  display: flex;
  flex-wrap: wrap;
  color: #000000;
  margin-bottom: -10px;
}
.entry_label .label_list > * {
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 1.125em;
}
.entry_label .label_list > *:last-child {
  margin-right: 0;
}
.entry_time {
  font-size: 1.125rem;
  color: #cccccc;
}

/* サムネイル画像 */
.entry_thumbnail {
  text-align: center;
  margin-bottom: 60px;
}
.entry_body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.entry_body p {
  margin: 1.7em 0;
}
.entry_body h3 {
  margin: 2em 0 1em 0;
}
.entry_body ul {
  margin-left: 1em;
}
.entry_body ul li {
  line-height: 2em;
  font-weight: bold;
}
.detail_realestate {
  font-size: 1.125em;
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
.detail_realestate strong {
  color: #9c0b0b;
  font-size: 1.5em;
}
.entry_footer .link {
  text-decoration: underline;
}

/* 詳細画像 */
.details-img {
  margin-bottom: 60px;
}

/* イベント詳細ページ */
.event-details_sec {
  border: solid 4px #ccc;
  border-radius: 15px;
  padding: 20px;
}
.event-details_title {
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 1em;
}
.event-details_body dl {
  font-size: 1.2em;
}
.event-details_body dt,
.event-details_body dd {
  padding-top: 5px;
  padding-bottom: 5px;
}
.event-details_body dt {
  font-weight: bold;
}
.event-details_body dd {
  margin-bottom: 20px;
}
.event-details_body dd:last-of-type {
  margin-bottom: 0;
}
.event-details_body .place-fields span {
  display: block;
}
.event-details_body .place-fields i {
  font-style: normal;
}
.entry.post-2862 .level1_heading br {
  display: none;
}

/* イベントは終了いたしました文言 */
.event-end {
  background-color: #f3f3f3;
  text-align: center;
  padding: 30px;
}
.event-end p {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}
.event-end .btn {
  background-color: #1a2937;
  color: #ffffff;
}
.event-end .btn:after {
  background-color: #ffffff;
}

/* イベント申込みフォーム */
/* 各コメント */
.form-comment .alert {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}
.mw_wp_form_confirm .bullet-list {
  display: none;
}
.mw_wp_form_confirm .form-comment .alert {
  display: block;
}

/* フォーム */
#mw_wp_form_mw-wp-form-1183 textarea.event-name,
#mw_wp_form_mw-wp-form-2882 textarea.event-name {
  border: none;
  line-height: 1.5;
  padding: 0;
  resize: none;
  /* ユーザーが選択できないようにする */
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* 完了ページ */
.page .post-1190 .mw_wp_form,
.page .post-2884 .mw_wp_form {
  display: none !important; /* 完了ページではフォーム非表示 */
}
.event-form_sec {
  /* 自動でスクロールされたときに見える位置を調整 */
  margin-top: -90px;
  padding-top: 90px;
}

/* カスタム投稿アーカイブページ */
.realestate-nextday .content {
  padding-top: 0;
  padding-bottom: 0;
}
.realestate-nextday {
  font-size: 1.125em;
  color: rgb(146, 146, 146);
}
.realestate-btn-list .holizontal-btn-list_btn {
  font-size: 1.5em;
}
.realestate-btn-list .btn_before-icon:before {
  margin-right: 1em;
}
.realestate-btn-list .btn_tateuri {
  background-color: #e1ede8;
}
.realestate-btn-list .btn_tochi {
  background-color: #f9e7c0;
}
.post-type-archive-realestate
  .realestate-btn-list
  .holizontal-btn-list_btn:after {
  content: url(images/icon_arrow-bottom.png);
  display: inline-block;
  margin-left: 1.5em;
  vertical-align: middle;
  transform: translateY(3px);
}
.realestate .bullet-list {
  font-size: 1.125em;
  margin-bottom: 5px;
}
.realestate .bullet-list-item {
  margin-bottom: 5px;
  padding-left: 1.2em;
}
.realestate .bullet-list-item:last-child {
  margin-bottom: 0;
}
.realestate .bullet-list-item:before {
  width: 15px;
  height: 15px;
  border-radius: 0;
  top: 0;
  transform: translateY(40%);
}
.realestate .bullet-list-item strong {
  color: #9c0b0b;
}

.realestate .card_body .card_text {
  font-size: 1.125em;
}

.single-realestate .details-img .card a {
  padding: 5px;
  display: block;
  border: solid 1px #e0e0e0;
}
.single-realestate .details-img .card_img img {
  width: auto;
}

/* 商談中、成約済 アイコン表示*/
/* アーカイブページ */
.realestate_cat-syoudan .card_img,
.realestate_cat-seiyaku .card_img {
  position: relative;
}
.realestate_cat-syoudan .card_img:after,
.realestate_cat-seiyaku .card_img:after {
  content: "";
  width: 150px;
  height: 150px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.realestate_cat-syoudan .card_img:after {
  background-image: url(images/icon_realestate-syoudan.png);
}
.realestate_cat-seiyaku .card_img:after {
  background-image: url(images/icon_realestate-seiyakuzumi.png);
}
/* 投稿ページ */
.realestate_cat-syoudan .entry_thumbnail,
.realestate_cat-seiyaku .entry_thumbnail {
  position: relative;
}
.realestate_cat-syoudan .entry_thumbnail:after,
.realestate_cat-seiyaku .entry_thumbnail:after {
  content: "";
  width: 230px;
  height: 230px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.realestate_cat-syoudan .entry_thumbnail:after {
  background-image: url(images/icon_realestate-syoudan.png);
}
.realestate_cat-seiyaku .entry_thumbnail:after {
  background-image: url(images/icon_realestate-seiyakuzumi.png);
}

.realestate_cat-syoudan .details-img .card_img:after,
.realestate_cat-seiyaku .details-img .card_img:after {
  display: none;
}

/*osanai追加　20221027*/
.real-estate_body .card_body {
  height: 167px;
  justify-content: space-between;
}
.cat_dis {
  display: flex;
  justify-content: center;
  max-width: 470px;
}
.archive .cat_dis {
  margin: 0 auto 60px;
  border-radius: 5px;
  font-weight: bold;
}
.single .cat_dis {
  margin: 0 auto;
}
.cat_dis p {
  position: relative;
  width: 100%;
}
.archive .cat_dis p {
  background-color: #f8f8f8;
  max-width: 160px;
}
.cat_dis p a {
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  text-align: center;
	font-size: clamp(12px, 1.25vw, 16px);
}
.cat_dis p::before,
.cat_dis p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background: #555;
  z-index: 1;
}
.cat_dis p::before {
  left: 0px;
}
.cat_dis p::after {
  right: -1px;
}
.cat_dis p:first-child::before {
  display: none;
}
.cat_dis p:last-child::after {
  display: none;
}
#tateuri_sec .cat_dis p {
  background-color: #fff;
}

.tab.real-estate_body .cat_dis {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
}
.tab.real-estate_body .cat_dis p {
  background: #fff;
  max-width: 120px;
}

.cat_wrap h3 {
  margin-top: 120px;
}
.single-realestate .card_labels {
  max-width: 800px;
  margin: 60px auto 20px;
}
.single article .card_labels {
  margin-bottom: 20px;
}
.single article .label {
  font-size: 1rem;
}
.tax .realestate-nextday {
  padding-top: 60px;
}
.real-estate_body .btn::before {
  content: "";
  height: 34px;
  width: 1px;
}

/* イベントシンクス、無人モデルハウス */
.post-2862 .entry_body {
  max-width: 1000px;
}
.main-img {
  margin-bottom: 60px;
}
.main-img img {
  object-fit: cover;
  width: 100%;
}
.sub-img__wrapper {
  max-width: 800px;
  margin: 0 auto 60px;
}
.sub-img-first {
  margin-bottom: 60px;
}
.sub-img__inner {
  display: flex;
  gap: 40px;
}
.sub-img__inner > * {
  flex-basis: 50%;
}
.sub-img__inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* トップページ表示 */
.home #about-shinq {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home #about-shinq .media {
  margin-bottom: 70px;
}
.home #about-shinq .btn,
.post-2862 .entry_body .btn {
  color: #fff;
  background-color: #4471a4;
  border-color: #4471a4;
  padding: 20px 12px;
  border-radius: 0;
}
.home #about-shinq .btn::after,
.post-2862 .entry_body .btn:after {
  display: none;
}
.post-2862 .entry_body .btn {
  width: 500px;
}

/* シンクスページ */
.page-id-2831 .page-header,
.page-id-3091 .jumbotron {
  display: none;
}
.about-shinq_heading {
  padding: 30px 0 20px;
  background-color: #000;
}
.about-shinq_heading .inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.about-shinq_title {
  color: #d2ceb1;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}
.about-shinq_title + p {
  text-transform: uppercase;
  font-size: clamp(38px, 8.3vw, 90px);
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  color: #d2ceb1;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
.page-id-2831 #about-shinq .content,
.page-id-3091 #about-shinq .content {
  max-width: 1100px;
}
.page-heading {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 140px;
}

#about-shinq .media_body {
  flex: 1;
  min-width: 16em;
  margin-right: 8%;
}
#about-shinq .media_title {
  text-align: center;
  margin-bottom: clamp(15px, 5.9vw, 40px);
}
#about-shinq .media_text {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
#about-shinq .media_text strong {
  font-size: 1.6em;
  font-weight: 600;
}

.shinq-price {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho",
    serif;
  font-size: clamp(24px, 3.3vw, 45px);
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  color: #9b322d;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.shinq-price span {
  font-size: clamp(50px, 6.6vw, 90px);
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  letter-spacing: 0.05em;
}
#about-shinq .media_img {
  box-shadow: 15px 15px #1a2937;
}

/* 工事内容 */
.kouji {
  margin-top: 60px;
}

.kouji__wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 45px;
  background-color: #d1d3d6;
  border: solid 5px #1a2937;
}

.kouji__wrapper p {
  font-size: clamp(22px, 1.132rem + 1.22vw, 40px);
  color: #1a2937;
  font-weight: bold;
  text-align: center;
  line-height: clamp(15px, 0.627rem + 1.55vw, 38px);
  border-radius: 40px;
  padding: 20px 10px;
  border: solid 1px currentColor;
  background-color: #fff;
}

.kouji__wrapper p:first-child {
  margin-bottom: 45px;
  position: relative;
}

.kouji__wrapper p:first-child::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #1a2937;
  border: solid 1px #707070;
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.kouji ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 8px;
}

.kouji ul li {
  font-size: 0.85em;
  color: #1a2937;
  padding: 12px 2px;
  font-weight: bold;
  line-height: 1.3;
  border: solid 1px currentColor;
  background-color: #fff;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
}
.kouji ul li img {
  margin: auto;
}
.kouji ul li span {
  display: block;
  font-size: 0.6em;
}

/* 新しいスタンダードを作る */
#features-shinq {
  background-color: #ebebeb;
}

#features-shinq h2 {
  font-size: clamp(25px, 2.9vw, 40px); /*40px~25pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}
#features-shinq h2 + p {
  font-size: clamp(18px, 1.5vw, 20px); /*20px~18pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  color: #7f7f7f;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#features-shinq .media {
  margin-bottom: 70px;
}
#features-shinq .media_body p {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.8;
}
#features-shinq .media_img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.holizontal-list {
  display: flex;
  gap: 20px 35px;
  justify-content: space-between;
}

#features-shinq .holizontal-list li {
  border: solid 2px Currentcolor;
  padding: 25px 20px;
  background-color: #fff;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  flex: 1;
}

#features-shinq .holizontal-list li h3 {
  font-size: 1.125em;
  font-weight: inherit;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#features-shinq .holizontal-list li h3 span {
  font-size: 1.8em;
  margin-left: 0.5em;
  font-weight: 700;
}

#features-shinq .holizontal-list li h3:before,
#features-shinq .holizontal-list li h3::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: Currentcolor;
  vertical-align: middle;
}

#features-shinq .holizontal-list li h3:before {
  margin-right: 30px;
}
#features-shinq .holizontal-list li h3::after {
  margin-left: 30px;
}
#features-shinq .holizontal-list li p {
  font-weight: 600;
  margin: auto;
}

#shikq-plan h2 {
  font-size: clamp(30px, 1.5vw, 40px); /*40px~30pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  text-align: center;
  border-bottom: 1px solid Currentcolor;
  line-height: 1.8;
}

#shikq-plan h2 span {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho",
    serif;
  font-size: clamp(60px, 1.5vw, 70px); /*70px~60pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  margin: 0 0.5em;
}
#shikq-plan h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: Currentcolor;
  transform: translateY(-3px);
}

.plan__wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* プラン1つの内容 */
.plan_item:not(:last-child) {
  margin-bottom: clamp(60px, 8.8vw, 120px);
}
.plan_item {
  border: solid 5px #ebebeb;
}
.plan_heading {
  padding: 15px 20px;
  background-color: #ebebeb;
  position: relative;
  display: flex;
}
.plan_heading .number {
  font-size: clamp(18px, 1.8vw, 25px); /*70px~60pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  padding: 10px 45px;
  color: #fff;
  font-weight: 700;
  background-color: #000;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10px, -10px);
}
.plan_heading .number span {
  font-size: 2.4em;
  margin-left: 0.5em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.plan_heading_inner {
  display: flex;
  grid-template-columns: auto 205px;
  grid-template-rows: auto;
  flex: 1;
}
/* お問い合わせボタン */
.plan_heading .btn {
  margin-left: auto;
  width: 280px;
  font-size: 1.125em;
  color: #fff;
  background-color: #a49144;
  border-color: #a49144;
  border-radius: 0;
  padding: 0.5em 3.5em 0.5em 1.2em;
  font-weight: 500;
}
.plan_heading .btn::after {
  width: 45px;
  background-color: Currentcolor;
}
.plan_body {
  padding: 30px;
}
.plan_body .media_body {
  min-width: 18em;
}
#shikq-plan .media_body p {
  font-size: 1.25em;
}
.sub-img_wrapper {
  display: flex;
  gap: 40px 20px;
  margin-top: 60px;
}
.sub-img_wrapper > * {
  flex-basis: 50%;
}
.sub-img_wrapper img {
  width: 100%;
}

/* 無人モデルハウス */
.page-id-2898 .jumbotron {
  background-image: url(images/bg-mujinmodelhouse.jpg) !important;
  height: clamp(290px, 57.1vw, 780px);
}
.page-id-2898 .jumbotron_body {
  transform: translate(-50%, -45%);
}
.page-id-2898 .jumbotron_body img {
  width: clamp(200px, 44vw, 600px);
  margin-bottom: 0;
}
.page-id-2898 .jumbotron_title {
  display: none;
}
#about-mujinmodelhouse {
  background-color: #dde8ef;
}
#about-mujinmodelhouse h2 {
  font-size: clamp(28px, 2.9vw, 40px); /*27px~20pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
#about-mujinmodelhouse p {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.8;
}
#featurs-mujinmodelhouse section:not(:last-child) {
  margin-bottom: 50px;
}

#featurs-mujinmodelhouse .media {
  align-items: center;
}
#featurs-mujinmodelhouse .media_body {
  min-width: 17em;
}
#featurs-mujinmodelhouse .media_title {
  font-size: clamp(28px, 3.3vw, 45px);
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
#featurs-mujinmodelhouse .media_text {
  font-size: 1.5em;
  margin-bottom: 5px;
}
#featurs-mujinmodelhouse .media_img {
  margin-right: 0;
  margin-left: 5%;
}

#featurs-mujinmodelhouse .btn::after {
  display: none;
}
#featurs-mujinmodelhouse .btn:hover {
  opacity: 0.7;
  background-color: transparent;
}
#prohibited-mujinmodelhouse h2 {
  font-size: clamp(20px, 2vw, 40px); /*40px~20pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
#prohibited-mujinmodelhouse ul {
  margin: 30px 0;
  list-style-type: disc;
  padding-left: 1.2em;
  font-size: 1.5em;
}
#prohibited-mujinmodelhouse ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  margin-top: 40px;
}
#prohibited-mujinmodelhouse ul li:not(:last-child) {
  margin-bottom: 15px;
}
#prohibited-mujinmodelhouse p {
  text-align: right;
  font-size: 1.2em;
}

#cta-area {
  background-color: #b1c5d2;
}

#cta-area h2 {
  text-align: center;
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho",
    serif;
  font-size: 1.875em;
  font-size: clamp(20px, 2.2vw, 30px); /*30px~20pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  margin-bottom: 20px;
}
#cta-area .cta {
  padding: 30px;
  background-color: #ebebeb;
}
#cta-area .cta_inner {
  background-color: #fff;
  padding: 40px;
}
#cta-area .cta_title {
  font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho",
    serif;
  text-align: center;
  font-size: clamp(38px, 5.9vw, 80px); /*80px~38pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ebebeb;
  line-height: 1;
  font-weight: 600;
}
#cta-area .cta-tel {
  max-width: 600px;
  margin: auto;
  font-size: 15px;
  padding: 10px 20px;
  border: solid 1px #333;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#cta-area .cta-tel a {
  margin-left: 20px;
  font-size: clamp(20px, 1.8vw, 24px); /*24px~20pxの間で指定*/
  min-height: 0vw; /*clamp()をSafariで機能させるための指定*/
  font-weight: 700;
}
#cta-area .cta-tel a span {
  font-size: 1.375em;
  margin-left: 20px;
}
#cta-area .cta .btn {
  width: 600px;
  border-radius: 0;
  color: #fff;
  font-size: 1em;
  background-color: #4471a4;
  border-color: #4471a4;
  padding: 20px 25px;
  border-width: 0;
}
#cta-area .cta .btn::after {
  display: none;
}
.page-id-2831 #cta-area {
  background-color: #d2ceb1;
}
.page-id-2831 #cta-area .cta .btn {
  background-color: #a49144;
}

.card_inner {
  height: 100%;
}

.error404 .content_main {
  margin-top: 112px;
}
.error404 .page-title {
  margin-bottom: 40px;
}
.error404 .btn {
  margin-top: 60px;
}

/* 補足 */
.main-slider_urichi {
  margin-top: 58px;
}


/*20250519追加*/
.entry_header{position:relative;}
@media screen and (min-width: 1101px){
.entry_header .special-message{
	box-sizing:border-box;
	background:#FF0101;
	text-align:center;
	display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
	right: -100px;
	top: -50px;
	width: 120px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
.entry_header .special-message span{
	display:inline-block;
		color:#fff;
		font-size: 1.25em;
    font-weight: bold;
}
}
@media screen and (max-width: 1100px){
	.entry_header .special-message{
		margin-bottom: 2rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.entry_header .special-message p{
		font-size: 1.125em;
    font-weight: bold;
		background:#FF0101;
		color:#fff;
		padding:.5rem 1rem;
	}
}



.swiper-slide .box-wrap{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	padding-top:85px;
}
.swiper-slide .box-wrap .in-box{
	margin:0 2rem 0 calc((100% - 1000px) / 2);
	display:flex;
	flex-wrap:wrap;
}

.swiper-slide .box-wrap .in-box2{
	max-width:1000px;
	margin:0 auto;
	padding: 0 1rem;
}

.shinq-btn{
	width:36%;
	aspect-ratio:45/35;
}
.shinq-btn img{
	width:100%;
	height:auto;
	aspect-ratio:45/35;
}

@media screen and (min-width: 1201px){
	.swiper-slide .box-wrap{
		top: 35%;
    left: 0;
    transform: translate(0, -35%);
	}
	
}

@media screen and (max-width: 1200px){
	.swiper-slide .box-wrap .in-box{margin:0 auto;padding:0 1rem;}
	.shinq-btn{width:36%;}
	
}
@media screen and (max-width: 520px){
	.swiper-slide .box-wrap{padding-top:120px;}
}


/*スライダーに見学できる家表示*/
.slide-catch{
	flex:1;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content: center;
	padding:0 3rem;
}
	.slide-catch p{
	color:#fff;
	font-size:clamp(14px , 2.5rem , 36px);
	text-shadow:0 0 3px #999;
	font-weight:bold;
	letter-spacing:1px;
	line-height:1.75em;
	}
@media screen and (max-width: 1200px){
	.slide-catch{padding:0 2rem;}
}
@media screen and (max-width: 980px){
	.slide-catch{padding:0 0 0 1rem;}
	.slide-catch p{
		font-size:clamp(14px , 1.5rem , 38px);
	}
}
@media screen and (max-width: 680px){
	.slide-catch p{
		font-size:clamp(14px , 1.125rem , 38px);
	}
}
@media screen and (max-width: 520px){
	.shinq-btn,
	.jumbotron_slider .default-btn{display:none;}
	.swiper-slide .box-wrap{
		padding-top:120px;
	}
}
.jumbotron_slider .default-btn{
	margin-top:2rem;
	text-align:center;
	margin:2rem auto 0;
	
}
.jumbotron_slider .default-btn img{
	width:350px;
	max-width:100%;
	height:auto;
}



.sp-shinq-btn{
	width:90%;
	margin:0 auto;
	padding:30px 0;
}


@media screen and (min-width: 521px){
	.sp-shinq-btn{display:none;}
}


/*20250925追加*/

p{text-align:left;}
.clm3 ul{display:flex;flex-wrap:wrap;justify-content:center;}

@media screen and (min-width:681px){


.clm3 ul li{
	width:calc((100% - 4rem) / 3);
	margin-right:2rem;
}
.clm3 ul li:nth-child(3n){margin-right:0;}
}

@media screen and (min-width:681px) and (max-width:980px){
	.clm3 ul li{
	width:calc((100% - 2rem) / 3);
	margin-right:1rem;
}
}
@media screen and (max-width:680px){
	.clm3 ul li{
	width:calc((100% - 1rem) / 2);
	margin-right:1rem;
}
.clm3 ul li:nth-child(2n){margin-right:0;}
}


.clm3 ul li a:hover{opacity:1;}
.clm3 ul li{margin-bottom:2rem;}
.clm3 ul li a:hover img{
	transition : all 0.5s ease 0s;
	transform: scale(1.05, 1.05);
}
.btn2{
	display: block;
	padding: 15px 5px 15px 5px;
	margin-top: 1rem;
	display: block;
	text-align: center;
	background-color:#4471a4;
	color:#fff;
	border:solid 1px #4471a4;
	font-weight:bold;
	position:relative;
	box-sizing:border-box;
	border-radius: 5px;
	font-size:clamp(11px, 1.5vw, 18px);
}
.btn2:after{
	content: "";
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #ffffff;
	position: absolute;
	right: -1px;
	top: calc(50% - 0.5px);
	transform: translateY(-50%);
}
.btn2:hover{
	background-color:#fff;
	color:#4471a4;
	
}
.btn2:hover:after{background-color:#4471a4;}



