@charset "UTF-8";


:root {
  --base-color: #fff;
  /*--primary: #005b49;*/
  --primary: #005b4b;
  --secondary: #026435;
  --tertiary: #e62e8b;
  --quaternary: #006335;
  --text-color: #3e3a39;
  --link-color: #666;
  --linkhover-color: #999;
}

body {
  /*font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;*/
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;

  background-color: var(--base-color);
  overflow-x: clip;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.color-white {
  color: #fff;
}

.has-1-6-line-height {
  line-height: 1.6;
}

.has-2-line-height {
  line-height: 2;
}

hr.color-back {
  border-top: 1px solid #231815;
}

.color-green {
  color: var(--quaternary);
}

.wp-block-image img {
  width: 100% !important;
}

/* googlefonts */
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.zkgw {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
}

.sawarabi-gothic {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


/* /googlefonts */


/* スライダー (一覧も表示)*/
.slider {
  width: 80%;
  margin: 0 auto;
}

.slider img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 350px;
  min-height: 350px;
}

.slick-list .slick-track .slick-slide {
  cursor: pointer;
}

.thumbnail-slider {
  width: 80%;
  margin: 30px auto;
}

.thumbnail-slider .slick-list {
  overflow: hidden;
  margin: 0 30px;
  padding: 0;
}

.thumbnail-slider .slick-slide {
  position: relative;
  background: #000;
  width: calc(100% / 7);
  /**/
  margin: 0 0.5%;
}

.thumbnail-slider .slick-slide img {
  /*opacity:0.7;*/
  opacity: 0.5;
  width: 100%;
  height: auto;
}

.thumbnail-slider .slick-slide.slick-current img {
  opacity: 1;
}

.thumbnail-slider img {
  /*width:100%;*/
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 /1;
  /*height:80px;*/
}

.thumbnail-slider img {
  width: 100px;
  height: auto;
  cursor: pointer;
}

.slick-prev,
.slick-next {
  font-size: 0;
  z-index: 5;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
}

.slick-prev {
  background-image: url('../images/slick-prev.png');
  left: -45px;
}

.slick-next {
  background-image: url('../images/slick-next.png');
  right: -45px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-prev:hover,
.slick-prev:focus {
  background-image: url('../images/slick-prev.png');
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.slick-next:hover,
.slick-next:focus {
  background-image: url('../images/slick-next.png');
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.thumbnail-slider .slick-prev,
.thumbnail-slider .slick-next {
  display: none !important;
}

/* スライダー直下設定 */
.slider_bottom_area {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2% 2%;
  text-align: center;
  margin-bottom: 40px;
}

/***** モーダルのスタイル ****************************/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal_relative {
  position: relative;
  margin: 20px 0;
}

.modal-content {
  display: block;
  margin: auto;
  width: 80%;
  /*max-width: 700px;*/
  max-width: 900px;
  max-height: 95svh;
  object-fit: contain;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  /*position: absolute;*/
  position: fixed;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ddd;
}

/* inview(スクロールアニメーション) */
.fade-out {
  opacity: 0;
  transform: translateY(50px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease 0.3s;
}

.scale-out {
  transform: scale(0);
}

.scale-in {
  transform: scale(1);
  transition-duration: 0.9s;
  transition-timing-function: ease;
}

.left-out {
  opacity: 0;
  transform: translateX(-50px);
}

.right-out {
  opacity: 0;
  transform: translateX(50px);
}

.left-in,
.right-in {
  opacity: 1;
  transform: translateX(0);
  transition-duration: 0.9s;
  transition-timing-function: ease;
}

.wrap,
.mid-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2% 2%;
}

.mid-wrap {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 30px;
}

.unset-wrap {
  padding: 0 !important;
}

@media screen and (max-width: 1023px) {

  .wrap,
  .mid-wrap .slider_bottom_area {
    max-width: 900px;
    padding: 2% 6% 3%;
  }

  .mid-wrap {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
}

.bg_accent_color {
  background-color: #efefef;
}

.header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  gap: 20px;
  max-width: initial;
  padding-top: 5px;
  /*padding-bottom:30px;*/
  padding-bottom: 10px;
  position: relative;
  padding-left: 2%;
  padding-right: 2%;
}

.header-small,
.header-small_bottom {
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: "Zen Old Mincho", serif;*/
}

.header-small {
  padding-bottom: 0 !important;
  padding-top: 8px;
  margin: 0;
  white-space: nowrap;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.wrap.header-small_bottom {
  padding-top: 0;
  /*padding-bottom:15px;*/
  padding-bottom: 10px;
  margin: 0;
  padding-right: 3%;
  padding-left: 3%;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: rgba(183, 176, 172, 0);
  transition: background-color .4s ease;
}

.header.bg_isshow {
  background-color: rgba(183, 176, 172, 0.7);
  /*background-color:rgba(128,128,128);*/
}

.header_contents .logo {
  position: relative;
}

.logo_link {
  transition: opacity .4s;
  display: inline-block;
}

.logo_link:hover {
  opacity: .7;
}

.logo_img {
  /*width: 158px;*/
  /*width:auto;*/
  width: 200px;
  max-width: 200px;
  /*min-width:150px;*/
  min-width: 130px;
  margin-left: 0;

}

.logo_img_footer {
  filter: invert(100%);
}

@media (max-width:1024px) {
  .logo_img {
    width: 100%;
  }
}

.header_bar_gnav_list {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: right;

  /*追加*/
  position: relative;
  left: 0;
  top: 10px;
}

@media (max-width:1024px) {
  .header_bar_gnav_list {
    /*right:100px;*/
    gap: 15px;

  }
}

.header_bar_gnav_item {
  font-size: clamp(0.625rem, 0.349rem + 0.49vw, 0.938rem);
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  line-height: 1.4;
  padding: 7px 0;
  white-space: nowrap;
}

.header_bar_gnav_link {
  position: relative;
  color: var(--base-color);
}

@media screen and (max-width: 900px) {
  .header_bar_gnav_list {
    display: none;
  }
}

.header_bar_gnav_link::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: var(--base-color);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  margin-top: 4px;
}

.header_bar_gnav_link_bk {
  color: #000;
}

.header_bar_gnav_link_bk::after {
  background: #000 !important;
}

.header_bar_gnav_link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header_bar_btn {
  background: rgba(0, 0, 0, .5);
  /*background:#5a4e49;*/
  padding: 7px 10px;
  color: #fff;
  transition: all .4s;
  display: block;
}

.header_bar_btn:hover {
  /*filter: drop-shadow(2px 3px 5px #111);*/
  /*background:#666462;*/
  background: var(--primary);
}

.header_bar_gnav_item-sns-list {
  display: flex;
  gap: 20px;
  margin-left: 5px;
  /*background: rgba(0, 0, 0, .5);*/
  padding: 6.5px 8px;
}

.header_bar_gnav_sns-item-link {
  transition: all .4s;
}

.header_bar_gnav_sns-item-link:hover {
  opacity: .6;
}

.header_bar_gnav_sns-item-img {
  width: 20px;
  min-width: 20px;
}

.section {
  padding-top: 30px;
  width: 100%;
  padding-bottom: 40px;
}

.contact_btn_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  height: 40px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 8px;
  color: #fff;
  width: min(160px, 15vw);
  transition: opacity .2s;
  display: none;
}

.contact_btn_link:hover {
  opacity: .7;
}

.common_primary_headline_group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.common_primary_headline_group.column {
  flex-direction: column;
}

.common_primary_sub_headline {
  font-size: 13px;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  /*color:#251714;*/
  color: #251714;
}

.common_tertiary_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 300;
  /*font-weight:400;*/
}

.common_desc {
  font-size: 14px;
  letter-spacing: 1.2px;
  /*line-height: 2.2;*/
  line-height: 1.8;
  text-align: justify;
  color: #251714;
  font-weight: 400;
}

.common_desc_wrap+.read_more_btn_wrap {
  margin-top: 40px;
}

/* モバイル PC レイアウト切り替え用 */
.sp_only {
  display: none;
}

.gray_sp_only {
  background: transparent;
}

/* FV下部 お知らせエリア ニュースティッカー */
.section.news_ticker {
  padding-top: 10px;
  padding-bottom: 0;
  overflow-x: hidden;
  color: #5a4f4a;
}

.section.news_ticker .wrap {
  /*width: 820px;*/
  margin: 0 auto;
}

.news_ticker_body-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #251714;

}

.news_ticker_headline_img_wrap {
  padding: 1px;
  padding-right: 8px;
  width: 54px;
  font-weight: 200;
}

.news_headline_img {
  vertical-align: middle;
}

.news_ticker_list {
  margin-left: 12px;
  position: relative;
  overflow: hidden;
  /*height: 21px;*/
  height: 26px;
  border-left: 1px solid #251714;
  padding-left: 18px;
}

.news_ticker_item[aria-hidden="false"] {
  position: relative;
  top: auto;
  animation-duration: 0.7s;
  animation-name: newsTickerSlideIn;
  transform: translateY(0);
}

.news_ticker_item[aria-hidden="true"] {
  position: absolute;
  top: 200%;
  width: 100%;
  animation-duration: 0.7s;
  animation-name: newsTickerSlideOut;
  transform: translateY(100%);
}

@keyframes newsTickerSlideIn {
  from {
    top: 100%;
  }

  to {
    top: 0%;
  }
}

@keyframes newsTickerSlideOut {
  from {
    bottom: 0%;
  }

  to {
    bottom: 100%;
  }
}

.news_ticker_item_link {
  display: flex;
  /*font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;*/
  font-size: 13px;
  letter-spacing: .4px;
  transition: opacity .2s;
  color: #5a4f4a;
}

.news_ticker_item_link:hover {
  opacity: .4;
}

.news_ticker_item_date {
  padding: 4px;
  margin-right: 15px;
}

.news_ticker_item_title {
  padding: 4px;
  border-bottom: 1px solid #251714;
}

/* イベントエリア */
.section.event {
  font-weight: 400;
  color: #251714;
}

.section.event .wrap+.wrap {
  padding-top: 40px;
}

.lead_copy {
  /*font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;

  font-weight: 400;
  text-align: center;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: .4px;
  color: var(--text-color);
}

.lead_copy_childs_first {
  display: block;
}

.event_card_list_container {
  display: flex;
  gap: 50px;
  margin: 30px 0 0;
}

.event_card_item {
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}

.event_card_wrap_img {
  overflow: hidden;
  border-bottom: 8px solid transparent;
}

.event_card_img {
  transition: all .7s ease-in-out;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.event_card_link:hover .event_card_img {
  transform: scale(1.1, 1.1);
}

.widget_tag_cloud {
  color: #c9caca;
  padding: 4px 0;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  font-weight: 400;
  /*200*/
  letter-spacing: .4px;
  margin-top: 10px;
}

.event_card_excerpt {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .2px;
  /*padding: 0 0 6px;*/
  transition: text-decoration .2s;
  color: var(--text-color);
  flex-grow: 1;
  text-align: justify;
}

.event_period {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .2px;
  text-align: justify;
  padding: 0 0 6px;
}

.event_card_link {
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.event_card_link:hover {
  opacity: .7;
}

.event_card_link:hover .event_card_excerpt {
  text-decoration: underline;
}

.top_eventlist-none {
  text-align: center;
  padding-top: 50px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 350;
}

/* もっと見るボタン */
.read_more_btn_link {
  display: block;
  padding: 10px;
  border: 1px solid #251714;
  border-radius: 12px;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #fff;
  width: clamp(169px, 22vw, 220px);
  white-space: nowrap;
  font-size: clamp(13px, 1vw, 16px);

  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #251714;
}

.read_more_btn_link:hover {
  background-color: #251714;
  color: #fff;
  letter-spacing: 2.3px;
}

.read_more_btn_link::after {
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  padding: 7px 18px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

.read_more_btn:hover .read_more_btn_link::after {
  transform: translateX(4px);
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.event .read_more_btn_wrap,
.youtube .read_more_btn_wrap {
  width: min(100%, 220px);
  margin: 40px auto;
}

.read_more_btn_link.secondary {
  border: 1px solid #727171;
  border-radius: unset;
  background-color: #727171;
  color: #fff;
  letter-spacing: inherit;
  transition: all .4s;
}

.read_more_btn_link.secondary::after {
  filter: invert(1);
  transition: all .2s;
  margin-left: 10px;
}

.read_more_btn_link.secondary:hover {
  background: transparent;
  color: #000;
}

.read_more_btn:hover .read_more_btn_link.secondary::after {
  filter: invert(0);
  transform: translateX(0);
}

/* 悠建築コンセプト エリア */
.section.concept {
  padding-bottom: 120px;
}

.concept_media-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.concept_media-container.reverse {
  flex-direction: row-reverse;
  margin-top: 80px;
}

.concept_media_textarea_body,
.headline_concept_catch_img_wrap {
  flex: 1;
}


/* 写真ぼかし */
.media_concept_catch_photo_img,
.media_concept_catch_photo_img_sp {
  width: 100%;
  height: auto;
  filter: blur(10px);
  transition: filter 0.5s ease;
}

.media_concept_catch_photo_img.no-blur,
.media_concept_catch_photo_img_sp.no-blur {
  filter: blur(0);
}

.concept_media_textarea_cell {
  margin-top: 40px;
  color: #251714;
  margin-bottom: 60px;
}

.concept_media_textarea_cell_title {
  font-size: 18px;
  margin-bottom: 20px;
}

.concept_media_textarea_cell_desc {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .4px;
  text-align: justify;
}

.concept_media_link_body {
  flex: 1;
}

.media_concept_photo_img_wrap {
  flex: 2;
}

.concept_media_link_body .common_primary_headline_group {
  justify-content: center;
  color: var(--text-color);
}

.headline_concept_link .common_primary_headline {
  padding-bottom: 10px;
  font-size: 20px;
  letter-spacing: 2px;
}

.concept_media_link_cell {
  width: 100%;
  text-align: center;
}

.headline_concept_link {

  transition: all .4s;
}

.headline_concept_link:hover {
  opacity: .3;
}

.concept_media_link_cell .common_primary_sub_headline {
  letter-spacing: 4px;
  /*padding-bottom: 12px;*/
  padding: 5px 0 12px;
  /*border-bottom: 1px solid #000;*/
  border-bottom: 1px solid #231815;
  font-size: 1em;
  color: var(--text-color);
}

.read_more_text_link {
  padding: 12px 0;
  display: block;
  position: relative;
  margin-top: 12px;
  letter-spacing: 3px;
  transition: all .7s;
}

.headline_concept_link:hover .read_more_text_link {
  letter-spacing: 3.6px;
}

.read_more_text {
  text-align: left;
}

.read_more_text_link::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 1px;
  background: #251714;
  position: absolute;
  right: 13px;
  top: 24px;
  transform: translateY(-6px) rotate(45deg);
  transition: all .7s;
}

.read_more_text_link::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 13px;
  /*top: 17px;*/
  top: 20px;
  transform: translateY(6px) rotate(-45deg);
  transition: all .7s;
}

.headline_concept_link:hover .read_more_text_link::before,
.headline_concept_link:hover .read_more_text_link::after {
  right: 10px;
}

.read_more_text_wrap {
  width: 5rem;
  margin: auto;
}

/* 悠建築工房が選ばれる理由 エリア */

.section.feature {
  padding-bottom: 0;
  /*font-weight:300;*/
}

.section.feature .wrap {
  padding-bottom: 20px;
}

.feature_media-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 120px;
}

.feature_media-container:has(.feature_media_card) {
  align-items: flex-start;
}

.feature_media-container.reverse {
  flex-direction: row-reverse;
}

.feature_media_card_link {
  transition: all .7s;
}

.feature_media_card_link:hover {
  opacity: .6;
}

.feature_media_card_link .common_desc {
  font-size: 13px;
}

.feature_media_card_link:hover .feature_media_img {
  transform: scale(1.1, 1.1);
}

.feature_media_textarea {
  flex: .9;
  display: flex;
  flex-direction: column;
}

.headline_tertiary_feature_img {
  width: 76%;
}

.feature_media_img {
  transition: all .7s ease-in-out;
}

.feature_media_img_wrap {
  flex: 1.1;
  overflow: hidden;
}

.feature_media-container .read_more_btn_link {
  margin: 0 auto;
}

.feature_media_card {
  margin-top: 60px;
}

.feature_media_card .common_tertiary_headline {
  margin-bottom: 20px;
}

.feature_media_card .common_desc_wrap {
  margin-top: 25px;
}

/* ギャラリー　エリア */
.section.gallery {
  margin-top: 2%;
  padding-bottom: 80px;
  padding-top: 110px;
}

.gallery_photo_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.gallery_photo_link {
  position: relative;
  transition: all .7s;
  display: block;
  height: 100%;
  overflow: hidden;
}

.mask_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .2px;
  opacity: 0;
  transition: all .7s;
  z-index: 1;
}

.gallery_photo_link:hover .mask_text {
  opacity: 1;
}

.gallery_photo_img_wrap {
  transition: all .7s;
}

.gallery_photo_link:hover .gallery_photo_img_wrap {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.gallery_photo_img {
  position: relative;
  z-index: -1;
  transition: all .7s;
  transform: scale(1);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gallery_photo_link:hover .gallery_photo_img {
  transform: scale(1.2);
}

.gallery_photo_list+.read_more_btn_wrap {
  margin-top: 30px;
}

.section.gallery .read_more_btn_link {
  margin-left: auto;
}

.top_gallery-none {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 350;
}

/* 主要カテゴリーメニュー エリア　共通レイアウト */
.common_category_menu_body-container {
  display: flex;
  gap: 30px;
}

.common_category_menu_cell {
  flex: 1;
}

.common_primary_headline_group.column.ruled_line {
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.common_primary_headline_group.column.ruled_line .common_primary_headline {
  width: 100%;
  /*border-bottom: 1px solid #000;*/
  border-bottom: 1px solid #251714;
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.common_category_menu_body-container .common_desc {
  font-size: 13px;
  letter-spacing: .1px;
  /*font-weight: 400;*/
  /*font-weight: 300;*/
  color: var(--text-color);
}

.common_category_menu_body-container .common_tertiary_headline {
  margin-bottom: 20px;
  margin-top: 20px;
  justify-content: flex-start;
  color: var(--text-color);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  flex-direction: column;
  align-items: flex-start;
}

.common_category_menu_cell_link {
  transition: all .7s;
}

.common_category_menu_cell_link:hover {
  opacity: .6;
}

.common_category_menu_cell_link:hover .common_category_menu_cell_img {
  transform: scale(1.1, 1.1);
}

.common_category_menu_cell_img_wrap {
  overflow: hidden;
}

.common_category_menu_cell_img {
  transition: all .7s ease-in-out;
  width: 100%;
}

/* 施工事例、分譲情報、モデルハウス、お客様の声 */
.section.construction-example,
.section.house-hunting,
.section.model-house,
.section.customers-voice {
  padding-bottom: 5px;
}

/* リノベーション */
.section.renovation {
  padding-bottom: 80px;
}

/* ページ下部 お知らせ　エリア */
.section.news {
  /*padding-bottom: 80px;*/
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-bottom: 80px;
  background-color: #efefef;
  padding-bottom: 30px;
}

@media (max-width:1023px) {
  .section.news .wrap {
    padding: 2% 6%;
  }
}

.news_list {
  margin-top: 18px;
  border-top: 1px solid #251714;
}

.news_item {
  padding: 24px 0;
  border-bottom: 1px solid #251714;
}

.news_item_link {
  display: flex;
  gap: 50px;
  /*font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;*/
  font-size: 13px;
  letter-spacing: .4px;
  transition: all .2s;
  width: fit-content;
  line-height: 2;
}

.news_item_link:hover {
  opacity: .5;
}

.news_headline_tertiary {
  transition: all .2s;
  border-bottom: .5px solid transparent;
  text-align: justify;
}

.news_headline_tertiary:hover {
  border-bottom: .5px solid #000;
}

.news .read_more_btn_wrap {
  width: min(100%, 220px);
  /*margin: 40px auto;*/
  margin: 40px auto 0;
}

section.news .common_primary_headline {
  font-size: 1.3em;
}

.top_newslist-none {
  text-align: center;
  padding-top: 60px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 350;
}

/* フッター直前 エリア */
.section.just-before-footer {
  background: url(../images/just_before_footer_bg.webp) no-repeat left bottom / cover;
  position: relative;
  padding: 400px 0;
}

.section.just-before-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, .4);*/
  background: rgba(0, 0, 0, .3);
  position: absolute;
  left: 0;
  top: 0;
}

.just-before-footer_belt_img_wrap {
  display: flex;
  overflow-x: hidden;
  position: absolute;
  left: 0;
  top: calc(50% - 35px);
  width: 100svw;
  height: 70px;
}

.just-before-footer_belt_img {
  max-width: fit-content;
  width: fit-content;
  object-fit: cover;
  height: 70px;
}

.just-before-footer_belt_img:first-child {
  animation: loop-first 150s -75s linear infinite;
}

.just-before-footer_belt_img:last-child {
  animation: loop-second 150s linear infinite;
  padding: 0 30px;
}

@keyframes loop-first {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-second {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.contact_list {
  display: flex;
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 94%;
  margin: 0 auto;
  transform: translateX(-50%);

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 400;*/
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.contact_item {
  flex: 1;
}

.contact_item:first-child {
  margin-right: 70px;
}

.contact_item .common_primary_headline {
  font-size: 2em;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
}

.contact_item_link {
  display: flex;
  align-items: center;
  /*gap: 25px;*/
  gap: 15px;
  transition: all .4s;
  opacity: 1;
}

.contact_list:hover .contact_item_link {
  opacity: 0.3;
}

.contact_list .contact_item_link:hover {
  opacity: 1;
}

.contact_item:first-child .contact_item_link {
  justify-content: flex-end;
}

.contact_item:last-child .contact_item_link {
  justify-content: flex-start;
}

.contact_item .common_primary_headline_group {
  gap: 25px;
  align-items: flex-start;
}

.contact_item_link .common_primary_sub_headline {
  color: #fff;
}

.contact_arrow_ico_img {
  min-width: 80px;
}

/* フッター */
.footer {
  background: #f2f2f2;
  color: #000;
  line-height: 1.4;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font-family: "Noto Sans", sans-serif;
  /*font-optical-sizing: auto;*/
  letter-spacing: 0.08em;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.footer_container {
  display: flex;
  margin-top: 20px;
  /*gap:60px;*/
  gap: 40px;
}

.footer_contents_tb {
  display: flex;
}

.footer_nav_list.primary {
  /*margin: 40px 20px 50px;*/
  margin: 0;
  /*margin-left:20px;*/
}

.footer_nav_list.primary .footer_nav_item {
  /*margin-bottom: 1.7rem;*/
  margin-bottom: 15px;
  /*font-size: 15px;*/
  font-size: 12px;
  border: 1px solid #000;
  padding-left: 0;
  background-color: #fff;
  max-width: 250px;
}

.footer_nav_list.primary .footer_nav_item:last-child {
  margin-bottom: 0;
}

.footer_nav_list .footer_nav_item a {
  display: flex;
  align-items: center;
  font-weight: 400;
}

.footer_nav_list .footer_nav_item a>img {
  height: 14px;
  width: auto;
  padding-left: 10px;
  margin: auto 0;
}

.footer_nav_list.primary .footer_nav_item a {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: clamp(0.625rem, -1.81rem + 5.75vw, 2.5rem);
  padding-right: 10px;
  font-weight: 500;
  text-align: center;
}

.footer_nav_list.primary .footer_nav_item a>img {
  height: 14px;
  width: auto;
  margin: auto 0 auto auto;
}

.footer_nav_link:hover {
  text-decoration: underline;
}

.footer_nav_link:hover .footer-nav-flex .inline-block {
  text-decoration: underline;
}

.footer_nav_list.primary .footer_nav_link {
  transition: all .3s;
}

.footer_nav_list.primary .footer_nav_link:hover {
  background: #fff;
  color: #595757;
  transition: all .3s;
  text-decoration: none;
}

.footer_nav_item.parent {
  font-weight: 700;
  font-size: 12px;
}

.footer_nav_list {
  /*margin-bottom: 40px;*/
  margin-bottom: 35px;
}

.footer_nav_list:last-child {
  margin-bottom: 0;
  flex-grow: initial;
}

.footer_nav_item {
  font-size: 13px;
  /*margin-bottom: 17px;*/
  margin-bottom: 10px;
}

.footer_nav_item:last-child {
  margin-bottom: 0;
}

.footer_nav_item:not(.parent) {
  padding-left: 13px;
}

.footer_nav_item_kakko {
  padding-left: 6px !important;
}

.footer_contents {
  position: relative;
  /*padding: 20px 30px;*/
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.footer_contents.tb_before {
  padding: 20px 20px;
}

.footer_contents.tb_before:first-child {
  padding-left: 0;
}

.footer_contents.tb_before:last-child {
  padding-right: 0;
}

/*.footer_contents:before {
  background: radial-gradient(ellipse at center, rgba(193, 193, 193, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%) center 0 repeat-y;
  background-size: 4px 4px;
  width: 8px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}*/
.footer-company {
  padding-bottom: 15px;
}

.footer-company .logo_link {
  display: inline-block;
}

.footer-company .logo_img {
  width: 200px;
}

.footer-company .footer-company-text {
  padding-top: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.footer-company .footer-company-text>p {
  line-height: 1.8;
}

.tb_before:nth-child(2)::before {
  display: none;
}

.company_info_address {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .4px;
}

.company_info_contents {
  margin: 40px 20px 10px;
}

.business_hours {
  font-size: 14px;
  margin-top: 10px;
}

.company_info_tel {
  /*font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;
  font-weight: 200;*/
  /*font-family: "Zen Old Mincho", serif;*/
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  margin-top: 12px;
}

.footer .company_info_tel {}

.privacy_link {
  /*font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;*/
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  transition: all .4s;
}

.privacy_link:hover {
  /*opacity: .7;*/
  text-decoration: underline;
}

.footer-sns {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 20px 0px 10px;
  padding: 15px 0;
  font-weight: 300;
}

.footer-sns .sns-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-sns .sns-block .sns-item {
  display: flex;
  align-items: center;
}

.footer-sns .sns-block .sns-item:hover {
  text-decoration: underline;
}

.footer-sns .sns-block .sns-item .sns-item-text {
  /*font-size:15px;*/
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.footer-sns .sns-block .sns-item .sns-item-img {
  width: 30px !important;
  height: auto;
  margin: 0 15px;
}

.footer-sns .sns-block .sns-item .sns-item-img>img {
  width: 100%;
}

.footer-sns .sns-block .sns-item .sns-item-text>img {
  height: 14px;
  width: auto;
  padding-left: 10px;
  margin: auto 0;
}

.footer-under {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
}

.privacy_textarea_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 40px;
}

/*.privacy_text {
  padding: 5px 20px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: .2px;
  border-bottom: 1px solid #fff;
}*/
.privacy_text {
  padding: 5px 0;
  /*width: fit-content;*/
  /*font-size: 13px;*/
  font-size: 14px;
  letter-spacing: .2px;
}

.privacy_text a {
  display: flex;
  align-items: center;
  font-weight: 400;
}

.privacy_text a:hover {}

.privacy_text a>img {
  height: 14px;
  width: auto;
  padding-left: 10px;
  margin: auto 0;
}

/*kore*/
.copyright {
  /*font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;*/
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 300;*/
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;

  font-size: 10px;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* TOPへ戻るボタン */
.footer .wrap {
  position: relative;
  padding-bottom: 5%;
}

/*kore*/
.page_top {
  height: 50px;
  width: 50px;
  position: absolute;
  /*right: 30px;
  bottom: 30px;*/
  /*right:80px;
  bottom:190px;*/
  right: 35px;
  top: 15px;
  background: transparent;
  border: solid 1px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-color: #fff;
}

.page_top.sp_only {
  display: none;
}

.pagetop_arrow {
  height: 16px;
  width: 16px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

.page_top.fadein {
  opacity: 1;
}

@media (max-width:1023px) {
  .page_top {
    right: 65px;
    top: 60px;
  }
}

/*サブページ共通*/

/*.wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding:5% 2%;
}

@media screen and (max-width: 1023px) {
  .wrapper {
    max-width: 900px;
  }
}*/
.subwrap {
  margin-top: 60px;
}

.title {
  text-align: center;
  letter-spacing: 7px;
  text-indent: 4px;
  width: 100%;
  height: auto;
}

.title>.ttl {
  font-size: 2em;
}

.title>.subttl {
  font-size: 1.1em;
  margin-top: 40px;
}

.title-txt {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  color: var(--text-color);
  margin: 80px 0 130px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: .2px;
}

@media (max-width:599px) {
  .title-txt {
    margin: 30px 0;
  }
}

.wrapper-content {
  margin-top: 60px;
}

.content-block {
  padding-bottom: 50px;
  /*padding-bottom:80px;*/
}

.image-common {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 0.6em;
}

.image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.image-title-after {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1140px;
  padding: 0 2%;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

@media(max-width:1023px) {
  .image-title-after {
    max-width: 900px;
    padding: 0 6%;
  }

}

.ttl01 {
  text-align: center;
  /*padding-bottom:2em;*/
  letter-spacing: 2px;
}

.ttl01_1 {
  /*font-size:1.3em;*/
  font-size: 1.8em;
  padding-bottom: 10px;
}

.ttl01_1 {
  font-family: "Sawarabi Gothic", sans-serif;
}

.ttl01_2 {
  font-size: 0.7em;
}

.ttl02 {
  font-size: 1.8em;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1rem;
  /*font-family: "Zen Old Mincho", serif;*/
}

@media (min-width:1023px) {
  .ttl02 {
    letter-spacing: 1rem;
  }


}

.ttl02_2 {
  /*font-size:1.6em;*/
  font-size: 1.7em;
  /*line-height:1.5;*/
  line-height: 1.6;
}

.ttl03 {
  font-size: 1.8em;
  text-align: center;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
}

.ttl03_1 {
  font-size: 0.8em;
  text-align: center;
  padding-top: 5px;
}

.ttl03_2 {
  font-size: 1.9em;
  text-align: center;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
}

.ttl03_4 {
  font-size: 1.9em;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 5px;
}

.strong {
  font-size: 1.6em;
  white-space: nowrap;
}

ruby {
  ruby-position: over;
}

ruby rt {
  font-size: 13px;
}

.item-title {
  font-size: 1.3em;
  padding-top: 7%;
}

.item-title-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.item-title-kzr {
  font-size: 0.7em;
  width: calc(100% - 130px);
  margin: 2% 0;
  position: relative;
  height: 1px;
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.item-title-flex>span {
  width: 110px;
  padding-left: 2%;
  margin-right: auto;
  margin-left: 0;
  font-size: 0.7em;
  letter-spacing: 2px;
  color: #fff;
}

/* ページネーション */
.pagenation {
  /*padding-top:60px;*/
  padding: 60px 0;
  text-align: center;
  /*font-size:1.4em;*/
  font-size: 1.2em;
  color: var(--text-color);
}

.pagenation .pages,
.pagenation>.first,
.pagenation>.last {
  display: none !important;
}

.pagenation a,
.pagenation span.page-numbers {
  /*margin: 0 8px;*/
  margin: 0;
  padding: 0;
  border: none !important;
  /*font-weight: bold;*/
  /*font-size: 2.6rem;*/
  /*color: #8b8b8b;*/
  padding: 3px 5px;
  margin: 2px;
}

/*#eventlist .pagenation a,
#eventlist .pagenation span.page-numbers,
#newslist .pagenation a,
#newslist .pagenation span.page-numbers,
#gallery .pagenation a,
#gallery .pagenation span.page-numbers,
#land .pagenation a,
#land .pagenation span.page-numbers,
#rb-house .pagenation a,
#rb-house .pagenation span.page-numbers,
#after-int .pagenation a,
#after-int .pagenation span.page-numbers,
#voice-top .pagenation a,
#voice-top .pagenation span.page-numbers{*/
#eventlist .wp-pagenavi,
#newslist .wp-pagenavi,
#gallery .wp-pagenavi,
#land .wp-pagenavi,
#rb-house .wp-pagenavi,
#after-int .wp-pagenavi,
#voice-top .wp-pagenavi {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.pagenation>span {
  border: none;
}

.pagenation a.previouspostslink,
.pagenation a.prev.page-numbers {
  padding-right: 8px;
}

.pagenation a.nextpostslink,
.pagenation a.next.page-numbers {
  /*font-size: 2rem;
  display:none;*/
  padding-left: 8px;
}

.pagenation span.current {
  /*margin: 0 8px;*/
  margin: 2px;
  border: none !important;
  font-weight: 600;
  /*font-size: 3.2rem;*/
  /*color: #0075bb;*/
  color: var(--secondary);
}







/* イベント/お知らせ一覧 */
#eventlist .title>.ttl {
  color: var(--text-color);
}

#eventlist .title>.subttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.9em;
  color: var(--text-color);
}

#eventlist .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#eventlist .list-block {
  color: var(--text-color);
}

#eventlist .list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
  /*width:calc(calc(100% / 3) - 20px);*/
  width: calc(94% / 3);
  /*padding:0 10px;*/
  cursor: pointer;
  letter-spacing: 2px;
  color: var(--text-color);
  transition: all .7s;
}

#eventlist .item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#eventlist .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 16/9;
  transition: all .7s;
}

#eventlist .item-ttl-block {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

#eventlist .item-ttl {
  flex-grow: 1;
  margin-bottom: 10px;
  font-size: 0.9em;
  line-height: 1.5;
  transition: all .7s;
  text-align: justify;
}

#eventlist .item-date {
  margin-bottom: 10px;
  font-size: 0.9em;
  transition: all .7s;
}

#eventlist .item-category {
  color: #595757;
  font-size: 0.7em;
  transition: all .7s;
}

#eventlist .list-item:hover .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#eventlist .list-item:hover .item-ttl,
#eventlist .list-item:hover .item-date,
#eventlist .list-item:hover .item-category {
  opacity: .7;
  transition: all .7s;
}



/* イベント(詳細) */
#eventlist-item {
  background: #f7f8f8;
  padding-bottom: 50px;
  color: var(--text-color);
}

#eventlist-item .wrapper-content {
  background: #fff;
  min-height: 1000px;
  /*padding:70px 110px;*/
  padding: 9% 13%;
}

#eventlist-item .wrapper-content p {
  line-height: 2;
}

#eventlist-item .event-title {
  font-size: 1.6em;
  text-align: center;
  padding-bottom: 30px;
  letter-spacing: 2px;

  font-style: normal;
  line-height: 1.5;
}

#eventlist-item .event-date {
  padding-bottom: 5px;

  display: block;
  text-align: center;
  font-size: 1.1em;
}

#eventlist-item .event-date-subtitle {
  text-align: center;
  font-size: 18px;
}

#eventlist-item .event-date>span {
  color: #808080;
  white-space: nowrap;
  text-align: center;
}

#eventlist-item .main-image {
  width: 100%;
  padding-bottom: 30px;
}

#eventlist-item .main-image>img {
  width: 100%;
}

#eventlist-item .item-detail {
  /*padding-bottom:30px;*/
  text-align: justify;
}

#eventlist-item .item-detail p {}

#eventlist-item .text {
  padding: 15px 0;
  /*font-size:1.05em;*/
  font-size: 1em;
}

#eventlist-item .img {
  padding-top: 60px;
}

#eventlist-item .img .img-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#eventlist-item .img .img-flex .img-item {
  padding-bottom: 100px;
  width: 47%;
}

#eventlist-item .img .img-flex .img-item>img {
  width: 100%;
}

#eventlist-item .img .img-flex .img-item .caption {
  display: block;
  padding-top: 15px;
}

#eventlist-item .map-content {
  padding-top: 60px;
}

#eventlist-item .place {
  text-align: center;
  padding: 30px 0;
  font-size: 1.1em;
  letter-spacing: 2px;
}

#eventlist-item .map {
  width: 90%;
  margin: 0 auto;
}

#eventlist-item iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
}

#eventlist .eventlist-none {
  text-align: center;
  font-size: 1.1em;
  font-weight: 350;
  margin-top: 60px;
}

.wp-block-image :where(figcaption) {
  line-height: 1.5;
  text-align: justify;
  font-size: 13px;
}

/* イベント(CONTACT) */
#eventcontact {
  background: #f7f8f8;
  color: var(--text-color);
}

#eventcontact .wrapper-content {
  margin-top: 30px;
}

#eventcontact .contact-text {
  font-size: 1.2em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 30px;
}

#eventcontact .contact-text>p {
  line-height: 1.8;
}

#eventcontact .please-contact {
  background: #fff;
}

#eventcontact .block-text {
  display: block;
  padding-left: 10px;
  /*padding-top:1%;*/
  padding: 2% 0;
  margin: 0 auto;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#eventcontact .block-text>div {
  margin-bottom: 15px;
}

#eventcontact .text1 {
  display: inline-block;
  margin-bottom: 25px !important;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

#eventcontact .text1>p {
  line-height: 1.8;
}

#eventcontact .text2 {
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
}

#eventcontact .text2 .text2-1 {
  margin-right: 20px;
}

#eventcontact .text2 .text2-2 {
  position: relative;
}

#eventcontact .text2 .text2-2::after {
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0 10px;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
}

#eventcontact .tel {
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 2px;
}

#eventcontact .sales-dt {
  text-align: center;
}

#eventcontact .add-text {
  font-size: 1em;
  text-align: center;
  padding: 3% 0;
  letter-spacing: 2px;
  line-height: 1.5;
}

/*イベント予約フォーム部分*/
.forms .set {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #231815;
}

.forms .set.sp_only {
  display: none;
}

.forms .set.hope-w1 {
  padding-bottom: 0;
  border-bottom: none;
}

.forms .set.hope-w2 {
  padding-top: 0;
}

.forms .set.address {
  align-items: center;
}

.forms .set.know {
  align-items: center;
}

.forms .set.name {
  /*padding-top: initial;*/
}

.forms .set.contents {
  /*align-items: flex-start;*/
  /*align-items:center;*/
  align-items: flex-start;
  /*border-bottom: none;*/
}

.forms .set.conf {
  border-bottom: none;
}

.forms .set .item {
  width: 35%;
  padding-left: 1.5em;
  font-size: 1.05em;
  position: relative;
}

.forms .set .item>p {
  /*padding-left:50px;*/
  padding-left: 3.5em;
}

.forms .set .require {
  color: #fff;
  display: inline-block;
  background: #c30d23;
  /*font-weight:bold;*/
  margin-left: 1.5em;
  padding: 3px 5px;
  margin-right: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}

.forms .set .require_trans {

  display: inline-block;
  background: transparent;
  padding: 3px 5px;
  margin-right: 0.5em;
}

.forms .set .information {
  width: 65%;
  padding-right: 1.5em;
  padding-left: 10px;
  font-size: 1em;
}

.forms .set .information input,
.forms .set .information textarea,
.forms .set .information select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 100%;
  border: none;
  /*padding: 5px 10px;*/
  padding: 10px 15px;
  /*outline: 1px solid #a8a8a8;*/
  outline: 1px solid #231815;
  background: #fff;
  transition: 0.2s all;
}

.forms .set .information input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: 25px;
  height: 25px;
  outline: none;
}

.forms .set .information input[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
  width: 25px;
  height: 25px;
  outline: none;
  border-radius: 50%;
  accent-color: #000;
}

.forms .set .information input[type="file"] {
  padding: 0;
  outline: none;
  background: transparent;
}

.custom-file {
  background-color: #fff;
  padding: 10px 15px;
  outline: 1px solid #231815;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 2px;
}

.hidden {
  display: none;
}

.forms .contact-file {
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.forms #filename {
  color: rgb(117, 117, 117);
  padding-left: 10px;
  letter-spacing: 2px;
}

.forms .wpcf7-not-valid-tip {
  margin-top: 0.3em;
}

.forms .set .information input:focus,
.forms .set .information textarea:focus {
  outline: 1px solid #0075bb;
}

.forms .set .information input[type="radio"]:focus,
.forms .set .information input[type="checkbox"]:focus {
  outline: none;
}

.forms .set .information textarea {
  resize: none;
  width: 100%;
  height: 200px;
}

/*.forms .set .information .address-zip{
  display:flex;
}*/
.forms .set .information .address-zip>p,
.forms .set .information .hour-minus>p,
.forms .set .information .contact-people>p {
  display: flex;
}

.forms .set .information .hour-minus>p {
  justify-content: space-between;
  padding-top: 10px;
}

.forms .set .information .address-zip>p>.wpcf7-form-control-wrap {
  width: 41%;
  margin-left: 1em;
}

.forms .set .information .hour-minus>p>.wpcf7-form-control-wrap {
  width: 49%;
}

.forms .set .information .contact-people>p {
  align-items: baseline;
  justify-content: space-between;
  gap: 1%;
}

.forms .set .information .contact-people .people-name {
  padding-right: 5px;
  width: 50px;
  text-align: center;
}

.information .contact-people .wpcf7-form-control-wrap {
  width: calc(50% - 50px);
}

/*.forms .set .information #zip{
  margin-left:1em;
}*/
.forms .set .information .contact-address p {
  margin-bottom: 13px;
}

.forms .set .information .contact-address p.small {
  font-size: 0.85em;
}

.forms .set .information #zip,
.forms .set .information #prefectures {
  /*width:41%;
  margin-left:1em;*/
}

/*.forms .set .information .address-zip*/
.forms .set .information .contact-confirmation label {
  display: flex;
  align-items: center;
}

.forms .set .information .contact-confirmation .wpcf7-list-item-label {
  padding-left: 5px;
}

.forms .set .information .contact-confirmation span.wpcf7-list-item {
  margin: 0;
}

.forms .set .information .contact-confirmation .confirmation-add {
  margin-top: 20px;
  font-size: 0.85em;
}

.forms .set .information .contact-confirmation .confirmation-add>p {
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
  text-align: justify;
}

.forms .set .information .contact-confirmation .confirmation-add>p::after {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.forms .set .information .contact-confirmation .confirmation-add>p.none::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.forms .set .information #hope,
.forms .set .information #kinds {
  display: flex;
}

.forms .set .information #hope .wpcf7-list-item,
.forms .set .information #kinds .wpcf7-list-item,
.forms .set .information #timezone-r .wpcf7-list-item {
  margin: 0 1em 0 0;
}

.forms .set .information #hope .wpcf7-list-item>label,
.forms .set .information #kinds .wpcf7-list-item>label,
.forms .set .information #timezone-r .wpcf7-list-item>label {
  display: flex;
  align-items: center;
}

.forms .set .information #hope .wpcf7-list-item-label,
.forms .set .information #kinds .wpcf7-list-item-label,
.forms .set .information #timezone-r .wpcf7-list-item-label {
  padding-left: 12px;
}

.forms .send-conf {
  padding-top: 45px;
  text-align: center;
}

.forms .send-conf p {
  /*display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;*/
}

.forms .send-conf input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  background-color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s background-color, color;
  display: block;
  padding: 12px 10px;
  border: 1px solid var(--primary);
  text-align: center;
  background: var(--primary);
  color: #fff;
  letter-spacing: inherit;
  /*transition: all .4s;*/
  width: 40%;
  max-width: 350px;
  white-space: nowrap;
  font-size: 1.4em;
  margin: 30px auto 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.forms .send-conf input:hover {
  background-color: #fff;
  color: var(--primary);
  transition: all 0.4s;
}

.forms .wpcf7-spinner {
  display: none;
}

.forms #timezone-r {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.forms #timezone-r .wpcf7-list-item {
  width: 45%;
  padding-bottom: 10px;
}

.form .wpcf7-select>option:first {
  color: #757575 !important;
}

.form .wpcf7-select>option {
  color: var(--text-color) !important;
}

/*▼付のselectbox*/
.information select.triangle {
  background-image: url(../images/triangle.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 13px !important;
  background-position: right 10px center !important;
}

.forms .contact-addtext {
  font-size: 1.1em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: -30px;
  padding-top: 30px;
}

.forms p.privacy-link {
  margin-top: 20px;
}

.forms p.privacy-link>a {
  transition: all .7s;

  display: inline-block;
  border-bottom: 1px solid var(--text-color);
}

.forms p.privacy-link>a>span {
  padding-bottom: 5px;

}

.forms p.privacy-link>a:hover {
  transition: all .7s;
  opacity: .7;
}

.forms .hope-mail .wpcf7-form-control-wrap {
  width: 100%;
}

.selecttype {
  /*     width: 100%;
    height: 100vh; */
}

.selecttype iframe {
  width: 100%;
  height: 100vh;
}

.forms .hope-mail {
  padding-top: 20px;
}

.forms .hope-mail>p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  ;
}

.forms .hope-mail>p>span:not(.wpcf7-form-control-wrap) {
  white-space: nowrap;
  padding-right: 10px;
}


/***** コンセプト **********************************************/
#concept {
  color: var(--text-color);
}

#concept .wrap-concept {
  max-width: 900px;
}

#concept .ttl02 {
  text-align: left;
  line-height: 2;
  font-size: 2.2em;
  margin-bottom: 3%;
}

#concept .ttl01_2 {
  letter-spacing: 2px;
}

#concept .ruby::after {
  content: "地域密着";
}

#concept .t-content-text {
  text-align: left;
  margin-bottom: 3%;
}

#concept .t-content-text>p {
  line-height: 2.3;
  /*2*/
  text-align: justify;
}

#concept .concept-four {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#concept .concept-four-item {
  width: 47%;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

#concept .concept-four-item .item-ttl {
  font-size: 1.5em;
  /*border-bottom:1px solid #231815;*/
  padding-bottom: 3px;
  margin-bottom: 0.5em;
  font-family: "Zen Old Mincho", serif;
}

#concept .concept-four-item .item-text-img {
  display: flex;
  flex: 1 1 auto;
  /*flex-direction:column;*/
  flex-direction: column-reverse;
}

#concept .concept-four-item .item-text {
  font-size: 0.9em;
  margin-bottom: 1em;
  flex-grow: 1;
  line-height: 1.5;
  text-align: justify;
}

#concept .concept-four-item .item-text>p {
  line-height: 1.5;
}

#concept .concept-four-item .item-img {
  width: 100%;
  padding-bottom: 15px;
}

#concept .concept-four-item .item-img>img {
  width: 100%;
}

#concept .commitment-block {
  background: #efefef;
}

#concept .concept-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
}

#concept .concept-ttl>.con-ttl {
  font-size: 2em;
  border-bottom: 4px double #231815;
  padding-bottom: 15px;
  margin: 15px 0;
}

#concept .concept-ttl>.con-subttl {
  font-size: 0.7em;
}

#concept .commitment-content {
  display: flex;
  justify-content: space-between;
  padding: 2% 0;
}

#concept .commitment-content.sp_only {
  display: none;
}

@media (max-width:1023px) {
  #concept .commitment-content {
    padding: 2% 0 3%;
  }
}

#concept .com-block-img01 {
  width: 50%;
  padding-right: 2.5%;
}

#concept .com-block-img01_top {
  width: 100%;
  margin-top: 10%;
  margin-bottom: 20%;
  /*max-width:676px;*/
}

#concept .com-block-img01_top>img {
  width: 100%;
}

#concept .com-block-img01_bottom {
  width: 85%;
  margin: 0 0 0 auto;
  position: relative;
  height: 40%;
  /*max-width:572px;*/
}

@media (min-width:1440px) {
  #concept .com-block-img01_bottom {
    margin-left: 101.391px;
  }
}

#concept .com-block-img01_bottom>img {
  width: 100%;
}

/*#concept .com-block-img01_bottom>img:nth-child(1){
  width:65%;
  position:absolute;
  bottom:50%;
  right:0;
  z-index:2;
}
#concept .com-block-img01_bottom>img:nth-child(2){
  width:50%;
  position:absolute;
  bottom:25%;
  left:0;
  z-index:1;
}
*/

#concept .com-block-text {
  width: 40%;
  /*max-width:416px;*/
  max-width: 510px;
  padding: 0 2.5%;
}

#concept .com-text-tate {
  font-size: 2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 20%;

  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#concept .com-text-tate>p {
  line-height: 2;
}

#concept .com-text-yoko {
  font-size: 0.9em;
  display: inline-block;
}

#concept .com-text-yoko>p {
  /*line-height:1.8;*/
  line-height: 2.3;
  text-align: justify;
}


#concept .com-block-img02 {
  width: 10%;
  padding-left: 2.5%;
  position: relative;
  /*max-width:142px;*/
}

#concept .com-block-img02>img {
  width: 100%;
  position: absolute;
  bottom: 5%;
  right: 0;
}

#concept .com-block-img01,
#concept .com-block-text,
#concept .com-block-img02 {
  padding-top: 7%;
  margin-bottom: 3%;
}

#concept hr {
  border-top: 1px solid #231815;
}

#concept .rule-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
}

#concept .rule-ttl-reverse {
  flex-direction: row-reverse;
}

#concept .rule-ttl-text {
  display: block;
  width: 50%;
  font-family: "Zen Old Mincho", serif;
}

#concept .rule-num-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#concept .rule-box {
  font-size: 2em;
  border: 1px solid #231815;
  padding: 8px;
}

#concept .rule-num {
  font-size: 8em;
  padding-left: 50px;
}

#concept .rule-title {
  font-size: 2.5em;
  text-align: center;
}

#concept .rule-title>p {
  line-height: 1.5;
}

#concept .rule-ttl-img {
  width: 45%;
  max-width: 375px;
}

#concept .rule-ttl-img>img {
  width: 100%;
}

#concept .rule-content {}

#concept .rule-content .content-text {
  font-size: 1.1em;
}

#concept .rule-content .content-text>p {
  position: relative;
  padding-left: 35px;
  padding-bottom: 35px;
  text-align: justify;
  line-height: 1.7;
}

#concept .rule-content .content-text>p::after {
  position: absolute;
  top: -48px;
  left: -30px;
  content: url(../images/check.png);
  transform: scale(0.2);
}

#concept .rule-another {
  display: flex;
  align-items: center;
  border: 1px solid #231815;
  padding: 15px;
  font-family: "Zen Old Mincho", serif;
}

#concept .rule-another-img {
  width: 40%;
  padding-right: 15px;
}

#concept .rule-another-img>img {
  width: 100%;
}

#concept .rule-another-content {
  width: 55%;
  text-align: left;
}

#concept .another-ttl {
  font-size: 1.5em;
  padding-bottom: 10px;
}

#concept .another-text {
  font-size: 0.9em;
}

#concept .another-text>p {
  line-height: 2;
  text-align: justify;
}

#concept .view-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding-top: 50px;
}

#concept .view-box {
  background: #efefef;
  width: 45%;
  margin: 10px;
  padding: 30px 20px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

#concept .view-text {
  font-size: 1.7em;
  flex-grow: 1;
}

#concept .view-text>p {
  line-height: 1.5;
}

#concept .view-link {
  margin: 0 auto;
  margin-top: 20px;
}

#concept .view-link>a {
  display: block;
  padding: 10px;
  border: 1px solid #231815;
  border-radius: 12px;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #fff;
  width: clamp(169px, 22vw, 220px);
  white-space: nowrap;
  font-size: clamp(15px, 1vw, 16px);
  margin: 0 auto;
}

#concept .view-link>a::after {
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  padding: 7px 18px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

#concept .view-link:hover>a {
  background-color: #231815;
  color: #fff;
  letter-spacing: 2.3px;
}

#concept .view-link:hover>a:after {
  transform: translateX(4px);
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}


/* 悠建築の家づくりの4つのページの最下部共通 */
.four-block {
  background-image: url(../images/four-concept.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: -40px;
  font-family: "Zen Old Mincho", serif;
}

.four-wrap {
  padding: 100px 2%;
}

@media (max-width:1023px) {
  .four-wrap {
    padding: 7% 6%;
  }
}

.four-block .view-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.four-block .view-box {
  background: rgba(239, 239, 239, 0.9);
  width: calc(calc(100% / 4) - 40px);
  margin-right: 10px;
  padding: 30px 20px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.four-block .view-box:last-of-type {
  margin-right: 0;
}

.four-block .view-text {
  /*font-size:1.05em;*/
  font-size: 1.2em;
  flex-grow: 1;
  letter-spacing: -1px;
}

.four-block .view-text>p {
  line-height: 1.5;
}

.four-block .view-link {
  margin: 0 auto;
  margin-top: 20px;
}

.four-block .view-link>a {
  display: block;
  padding: 6px 10px;
  border: 1px solid #251714;
  border-radius: 5px;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #fff;
  width: clamp(140px, 14vw, 200px);
  white-space: nowrap;
  font-size: clamp(12px, 1vw, 16px);
  margin: 0 auto;
  color: #251714;
}

.four-block .view-link>a::after {
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  padding: 7px 15px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

.four-block .view-link:hover>a {
  background-color: #231815;
  color: #fff;
  letter-spacing: 2.3px;
}

.four-block .view-link:hover>a:after {
  transform: translateX(4px);
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

/* アフターサービス＆保証＆点検 */
#after-service {
  color: var(--text-color);
  font-weight: 350;
}

#after-service .after-wrap {
  max-width: 900px;
}

#after-service .after-ttl {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#after-service .after-block {}

#after-service .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#after-service .after-ttl>.af-subttl {
  font-size: 0.7em;
}

.notesans {
  font-family: "Noto Sans JP", sans-serif;
}

#after-service .sevenPlusOne {
  /*font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;*/
  width: 80%;
  margin: 0 auto;

}

#after-service .spo-title {
  padding: 50px 0;
}

#after-service .spo-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #595757;
  border-top: 1px solid #595757;
  letter-spacing: 2px;
}

/*#after-service .spo-flex>img{
  width:25px;
  height:auto;
}*/
#after-service .spo-flex>.spo-ttl {
  font-size: 1.2em;
  line-height: 1.8;
  text-align: center;
}

#after-service .spo-text {
  font-size: 0.9em;
  letter-spacing: 2px;
}

#after-service .spo-text>p {
  line-height: 1.8;
  text-align: justify;
}

#after-service .spo-7 {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}

/*#after-service .spo-left,
#after-service .spo-right{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  width:50%;
}*/
#after-service .spo-left {
  margin-right: 40px;
}

#after-service .spo-item {
  width: 100%;
  padding-bottom: 40px;
  flex-grow: 1;

  background-image: linear-gradient(to right, #595757 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 25px 0;
  position: relative;
}

#after-service .spo-item:last-child {
  background-image: none;
}

#after-service .spo-item-service {
  font-size: 1.1em;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

#after-service .spo-item-num {
  background: #898989;
  color: #fff;
  min-width: 40px;
  min-height: 40px;
  margin-right: 15px;
  position: relative;
}

#after-service .spo-item-num>span {
  margin: auto 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#after-service .spo-item-ttl {
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: justify;
}

#after-service .spo-item-text {
  font-size: 0.9em;
  line-height: 1.8;
  padding-left: 55px;
  text-align: justify;
}

#after-service .spo-img {
  width: 100%;
  padding-bottom: 100px;
}

#after-service .spo-img>img {
  width: 100%;
}

/***************/
#after-service .guarantee-block {
  background: #f7f8f8;
}

#after-service .gua-five {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 100px;
}

#after-service .gua-flex {
  display: block;
}

#after-service .gua-flex:last-child {
  background: unset;
}

#after-service .gua-item {
  width: 100%;

  display: block;
  background-image: linear-gradient(to right, #006335 4px, transparent 4px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 50px 0 15px;

}

#after-service .gua-item:last-child {
  background: unset;
}

#after-service .gua-item-service {
  font-size: 1.1em;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

#after-service .gua-item-num {
  background: #898989;
  color: #fff;
  min-width: 40px;
  min-height: 40px;
  margin-right: 15px;
  position: relative;
}

#after-service .gua-item-num>span {
  margin: auto 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#after-service .gua-item-ttl {
  letter-spacing: 2px;
  line-height: 1.3;
  text-align: justify;
}

#after-service .gua-item-text {
  font-size: 0.9em;
  text-align: justify;
}

#after-service .gua-item-text>p {
  line-height: 1.8;
}

#after-service .gua-float {
  border: 1px solid #727171;
  text-align: center;
  display: flex;
  margin: 30px 0;
}

#after-service .gua-float-ttl {
  padding: 10px;
  width: 55%;
  background: #fff;
}

#after-service .gua-float-ttl .gua-small {
  font-size: 0.8em;
}

#after-service .gua-float-txt {
  width: 45%;
  color: #fff;
  background: #727171;
  padding: 10px;
}

#after-service .gua-item:last-child .gua-float-txt {
  width: 100%;
}

/************************/
#after-service .inspection-block {
  display: flex;
  /*align-items:center;*/
  justify-content: space-between;
  line-height: 1.5;
  padding-bottom: 50px;
}

#after-service .ins-img {
  width: 45%;
  overflow: hidden;
}

#after-service .ins-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#after-service .ins-text {
  width: 40%;
  display: block;
  min-width: 320px;
  padding-left: 10px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 3px;
  margin: 0 auto;
}

#after-service .ins-text01 {
  font-size: 2em;
  padding-bottom: 30px;
  line-height: 1.8;
}

#after-service .ins-text02 {
  line-height: 1.8;
  text-align: justify;
}

/***********************/
#after-service .schedule-block {
  /*background:#f6faf6;*/
}

#after-service .schedule-ttl {
  font-size: 1.2em;
  text-align: center;
  border-bottom: 1px solid #231815;
  padding-bottom: 15px;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
}

#after-service .schedule-img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 100%;
}

#after-service .schedule-img>img {
  width: 100%;
}

#after-service .schedule-text {
  /*position:relative;
  top:0;
  left:50%;
  transform:translateX(-50%);*/
  font-size: 0.8em;
  display: inline-block;
  margin-bottom: 50px;
}

#after-service .schedule-text>p {
  line-height: 1.8;
  text-align: justify;
}

#after-service .schedule-under-img {
  display: flex;
  justify-content: space-between
}

#after-service .schedule-img-item {
  width: 32%;
}

#after-service .schedule-img-item>img {
  width: 100%;
  padding-bottom: 10px;
}

#after-service .schedule-item-txt {
  text-align: center;
  font-size: 0.8em;
  line-height: 1.5;
}

/***********************/
#after-service .sche-under-block {
  padding-bottom: 90px;
}

#after-service .sche-under-flex {
  display: flex;
  background-image: linear-gradient(to right, #005b4b 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 50px 0 25px;
  position: relative;
}

#after-service .sche-under-flex::after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  content: url(../images/after-service/inv-triangle.png);
  transform: translateX(-50%) scale(0.55);
}

#after-service .sche-under-flex:last-of-type {
  background-image: unset;
}

#after-service .sche-under-flex:last-of-type::after {
  content: "";
}

#after-service .sche-under-img {
  width: 30%;
  /*min-width:255px;*/
  min-width: 220px;
}

#after-service .sche-under-img>img {
  width: 100%;
}

#after-service .sche-under-text {
  width: 60%;
  display: block;
  /*padding-left:20px;*/
  padding-left: 30px;
  line-height: 1.5;
}

#after-service .sche-under-text>.sche-under-text-ttl {
  font-size: 1.3em;
  padding-bottom: 20px;
  /*line-height:1.5;*/
  line-height: 1.8;
}

#after-service .sche-under-text>p {
  font-size: 0.9em;
  line-height: 1.8;
  text-align: justify;
}

/***** おうちづくりの流れ*******************************/
#flow {
  color: var(--text-color);
  font-weight: 350;
}

#flow .flow-fst-text {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 3%;
}

#flow .flow-fst-text>p {
  display: block;
  /*line-height:1.8;*/
  /*line-height:2;*/
  line-height: 2.5;
  letter-spacing: 2px;
  font-size: 1em;
}

#flow .flow-wrap {
  padding-top: 4.5%;
  padding-bottom: 4.5%;
}

#flow .last-flow-wrap {
  padding-bottom: 10%;
}

#flow hr {
  border-top: 1px solid #006335;
}

#flow .flow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#flow .flow-item:nth-child(2) {
  flex-direction: row-reverse;
  padding-top: 30px;
}

#flow .flow-item-content {
  /*width:45%;*/
  width: 50%;
  padding: 0 2.5%;
  margin: 0 auto;
  max-width: 400px;
}

#flow .flow-item-step {
  font-size: 1.7em;
  /*padding-bottom:30px;*/
  padding-bottom: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  font-family: "Zen Old Mincho", serif;
}

#flow .step-mark {
  width: 30px;
  height: auto;
  margin-right: 13px;
}

#flow .flow-item-ttl {
  font-size: 1.1em;
  /*padding-bottom:30px;*/
  padding-bottom: 15%;
  text-align: center;
}

/*@media (min-width:1024px){
  #flow .flow-item-step{
    padding-bottom:40px;
  }
  #flow .flow-item-ttl{
    padding-bottom:40px;
  }
}*/
#flow .flow-item-text {
  font-size: 0.9em;
}

#flow .flow-item-text>p {
  /*line-height:1.8;*/
  line-height: 2;
  text-align: justify;
}

#flow .flow-item-img {
  width: 50%;
  padding-left: 15px;
}

#flow .flow-item:nth-child(2) .flow-item-img {
  padding-right: 15px;
  padding-left: 0;
}

#flow .flow-item-img>img {
  width: 100%;
}

/***** 「木と暮らす」＋「脱炭素」************************************/
#wood {
  font-weight: 350;
  color: var(--text-color);
}

#wood hr {
  border-top: 1px solid #231815;
}

#wood .title-flex {
  display: flex;
  align-items: center;
  gap: 5%;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
}

#wood .title-flex .title-img {
  width: 160px;
  min-width: 160px;
}

#wood .title-flex .title-img>img {
  width: 100%;
}

#wood .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}

#wood .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
}

#wood .after-ttl>.af-subttl {
  font-size: 0.7em;
}


#wood .wood-block01 .after-ttl {
  width: calc(95% - 100px);
  text-align: left;
  padding-bottom: 0;
  padding-top: 0;
}

#wood .wood-block01-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /*padding-bottom:120px;*/
  padding-bottom: 140px;
}

#wood .wood-block01-img {
  width: 60%;
}

#wood .wood-block01-img>img {
  width: 100%;
}

#wood .wood-block01-text {
  width: 40%;
  position: relative;
  font-size: 1.8em;
  letter-spacing: 2px;
}

#wood .wood-block01-text-box {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Zen Old Mincho", serif;
  -ms-writing-mode: tb-rl;
  /*縦書き*/
  writing-mode: vertical-rl;
  /*縦書き*/
}

#wood .wood-block01-text-box>p {
  line-height: 1.8;
}

#wood .dom-block {}

#wood .dom-block-ttl {
  display: inline-block;
  font-size: 1.8em;
  border-bottom: 1px solid #231815;
  padding-bottom: 15px;
  margin-bottom: 25px;
  /*position:relative;
  left:50%;
  transform: translateX(-50%);*/
  /*letter-spacing: 2px;*/
  letter-spacing: 5px;
  width: 66%;
  text-align: center;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}

#wood .dom-block-text {
  /*padding:0 25px;*/
  width: 66%;
  /*padding-bottom:50px;*/
  padding-bottom: 80px;
  font-weight: 350;
}

#wood .dom-block-text>p {
  /*line-height:1.8;*/
  /*line-height:2;*/
  line-height: 2.3;
  text-align: justify;
}

#wood .dom-block-img {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  /*padding-bottom:15px;*/
  padding-bottom: 10%;
}

#wood .dom-block-img01 {
  width: 66.5%;
}

#wood .dom-block-img01>img {
  width: 100%;
}

#wood .dom-block-img02 {
  width: 32%;
  display: grid;
}

#wood .dom-block-img02>img {
  width: 100%;
}

#wood .dom-block-img02>img:nth-child(1) {
  padding-bottom: 0.5%;
}

#wood .dom-block-img02>img:nth-child(2) {
  padding-top: 0.5em;
}

#wood .dom-block-add {
  font-size: 1.5em;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 10%;
}

#wood .dom-block-add>p {
  line-height: 1.8;
}

/******************************************/
#wood .wood-block02-wrap {
  padding-top: 5%;
  padding-bottom: 5%;
}

#wood .wood-block02 {
  background: #f7f8f8;
}

#wood .wood-block02-flex {
  display: flex;
  justify-content: space-between;
}

#wood .wood-block02-img {
  width: 45%;
}

#wood .wood-block02-img>img {
  width: 100%;
}

#wood .wood-block02-text {
  width: 50%;
  letter-spacing: 2px;
  font-size: 0.9em;
}

#wood .wood-block02-text>p {
  /*line-height:2;*/
  line-height: 2.3;
  text-align: justify;
}

#wood .wood-block03-wrap {
  padding-top: 5%;
  padding-bottom: 8%;
}

#wood .wood-block03 {}

#wood .wood-block03-eight {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /*padding-bottom:50px;*/
  padding-top: 60px;
  padding-bottom: 140px;
}

#wood .eight-item {
  width: calc(calc(100% - 30px) / 4);
  padding-bottom: 10px;
}

#wood .eight-item>img {
  width: 100%;
}

#wood .wood-block03-four {}

#wood .four-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#wood .four-item {
  width: calc(calc(100% - 50px) / 6);
  padding-bottom: 10px;
}

#wood .four-item>img {
  width: 100%;
}

#wood .four-text {}

#wood .four-text>p {
  font-size: 0.9em;
  /*line-height:1.8;*/
  line-height: 2;
  text-align: justify;
}

/************************************/
#wood .wood-block04 {}

#wood .wood-block04-wrap {
  /*padding-top:12%;*/
  padding-top: 10%;
  padding-bottom: 8%;
}

#wood .wood-block04-toptitle {
  line-height: 1.5;
  padding-bottom: 12%;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}

#wood .wood-block04-toptitle>.toptitle-name {
  font-size: 2em;
  padding-bottom: 10px;
}

#wood .wood-block04-toptitle>.toptitle-subname {
  font-size: 1.3em;
  font-weight: 500;
}

#wood .wood-block04-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #727171;
  position: relative;
  margin-bottom: 50px;
  color: #595757;
}

#wood .wood-block-ttl {
  font-size: 1.3em;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
}

#wood .wood-block04-img {
  width: 20%;
  position: absolute;
  right: 0;
  bottom: 0;
}

#wood .wood-block04-img>img {
  width: 100%;
}

#wood .wood-reason-box {
  padding-bottom: 50px;
}

#wood .reason-box {
  width: 100%;
  padding-bottom: 80px;
}

#wood .reason-box.reason-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

#wood .reason-item {
  width: 100%;
}

#wood .reason-flex>.reason-item {
  width: 50%;
}

#wood .reason-flex>.reason-item:nth-child(1) {
  padding-right: 1.5%;
}

#wood .reason-flex>.reason-item:nth-child(2) {
  padding-left: 1.5%;
}

#wood .reason-ttl {
  font-size: 1.3em;
  color: #595757;
  padding-bottom: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

#wood .reason-content {
  display: flex;
  justify-content: space-between;
}

#wood .reason-text>p {
  font-size: 0.9em;
  line-height: 1.8;
  text-align: justify;
}

#wood .reason-flex .reason-text {
  width: 55%;
}

#wood .reason-img {
  width: 220px;
  max-width: 220px;
  min-width: 220px;
  /*padding-left:10px;*/
  padding-left: 20px;
}

#wood .reason-flex .reason-img {
  width: 42%;
  max-width: unset;
}

#wood .reason-img>img {
  width: 100%;
}

#wood .wood-mizdas .wood-block04-title {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#wood .wood-mizdas .wood-block-ttl {
  letter-spacing: 2px;
  text-align: center;
}

#wood .wood-mizdas-box {
  display: flex;
}

#wood .mizdas-content {
  width: 82%;
  /*padding-right:10px;*/
  padding-right: 20px;
}

@media (min-width:1024px) {
  #wood .mizdas-content {
    width: calc(100% - 140px);
  }
}

#wood .mizdas-detail {
  padding-bottom: 20px
}

#wood .mizdas-detail>p {
  font-size: 0.9em;
  line-height: 1.8;
  text-align: justify;
}

#wood .mizdas-flex {
  display: flex;
}

#wood .mizdas-left,
#wood .mizdas-right {
  width: 50%;
}

#wood .mizdas-left {
  padding-right: 2%;
}

#wood .mizdas-right {
  padding-left: 2%
}

#wood .mizdas-item {
  padding-bottom: 30px;
}

#wood .mizdas-item-ttl {
  font-size: 1.3em;
  color: #595757;
  letter-spacing: 2px;
  padding-bottom: 15px;
  font-weight: 400;
  text-align: justify;
}

#wood .mizdas-item>p {
  font-size: 0.9em;
  line-height: 1.8;
  text-align: justify;
}

#wood .mizdas-img {
  width: 18%;
  max-width: 140px;
}

#wood .mizdas-img>img {
  width: 100%;
}

/*********************************/
#wood .wood-block05-wrap {
  padding: 7% 5%;
}

@media (max-width:1024px) {
  #wood .wood-block05-wrap {
    padding-left: 8%;
    padding-right: 8%;
  }
}

#wood .facing-block {
  text-align: center;
}

#wood .facing-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  text-align: left;
}

#wood .facing-box.reverse {
  flex-direction: row-reverse;
}

#wood .facing-img {
  width: 40%;
  padding-left: 5%;
  /*min-width:256px;*/
}

#wood .facing-box.reverse .facing-img {
  padding-right: 5%;
}

#wood .facing-detail {
  width: 60%;
}

/*@media (max-width:1024px){
  #wood .facing-detail{
    width: calc(100% - 256px);
  }
}*/
#wood .facing-item {
  padding-bottom: 30px;
}

#wood .facing-item-ttl {
  font-size: 1.7em;
  /*padding-bottom:15px;*/
  padding-bottom: 20px;
  letter-spacing: 3px;
}

#wood .facing-item>p {
  font-size: 0.9em;
  line-height: 1.8;
  text-align: justify;
}

#wood .facing-add {
  /*display:inline;*/
  font-size: 1.35em;
  padding-bottom: 15px;
  border-bottom: 6px double #727171;
  /*line-height:1.8;*/
  line-height: 2;
  letter-spacing: 3px;

  width: 60%;
  text-align: justify;
}

#wood .facing-add>p {}

/********************************************/
#wood .block06-block {
  text-align: center;
}

#wood .block06-flex01-ttl {
  padding-bottom: 15px;
  font-size: 1.1em;
  text-align: left;
  font-weight: 400;
  letter-spacing: 2px;
}

#wood .block06-flex01 {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding-bottom: 50px;
}

#wood .block06-flex01-text {
  font-size: 0.9em;
  /*padding-right:15px;*/
  /*padding-right:30px;*/
  padding-right: 40px;
  padding-bottom: 30px;
  width: 70%;
}

#wood .block06-flex01-text>p {
  line-height: 2;
  text-align: justify;
}

#wood .block06-flex01-text>p.yajirusi {
  position: relative;
  padding-left: 1.1em;
}

#wood .block06-flex01-text>p.yajirusi::after {
  content: "⇒";
  position: absolute;
  top: 0;
  left: 0;
}

#wood .block06-flex01-span {
  width: 40px;
}

#wood .block06-flex01-img {
  width: calc(30% - 40px);
  /*min-width:220px;*/
  min-width: 200px;
}

#wood .block06-flex01-img>img {
  width: 100%;
}

#wood .block06-add {
  font-size: 1.8em;
  color: #727171;
  padding-bottom: 2px;
  margin-bottom: 15px;
  border-bottom: 6px double #727171;
  /*line-height:1.8;*/
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#wood .block06-flex02 {
  display: flex;
  justify-content: space-between;
  text-align: left;
  /*margin-top:50px;*/
  margin-top: 80px;
  /*gap:1%;*/
  gap: 3%;
}

#wood .block06-flex02-content {
  /*width:70%;*/
  /*width:69%;*/
  width: 67%;
}

#wood .block06-flex02-ttl {
  font-size: 1.1em;
  padding-bottom: 15px;
  text-align: justify;
  line-height: 1.8;
}

#wood .block06-flex02-text {
  font-size: 0.9em;
}

#wood .block06-flex02-item {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.8;
  letter-spacing: 2px;
  /*padding-bottom:5px;*/
  padding-bottom: 10px;
  text-align: justify;
}

#wood .block06-flex02-item::after {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

#wood .block06-flex02-img {
  width: 30%;
  /*min-width:220px;*/
  min-width: 200px;
}

#wood .block06-flex02-img>img {
  width: 100%;
}


/***** 「快適な住まい」へのこだわり＋ZEH **********************************/
#zeh {
  color: var(--text-color);
  font-weight: 350;
}

#zeh .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
}

#zeh .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#zeh .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#zeh .zeh-ttl {
  font-size: 1.8em;
}

#zeh .block01-flex {
  /*display:flex;
  flex-wrap:wrap;
  justify-content: space-between;*/
  display: block;
}

/*#zeh .block01-left,
#zeh .block01-right{
  width:50%;
}
#zeh .block01-left{
  padding-right:3%;
  border-right:1px solid var(--quaternary);
}
#zeh .block01-right{
  padding-left:3%;
}*/
#zeh .block01-item {
  /*display:flex;*/
  /*flex-direction: column;
  flex:1 1 auto;*/
  /*margin-bottom:50px;*/
  margin-bottom: 150px;
  width: 100%;
}

#zeh .block01-ttl {
  padding-bottom: 15px;
  margin-bottom: 15px;
  /*font-size:1.3em;*/
  font-size: 1.5em;
  letter-spacing: 2.5px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#zeh .block01-itemflex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 15px;
}

#zeh .block01-itemflex-text {
  text-align: center;
  font-weight: 400;
  padding-bottom: 30px;
}

#zeh .block01-itemflex-text>p {
  line-height: 2;
}

#zeh .block01-itemflex-img {
  width: 50%;
  overflow: hidden;
}

#zeh .block01-itemflex-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*@media (min-width:1024px){
  #zeh .block01-itemflex-text{
    width:240px;
    min-width:240px;
    font-size:1.05em;
  }
  #zeh .block01-itemflex-text>p{
    line-height:2.5;
  }
  #zeh .block01-itemflex-img{
    width:50%;
  }
}*/
#zeh .block01-detail {
  width: 50%;
  padding-left: 15px;
}

#zeh .block01-detail-item {
  padding-bottom: 15px;
}

#zeh .block01-detail-item.detail-item-flex {
  display: flex;
  align-items: flex-start;
}

#zeh .block01-detail-ttl {
  font-weight: 400;
  /*padding:5px;*/
  padding: 10px;
  margin-bottom: 10px;
  background: #efefef;
}

#zeh .block01-detail-item.detail-item-flex .block01-detail-ttl {
  padding-right: 10px;
  min-width: 154px;
  white-space: nowrap;
  margin-right: 10px;
}

#zeh .block01-detail-item>p {
  font-size: 0.8em;
  line-height: 1.5;
  position: relative;
  text-align: justify;
}

#zeh .block01-detail-item>p::after {
  position: absolute;
  top: 0;
  left: 0;
}

#zeh .block01-detail-item>p.text01 {
  padding-left: 75px;
}

#zeh .block01-detail-item>p.text02 {
  padding-left: 155px;
}

#zeh .block01-detail-item>p.text03 {
  padding-left: 125px;
}

#zeh .block01-detail-item>p.text04 {
  padding-left: 100px;
}

#zeh .block01-detail-item>p.text05 {
  padding-left: 140px;
}

#zeh .block01-detail-item>p.text01::after {
  content: "【消臭機能】";
}

#zeh .block01-detail-item>p.text02::after {
  content: "【抗菌・抗ウイルス機能】";
}

#zeh .block01-detail-item>p.text03::after {
  content: "【VOC吸着除去機能】";
}

#zeh .block01-detail-item>p.text04::after {
  content: "【防火認定材料】";
}

#zeh .block01-detail-item>p.text04-2::after {
  content: "【結露抑制機能】";
}

#zeh .block01-detail-item>p.text05::after {
  content: "【二酸化炭素吸収機能】";
}

#zeh .block01-underbox {
  background: #efefef;
  /*font-size:0.9em;*/
  font-size: 1em;
  padding: 15px 10px;
}

#zeh .underbox01 {
  /*padding:15px 10px;*/
  display: flex;
  align-items: center;
}

#zeh .underbox01-left {
  padding-right: 5px;
}

#zeh .underbox01-right {
  border-left: 1px solid #231815;
  padding-left: 10px;
  font-size: 0.8em;
}

#zeh .underbox01-right>p {
  line-height: 1.5;
  text-align: justify;
}

#zeh .block01-item .underbox01-left {
  /*width:250px;
  min-width:250px;*/
  width: 280px;
  min-width: 280px;
}

#zeh .block01-item .underbox01-right {
  /*width:calc(100% - 250px);*/
  width: calc(100% - 280px);
}

#zeh .underbox02 {
  background: #595757;
  padding: 3px;
  margin-top: 5px;
  /*font-size:0.8em;*/
  font-size: 0.9em;
  color: #fff;
  text-align: center;
}

#zeh .underbox02.underbox02_2 {
  font-size: 0.8em;
}

#zeh .block01-item-add01 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  width: 100%;
  text-align: center;
  background: #efefef;
  padding: 15px 10px;
}

#zeh .block01-item-add01-img {
  width: 50px;
  height: auto;
  margin-right: 15px;
}

#zeh .block01-item-add01-img>img {
  width: 100%;
  max-width: 50px;
  min-width: 50px;
}

#zeh .block01-item-add01-text {
  /*width:calc(100% - 100px);*/
  font-size: 0.95em;
  text-align: left;
}

#zeh .block01-item-add02 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}

#zeh .block01-item-add02-img {
  width: 40%;
  display: flex;
  align-items: end;
}

#zeh .block01-item-add02-img>img:nth-child(1) {
  width: 60%;

}

#zeh .block01-item-add02-img>img:nth-child(2) {
  width: 40%;
  padding-left: 3%;
}

#zeh .block01-item-add02-img>img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

#zeh .block01-item-add02-text {
  width: 60%;
  font-size: 0.85em;
  padding-left: 5px;
}

/******************************************/
#zeh .zeh-block02 {
  /*background:#f7f8f8;*/
  padding-top: 7%;
}

#zeh .sumika-ttl {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.3em;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 3px;
}

/*#zeh .sumika-ttl::after{
  content:url(../images/house-mark.png);
  position:absolute;
  top:-65px;
  left:-70px;
  transform:scale(0.13);
}
#zeh .sumika-ttl span.small{
  font-size:0.7em;
}*/
#zeh .sumika01 {
  width: 95%;
  margin: 0 auto;
  display: block;
  padding-bottom: 30px;
}

#zeh .sumika01-img {
  width: 100%;
  padding-bottom: 3%;
}

#zeh .sumika01-text {
  width: 100%;
  font-size: 0.9em;
}

#zeh .sumika01-text>p {
  line-height: 1.5;
  text-align: justify;
}

#zeh .sumika02 {
  display: block;
  padding-bottom: 30px;
  width: 95%;
  margin: 0 auto;
}

#zeh .sumika02-img01 {
  width: 100%;
}

#zeh .sumika02-img01>img {
  width: 100%;
}

#zeh .sumika03 {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 10%;
}

#zeh .sumika03-img {
  width: 100%;
}

#zeh .sumika03-img>img {
  width: 100%;
}

#zeh .sumika03-text {
  width: 100%;
  font-size: 0.9em;
  padding-top: 1%;
}

#zeh .sumika03-text>p {
  line-height: 1.5;
  text-align: justify;
}

/*********************************/
#zeh .zeh-block03 {
  text-align: center;
  padding-top: 7%;
  font-family: "Zen Old Mincho", serif;
  background: #f7f8f8;
}

#zeh .zeh-block03 .after-ttl {
  padding-bottom: 50px;
  font-weight: 500;
}

#zeh .zeh-block03-text {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--text-color);
  line-height: 2.5;
  font-weight: 450;
  letter-spacing: 2px;
}

/*********************************/
#zeh .zeh-block04 {
  padding-top: 7%;
  background: #f7f8f8;
}

#zeh .zeh-block-ttl {
  font-size: 1.9em;
  padding-bottom: 50px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
}

#zeh .zeh-block04-text {
  font-size: 0.9em;
  padding-bottom: 50px;
  width: 75%;
  margin: 0 auto;
}

#zeh .zeh-block04-text>p {
  line-height: 1.5;
  text-align: justify;
}

#zeh .zeh-block04-img {
  width: 75%;
  padding-bottom: 5px;
  margin: 0 auto;
}

#zeh .zeh-block04-img>img {
  width: 100%;
}

#zeh .zeh-block04-small-text {
  width: 75%;
  margin: 0 auto;
  font-size: 0.7em;
  font-weight: 400;
}

/**********************************/
#zeh .zeh-block05 {
  padding-top: 7%;
  background: #f7f8f8;
}

#zeh .zeh-block05 .zeh-block-ttl {
  font-weight: normal;
  padding-bottom: 30px;
}

#zeh .zeh-block05-text {
  text-align: center;
}

#zeh .zeh-block05-text>p {
  line-height: 1.5;
  padding-bottom: 50px;
}

#zeh .tbl-zeh-goal,
#zeh .tbl-zeh-result {
  width: 90%;
  margin: 0 auto;
  overflow-x: auto;
  font-size: 0.9em;
  /*margin-bottom:80px;*/
  margin-bottom: 40px;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
}

#zeh .tbl-zeh-result {
  width: 100%;
}

#zeh .zeh-result1st {
  margin-bottom: 40px;
}

#zeh .tbl-zeh-goal::-webkit-scrollbar,
#zeh .tbl-zeh-result::-webkit-scrollbar {
  height: 5px;
  background-color: #fff;
}

#zeh .tbl-zeh-goal::-webkit-scrollbar-thumb,
#zeh .tbl-zeh-result::-webkit-scrollbar-thumb {
  background: rgba(89, 87, 87, 0.5);
  height: 3px;
  border-radius: 10px;
  cursor: pointer;
}

#zeh .tbl-zeh-goal>table,
#zeh .tbl-zeh-result>table {
  text-align: center;
  width: 100%;

}

#zeh .tbl-zeh-goal>table tr,
#zeh .tbl-zeh-result>table tr {
  border-bottom: 1px solid #000;
  padding: 15px 0;
}

#zeh .tbl-zeh-goal>table tr:first-of-type,
#zeh .tbl-zeh-result>table tr:first-of-type {
  border-top: 1px solid #000;
  background: #8c8783;
}

#zeh .tbl-zeh-goal>table th {
  border: 1px solid #000;
  text-align: center;
  padding: 15px;
}

#zeh .tbl-zeh-goal>table tbody tr:nth-child(2) {
  background: #d9d9d9;
}

#zeh .tbl-zeh-goal>table tbody tr:nth-child(3) {
  background: #fff;
}


#zeh .tbl-zeh-goal>table td,
#zeh .tbl-zeh-result>table td {
  width: 120px;
  min-width: 120px;
  padding: 15px 0;
  border-right: 1px solid #000;
}

#zeh .tbl-zeh-goal>table td:first-of-type,
#zeh .tbl-zeh-result>table td:first-of-type {
  border-left: 1px solid #000;
}

#zeh .tbl-zeh-result>table tr td:first-of-type {
  width: 90px;
  min-width: 90px;
}

/********************/
#zeh .zeh-block06 {
  padding-top: 7%;
  background: #f7f8f8;
}

#zeh .zeh-block-hatuden {
  text-align: center;
}

#zeh .zeh-block-ttl-bk {
  font-size: 1.9em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;

  font-weight: normal;
  /*letter-spacing: 2px;*/
  position: relative;
  border-bottom: 1px solid var(--text-color);
  /*text-align:center;*/
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}

/****************************/
#zeh .hatuden-content {
  padding-bottom: 7%;
}

#zeh .hatuden01 {
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  margin-top: 15px;
  text-align: left;
}

#zeh .hatuden01-text {
  width: 100%;
  font-size: 1em;
  text-align: center;
}

#zeh .hatuden01-text>p {
  line-height: 1.5;
}

/*#zeh .hatuden01-img{
  width:44%;
}
#zeh .hatuden01-img>img{
  width:100%;
}*/
#zeh .hatuden02 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-size: 1em;
  background: #f7f8f8;
  padding: 3%;
}

#zeh .hatuden02-box,
#zeh .hatuden02-box02 {
  width: 30%;
  display: block;
}

#zeh .hatuden02-box:nth-child(1) {
  width: 33%;
}

#zeh .hatuden02-img,
#zeh .hatuden02-img02 {
  width: 100%;
}

#zeh .hatuden02-img>img,
#zeh .hatuden02-img02>img {
  width: 100%;
}

#zeh .hatuden02-text {
  width: 95%;
  margin: 0 auto;
  margin-top: 5px;
  border: 2px solid var(--text-color);
  background: #fff;
  padding: 5px 8px;
}


#zeh .zeh-system {
  text-align: left;
  padding-bottom: 10%;
}

#zeh .system01 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

#zeh .system01-text {
  width: 65%;
  margin-left: 5%;
  /*font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:500;*/
  font-size: 1.2em;
}

#zeh .system01-text>p {
  line-height: 2;
  text-align: justify;
}

#zeh .system01-img {
  width: 30%;
  max-width: 230px;
}

#zeh .system01-img>img {
  width: 100%;
}

#zeh .system02-img {
  width: 100%;
  /*padding-bottom:50px;*/
  margin-bottom: 50px;
  padding: 5%;
  background: #f7f8f8;
}

#zeh .system02-img>img {
  width: 100%;
}

#zeh .system03-text {
  width: 100%;
  font-size: 1.2em;
  padding-bottom: 30px;
  text-align: center;
}

#zeh .system03 {
  padding: 1%;
  display: flex;
  align-items: stretch;
  border: 1px dashed #231815;
  gap: 10px;
}

#zeh .system03-small {
  font-size: 0.8em;
  background: #f7f8f8;
  width: 120px;
  position: relative;
  flex: 1;
}

#zeh .system03-small>span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#zeh .system03-block {
  display: flex;
  width: calc(100% - 120px);
  align-items: center;
}

#zeh .system03-hyo {
  width: 50%;
  font-size: 0.8em;
  /*padding:0 5px;*/

}

#zeh .system03-hyo>p {
  line-height: 1.5;
  text-align: justify;
}

#zeh .system03-hyo:first-child>p:first-child {
  text-align: left;
}

#zeh .system03-hyo:first-of-type {
  border-right: 1px solid #231815;
  padding-right: 10px;
  margin-right: 10px;
  font-family: "Noto Serif JP", serif;
}

#zeh .system03-hyo>p span.big-t {
  font-size: 1.35em;
}

/*#zeh .system03-hyo>hr{
  border-top:1px dashed #231815;
  padding-bottom:2px;
}
#zeh .system03-hyo>p{
  font-size:0.8em;
  line-height:1.5;
}
#zeh .system03-hyo>p>span{
  font-size:1.5em;
}
#zeh .system03-text{
  width:100%;
  padding-left:2%;
  font-size:1.2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight:500;
  padding-bottom:30px;
}
#zeh .system03-text>p{
  line-height:1.5;
}*/
/***** GALLERY 平屋/2階屋注文住宅「施工事例集」 ********************************/
#gallery .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
}

#gallery .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
}

#gallery .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#gallery .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#gallery .list-block {
  color: #000;
}

#gallery .list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
  /*width:calc(calc(100% / 3) - 20px);*/
  width: calc(94% / 3);
  /*padding:0 10px;*/
  cursor: pointer;
  letter-spacing: 2px;
}

#gallery .item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#gallery .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 5/3;
  transition: all .7s;
}

#gallery .item-ttl-block {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-bottom: 15px;
  line-height: 1.5;
}

#gallery .item-ttl {
  flex-grow: 1;
  font-size: 0.9em;
  font-family: "Zen Old Mincho", serif;
  transition: all .7s;
  text-align: justify;
}

#gallery .item-date {
  margin-bottom: 15px;
  transition: all .7s;
}

#gallery .item-category {
  color: #666;
  font-size: 0.7em;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  transition: all .7s;
}

#gallery .list-item:hover .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#gallery .list-item:hover .item-ttl,
#gallery .list-item:hover .item-date,
#gallery .list-item:hover .item-category {
  opacity: .7;
  transition: all .7s;
}

#gallery .gallery-none {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  font-size: 1em;
  font-weight: 350;
  margin-top: 60px;

}

/* GALLERY(詳細) */
#gallery-item {
  /*background:#f7f8f8;
  padding-bottom:50px;*/
}

.gallery-item {
  margin-bottom: 30px;
}

#gallery-item .gallery-item-wrap {
  padding: 7% 5%;
}

@media (max-width:1024px) {
  #gallery-item .gallery-item-wrap {
    padding-left: 8%;
    padding-right: 8%;
  }
}

#gallery-item .title {
  padding: 15px;
  padding-top: 0;
  letter-spacing: 4px;
}

#gallery-item .ttl {
  font-size: 1em;
  padding-bottom: 15px;
  text-align: left;

}

#gallery-item .ttl:not(.oswald) {
  font-family: "Zen Old Mincho", serif;
}

#gallery-item .wrapper-content {
  background: #fff;
  min-height: 1000px;
  padding: 7% 13%;
  text-align: left;
}

#gallery-item .wrapper-content p {
  line-height: 2.2;
  font-family: "Zen Old Mincho", serif;
  text-align: justify;
}

#gallery-item .event-title {
  font-size: 2em;
  padding: 0 15px 30px 15px;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  text-align: justify;
}

#gallery-item .main-image {
  width: 100%;
  padding-bottom: 30px;
}

#gallery-item .main-image>img {
  width: 100%;
}

#gallery-item .item-detail {}

#gallery-item .story {
  letter-spacing: 2px;
  padding: 0px 15px 25px 15px;
}

#gallery-item .text {
  font-size: 1em;
  padding: 0 15px 0 15px;
}

#gallery-item .img {
  padding-top: 60px;
  width: 100%;
}

#gallery-item .img>img {
  width: 100%;
  padding-bottom: 15px;
}

/*#gallery-item .img .img-flex{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
}
#gallery-item .img .img-flex .img-item{
  padding-bottom:100px;
  width:47%;
}
#gallery-item .img .img-flex .img-item>img{
  width:100%;
}
#gallery-item .img .img-flex .img-item .caption{
  display:block;
  padding-top:15px;  
}*/
#gallery-item .list-back {
  padding: 60px 0;
  font-size: 1.1em;
  text-align: center;
}

#gallery-item .list-back>a {
  transition: all .7s;
}

#gallery-item .list-back>a:hover {
  opacity: .7;
  transition: all .7s;
}

.gallery-description {
  padding: 10px 15px;
}

/*****分譲住宅 ********************************/
#rb-house .after-ttl {
  width: 100%;
  padding-top: 20px;
  /*padding-bottom:80px;*/
  padding-bottom: 60px;
  text-align: center;
  letter-spacing: 2px;
}

#rb-house .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}

#rb-house .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#rb-house .eventlist-addtext {
  font-size: 0.8em;
  padding-bottom: 30px;
  text-align: center;
}

#rb-house .eventlist-addtext>p {
  line-height: 1.8;
}

#rb-house .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#rb-house .list-block {
  /*color:#000;*/
}

#rb-house .list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
  /*width:calc(calc(100% / 3) - 20px);*/
  width: calc(94% / 3);
  /*padding:0 10px;*/
  /*cursor:pointer;*/
  letter-spacing: 2px;
}

#rb-house .item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#rb-house .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 5/3;
  transition: all .7s;
}

#rb-house .item-ttl-block {
  margin-bottom: 15px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  flex: 1;
}

#rb-house .item-ttl {
  font-size: 0.9em;
  text-align: left;
  line-height: 1.8;
  font-weight: 350;
  flex-grow: 1;
}

#rb-house .item-date {
  margin-bottom: 15px;
}

#rb-house .item-category {
  color: #666;
  font-size: 0.7em;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
}

#rb-house .list-item>.detail-link {
  display: block;
  padding: 8px;
  border: 1px solid #595757;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #595757;
  color: #fff;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(20px, 1vw, 25px);
  font-weight: 350;
  margin: 0 auto;
  position: relative;
}

#rb-house .list-item>.detail-link::after {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  filter: invert(1);
  padding: 7px 18px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
  font-family: "Zen Old Mincho", serif;
}

#rb-house .list-item>.detail-link.completed {
  background: #b5b5b6;
  border: 1px solid #b5b5b6;
  cursor: default;
}

#rb-house .list-item>.detail-link.completed::after {
  background: none;
}

#rb-house .list-item:hover:not(.zoomnot) .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#rb-house .list-item:hover .detail-link:not(.completed) {
  background: #fff;
  color: #595757;
  transition: all .7s;
}

#rb-house .list-item:hover .detail-link::after {
  right: 3%;
  filter: invert(40%);
}

#rb-house .rb-house-none {
  text-align: center;
  font-size: 1.1em;
  font-weight: 350;
  margin-top: 60px;
}

/* 分譲住宅(詳細) */
#rb-house-item {
  color: var(--text-color);
}

#rb-house-item .gallery-item-wrap {
  padding: 7% 5%;
}

@media (max-width:1024px) {
  #rb-house-item .gallery-item-wrap {
    padding-left: 8%;
    padding-right: 8%;
  }
}

#rb-house-item .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
}

#rb-house-item .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#rb-house-item .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#rb-house-item .wrapper-content {
  padding: 0 2%;
}

#rb-house-item .wrapper-content p {
  line-height: 1.8;
}

#rb-house-item .rb-title {
  font-size: 1.45em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.5;
  border-bottom: 1px solid #231815;
  text-align: center;
  font-weight: 350;
}

#rb-house-item .point {
  position: relative;
}

#rb-house-item .point-box {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

#rb-house-item .point-item {
  display: flex;
  align-items: start;
  /*justify-content: center;*/
  font-size: 1.2em;
  color: #c30e23;
}

#rb-house-item .point-item>span {
  content: "POINT";
  position: relative;
  top: 0;
  left: 0;
  border: 1px solid #c30e23;
  border-radius: 7px;
  padding: 2px 10px;
  margin-right: 15px;
  letter-spacing: 2px;
}

#rb-house-item .point-item>p {
  line-height: 1.5;
}

#rb-house-item .item-detail {}

#rb-house-item .img .img-main {
  width: 100%;
  padding-bottom: 3%;
}

#rb-house-item .img .img-main>img {
  width: 100%;
}

#rb-house-item .img .img-sub {
  display: flex;
  justify-content: space-between;
}

#rb-house-item .img .img-sub>img {
  width: calc(100% / 3 - 1.5%);
  object-fit: cover;
  object-position: center center;
}

#rb-house-item .overview {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

#rb-house-item .overview-item {
  width: 50%;
  border-top: 1px solid #595757;
  display: flex;

}

#rb-house-item .overview-item-colums {
  width: calc(100% / 3);
  border-left: 1px solid #595757;
  border-right: 1px solid #595757;
  position: relative;
  background: #f7f8f8;
  padding: 0 10px;
  /*display:flex;
  flex-direction: column;
  justify-content: center;*/
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

#rb-house-item .overview-item-colums>p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.5;
  width: 100%;
}

#rb-house-item .overview-item-text {
  width: calc(100% - calc(100% / 3));
  min-height: 50px;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*line-height:1.5;*/
  line-height: 1.8;
  text-align: justify;
}

#rb-house-item .overview-item:nth-child(2n-1) .overview-item-text {
  border-right: 1px solid #595757;
}

#rb-house-item .overview-item-fst {
  width: 100%;
  border: 1px solid #595757;
  border-bottom: none;
  text-align: center;
  padding: 10px 0;
  background: #f7f8f8;
  font-size: 1.1em;
}

#rb-house-item .overview-item-another {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #595757;
  border-top: 1px solid #595757;
}

#rb-house-item .overview-item-another .overview-item-colums {
  width: calc(100% / 6);
  background: #f7f8f8;
  font-size: 1.1em;
}

#rb-house-item .overview-item-another .overview-item-text {
  width: calc(100% - calc(100% / 6));
  border-right: 1px solid #595757;
  min-height: 50px;
  padding: 20px 10px;
  justify-content: normal;
  display: block;
}

.explanation {
  text-align: center;
  line-height: 200%;
}

.bottombd {
  border-bottom: 1px solid #595757;
}

#rb-house-item .traffic {
  border-bottom: 1px solid #595757;
}

#rb-house-item .traffic .overview-item-colums {
  justify-content: normal;
  padding: 20px 10px;
}

#rb-house-item .traffic .overview-item-text {
  min-height: 60px;
  padding: 10px 10px;
  justify-content: normal;
  display: block;
}

#rb-house-item .text {
  font-size: 1em;
  padding: 0 15px 0 15px;
}

#rb-house-item .img {
  padding-top: 60px;
}

#rb-house-item .list-back {
  padding: 60px 0;
  font-size: 1.1em;
  text-align: center;
}

#rb-house-item .map-content {
  padding-bottom: 60px;
  background: #f7f8f8;
}

#rb-house-item .place {
  text-align: center;
  padding: 30px 0;
  font-size: 1.1em;
  letter-spacing: 2px;
}

#rb-house-item .map {
  width: 90%;
  margin: 0 auto;
}

#rb-house-item iframe {
  width: 100%;
  aspect-ratio: 5 / 3;
}

.rb-house_minus {
  margin-top: -40px;
}

#rb-house-item .slider {
  width: 90%;
  margin: 0 auto;
}

#rb-house-item .slider img {
  width: 100%;
  /*object-fit:cover;*/
  object-fit: contain;
  object-position: center;
  height: auto;
  min-height: unset;
  aspect-ratio: 3 / 2;
}

#rb-house-item .thumbnail-slider {
  width: 90%;
  margin: 30px auto;
}

#rb-house-item .thumbnail-slider .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#rb-house-item .thumbnail-slider .slick-slide {
  position: relative;
  background: #000;
  width: calc(100% / 3);
  /**/
  margin: 0 0.5%;
}

#rb-house-item .thumbnail-slider img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 2;
}

/***** 資料請求・お問い合わせ部分 *******/
#materialscontact {
  background: #f7f8f8;
  color: var(--text-color);
}

#materialscontact .wrapper-content {
  margin-top: 30px;
}

#materialscontact .contact-text {
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 30px;
}

#materialscontact .contact-text>p {
  line-height: 1.8;
}

#materialscontact .please-contact {
  background: #fff;
}

#materialscontact .block-text {
  display: block;
  padding-left: 10px;
  /*padding-top:1%;*/
  padding: 2% 0;
  margin: 0 auto;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#materialscontact .block-text>div {
  margin-bottom: 15px;
}

#materialscontact .text1 {
  display: inline-block;
  margin-bottom: 25px !important;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

#materialscontact .text1>p {
  line-height: 1.8;
}

#materialscontact .text2 {
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
}

#materialscontact .text2 .text2-1 {
  margin-right: 20px;
}

#materialscontact .text2 .text2-2 {
  position: relative;
}

#materialscontact .text2 .text2-2::after {
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0 10px;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
}

#materialscontact .tel {
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 2px;
}

#materialscontact .sales-dt {
  text-align: center;
}

#materialscontact .add-text {
  font-size: 1em;
  text-align: center;
  padding: 3% 0;
  letter-spacing: 2px;
  line-height: 1.5;
}

.wp-block-columns {
  /*   flex-wrap:nowrap!important; */
}

/***** LAND INFORMATION ********************************/
#land .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
}

#land .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#land .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#land .land-text {
  font-size: 1.1em;
  text-align: center;
  padding-bottom: 50px;
  font-weight: 350;
}

#land .land-text>p {
  line-height: 1.5;
}

#land .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#land .list-block {
  color: #000;
}

#land .list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5%;
  /*width:calc(calc(100% / 3) - 20px);*/
  width: calc(94% / 3);
  /*padding:0 10px;*/
  letter-spacing: 2px;
  font-weight: 350;
}

#land .item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#land .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 5/3;
  transition: all .7s;
}

#land .item-ttl-block {
  margin-bottom: 15px;
  line-height: 1.5;
  flex: 1;
}

#land .item-ttl {
  font-size: 0.9em;
  text-align: left;
  line-height: 1.8;
}

#land .item-date {
  margin-bottom: 15px;
}

#land .item-category {
  color: #666;
  font-size: 0.7em;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
}

#land .list-item>.detail-link {
  display: block;
  padding: 8px;
  border: 1px solid #595757;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #595757;
  color: #fff;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(20px, 1vw, 25px);
  margin: 0 auto;
  position: relative;
}

#land .list-item>.detail-link::after {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  filter: invert(1);
  padding: 7px 18px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

#land .list-item>.detail-link.completed {
  background: #b5b5b6;
  border: 1px solid #b5b5b6;
  cursor: default;
}

#land .list-item>.detail-link.completed::after {
  background: none;
}

#land .list-item:hover:not(.zoomnot) .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#land .list-item:hover .detail-link:not(.completed) {
  background: #fff;
  color: #595757;
  transition: all .7s;
}

#land .list-item:hover .detail-link::after {
  right: 3%;
  filter: invert(40%);
}

#land .land-none {
  text-align: center;
  font-size: 1.1em;
  font-weight: 350;
  margin-top: 60px;
}

/* LAND INFORMATION(詳細) */
#land-item {
  color: var(--text-color);
}

#land-item .gallery-item-wrap {
  padding: 7% 5%;
}

@media (max-width:1024px) {
  #land-item .gallery-item-wrap {
    padding-left: 8%;
    padding-right: 8%;
  }
}

#land-item .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
}

#land-item .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#land-item .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#land-item .wrapper-content {
  padding: 0 2%;
}

#land-item .wrapper-content p {
  line-height: 1.8;
}

#land-item .rb-title {
  font-size: 1.45em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.5;
  border-bottom: 1px solid #231815;
  text-align: center;
  font-weight: 350;
}

#land-item .point {
  position: relative;
}

#land-item .point-item {
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: 1.2em;
  color: #c30e23;
}

#land-item .point-item>span {
  content: "POINT";
  position: relative;
  top: 0;
  left: 0;
  border: 1px solid #c30e23;
  border-radius: 7px;
  padding: 2px 10px;
  margin-right: 15px;
  letter-spacing: 2px;
}

#land-item .point-item>p {
  line-height: 1.5;
}

#land-item .land-point-item {
  display: block;
  font-size: 1.2em;
  color: #c30e23;
  line-height: 1.5;
  text-align: center;
}

#land-item .item-detail {}

#land-item .img .img-main {
  width: 100%;
  padding-bottom: 3%;
}

#land-item .img .img-main>img {
  width: 100%;
}

#land-item .img .img-sub {
  display: flex;
  justify-content: space-between;
}

#land-item .img .img-sub>img {
  width: calc(100% / 3 - 1.5%);
  object-fit: cover;
  object-position: center center;
}

#land-item .overview {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

#land-item .overview-item {
  width: 50%;
  border-top: 1px solid #595757;
  display: flex;

}

#land-item .overview-item-colums {
  width: calc(100% / 3);
  border-left: 1px solid #595757;
  border-right: 1px solid #595757;
  position: relative;
  background: #f7f8f8;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
}

#land-item .overview-item-text {
  width: calc(100% - calc(100% / 3));
  min-height: 50px;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*line-height:1.5;*/
  line-height: 1.8;
  text-align: justify;
}

#land-item .overview-item:nth-child(2n-1) .overview-item-text {
  border-right: 1px solid #595757;
}

#land-item .overview-item-fst {
  width: 100%;
  border: 1px solid #595757;
  border-bottom: none;
  text-align: center;
  padding: 10px 0;
  background: #f7f8f8;
  font-size: 1.1em;
}

#land-item .overview-item-another {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #595757;
  border-top: 1px solid #595757;
}

#land-item .overview-item-another .overview-item-colums {
  width: calc(100% / 6);
  background: #f7f8f8;
  font-size: 1.1em;
}

#land-item .overview-item-another .overview-item-text {
  width: calc(100% - calc(100% / 6));
  border-right: 1px solid #595757;
  min-height: 400px;
  padding: 20px 10px;
  display: block;
  justify-content: normal;
}

#land-item .traffic {
  border-bottom: 1px solid #595757;
}

#land-item .traffic .overview-item-colums {
  justify-content: normal;
  padding: 20px 10px;
}

#land-item .traffic .overview-item-text {
  min-height: 400px;
  padding: 20px 10px;
  display: block;
  justify-content: normal;
}

#land-item .text {
  font-size: 1em;
  padding: 0 15px 0 15px;
}

#land-item .img {
  padding-top: 60px;
}

#land-item .list-back {
  padding: 60px 0;
  font-size: 1.1em;
  text-align: center;
}

#land-item .list-back>a {
  transition: all 0.7s;
}

#land-item .list-back>a:hover {
  opacity: 0.7;
  transition: all 0.7s;
}

#land-item .map-content {
  padding-bottom: 60px;
  background: #f7f8f8;
}

#land-item .place {
  text-align: center;
  padding: 30px 0;
  font-size: 1.1em;
  letter-spacing: 2px;
}

#land-item .map {
  width: 90%;
  margin: 0 auto;
}

#land-item iframe {
  width: 100%;
  aspect-ratio: 5 / 3;
}

.rb-house_minus {
  margin-top: -40px;
}

#land-item .slider {
  width: 90%;
  margin: 0 auto;
}

#land-item .slider img {
  width: 100%;
  /*object-fit:cover;*/
  object-fit: contain;
  object-position: center;
  height: auto;
  min-height: unset;
  aspect-ratio: 3 / 2;
}

#land-item .thumbnail-slider {
  width: 90%;
  margin: 30px auto;
}

#land-item .thumbnail-slider .slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#land-item .thumbnail-slider .slick-slide {
  position: relative;
  background: #000;
  width: calc(100% / 3);
  /**/
  margin: 0 0.5%;
}

#land-item .thumbnail-slider img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 2;
}

/***** 分譲住宅・LAND INFORMATIONの詳細ページ内のエリア紹介部分 ******************************/
.area-intro {
  font-weight: 350;
  color: var(--text-color);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.area-intro .area-wrap,
.area-intro .area-wrap-fst {
  max-width: 900px;
  padding: 5% 6%;
  margin: 0 auto;
}

.area-intro .area-wrap-last {
  max-width: 900px;
  padding: 5% 6% 9%;
  margin: 0 auto;
}

@media (min-width:1024px) {

  .area-intro .area-wrap,
  .area-intro .area-wrap-fst,
  .area-intro .area-wrap-last {
    max-width: 1140px;
    padding: 5% 2%;
    margin: 0 auto;
  }

  .area-intro .area-wrap-fst {
    padding: 2%;
  }

  .area-intro .area-wrap-last {
    padding: 5% 2% 7%;
  }

  #area-chikushino.area-intro .area-block-another05 .area-wrap-last {
    max-width: 900px;
    padding: 5% 6% 9%;
  }
}

.area-intro .area-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.area-intro .area-ttl>.ar-ttl {
  display: inline-block;
  font-size: 1.8em;
  padding: 0 10px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #231815;
  letter-spacing: 5px;
}

.area-intro .area-ttl>.ar-subttl {
  font-size: 1em;
  letter-spacing: 7px;
}

.area-intro>.area-block {
  padding: 0 2%;
  width: 100%;
}

.area-intro .area-block.gray {
  background: #f7f8f8;
}

.area-intro .area-center-name {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100vw;
  margin-left: calc(((100vw - 100%) / 2)* -1);
  margin-right: calc(((100vw - 100%) / 2)* -1);
  padding: 10px;
}

.area-intro .area-center-name::before,
.area-intro .area-center-name::after {
  content: "";
  height: 1px;
  max-height: 1px;
  flex-grow: 1;
  background-color: #1a1a1a;
}

.area-intro .area-center-name>span {
  padding: 0 10px;
  font-size: 1.2em;
  letter-spacing: 2px;
}

.area-intro .area-center-name.gray-back {
  padding-top: 5%;
}

.area-intro .area-box-ttl {
  /*font-size:1.8em;*/
  font-size: 1.6em;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 5px;
  line-height: 1.8;
}

.area-intro .area-box {
  display: flex;
  justify-content: space-between;
}

.area-intro .area-text {
  /*font-size:0.9em;*/
  font-size: 0.8em;
  padding-right: 1.5%;
  /*letter-spacing: 2px;*/
  letter-spacing: 0.5px;
}

.area-intro .area-text>p {
  line-height: 2.5;
  text-align: justify;
}

.area-intro .area-img {
  padding-left: 1.5%;
}

.area-intro .area-img>img {
  width: 100%;
}

.area-intro .area-img>.img-caption {
  display: block;
  text-align: right;
  padding-top: 5px;
}

.area-intro .area-block.row-reverse .area-box {
  flex-direction: row-reverse;
}

.area-intro .area-block.row-reverse .area-text {
  padding-right: 0;
  padding-left: 1.5%;
}

.area-intro .area-block.row-reverse .area-img {
  padding-left: 0;
  padding-right: 1.5%;
}

.area-intro .area-block.row-reverse .area-img>.img-caption {
  text-align: left;
}

.area-intro .area-text01 {
  width: 50%;
}

.area-intro .area-img01 {
  width: 50%;
}

.area-intro .area-text02 {
  width: 60%;
}

.area-intro .area-img02 {
  width: 40%;
}

.area-intro .area-text03 {
  width: 70%;
}

.area-intro .area-img03 {
  width: 30%;
}

.area-intro .area-block-gray-content {
  background: #898989;
  border-radius: 10px;
  /*min-height:1000px;*/
  color: #fff;
}

.area-intro .gray-box-ttl {
  font-size: 1.8em;
  padding: 50px 0;
  text-align: center;
  letter-spacing: 5px;
  line-height: 1.8;
}

.area-intro .gray-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}

.area-intro .gray-item {
  width: 50%;
  /*padding:0 2.5%;*/
  padding: 0 5%;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.area-intro .gray-item:nth-child(2n-1) {
  padding-right: 2.5%;
}

.area-intro .gray-item:nth-child(2n) {
  padding-left: 2.5%;
}

.area-intro .gray-item-title {
  width: 100%;
  padding-right: 1.5%;
  /*padding-bottom:15px;*/
  padding-bottom: 40px;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
  display: flex;
  /*justify-content: space-between;*/
  justify-content: flex-start;
  align-items: center;
}

.area-intro .gray-item-ttl {
  display: flex;
  /*font-size:1.5em;*/
  font-size: 1.1em;
}

.area-intro .gray-item-num {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  position: relative;
}

.area-intro .gray-item-num>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.area-intro .gray-item-txt {
  /*line-height:1.5;*/
  line-height: 1.6;
  padding-left: 10px;
}

.area-intro .gray-item-img {
  width: 40%;
  padding-right: 1.5%;

}

.area-intro .gray-item-img>img {
  width: 100%;
}

.area-intro .gray-item-img>span.gray-caption {
  display: block;
  text-align: right;
  padding-top: 5px;
  font-size: 0.8em;
}

.area-intro .gray-item-text {
  font-size: 0.8em;
}

.area-intro .gray-item-text>p {
  line-height: 2.5;
  text-align: justify;
}

@media (max-width:1140px) {
  .area-intro .gray-item-ttl {
    display: flex;
    /*font-size:2vw;*/
  }

  .area-intro .gray-item-num {
    /*width:5.7vw;
    height:5.7vw;*/
    width: 60px;
    height: 60px;
  }

  .area-intro .gray-item-img>span.gray-caption {
    font-size: 1.4vw;
  }
}

.area-intro .area-block-another01 {
  /*padding:0 2%;*/
}

.area-intro .another01-title {
  font-size: 1.5em;
  /*padding-bottom:15px;*/
  margin-bottom: 40px;
  /*border-bottom:1px solid #231815;*/
  letter-spacing: 5px;
  text-align: center;
  line-height: 1.5;
}

.area-intro .another01-box {
  display: flex;
  justify-content: space-between;
}

.area-intro .another01-text {
  /*width:60%;*/
  width: 60%;
  padding-right: 1.5%;
  font-size: 0.8em;
}

.area-intro .another01-text>p {
  line-height: 2;
  text-align: justify;
}

.area-intro .another01-img {
  /*width:40%;*/
  width: 50%;
  padding-left: 1.5%;
}

.area-intro .another01-img>img {
  width: 100%;
}

.area-intro .another01-img>.another-caption {
  display: block;
  font-size: 0.8em;
  padding-top: 5px;
  text-align: right;
}

/** エリア紹介　筑紫野町 **/
.area-intro .area-text04 {
  width: 60%;
  margin: 0 auto;
}

.area-intro .area-img04 {
  width: 40%;
}

.area-intro .gray-box.pc_only {
  display: flex;
}

.area-intro .gray-box.sp_only {
  display: none;
}

#area-chikushino .gray-box-ttl {
  display: inline-block;
  font-size: 1.3em;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid #fff;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.area-intro .gray-item02 {
  display: block;
}

.area-intro .gray-item02 .gray-item-title {
  margin-bottom: 0;
  border: none;
  justify-content: flex-start;
  padding-right: 0;
  padding-bottom: 15px;
}

.area-intro .gray-item02 .gray-item-ttl {
  font-size: 1.3em;
}

.area-intro .gray-item02 .gray-item-txt {
  /*text-align:center;
  padding-left:0;*/
}

.area-intro .gray-item02 .gray-item-txtsub {
  font-size: 0.8em;
}

.area-intro .gray-item02 .gray-item-img {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 3%;
}

@media (max-width:1023px) {
  .area-intro .gray-item02 .gray-item-ttl {
    font-size: 1.15em;
  }
}

.area-intro .area-block-another02 {
  /*padding:0 2%;*/
  line-height: 2;
}

.area-intro .another02-title {
  font-size: 1.5em;
  /*padding:0 10%;
  padding-bottom:15px;
  margin-bottom:15px;
  border-bottom:1px solid #000;*/
  letter-spacing: 5px;
  text-align: center;
}

.area-intro .another02-title-ex {
  display: inline-block;
  padding: 0 5%;
  /*font-size:0.85em;*/
  font-size: 0.95em;
  text-align: center;
  /*margin-bottom:30px;*/
  margin-bottom: 50px;
  border-top: 1px solid #000;
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.area-intro .another02-box {
  display: flex;
  justify-content: space-between;
}

.area-intro .another02-img {
  /*width:50%;
  margin-bottom:5%;
  min-width:400px;*/
  margin: 0 auto;
  width: 80%;
  margin-top: 5%;
}

.area-intro .another02-img>img {
  width: 100%;
}

.area-intro .another02-item {
  width: 31%;
}

.area-intro .another02-item-ttl {
  font-size: 1.25em;
  text-align: center;
  padding-bottom: 5%;
}

.area-intro .another02-text {
  font-size: 0.8em;
}

.area-intro .another02-text>p {
  line-height: 2;
  text-align: justify;
}

.area-intro .area-block-another03 {
  background: #f7f8f8;
  line-height: 2;
}

.area-intro .area-block-another03 .another02-box.another02-fst {
  padding-bottom: 8%;
}


.area-intro .area-block-another03 .another02-item-img {
  width: 100%;
  padding-bottom: 6%;
}

.area-intro .area-block-another03 .another02-item-img>img {
  width: 100%;
}

.area-intro .area-block-another04 {
  padding: 0 2%;
  line-height: 2;
}

.area-intro .another04-title {
  display: inline-block;
  font-size: 1.5em;
  padding: 0 5%;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  letter-spacing: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.area-intro .another04-box {
  /*margin-bottom:5%;*/
}

.area-intro .another04-item {
  padding-bottom: 5%;
}

.area-intro .another04-item-ttl {
  font-size: 1.5em;
  padding-bottom: 1%;
}

.area-intro .another04-item-text {
  font-size: 0.8em;
}

.area-intro .another04-item-text>p {
  line-height: 2;
  text-align: justify;
}

.area-intro .another04-img {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 15px;
}

.area-intro .another04-img>img {
  width: 100%;
}

.area-intro .area-block-another05 {}

.area-intro .area-block-another05>.area-wrap-last {
  background: #f7f8f8;
}

.area-intro .another05-title {
  display: inline-block;
  font-size: 1.5em;
  padding: 0 10%;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  letter-spacing: 1px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.area-intro .another05-box {
  width: 90%;
  margin: 0 auto;
}

.area-intro .another05-item {
  display: flex;
  align-items: center;
  padding-bottom: 5%;
}

.area-intro .another05-item-en {
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  ;
  width: 75px;
  height: 75px;
}

.area-intro .another05-item-point {
  font-size: 0.75em;
}

.area-intro .another05-item-num {
  font-size: 2em;

}

.area-intro .another05-item-text {
  font-size: 0.9em;
  width: calc(100% - 75px);
  padding-left: 3%;
}

.area-intro .another05-item-text>p {
  line-height: 1.5;
  text-align: justify;
}

/***** エリア紹介(太宰府市) ************************************/
#area-dazaifu .area-block-gray-content {
  background: #717071;
  padding: 50px 50px;
  width: 100%;
}

.area-intro .gray-box-inst {
  color: #fff;
  padding-bottom: 60px;
}

.area-intro .gray-box-inst:last-child {
  padding-bottom: 0;
}

.area-intro .gray-box-inst .inst-title {
  font-size: 1.2em;
  letter-spacing: 2px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.area-intro .gray-box-inst .inst-text {
  font-size: 0.8em;
  padding-bottom: 50px;
}

.area-intro .gray-box-inst .inst-text>p {
  line-height: 2.5;
  text-align: justify;
}

.area-intro .gray-box-inst .inst-block {
  display: flex;
  flex-wrap: wrap;
}

.area-intro .gray-box-inst .inst-block .inst-item {
  font-size: 1.2em;
  white-space: nowrap;
  margin-right: 2.4em;
  padding-bottom: 30px;
}

.area-intro .area-block-another06 {
  background: #f7f7f7;
  color: var(--text-color);
}

.area-intro .area-block-another06 .another06-text {
  font-size: 0.8em;
  margin-bottom: 50px;
  /*padding:0 15px;*/
  padding: 0 5%;
}

.area-intro .area-block-another06 .another06-text>p {
  line-height: 2.5;
  letter-spacing: 2px;
  text-align: justify;
}

.area-intro .area-block-another06 .gray-item-num {
  border: 1px solid var(--text-color);
}

.area-intro .area-block-another06 .gray-item02 .gray-item-ttl {
  font-size: 1.3em;
}

.area-intro .area-block-another06 .gray-item {
  padding-bottom: 80px;
}

.area-intro .area-block-another07 .another07-block.gray-bg {
  background: #f7f7f7;
}

.area-intro .area-block-another07 .another07-box {
  padding: 15px 0;
}

.area-intro .area-block-another07 .another07-block.gray-bg .another07-box {
  padding: 30px 0;
}

.area-intro .area-block-another07 .another07-text {
  font-size: 0.8em;
  margin-bottom: 80px;
  padding: 0 30px;
}

.area-intro .area-block-another07 .another07-text>p {
  line-height: 2.5;
  letter-spacing: 2px;
  text-align: justify;
}

.area-intro .area-block-another07 .another07-item {
  /*padding:0 30px;*/
  padding-bottom: 80px;
}

.area-intro .area-block-another07 .another07-block.gray-bg .another07-item {
  /*padding:0 30px;:*/
  padding-right: 30px;
  padding-left: 30px;
}

.area-intro .area-block-another07 .another07-item .another07-item-ttl {
  font-size: 1.3em;
  padding-bottom: 30px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.area-intro .area-block-another07 .another07-item .another07-item-txt {
  font-size: 0.8em;
}

.area-intro .area-block-another07 .another07-item .another07-item-txt>p {
  line-height: 2.5;
  text-align: justify;
}

/***** エリア紹介(小郡市)追記部分 **********************/
#area-ogoori .area-block-another07.gray {
  background: #f7f7f7;
  padding: 30px 0;
}

.area-intro .area-block-another07 .another07-ttl {
  font-size: 1.2em;
  padding-bottom: 30px;
  text-align: center;
  letter-spacing: 3px;
}

.area-intro .area-block-another07 .another07-img {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.area-intro .area-block-another07 .another07-img>img {
  width: 100%;
}

.area-intro .area-block-another07 .another07-float-right {
  float: right;
  /*padding:0 0 2% 5%;*/
  padding: 0 0 15px 5%;
  width: 45%;
}

.area-intro .area-block-another07 .another07-float-right>img {
  width: 100%;
}

.area-intro .area-block-another07 .another07-item.another07-item2 {
  padding-bottom: 50px;
}

.area-intro .area-block-another07 .another07-item-ttl.big-ttl {
  font-size: 1.4em;
  padding-bottom: 15px;
}

/***** CUSTOMER VOICE ********************************/
#after-int hr {
  border-top: 1px solid #898989;
}

#after-int .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#after-int .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#after-int .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#after-int .after-text {
  font-size: 0.9em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#after-int .after-text>p {
  line-height: 1.8;
}

#after-int .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#after-int .list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 7%;
  /*width:calc(calc(100% / 3) - 20px);*/
  width: calc(94% / 3);
  /*padding:0 10px;*/
  cursor: pointer;
  letter-spacing: 2px;
}

#after-int .item-img {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

#after-int .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 5/3;
  transition: all .7s;
}

#after-int .item-ttl-block {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-bottom: 15px;
  line-height: 1.5;
}

#after-int .item-ttl {
  flex-grow: 1;
  font-size: 0.9em;
  font-family: "Zen Old Mincho", serif;
  transition: all .7s;
  text-align: justify;
}

#after-int .item-date {
  margin-bottom: 15px;
}

#after-int .item-category {
  color: #666;
  font-size: 0.7em;
  transition: all .7s;

  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
}

#after-int .pagenation {
  padding-top: 0;
  padding-bottom: 100px;
}

#after-int .after-int02 {
  background: #f7f8f8;
}

#after-int .after-int03 .after-ttl {
  padding-top: 60px;
}

#after-int .list-item:hover .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#after-int .list-item:hover .item-ttl,
#after-int .list-item:hover .item-category {
  opacity: .7;
  transition: all .7s;
}

#after-int .afinter-none {
  text-align: center;
  font-size: 1.1em;
  font-weight: 350;
  margin: 60px 0 30px;
  ;
}

/*アフターインタビュー　下部　共通*/
.from-reservation {
  background: #f7f8f8;
  min-height: 370px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  line-height: 1.5;
  margin-bottom: -40px;
  margin-top: 5%;
  font-family: "Zen Old Mincho", serif;
}

.from-reservation-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.from-reservation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/customer-voice/12.webp);
  /* 画像URLを設定 */
  /*background-size: cover;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  z-index: -1;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.reservation-wrap {
  min-height: 370px;
  position: relative;
}

.reservation-box {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.reservation-ttl {
  font-size: 1em;
  text-align: center;
  padding-bottom: 3%;
  letter-spacing: 3px;
}

.reservation-text {
  /*font-size:1.5em;*/
  font-size: 1.8em;
  text-align: center;
  padding-bottom: 5%;
}

.reservation-box>a {
  display: block;
  padding: 7px;
  border: 1px solid #005b4b;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #005b4b;
  color: #fff;
  width: 70%;
  min-width: 200px;
  white-space: nowrap;
  font-size: clamp(18px, 1vw, 20px);
  margin: 0 auto;
  position: relative;
  margin-bottom: 3%;
}

.reservation-box>a::after {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  filter: invert(1);
  padding: 7px 24px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

.reservation-box>a:hover {
  background: #fff;
  transition: all .7s;
  color: #005b4b;
}

.reservation-box>a:hover::after {
  right: 0%;
  top: 51%;
  background: url(../images/more_btn_arrow_green.png) no-repeat left center / 70%;
  filter: invert(0);
  transition: all .7s;
}

@media (min-width:1024px) {
  .from-reservation {
    min-height: 500px;
  }

  .reservation-wrap {
    min-height: 500px;
  }
}

/***** アフターインタビュー(詳細) *****************************/
img.voice-img {
  aspect-ratio: 62 / 27;
  object-fit: cover;
  object-position: center;
}

#afInter-item {
  color: var(--text-color);
}

@media (max-width:1023px) {
  #afInter-item .af-wrap {
    padding-bottom: 2%;
  }
}

#afInter-item .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  text-align: center;
  letter-spacing: 2px;
}

#afInter-item .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#afInter-item .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#afInter-item .greeting-text {
  font-size: 0.9em;
  text-align: center;
  width: 85%;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#afInter-item .greeting-text>p {
  line-height: 1.8;
}

#afInter-item .af-block {}

#afInter-item .af-block-title {
  background: #f7f8f8;
}

#afInter-item .major-items {
  font-size: 1.5em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#afInter-item .major-items>p {
  line-height: 1.5;
}

#afInter-item .detail-block {
  /*display:inline-block;*/
  margin: 2% auto;
}

#afInter-item .detail-img {
  width: 50%;
  float: right;
  padding-left: 2%;
  /*padding-bottom:2%;*/
  padding-bottom: 5%;
}

#afInter-item .detail-img>img {
  width: 100%;
}

#afInter-item .detail-text {
  /*float:left;
  width:50%;*/
  float: unset;
  width: auto;
}

#afInter-item .detail-text-item {
  display: flex;
  margin-bottom: 3%;
  font-size: 0.9em;
  padding-left: 2%;
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}

#afInter-item .detail-hn {
  width: 90px;
  min-width: 90px;
  font-size: 0.9em;
  margin-right: 3%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#afInter-item .detail-hn>span {
  display: block;
  width: 100%;
  background: var(--quaternary);
  color: #fff;
  border-radius: 15px;
  padding: 7% 10% 5%;
  display: block;
  text-align: center;
}

#afInter-item .detail-txt {
  /*padding-left:3%;*/
  /*padding-top:1%;*/
  /*width:calc(100% - 90px);*/
  width: 100%;
}

#afInter-item .detail-txt>p {
  line-height: 1.8;
  text-align: justify;
}

#afInter-item .both {
  clear: both;
}

#afInter-item .af-block.even {}

#afInter-item .af-block.even .detail-img {
  width: 50%;
  float: left;
  padding-right: 2%;
  padding-left: 0;
}

#afInter-item .af-block.even .detail-text {
  /*float:right;
  width:50%;*/
  float: unset;
  width: auto;
}

#afInter-item .af-block.even .detail-text-item {
  margin-right: auto;
  margin-left: 0;
}

#afInter-item hr {
  border-top: 1px solid #231815;
}

.after-pagenation {
  display: flex;
  width: 90%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  letter-spacing: 2px;
}

.af-page-item {
  border-right: 1px solid #231815;
}

.af-page-item:last-child {
  border-right: none;
}

.af-page-item>a {
  display: block;
  white-space: nowrap;
  padding: 10px 25px;
  transition: all 0.7s;
}

.res-title {
  width: 100%;
  padding-top: 20px;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: -4%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.af-page-item>a:hover {
  opacity: 0.7;
  transition: all 0.7s;
}

.res-ttl {
  font-size: 2em;
}

@media (min-width:1024px) {
  .res-title {
    margin-bottom: -45px;
  }
}

/***** COMING SOON **************************/
#comingsoon .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
}

#comingsoon .after-ttl>.af-ttl {
  display: inline-block;
  font-size: 2em;
  padding-bottom: 15px;
  letter-spacing: 5px;
  font-family: "Zen Old Mincho", serif;

}

#comingsoon .after-ttl>.af-subttl {
  font-size: 0.7em;
  letter-spacing: 4px;
}

/***** 定期点検予約 *******/
#inspect-contact {
  background: #f7f8f8;
  color: var(--text-color);
  padding-bottom: 0;
}

#inspect-contact .top-contant {
  background: #fff;
}

#inspect-contact .wrapper-content {
  margin-top: 30px;
}

#inspect-contact .contact-text {
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 30px;
}

#inspect-contact .contact-text>p {
  line-height: 1.8;
}

#inspect-contact .gray-box {
  background: #f7f8f8;
  min-height: 30px;
}

#inspect-contact .please-contact {
  background: #fff;
  margin-bottom: #f7f8f8;
}

#inspect-contact .block-text {
  margin-top: 15px;
  display: block;
  padding-left: 10px;
  padding: 2% 0;
  margin: 0 auto;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#inspect-contact .block-text>div {
  margin-bottom: 15px;
}

#inspect-contact .text1 {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 500;
}

#inspect-contact .text1>p {
  line-height: 1.8;
}

#inspect-contact .text2 {
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
}

#inspect-contact .text2 .text2-1 {
  margin-right: 20px;
}

#inspect-contact .text2 .text2-2 {
  position: relative;
}

#inspect-contact .text2 .text2-2::after {
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0 10px;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
}

#inspect-contact .tel {
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 2px;
}

#inspect-contact .sales-dt {
  text-align: center;
}

#inspect-contact .add-text {
  font-size: 1em;
  text-align: center;
  padding: 3% 0;
  letter-spacing: 2px;
  line-height: 1.5;
}

#inspect-contact .bg-gray {
  background: #f7f8f8;
}

#inspect-contact .wrap-contact {
  padding-bottom: 40px;
  font-family: "Zen Old Mincho", serif;
}

#inspect-contact .small-text {
  font-size: 0.85em;
  padding: 10px;
  text-align: justify;
}

#inspect-contact .contant-smalltext {
  padding: 10px;
  font-size: 0.8em;
  color: #231815;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding-bottom: 30px;
}

#inspect-contact .contant-smalltext>p {
  line-height: 3;
}

#inspect-contact .contant-smalltext>p span.green {
  color: #005b4b;
}

#inspect-contact .contant-smalltext>p span.red {
  color: #c30d23;
}

#inspect-contact .forms .set:first-of-type {
  border-top: 1px solid #211815;
}

#inspect-contact .forms .reservation.set a {
  display: inline-block;
  padding: 5px 10px 7px;
  font-size: 0.95em;
  background: #005b4b;
  border: 1px solid #005b4b;
  color: #fff;
  text-align: center;
  transition: all 0.7s;
}

#inspect-contact .forms .reservation.set a:hover {
  background: #fff;
  color: #005b4b;
  transition: all 0.7s;
}

#inspect-contact .forms #timezone-r .wpcf7-list-item.first .wpcf7-list-item-label {
  padding-left: 20px;
}

#inspect-contact .contact-btn-wrap {
  margin-top: 30px;
  text-align: center;
}

#inspect-contact .contact-btn-link {
  display: inline-block;
  padding: 12px;
  font-size: 1.1rem;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  letter-spacing: .4px;
  line-height: 1.4;
  background: #005b4b;
  border: 1px solid #005b4b;
  color: #fff;
  text-align: center;
  transition: all 0.7s;
}

#inspect-contact .contact-btn-link:hover {
  background-color: #fff;
  color: var(--primary);
  transition: all 0.4s;
}

/***** リノベーション ***************************/
#renovation {
  color: var(--text-color);
}

#renovation .reno-content {
  margin-bottom: 100px;
}

#renovation .reno-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#renovation .reno-ttl>.re-ttl {
  font-size: 1.8em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
}

#renovation .reno-block {
  width: 80%;
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 100px;
}

#renovation .top-text {
  font-size: 0.9em;
  text-align: center;
  padding: 0 5px 30px;
}

#renovation .top-text>p {
  line-height: 1.8;
  text-align: justify;
}

#renovation .top-img {
  display: block;
  padding-bottom: 30px;
}

#renovation .top-img-item {
  width: 100%;
  padding-bottom: 30px;
}

#renovation .top-img-item>img {
  width: 100%;
}

#renovation .top-img-item>span.img-caption {
  font-size: 12px;
  text-align: left;
  padding-top: 10px;
  font-family: "Zen Old Mincho", serif;
}

#renovation .reno-midasi {
  font-size: 1em;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 30px;
}

#renovation .reno-text {
  font-size: 0.9em;
}

#renovation .reno-text>p {
  line-height: 1.8;
  text-align: justify;
}

/****/
#renovation .case-block {
  display: flex;
  justify-content: space-between;
  font-family: "Zen Old Mincho", serif;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 100px;
}

#renovation .case-item {
  width: 47%;
}

#renovation .case-midasi {
  font-size: 1em;
  padding-right: 10%;
}

#renovation .case-midasi>span {
  display: block;
  border-bottom: 1px solid #251714;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#renovation .case-small {
  font-size: 10px;
  padding-bottom: 15px;
}

#renovation .case-img {
  width: 100%;
  padding-bottom: 20px;
}

#renovation .case-img>img {
  width: 100%;
}

#renovation .case-title {
  padding-bottom: 30px;
}

#renovation .case-ttl {
  font-size: 1em;
  display: inline-block;
}

#renovation .case-ttl:first-of-type {
  border-right: 1px solid #251714;
  padding-right: 15px;
  margin-right: 15px;
}

#renovation .case-item>a {
  display: block;
  padding: 10px 0 20px;
  border: 1px solid #251714;
  transition: all .7s;
  text-align: center;
  /*width: clamp(169px, 22vw, 220px);*/
  width: 100%;
  white-space: nowrap;
  font-size: clamp(14px, 1vw, 16px);
  margin: 0 auto;
  position: relative;
}

#renovation .case-item>a>img {
  display: block;
  /*background: url(../images/renovation/under-arrow.png) no-repeat center;*/
  padding: 0 18px 5px;
  margin: 0 auto;
  vertical-align: middle;
  transition: all .7s;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  /*width: clamp(160px, 22vw, 180px);*/
  width: 180px;
}

#renovation .case-item>a:hover {
  background: #251714;
  color: #fff;
  transition: all .7s;
}

#renovation .case-item>a:hover img {
  filter: invert(100%);
  padding: 0 5px 5px 18px;
  transition: all .7s;
}

/****/
#renovation .soudan-block {
  width: 90%;
  margin: 0 auto;
}

#renovation .soudan-midasi {
  font-size: 1.8em;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  line-height: 1.8;
  padding-bottom: 30px;
}

#renovation .soudan-text {
  font-size: 0.9em;
  padding-bottom: 50px;
}

#renovation .soudan-text>p {
  line-height: 1.8;
  text-align: justify;
}

#renovation .soudan-block>a {
  display: block;
  padding: 25px 25px 30px;
  border: 1px solid #9fa0a0;
  background: #9fa0a0;
  transition: all .7s;
  text-align: center;
  /*width: clamp(169px, 22vw, 220px);*/
  width: 100%;
  max-width: 350px;
  white-space: nowrap;
  font-size: clamp(20px, 1vw, 24px);
  margin: 0 auto;
  position: relative;
  font-family: "Zen Old Mincho", serif;
}

#renovation .soudan-block>a>span {
  transition: all .7s;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 15px 5px;
}

#renovation .soudan-block>a:hover {
  background: #fff;
  transition: all .7s;
}

#renovation .soudan-block>a:hover span {
  color: #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
  transition: all .7s;
}

/***** リノベーション、下部ページ共通 **************/
.reno-bottom {
  font-family: "Zen Old Mincho", serif;
  background: #f7f8f8;
  margin-bottom: -40px;
}

.reno-bottom .renobtm-block {
  display: flex;
  justify-content: space-between;
}

.reno-bottom .renobtm-item {
  width: 31%;
}

.reno-bottom .renobtm-item-midasi {
  padding-top: 30px;
}

.reno-bottom .renobtm-item-text {
  font-size: 1em;
  border-bottom: 1px solid #251714;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.reno-bottom .renobtm-item-small {
  font-size: 12px;
}

.reno-bottom .renobtm-item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.reno-bottom .renobtm-item-img>img {
  width: 100%;
  transition: all .7s ease-in-out;
}

.reno-bottom .renobtm-item>a:hover img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s ease-in-out;
}

.reno-bottom .renobtm-item-cap {
  font-size: 0.9em;
  display: inline-block;
}

.reno-bottom .renobtm-item-cap:first-of-type {
  border-right: 1px solid #251714;
  padding-right: 15px;
  margin-right: 15px;
}

/***** かやぶきの家 ******************************/
#kayabuki {
  color: var(--text-color);
}

#kayabuki hr {
  border-top: 1px solid #231815;
}

#kayabuki .reno-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#kayabuki .reno-ttl>.re-ttl {
  font-size: 1.8em;
  padding-bottom: 15px;
}

#kayabuki .reno-ttl>.re-subttl-add01 {
  font-size: 1em;
  padding-bottom: 10px;
}

#kayabuki .reno-ttl>.re-subttl-add02 {
  font-size: 1.1em;
  padding-bottom: 15px;
}

#kayabuki .reno-content {
  font-family: "Zen Old Mincho", serif;
}

#kayabuki .block-item {
  display: flex;
  justify-content: space-between;

  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
  gap: 3%;
}

#kayabuki .item-ba {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;

}

#kayabuki .item-text {
  padding-bottom: 10px;
  flex-grow: 1;
  display: flex;
  /*align-items:end;*/
  align-items: flex-start;
}

#kayabuki .item-txt {
  display: inline-block;
  font-size: 1em;
  padding: 10px 0;
  ;
}

#kayabuki .item-txt:first-of-type {
  border-right: 1px solid #251714;
  padding-right: 15px;
  margin-right: 15px;
}

#kayabuki .small-text {
  font-size: 0.7em;
  line-height: 1.5;
  padding: 0;
  text-align: justify;
}

#kayabuki .small-text>span {
  display: block;
}

#kayabuki .item-img,
#kayabuki .item-img>img {
  width: 100%;
}

/****/
#kayabuki .block-text {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  gap: 1%;
}

#kayabuki .block-text01 {
  width: 65%;
}

#kayabuki .block-text02 {
  width: 35%;
}

#kayabuki .block-text01>p {
  line-height: 3;
  text-align: justify;
}

#kayabuki .block-text02>p {
  line-height: 2.2;
}

#kayabuki .block-text01>p>span,
#kayabuki .block-text02>p>span {
  display: block;
}

/****/
#kayabuki .comment-block {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
}

#kayabuki .comment-midasi {
  display: block;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 30px;
}

#kayabuki .midasi-ttl {
  display: inline-block;
  padding: 10px 50px;
  border-right: 6px solid #005b4b;
  border-left: 6px solid #005b4b;
}

#kayabuki .midasi-small {
  font-size: 0.8em;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

#kayabuki .midasi-yu {
  font-size: 2em;
  letter-spacing: 1px;
}

#kayabuki .comment-text {
  font-size: 0.8em;
  font-family: "Noto Sans JP", sans-serif;
}

#kayabuki .comment-text>p {
  line-height: 1.8;
  text-align: justify;
}

#kayabuki .comment-text>p>span {
  display: block;
}

/****/
#kayabuki .soudan-block {
  padding: 5% 0 10%;

}

#kayabuki .soudan-block>a {
  display: block;
  padding: 25px 25px 30px;
  border: 1px solid #9fa0a0;
  background: #9fa0a0;
  transition: all .7s;
  text-align: center;
  /*width: clamp(169px, 22vw, 220px);*/
  width: 100%;
  max-width: 350px;
  white-space: nowrap;
  font-size: clamp(20px, 1vw, 24px);
  margin: 0 auto;
  position: relative;
  font-family: "Zen Old Mincho", serif;
}

#kayabuki .soudan-block>a>span {
  transition: all .7s;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 15px 5px;
}

#kayabuki .soudan-block>a:hover {
  background: #fff;
  transition: all .7s;
}

#kayabuki .soudan-block>a:hover span {
  color: #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
  transition: all .7s;
}



/***** だざいふの家 ******************************/
#dazaifu {
  color: var(--text-color);
}

#dazaifu hr {
  border-top: 1px solid #231815;
}

#dazaifu .reno-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#dazaifu .reno-ttl>.re-ttl {
  font-size: 1.8em;
  padding-bottom: 15px;
}

#dazaifu .reno-ttl>.re-subttl-add01 {
  font-size: 1em;
  padding-bottom: 10px;
}

#dazaifu .reno-ttl>.re-subttl-add02 {
  font-size: 1.1em;
  padding-bottom: 15px;
}

#dazaifu .reno-content {
  font-family: "Zen Old Mincho", serif;
}

#dazaifu .block-item {
  display: flex;
  justify-content: space-between;

  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
  gap: 3%;
}

#dazaifu .item-ba {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;

}

#dazaifu .item-text {
  padding-bottom: 10px;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

#dazaifu .item-txt {
  display: inline-block;
  font-size: 1em;
  padding: 10px 0;
  ;
}

#dazaifu .item-txt:first-of-type {
  border-right: 1px solid #251714;
  padding-right: 15px;
  margin-right: 15px;
}

#dazaifu .small-text {
  font-size: 0.7em;
  line-height: 1.5;
  padding: 0;
  text-align: justify;
}

#dazaifu .small-text>span {
  display: block;
}

#dazaifu .item-img,
#dazaifu .item-img>img {
  width: 100%;
}

#dazaifu .item-ba-add {
  margin-bottom: 30px;
  background: #f7f8f8;
  width: 90%;
  margin: 0 auto;
  display: flex;
  margin-top: -30px;
  margin-bottom: 50px;
}

#dazaifu .add-img {
  width: 30%;
}

#dazaifu .add-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#dazaifu .add-text {
  width: 70%;
  padding: 10px;
}

#dazaifu .add-txt {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8em;
}

#dazaifu .add-txt>p {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
  text-align: justify;
}

#dazaifu .add-txt>p::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/****/
#dazaifu .block-text {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  /*gap:1%;*/
  gap: 5%;
}

#dazaifu .block-text01 {
  width: 65%;
}

#dazaifu .block-text02 {
  width: 35%;
}

#dazaifu .block-text01>p {
  line-height: 3;
  text-align: justify;
}

#dazaifu .block-text02>p {
  line-height: 2.2;
}

#dazaifu .block-text01>p>span,
#dazaifu .block-text02>p>span {
  display: block;
}

/****/
#dazaifu .comment-block {
  width: 90%;
  margin: 0 auto;
  padding: 5% 0;
}

#dazaifu .comment-midasi {
  display: block;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 30px;
}

#dazaifu .midasi-ttl {
  display: inline-block;
  padding: 10px 50px;
  border-right: 6px solid #005b4b;
  border-left: 6px solid #005b4b;
}

#dazaifu .midasi-small {
  font-size: 0.8em;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

#dazaifu .midasi-yu {
  font-size: 2em;
  letter-spacing: 1px;
}

#dazaifu .comment-text {
  font-size: 0.8em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
}

#dazaifu .comment-text>p {
  line-height: 1.8;
  text-align: justify;
}

#dazaifu .comment-text>p>span {
  display: block;
}

/****/
#dazaifu .soudan-block {
  padding: 5% 0 10%;

}

#dazaifu .soudan-block>a {
  display: block;
  padding: 25px 25px 30px;
  border: 1px solid #9fa0a0;
  background: #9fa0a0;
  transition: all .7s;
  text-align: center;
  /*width: clamp(169px, 22vw, 220px);*/
  width: 100%;
  max-width: 350px;
  white-space: nowrap;
  font-size: clamp(20px, 1vw, 24px);
  margin: 0 auto;
  position: relative;
  font-family: "Zen Old Mincho", serif;
}

#dazaifu .soudan-block>a>span {
  transition: all .7s;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 15px 5px;
}

#dazaifu .soudan-block>a:hover {
  background: #fff;
  transition: all .7s;
}

#dazaifu .soudan-block>a:hover span {
  color: #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
  transition: all .7s;
}

/* NEWS/お知らせ一覧 */
#newslist .title>.ttl {
  color: var(--text-color);
}

#newslist .title>.subttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.9em;
  color: var(--text-color);
}

#newslist .eventlist-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /*justify-content:space-between;*/
  gap: 3%;
}

#newslist .list-block {
  color: var(--text-color);
}

#newslist .list-item {
  margin-bottom: 30px;
  /*width:calc(100% / 5 - 3%);*/
  width: calc(88% / 5);
  cursor: pointer;
  color: var(--text-color);
}

#newslist .item-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#newslist .item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 1 / 1;
  transition: all .7s;
}

#newslist .item-ttl-block {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

#newslist .date-new {
  display: flex;
  padding-bottom: 10px;
  font-size: 0.9em;
  transition: all .7s;
}

#newslist .item-date {
  color: #727171;
}

#newslist .item-new {
  padding-left: 0.9em;
  color: #e60012;
}

#newslist .item-category {
  color: #595757;
  font-size: 0.7em;
}

#newslist .item-ttl {
  flex-grow: 1;
  margin-bottom: 10px;
  font-size: 0.9em;
  line-height: 1.5;
  transition: all .7s;
  text-align: justify;
}

#newslist hr {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  border-top: 1px solid var(--text-color);
}

#newslist .list-item:hover .item-img>img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

#newslist .list-item:hover .date-new {
  opacity: .7;
  transition: all .7s;
}

#newslist .list-item:hover .item-ttl {
  opacity: .7;
  transition: all .7s;
}

#newslist .newslist-none {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  font-size: 1.1em;
  font-weight: 350;
  margin-top: 60px;
}


/* イベント(詳細) */
#newslist-item {
  color: var(--text-color);
}

#newslist-item .wrapper-content {
  min-height: 500px;
  width: 100%;
  max-width: 500px;
  margin: 80px auto 15%;
}

#newslist-item .wrapper-content p {
  line-height: 2;
  /*padding-bottom:15px;*/
}

#newslist-item .wrapper-content p a {
  color: #00a0dd;
  text-decoration: underline;
}

#newslist-item .event-title {
  font-size: 1.4em;
  text-align: center;
  padding-bottom: 30px;
  letter-spacing: 1px;
  line-height: 1.4;
}

#newslist-item .date {
  text-align: center;
  font-size: 1em;
  letter-spacing: 2px;
  color: #727171;
}

#newslist-item .item-detail {
  padding-top: 60px;
  text-align: justify;
}

#newslist-item .wp-block-image img {
  width: auto !important;
}

#newslist-item .newspagenation {
  border-top: 1px solid var(--text-color);
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

#newslist-item .newspagenation-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#newslist-item .nation-item {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 3px;
  transition: all .7s;
  padding-bottom: 5px;
  border-bottom: none;
}

#newslist-item .nation-list {
  letter-spacing: 7px;
}

#newslist-item .nation-item:hover {
  opacity: .5;
  transition: all .7s;
}


/***** RECRUIT *******************************/
section.mainvisual .re-image-title {
  top: 30%;
}

section.mainvisual .scroll-block {
  color: var(--text-color);
  position: absolute;
  /*bottom:33%;*/
  bottom: 27%;
  left: 50%;
  transform: translateX(-50%);
}

section.mainvisual .scroll-block>a {
  display: block;
  text-align: center;
}

section.mainvisual .scroll-block>a>span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  padding-right: 3px;
  padding-bottom: 10px;
  font-size: 10px;
}

section.mainvisual .scroll-block>a>img {
  width: 10px;
}

#recruit {
  color: var(--text-color);
}

#recruit .top-box {
  position: relative;
}

#recruit .top-block {
  position: relative;
  width: 80%;
  max-width: 450px;
  /*top:-250px;*/
  top: -165px;
  left: 50%;
  transform: translateX(-50%);
}

#recruit .top-img {
  width: 100%;
}

#recruit .top-img>img {
  width: 100%;
}

#recruit .top-midasi {
  font-size: 1.3em;
  line-height: 1.8;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px
}

#recruit .top-midasi>span {
  display: block;
}

#recruit .top-text {
  font-size: 0.8em;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}

#recruit .top-text>p {
  line-height: 2.5;
}

#recruit .top-text>p>span {
  display: block;
}

#recruit .top-job {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
}

#recruit .job-item {
  width: calc(100% / 3 - 3%);
  border: 1px solid #231815;
  font-size: 0.8em;
  text-align: center;
  margin: 0 1.5% 10px;
  transition: all .7s;
}

#recruit .job-item>a {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 0;
  display: block;
}

#recruit .job-item:hover {
  background: #231815;
  color: #fff;
  transition: all .7s;
}

#recruit .top-margin {
  margin-top: -150px;
}

#recruit .rec-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
  text-align: center;
  letter-spacing: 2px;
}

#recruit .rec-ttl>.re-ttl {
  font-size: 2em;
  padding-bottom: 15px;
}

#recruit .rec-ttl>.re-subttl {
  font-size: 0.9em;
  letter-spacing: 5px;
}

#recruit .job-block {}

#recruit .job-name-item {
  border-bottom: 1px solid #231815;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

#recruit .job-name {
  width: 80%;
  margin: 0 auto;
  padding-left: 1.5%;
}

#recruit .job-img-block {
  width: 80%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 50px;
}

#recruit .job-img-item {
  width: calc(100% / 3 - 3%);
  margin: 0 1.5% 0;
}

#recruit .job-img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

#recruit .job-img>img {
  width: 100%;
  transition: all .7s;
}

#recruit .job-ttl {
  font-size: 1em;
  text-align: center;
  /*padding-bottom:15px;*/
}

#recruit .job-txt {
  padding-top: 15px;
  font-size: 0.7em;
}

#recruit .job-txt>p {
  line-height: 1.5;
  text-align: justify;
}

#recruit .job-img-item:hover img {
  opacity: .7;
  transform: scale(1.1, 1.1);
  transition: all .7s;
}

.job-attention {
  width: 80%;
  margin: 0 auto;
  padding: 0 15px 60px;
}

/***** 営業職 *******************************/
section.mainsales .re-image-title {
  top: 40%;
}

section.mainsales .scroll-block {
  color: var(--text-color);
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}

section.mainsales .scroll-block>a {
  display: block;
  text-align: center;
}

section.mainsales .scroll-block>a>span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  padding-right: 3px;
  padding-bottom: 10px;
  font-size: 10px;
}

section.mainsales .scroll-block>a>img {
  width: 10px;
}

#sales {
  color: var(--text-color);
}

#sales .rec-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#sales .rec-ttl>.re-ttl {
  font-size: 2em;
}

#sales .rec-ttl>.re-midasi {
  font-size: 1.2em;
  padding-bottom: 25px;
  line-height: 1.5;
}

#sales .columns-detail {
  width: 95%;
  margin: 0 auto;
}

#sales .columns-midasi {
  font-size: 1.05em;
  padding-bottom: 30px;
}

#sales .columns-midasi>p {
  line-height: 2;
  text-align: justify;
}

#sales .columns-midasi>p>span {
  display: block;
}

#sales .columns-text {
  font-size: 0.9em;
  padding-bottom: 30px;
}

#sales .columns-text>p {
  line-height: 2;
  text-align: justify;
}

/****/
#sales .sales-block01 {
  background: #f7f8f8;
}

#sales .job-content {
  padding: 50px 0;
}

#sales .job-title {
  font-size: 2em;
  padding-top: 15px;
  padding-bottom: 30px;
  text-align: center;
}

#sales .job-detail {
  padding-bottom: 30px;
}

#sales .job-detail-list {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #231815;
  font-size: 1.2em;
}

#sales .job-detail .job-detail-list:first-of-type {
  border-top: 1px solid #231815;
}

#sales .job-detail-item {
  width: 35%;
  padding: 0 5%;
  min-width: 200px;
}

#sales .job-detail-matter {
  width: 65%;
  padding: 0 5%;
}

#sales .job-detail-matter>p {
  line-height: 1.8;
  text-align: justify;
}

#sales a.contact-link {
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid #231815;
  border-radius: 3px;
  background: #231815;
  transition: all .7s;
  text-align: center;
  white-space: nowrap;
  font-size: 1.15em;
  margin: 0 auto;
  color: #fff;
  font-weight: 350;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#sales a.contact-link:hover {
  background: #fff;
  color: #231815;
  transition: all .7s;
}

#sales hr {
  border-top: 1px solid #231815;
}

#sales .forms .set:first-of-type {
  border-top: 1px solid #231815;
}

#sales .forms .send-conf input {
  font-family: "Noto Sans JP", sans-serif;
}


/***** 営業職 *******************************/
section.maintechnology .re-image-title {
  top: 40%;
}

section.maintechnology .scroll-block {
  color: var(--text-color);
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}

section.maintechnology .scroll-block>a {
  display: block;
  text-align: center;
}

section.maintechnology .scroll-block>a>span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  padding-right: 3px;
  padding-bottom: 10px;
  font-size: 10px;
}

section.maintechnology .scroll-block>a>img {
  width: 10px;
}

#technology {
  color: var(--text-color);
}

#technology .rec-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}

#technology .rec-ttl>.re-ttl {
  font-size: 2em;
}

#technology .rec-ttl>.re-midasi {
  font-size: 1.2em;
  padding-bottom: 25px;
  line-height: 1.5;
}

#technology .columns-detail {
  width: 95%;
  margin: 0 auto;
}

#technology .columns-midasi {
  font-size: 1.05em;
  padding-bottom: 30px;
}

#technology .columns-midasi>p {
  line-height: 2;
}

#technology .columns-midasi>p>span {
  display: block;
}

#technology .columns-text {
  font-size: 0.9em;
  padding-bottom: 30px;
}

#technology .columns-text>p {
  line-height: 2;
}

/****/
#technology .tec-block01,
#technology .tec-block03 {
  background: #f7f8f8;
}

#technology .job-content {
  padding: 50px 0;
}

#technology .job-title {
  font-size: 2em;
  padding-top: 15px;
  padding-bottom: 30px;
  text-align: center;
}

#technology .job-detail {
  padding-bottom: 30px;
}

#technology .job-detail-list {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #231815;
  font-size: 1.2em;
}

#technology .job-detail .job-detail-list:first-of-type {
  border-top: 1px solid #231815;
}

#technology .job-detail-item {
  width: 35%;
  padding: 0 5%;
  min-width: 200px;
}

#technology .job-detail-matter {
  width: 65%;
  padding: 0 5%;
}

#technology .job-detail-matter>p {
  line-height: 1.8;
  text-align: justify;
}

#technology a.contact-link {
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid #231815;
  border-radius: 3px;
  background: #231815;
  transition: all .7s;
  text-align: center;
  white-space: nowrap;
  font-size: 1.15em;
  margin: 0 auto;
  color: #fff;
  font-weight: 350;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#technology a.contact-link:hover {
  background: #fff;
  color: #231815;
  transition: all .7s;
}

#technology hr {
  border-top: 1px solid #231815;
}

#technology .forms .set:first-of-type {
  border-top: 1px solid #231815;
}

#technology .forms .send-conf input {
  font-family: "Noto Sans JP", sans-serif;
}

#technology .forms .set .information #kinds {
  flex-wrap: wrap;
}

#technology .forms .set .information #kinds .wpcf7-list-item {
  padding: 0.5em 0;
}

/***** MODEL HOUSE 予約 *******/
#mh-reserve {
  color: var(--text-color);
}

#mh-reserve .wrapper-content {
  margin-top: 0;
}

#mh-reserve .contact-text {
  font-size: 1.2em;
  text-align: center;
  padding-bottom: 0;

}

#mh-reserve .contact-text>p {
  line-height: 1.8;
}

#mh-reserve .block-text {
  margin-top: 15px;
  display: block;
  padding-left: 10px;
  /*padding-top:1%;*/
  padding: 2% 0;
  margin: 0 auto;
  text-align: center;
}

#mh-reserve .block-text>div {
  margin-bottom: 15px;
}

#mh-reserve .text1 {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 500;
}

#mh-reserve .text1>p {
  line-height: 1.8;
}

#mh-reserve .text2 {
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mh-reserve .text2 .text2-1 {
  margin-right: 20px;
}

#mh-reserve .text2 .text2-2 {
  position: relative;
}

#mh-reserve .text2 .text2-2::after {
  position: absolute;
  top: 0;
  right: 100%;
  margin: 0 10px;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
}

#mh-reserve .tel {
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
}

#mh-reserve .sales-dt {
  text-align: center;
}

#mh-reserve .wrap-contact {
  padding-bottom: 40px;
}

#mh-reserve .contact-know .wpcf7-list-item {
  width: 100%;
  padding: 5px 0;
}

#mh-reserve .contact-know .wpcf7-list-item>label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/***** COMPANY ************************************/
#company {
  color: var(--text-color);
}

#company .com-block01 {
  background: #f7f8f8;
}

#company .com-box {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  margin-bottom: 60px;
  margin-top: 40px;
}

#company .com-box:nth-child(2n) {
  flex-direction: row-reverse;
}

#company .com-detail {
  width: 50%;
}

#company .com-detail-ttl {
  font-size: 2em;
  /*font-size:2.1em;*/
  padding-top: 5px;
  /*padding-bottom:20px;
  margin-bottom:20px;*/
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #251714;
  font-family: "Zen Old Mincho", serif;
}

#company .com-detail-name {
  font-size: 2em;
  /*font-size:2.1em;*/
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 12%;
  display: flex;
  align-items: center;
}

#company .com-detail-name>span.small-name {
  font-size: 0.4em;
  /*padding-left:1em;
  letter-spacing: 5px;*/
  padding-right: 1.5em;
  letter-spacing: 8px;
}

#company .com-detail-text {
  font-size: 0.85em;
}

#company .com-detail-text>p {
  line-height: 2.1;
}

#company .com-img {
  width: 50%;
}

#company .com-img>img {
  width: 100%;
  /*padding-bottom:10px;*/
  padding-top: 70px;
}

#company .com-block02 {
  /*background:#f7f8f8;*/
  margin-top: -30px;
}

#company .com-box2 {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  /*padding:50px 0;*/
  padding: 50px 0 80px;
}

#company .concept-block {
  /*padding-bottom:40px;*/
  padding-bottom: 50px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

#company .concept-submidasi {
  font-size: 0.8em;
  padding-bottom: 20px;
  letter-spacing: 2px;
}

#company .concept-midasi {
  font-size: 1.8em;
}

#company .concept-ttl {
  font-size: 1.6em;
  padding-bottom: 30px;
  line-height: 1.5;
  text-align: justify;
}

#company .com-detail-text2 {
  font-size: 0.85em;
  /*padding-bottom:50px;*/
  /*padding-bottom:60px;*/
  padding-bottom: 120px;
}

#company .com-detail-text2>p {
  line-height: 2;
  text-align: justify;
}

#company .policy-block {
  /*padding-bottom:15px;*/
  padding-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
}

#company .policy-ttl {
  /*padding:30px 5px;*/
  padding: 50px 5px;
  text-align: center;
  font-size: 4em;
  /*font-size:3em;*/
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  position: relative;
  letter-spacing: 15px;
}

#company .policy-ttl::after {
  content: "社是";
  position: absolute;
  /*top:-15%;*/
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  /*font-size:0.45em;*/
  font-size: 0.7em;
  /*background:#f7f8f8;*/
  background: #fff;
  letter-spacing: 0;
}

#company .policy-detail {
  font-size: 0.9em;
}

#company .policy-detail>p {
  line-height: 2;
  text-align: justify;
}

#company .com-img2 {
  width: 50%;
}

#company .com-img2>img {
  width: 100%;
  padding-bottom: 10px;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

#company .overview-content {
  padding: 50px 0;
  font-family: "Zen Old Mincho", serif;
  width: 95%;
  margin: 0 auto;
}

#company .midasi-block {
  padding-bottom: 40px;
  text-align: center;
}

#company .midasi-sub {
  font-size: 0.8em;
  padding-bottom: 15px;
  letter-spacing: 2px;
}

#company .midasi-ttl {
  font-size: 1.8em;
}

#company .overview-block {
  padding-bottom: 30px;
}

#company .overview-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #231815;
  font-size: 1em;
}

#company .overview-ttl {
  width: 15%;
  padding-left: 0;
  min-width: 120px;
}

#company .overview-detail {
  width: 85%;
  padding-right: 5%;
}

#company .overview-detail>p {
  line-height: 1.8;
  text-align: justify;
}

#company .overview-detail-external-link {
  text-decoration: underline;
  background: url(../images/external-link-ico.png) no-repeat right center / 21px;
  padding-right: 27px;
}

#company .map-block {
  width: 100%;
}

#company .map-block iframe {
  width: 100%;
  height: 40vh;
  min-height: 300px;
}


/***** MODEL HOUSE *****************************/
#mh {
  color: var(--text-color);
  font-weight: 350;
}

#mh hr {
  border-top: 1px solid #231815;
}

#mh .content01 {
  width: 95%;
  margin: 0 auto;
}

#mh .content-title {
  width: 40%;
  min-width: 500px;
  margin: 0 auto;
  padding-bottom: 60px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

#mh .content-title>.content-ttl {
  font-size: 1.8em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #231815;
  letter-spacing: 2px;
}

#mh .content-title>.content-subttl {
  font-size: 1.4em;
}

#mh .content-block {
  padding-bottom: 0;
}

#mh .content-item {
  display: flex;
  justify-content: space-between;
  /*align-items:center;*/
  gap: 5%;
  padding-bottom: 50px;
}

#mh .content-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

#mh .content-item-detail {
  /*width:55%;*/
  width: 45%;
  display: flex;
  flex-direction: column;
}

#mh .content01-box {
  margin: auto 0;
}

#mh .content01-img {
  width: 50%;
  min-width: 165px;
  padding-left: 5%;
  /*padding-bottom:30px;*/
  padding-bottom: 40px;
}

#mh .content01-img>img {
  width: 100%;
}

#mh .content01-text {
  font-size: 0.8em;
  /*display:inline-block;*/
}

#mh .content01-text>p {
  /*line-height:2.5;*/
  line-height: 2.8;
  text-align: justify;
}

#mh .content01-text>p>span {
  display: block;
}

#mh .content-item-img {
  width: 45%;
}

#mh .content-item-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

#mh .content01-midasi {
  font-size: 1.1em;
  /*line-height:1.8;*/
  line-height: 2;
  letter-spacing: 1px;
  padding-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  text-align: justify;
}

#mh .content01-midasi>span {
  display: block;
}

/****/
#mh .content02 {
  width: 95%;
  margin: 0 auto;
}

#mh .content02-midasi {
  padding-bottom: 50px;
}

#mh .content02-midasi>.midasi-subttl {
  font-size: 0.8em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 20px;
  letter-spacing: 5px;
  color: #9fa0a0;
}

#mh .content02-midasi>.midasi-ttl {
  font-size: 1.1em;
  letter-spacing: 3px;
}

#mh .slider img {
  height: auto;
  min-height: unset;
  aspect-ratio: 10 / 7;
}

#mh .content02-text {
  width: 80%;
  padding: 0 30px;
  font-size: 0.9em;
  margin: 0 auto;
  letter-spacing: 2px;
  font-weight: 350;
  padding-bottom: 50px;
}

#mh .content02-text>p {
  line-height: 2;
}

#mh .content02-text>p>span {
  display: block;
}

#mh .thumbnail-slider .slick-track {
  /*サムネイル部分を動かさないように*/
  transform: unset !important;
}

/****/
#mh .content03 {
  background: #f7f8f8;
  /*padding:30px 0;*/
  padding: 30px 0 50px;
}

#mh .content03-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5%;
  padding-bottom: 30px;
}

#mh .content03-access {
  border: 1px solid #231815;
  padding: 8px;
  margin-right: 20px;
  white-space: nowrap;
}

#mh .content03-txt {
  font-size: 0.9em;
  line-height: 1.5;
  text-align: justify;
}

#mh .content03-map-block {
  width: 95%;
  margin: 0 auto;
}

#mh .content03-map-block>iframe {
  width: 100%;
  height: 40vh;
  min-height: 300px;
}

/****/
#mh .content04 {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}

#mh .content04-text01 {
  width: 40%;
  min-width: 500px;
  margin: 0 auto;
  padding-bottom: 20px;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}

#mh .content04-text01-ttl {
  font-size: 1.2em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #231815;
}

#mh .content04-text01-text {
  font-size: 0.8em;
}

#mh .content04-tel {
  font-size: 2.5em;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 10px;
}

#mh .content04-text02 {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  /*padding-bottom:30px;*/
  padding-bottom: 50px;
  font-size: 0.9em;
}

#mh .content04>a {
  display: block;
  padding: 30px;
  border: 1px solid #231815;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #fff;
  width: 100%;
  white-space: nowrap;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0 auto;
  position: relative;
}

#mh .content04>a::after {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  filter: invert(0);
  padding: 10px 25px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

#mh .content04>a:hover {
  background-color: #231815;
  color: #fff;
}

#mh .content04>a:hover::after {
  filter: invert(1);
}

#mh .content04-text03 {
  padding-top: 30px;
  font-size: 0.95em;
  text-align: center;
}

/****/
#mh .content05 {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
}

#mh .content-block05 {
  padding-bottom: 0;
}

#mh .content-item05 {
  display: flex;
  justify-content: space-between;
  /*align-items:center;*/
  gap: 5%;
  padding-bottom: 50px;
}

#mh .content-item05:nth-of-type(2n) {
  flex-direction: row-reverse;
}

#mh .content-item05-detail {
  width: 55%;
  display: flex;
  flex-direction: column;
}

#mh .content05-box {
  margin: auto 0;
}

#mh .content05-img {
  width: 50%;
  min-width: 165px;
  padding-left: 5%;
  padding-bottom: 30px;
}

#mh .content05-img>img {
  width: 100%;
}

#mh .content05-text {
  font-size: 0.8em;
  display: inline-block;
}

#mh .content05-text>p {
  line-height: 2.5;
}

/*#mh .content05-text>p>span{
  display:block;
}*/
#mh .content-item05-img {
  width: 45%;
}

#mh .content-item05-img>img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}









#mh .content05-midasi {
  font-size: 1.5em;
  /*line-height:1.8;*/
  line-height: 2;
  padding-bottom: 20px;
  /*margin-bottom:30px;*/
  margin-bottom: 40px;
  border-bottom: 1px solid #231815;
  letter-spacing: 2px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

#mh .content05-midasi>span {
  display: block;
}

#mh .content05-text {
  font-size: 0.8em;
  display: inline-block;
}

#mh .content05-text>p {
  line-height: 2;
  position: relative;
  padding-left: 1.2em;
  /*text-align: justify;*/
}

#mh .content05-text>p:not(.big)>span {
  display: block;
}

#mh .content05-text>p>span.small {
  display: inline-block;
  font-size: 0.85em;
  text-align: justify;
}

#mh .content05 .content05-text>p.maru {
  position: relative;
  padding-left: 1.2em;
  text-align: justify;
}

#mh .content05 .content05-text>p::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

#mh .content05 .content05-text>p.none::after {
  content: "";
}

#mh .content05 .content05-text>p.maru::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
}

/****/
#mh .content06 {
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
  font-family: "Zen Old Mincho", serif;
}

#mh .content06-midasi {
  width: 40%;
  min-width: 500px;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-bottom: 60px;
  line-height: 1.5;
  text-align: center;
  font-size: 1.2em;
  border-bottom: 1px solid #231815;
  letter-spacing: 2px;
}

#mh .content06-box {
  width: 65%;
  margin: 0 auto;
  padding-bottom: 60px;

}

#mh .floors {
  font-size: 1.2em;
  letter-spacing: 2px;
  padding-bottom: 15px;
  padding-left: 10%;
}

#mh .content06-box>img {
  width: 100%;
}

/****/
#mh .content07 {
  width: 95%;
  margin: 0 auto;
}

#mh .content07-text01 {
  font-size: 1.1em;
  line-height: 2;
  padding-bottom: 30px;
}

#mh .content07-text01>span {
  display: block;
}

#mh .content07>a {
  display: block;
  padding: 30px;
  border: 1px solid #231815;
  letter-spacing: 2px;
  transition: all .7s;
  text-align: center;
  background-color: #fff;
  width: 100%;
  white-space: nowrap;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0 auto;
  position: relative;
}

#mh .content07>a::after {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../images/more_btn_arrow.webp) no-repeat left center / 70%;
  filter: invert(0);
  padding: 10px 25px;
  margin-left: 5px;
  vertical-align: middle;
  transition: all .7s;
}

#mh .content07>a:hover {
  background-color: #231815;
  color: #fff;
}

#mh .content07>a:hover::after {
  filter: invert(1);
}

#mh .content07-text02 {
  padding-top: 30px;
  font-size: 0.95em;
  text-align: center;
}

/***** プライバシー(個人情報取り扱い) **********************/
#privacy {
  color: var(--text-color);
  font-weight: 450;
}

#privacy .subwrap {
  margin-top: 100px;
}

#privacy .title>.subttl {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 0.9em;
  letter-spacing: 2px;
  font-weight: 400;
}

#privacy .privacy-midasi {
  font-size: 1.5em;
  text-align: center;
  padding-bottom: 60px;
  font-weight: 500;
}

#privacy .privacy-content {
  font-size: 0.9em;
  padding-bottom: 100px;
}

#privacy .privacy-content>p {
  line-height: 1.5;
  text-align: justify;
}

#privacy .privacy-content>p>span {
  display: block;
}

#privacy .privacy-item {
  padding-bottom: 60px;
}

#privacy .privacy-ttl {
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 15px;
}

#privacy .privacy-text {
  font-size: 0.9em;
}

#privacy .privacy-text>p {
  line-height: 1.5;
  text-align: justify;
}

#privacy .privacy-text>p>img {
  display: inline-block;
  height: 1em;
  vertical-align: middle;
}

/*
.swiper-afInter{
  width:100%;
}
.swiper-afInter .swiper-wrapper{
  width:100%;
  overflow:hidden;
}
.swiper-afInter .swiper-slide img{
  width:100%;
  object-fit:cover;
}*/

/***** アフターインタビュー(詳細) *****************************/
#voice-item {
  color: var(--text-color);
}

@media (max-width:1023px) {
  #voice-item .af-wrap {
    padding-bottom: 2%;
  }
}

#voice-item .after-ttl {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  text-align: center;
  letter-spacing: 2px;
}

#voice-item .after-ttl>.af-ttl {
  font-size: 2em;
  padding-bottom: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#voice-item .after-ttl>.af-subttl {
  font-size: 0.7em;
}

#voice-item .greeting-text {
  font-size: 0.9em;
  /*text-align:center;*/
  width: 85%;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#voice-item .greeting-text>p {
  line-height: 1.8;
  text-align: justify;
}

#voice-item .af-block {}

#voice-item .af-block-title {
  background: #f7f8f8;
}

#voice-item .major-items {
  font-size: 1.5em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#voice-item .major-items>p {
  line-height: 1.5;
}

#voice-item .detail-block {
  /*display:inline-block;*/
  margin: 2% auto;
}

#voice-item .detail-img {
  width: 50%;
  float: right;
  padding-left: 2%;
  /*padding-bottom:2%;*/
  padding-bottom: 5%;
}

#voice-item .detail-img>img {
  width: 100%;
}

#voice-item .detail-text {
  /*float:left;
  width:50%;*/
  float: unset;
  width: auto;
}

#voice-item .detail-text-item {
  display: flex;
  /*margin-bottom:8%;*/
  margin-bottom: 3%;
  font-size: 0.9em;
  padding-left: 2%;
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}

#voice-item .detail-hn {
  width: 90px;
  min-width: 90px;
  font-size: 0.9em;
  margin-right: 3%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

#voice-item .detail-hn>span {
  display: block;
  width: 100%;
  background: var(--quaternary);
  color: #fff;
  border-radius: 15px;
  padding: 7% 10% 5%;
  display: block;
  text-align: center;
}

#voice-item .detail-txt {
  width: 100%;
}

#voice-item .detail-txt>p {
  line-height: 1.8;
  text-align: justify;
}

#voice-item .both {
  clear: both;
}

#voice-item .af-block.even {}

#voice-item .af-block.even .detail-img {
  width: 50%;
  float: left;
  padding-right: 2%;
  padding-left: 0;
}

#voice-item .af-block.even .detail-text {
  /*float:right;
  width:50%;*/
  float: unset;
  width: auto;
}

#voice-item .af-block.even .detail-text-item {
  margin-right: auto;
  margin-left: 0;
}

#voice-item hr {
  border-top: 1px solid #231815;
}



/***** スタッフ紹介 **********************/
.staff {
  color: #211815;
  font-weight: 450;
}

.staff .wrap {
  /*max-width:1100px;*/
  max-width: 880px;

}

.staff .subwrap {
  margin-top: 100px;
}

.staff .title>.ttl {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 1.7em;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 25px;
}

.staff .title>.subttl {
  font-size: 10px;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 0;
}

.staff .content {
  margin-top: 100px;
}

.staff .list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10%;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
}

.staff .list .list-item {
  width: calc(70% / 4);
  margin-bottom: 90px;
}

.staff .list .list-item .item-thumbnail {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.staff .list .list-item .item-thumbnail>img {
  width: 100%;
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.staff .list .list-item .item-thumbnail .item-thumbnail-default {
  display: block;
}

.staff .list .list-item .item-thumbnail .item-thumbnail-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.staff .list .list-item .item-thumbnail:hover .item-thumbnail-default {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.staff .list .list-item .item-thumbnail:hover .item-thumbnail-hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.staff .list .list-item .item-position {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9em;
}

.staff .list .list-item .item-name {
  text-align: center;
  font-size: 0.9em;
}

.staff .notlist {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-bottom: 100px;
}

/*****************************************/
.staff .information {}

.staff .information-name {
  border-bottom: 1px solid #211815;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.staff .information-block {
  display: flex;
  gap: 30px;
  width: 100%;
  transition: all .4s;
}

.staff .information-box {
  width: calc(calc(100% - 30px) / 2);
  position: relative;
}

.staff .information-box-image {
  position: relative;
  width: 100%;
  /*background:rgba(89,87,87);*/
  /*background:#211815;*/
  background: #666666;
}

/*.staff .information-box-image::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  background:rgba(89,87,87,0.5);
  width:100%;
  height:100%;
}*/

.staff .information-box-image-img {
  width: 100%;
  /*opacity:0.5;*/
  opacity: 0.65;
}

.staff .information-box-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  width: 70%;
  min-width: 260px;
  transition: all .4s;
}

.staff .information-box-inner-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
}

.staff .information-box-inner-text-en {
  letter-spacing: 2px;
}

.staff .information-box-inner-text-ja {}

.staff .information-box-inner-arrow {}

.staff .contact_arrow_ico_img {
  width: 80px;
  min-width: 80px;
  transition: all .4s;
}

.staff .contact_arrow_ico_img_hover {
  display: none;
  transition: all .4s;
}

.staff .information-box:hover .information-box-image {
  background: #1a1a1a;
  transition: all .4s;
}

.staff .information-box:hover .contact_arrow_ico_img {
  display: none;
  transition: all .4s;
}

.staff .information-box:hover .contact_arrow_ico_img_hover {
  display: block;
  transition: all .4s;
}

/*.staff .information-block:hover .information-box .information-box-inner{
  opacity: 0.3;
  transition: all .4s;
}
.staff .information-block .information-box:hover .information-box-inner{
  opacity: 1;
  transition: all .4s;
}*/
/*スタッフページのモーダル*/
.staffmodal {
  display: none;
  /*none*/
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.staffmodal-content {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 1100px;
  max-height: 95svh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.staffclose {
  position: fixed;
  top: -40px;
  right: 0px;
  cursor: pointer;
  transition: all .4s;
}

.staffclose-img {
  width: 35px;
  height: auto;
  transition: all .4s;
}

.staffclose:hover .staffclose-img {
  opacity: 0.7;
  transition: all .4s;
}

.staffmodal-block {
  background: #fff;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow: hidden;
  /*min-height:60svh;*/
  /*min-height:55svh;*/
  min-height: 52svh;
  height: auto;
  max-height: 60px;
  /*max-height:70svh;*/
}

.staffmodal-scrollblock {
  overflow-y: auto;
  height: calc(52svh - 40px);
}

.staffmodal-area {
  /*padding-top:60px;
  padding-bottom:90px;*/
  display: flex;
  gap: 30px;
  /*width:90%;*/
  width: 85%;
  /*position:absolute;*/
  position: relative;
  justify-content: space-between;
  /*padding-top:40px;
  padding-bottom:50px;*/
  padding: 8% 0;
  margin: 0 auto;
  /*max-height:45svh;*/


}

@media (max-height:750px) and (min-width:600px) {
  /*.staffmodal-free{
    padding-bottom:50px;
  }*/
}

.staffmodal-image {
  /*max-width:250px;
  max-height:250px;*/
  max-width: clamp(9.375rem, 3.125rem + 16.67vw, 15rem);
  max-height: clamp(9.375rem, 3.125rem + 16.67vw, 15rem);
  width: clamp(9.375rem, 3.125rem + 16.67vw, 15rem);
  height: clamp(9.375rem, 3.125rem + 16.67vw, 15rem);
  border-radius: 50%;
  z-index: 2;

  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.staffmodal-box {
  width: 65%;
  padding-top: 15px;
}

.staffmodal-name {
  font-size: 1.9em;
  letter-spacing: 1px;
}

.staffmodal-line {
  position: relative;
  background: #231815;
  width: calc(100% + calc(100% - 65%));
  height: 0.75px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: calc(calc(calc(100% - 65%))* -1);
  z-index: 1;
}

.staffmodal-scroll {
  /*max-height:35svh;*/
  /*max-height:25svh;
  overflow-y:auto;*/
}

.staffmodal-position {
  font-size: 0.95em;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.staffmodal-detail {
  font-size: 0.85em;
  padding-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
}

.staffmodal-free {
  letter-spacing: 1px;
  line-height: 1.8;
}

.staffmodal-hobby {
  position: relative;
  padding-left: 75px;
  padding-bottom: 15px;
}

.staffmodal-hobby:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "趣味 /";
}

.staffmodal-favorite {
  position: relative;
  padding-left: 130px;
}

.staffmodal-favorite:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "好きな言葉 /";
}

.staffmodal-introduction {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 1em;
  background: #898989;
  z-index: 3;
}

.staffmodal-introduction-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 1.8px;
}


.modal-navigation {
  width: calc(calc(100% + calc(20px + 20px)) + 70px);
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.modal-navigation .staff-button {
  opacity: 1;
  transition: all .4s;
}

.modal-navigation .prev-staff,
.modal-navigation .next-staff {
  padding: 10px;
  margin: 5px;
  cursor: pointer;
}

.prev-staff-img,
.next-staff-img {
  width: 20px;
  height: auto;
}

.modal-navigation:hover .staff-button {
  opacity: 0.5;
  transition: all .4s;
}

.modal-navigation .staff-button:hover {
  opacity: 1;
  transition: all .4s;
}

/* JAREA追加 */
/* 404ページ */
#not-found {
  padding-top: 120px;
}

.error404 .header {
  background: rgba(0, 0, 0, .4);
}

@media screen and (max-width: 599px) {
  .error404 .header_contents {
    background: transparent;
  }
}

.not-found .content01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.not-found-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: clamp(0.813rem, 0.473rem + 1.7vw, 2rem);
  letter-spacing: 3px;
  line-height: 1.4;
}

.not-found-text {
  font-size: clamp(0.688rem, 0.634rem + 0.27vw, 0.875rem);
  letter-spacing: .4px;
  text-align: center;
  line-height: 2;
}

.top-back-btn {
  background: #595757;
  color: #fff;
  padding: 22px;
  border-radius: 34px;
  width: 300px;
  text-align: center;
  position: relative;
}

.top-back-btn::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 34px;
  position: absolute;
  right: 18px;
  top: 25px;
  transform: rotate(45deg);
}

.top-back-btn::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 34px;
  position: absolute;
  right: 18px;
  top: 35px;
  transform: rotate(135deg);
}

@media (min-width:1024px) {
  .pc_none {
    display: none;
  }
}

@media (max-width:1024px) {
  .sp_none {
    display: none;
  }
}

/* SP時、テキスト左寄せ */
@media (max-width:768px) {
  .has-t-align-pc-only-c {
    text-align: left;
  }
}

/* 部屋面積table */
.size-of-the-room td {
  border: 0;
  font-size: .9rem;
}

/* PC時、テキスト中央寄せ */
@media (min-width:768px) {
  .size-of-the-room {
    width: 280px;
    margin: 0 auto;
  }

  /* PC時、左margin */
  .pc-ml-90 {
    margin-left: 90px;
  }
}

.note_font {
  font-size: 0.8rem;
}

.footer-snss {
  display: flex;
  flex-direction: row;
  margin: 20px 20px 20px 0;
}

@media (max-width:768px) {
  .footer-snss {
    display: none;
  }

  .footer-under {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
    background-color: #f2f1f0;
  }
}

.sns-item {
  margin-right: 20px;
}

.header_arrow {
  padding-right: 10px;
}

.footer_arrow {
  padding-right: 10px;
}

.footer_nav_list li:not(:first-child) a::before {
  content: "—\00a0\00a0";
  text-indent: 20px;
}

.company_info_tel_pc {
  font-size: 1.3rem;
}

.privacy {
  font-size: 0.8rem;
  border-bottom: 1px solid #000;
  text-align: center;
  width: 50%;
  padding: 30px 1% 10px 1%;
  margin: auto;
}

/*どこでも使えるよ*/
@media screen and (min-width:768px) {

  .aftercontact-smalltext {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 200%;
    letter-spacing: 0.1rem;
    padding: 10px;
    font-size: 1em;
    color: #231815;
    text-align: left;
    font-weight: 400;
    padding-bottom: 30px;
  }

  .aftercontact-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 30px auto;
    padding: 20px 0;
  }

  .aftercontact-list>span.green {
    color: #005b4b;
    display: inline-block;
    width: 50%;
    padding: 10px 0.5%;
    line-height: 150%;
  }

  .list_block {
    word-break: break-all;
  }

  .aftercontact-info {
    font-size: 0.8rem;
    line-height: 200%;
  }

  .list_block::before {
    content: "\00A0";
  }


  .inspectioncontact-smalltext {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 150%;
    letter-spacing: 0.1rem;
    padding: 10px;
    font-size: 1rem;
    color: #231815;
    text-align: left;
    font-weight: 400;
    padding-bottom: 30px;
  }

  .inspectioncontact-list {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 30px auto;
    padding: 20px 0;
  }

  .inspectioncontact-list>span.green {
    color: #005b4b;
    font-size: 1.5rem;
    padding: 10px 0.5%;
    line-height: 150%;
  }

  .inspectioncontact-list>span.red {
    color: #ba0017;
    font-size: 1.5rem;
  }

  .inspectioncontact-list_block {
    display: inline-block;
    margin-top: 30px;
  }

  .inspectioncontact-info {
    font-size: 0.8rem;
    line-height: 5px 10px;
  }

  .inspectioncontact-notice {
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    background-color: #fcea7e;
    padding: 10px 20px;
  }

  .inspectioncontact-notice span {
    vertical-align: middle;
    line-height: 120%;
  }

  .inspectioncontact-notice img {
    vertical-align: middle;
    margin-right: 10px;
  }

  .pc_none01 {
    display: none;
  }
}

@media screen and (max-width:768px) {

  .aftercontact-smalltext {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 200%;
    letter-spacing: 0.1rem;
    padding: 10px;
    font-size: 1rem;
    color: #231815;
    text-align: left;
    font-weight: 400;
    padding-bottom: 30px;
  }

  .aftercontact-list {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 30px auto;
    padding: 20px 0;
  }

  .aftercontact-list>span.green {
    color: #005b4b;
    display: inline-block;
    width: 100%;
    padding: 10px 0.5%;
    line-height: 120%;
  }

  .list_block {
    display: inline-block;
    margin-top: 20px;
  }

  .aftercontact-info {
    font-size: 0.8rem;
    line-height: 200%;
  }

  .inspectioncontact-smalltext {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 150%;
    letter-spacing: 0.1rem;
    padding: 10px;
    font-size: 1rem;
    color: #231815;
    text-align: left;
    font-weight: 400;
    padding-bottom: 30px;
  }

  .inspectioncontact-list {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 30px auto;
    padding: 20px 0;
  }

  .inspectioncontact-list>span.green {
    color: #005b4b;
    font-size: 0.9rem;
    padding: 10px 0.5%;
    line-height: 200%;
  }

  .inspectioncontact-list>span.red {
    color: #ba0017;
    font-size: 0.9rem;
  }

  .inspectioncontact-list_block {
    display: inline-block;
    margin-top: 30px;
  }

  .inspectioncontact-info {
    font-size: 0.8rem;
    line-height: 5px 10px;
    text-align: justify;
    text-justify: inter-ideograph;

  }

  .inspectioncontact-notice {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fcea7e;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: left;
    line-height: 200%;
  }

  .inspectioncontact-notice div {
    vertical-align: middle;
  }

  .item01 {
    width: 30px;
    flex-shrink: 0;
    margin-right: 10px;
  }


  .sp_none01 {
    display: none;
  }

}

@media screen and (min-width:768px) {
  .land_bunner {
    width: 100%;
    text-align: center;
    margin: auto;
  }
}

@media screen and (max-width:768px) {
  .land_bunner {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    z-index: 1;
    /* 必要に応じて前面へ */
  }
}

/* バナー */
@media only screen and (min-width: 768px) {
  .floating-banner {
    position: fixed;
    z-index: 99999;
    bottom: 9%;
    right: 20px;
    /* 左側に固定 */
    transition: transform 0.5s ease;
    /* transformのトランジション */
  }

  /* スライドアウトのアニメーション */
  .floating-banner.hidden {
    transform: translateX(100vw);
    /* 画面外にスライド */
  }

  .banner {
    width: 300px;
    padding: 0;
    /* ★ paddingをゼロにして枠を除去 */
    font-weight: bold;
    text-align: center;
    background-color: transparent;
    /* ★ 白い背景を削除 */
    position: relative;
  }
}

/* 画像と「×」ボタンの設定 */
.image-wrapper {
  position: relative;
  /* ★ 「×」を画像内に配置するために必要 */
  display: inline-block;
}

.banner img {
  width: 80%;
  display: block;
}

/* 「×」ボタンを画像の右上に配置 */
.close-btn {
  position: absolute;
  top: 15px;
  right: 35px;
  background: #000;
  color: white;
  border: none;
  font-size: 28px;
  font-weight: 400;
  width: 45px;
  height: 45px;
  cursor: pointer;
  line-height: 26px;
  text-align: center;
  border-radius: 30px;
}

/* 「内覧」ボタンのスタイル */
.show-banner {
  /* font-family: "Zen Old Mincho", serif; */
  /* writing-mode: vertical-rl; */
  position: fixed;
  bottom: 2%;
  right: 10px;
  z-index: 99998;
  /* background-color: #6f6f6f; */
  /* color: white; */
  padding: 10px 10px;
  cursor: pointer;
  /* letter-spacing: 0.2rem; */
}

@media only screen and (max-width: 768px) {
  .floating-banner {
    position: fixed;
    z-index: 99999;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 9%;
    /* 必要に応じて調整 */
    transition: transform 0.5s ease;
    /* ← rightでなくtransformのトランジションに */
  }

  /* スライドアウトのアニメーション */
  .floating-banner.hidden {
    transform: translateX(100vw);
    /* ← 画面外にスライド */
  }

  .banner {
    width: 100%;
    min-width: 300px;
    padding: 0;
    /* ★ paddingをゼロにして枠を除去 */
    font-weight: bold;
    text-align: center;
    background-color: transparent;
    /* ★ 白い背景を削除 */
    position: relative;
    margin-bottom: 20px;
  }

  /* 「内覧」ボタンのスタイル */
  .show-banner {
    right: 2%;
    margin-bottom: 15%;
  }

  .banner img {
    width: 40%;
    margin-right: -30px;
  }

  .close-btn {
    top: 10px;
    right: -30px;
    font-size: 15px;
    width: 30px;
    height: 30px;
  }
}

.diagonal-strike {
  position: relative;
  display: inline-block;
}

.diagonal-strike::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: rotate(10deg);
  transform-origin: center;
  pointer-events: none;
}

/* TOPページモデルハウス追加 */
.section.model-house-top {
  display: block;
  text-align: center;
  background-color: #efefef;
  padding: 80px 0 40px;
  font-family: "Zen Kaku Gothic New",
    sans-serif;
  letter-spacing: .2px;
  line-height: 3.5;
}

.headline3-model-house {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 2.5px;
}

.model_house_calendar_btn {
  background: #fff;
  border: 1px solid #000;
  transition: all .3s;
  text-decoration: none;
  font-size: 12px;
  max-width: 250px;
  padding: 20px 40px;
}

.more-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  /* 画像の幅 */
  height: 16px;
  /* 画像の高さ */
  margin-left: 4px;
  /* テキストとの間隔 */
  background-image: url('path/to/arrow.png');
  /* 矢印画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.model-house-about-txt {
  font-size: 1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 20px;
}

.model-house-img {
  max-width: 838px;
  padding: 40px 0;
  width: 100%;
}

.model_house_txt {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.model-house-read-more {
  display: inline-flex;
  padding: 12px 24px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 2px;
  align-items: center;
}

.model-house-read-more::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background-image: url('../images/arow.webp');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

@media (max-width:899px) {
  .section.model-house-top {
    padding: 12% 6% 3%;
  }

  .model_house_txt {
    line-height: 2.2;
    margin-bottom: 30px;
    text-align: left;
    font-size: 14px;
  }

  .model_house_calendar_btn {
    padding: 10px 20px;
  }

  .model-house-about-txt {
    font-size: 14px;
  }

  .model-house-read-more {
    margin-top: 10px;
    padding: 0;
  }


  .section {
    padding-bottom: 0;
  }

  .section.youtube {
    background: #f7f8f8;
    padding-top: 40px;
  }

  .sp-none {
    display: none;
  }
}