@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #eae8e1;
  --body_text_color: #3d3d3b;
  --link_color: #3d3d3b;
  --border_color: #3d3d3b;
  --table_border_color: #3d3d3b;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #3d3d3b;
  --td_character_color: #3d3d3b;
  --required_color: #3d3d3b;
  --top_h1_color: #fff;
  --header_navigation_color: #eae8e1;
  --top_entry_title_color: #3d3d3b;
  --entry_title_bg_color: #3d3d3b;
  --blog_title_color: #3d3d3b;
  --sub_entry_title_bg_color: #3d3d3b;
  --entry_title_bg_w570_color: #3d3d3b;
  --sub_entry_title_bg_w570_color: #3d3d3b;
  --half_entry_title_bg_color: #fff;
  --half_sub_entry_title_bg_color: #3d3d3b;
  --column3_title_bg_color: #fff;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #3d3d3b;
  --footnavi_color: #fff;
  --address_color: #fff;
  --copy_color: #fff;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1035;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 1000;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001: #fff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255,255,255,1);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #3d3d3b;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #fff;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #fff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #fff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #fff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #fff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000;/* ブログ＞ページング＞線色 */
}
/* 個人追加 */
:root {
  --header_h: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 70px;  /*初期ナビ高*/
  --easys_fixed_h: 70px;  /*固定ナビ高*/
  --custom_padding: 200px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}


/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  scroll-padding-top: var(--easys_fixed_h);
  scroll-behavior: smooth;
}
body {
  background: none transparent no-repeat center top calc(var(--header_h) * 1px) / 100%;
  /* background: url(../files/body_bg.jpg) no-repeat center top calc(var(--header_h) * 1px) / 100%; */
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  word-break: break-word;
}
body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body#page_6 {
  background: none no-repeat center top;
}
#wrapper {
  background: none transparent;
}

/* ※最初のブロックが背景ありになった場合の余白処理はfooter_common.jsに記述しています */
#outer_block {
  background: none transparent;
}


#main {
  display: flow-root;
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  background: url(../files/header_cover.png) no-repeat center bottom / 100%;
  height: calc(var(--header_h) * 1px);
  padding: calc(var(--easys_naka_main_h) / var(--easys_max_width) * 100%) 0 0;
  position: relative;
  z-index: 500;
}
#page_6 #branding_box {
  background-image: url(../files/top_header_cover.png);
  padding-top: calc(var(--easys_top_main_h) / var(--easys_max_width) * 100%);
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  left  : 50px;
  bottom: calc(280 / var(--easys_naka_main_h) * 100%);
  width: auto;
  white-space: nowrap;
}
#page_6 #site-description {
  bottom: 55px;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/main_logo.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: calc(280 / var(--easys_naka_main_h) * 100%);
  width: calc(190 / var(--easys_max_width) * 100%);
  height: calc(200 / var(--easys_naka_main_h) * 100%);
  pointer-events: none;
  z-index: 700;
  /* background: url(../files/main_logo.png) no-repeat no-repeat left top; */
}
#page_6 #header_information .main_header {
  top: calc(420 / var(--easys_top_main_h) * 100%);
  height: calc(200 / var(--easys_top_main_h) * 100%);
}
#header_information .main_header a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
#header_information .main_header a img {
  width: 100%;
  height: 100%;
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
:root {
  --gnavi01: 120px;
  --gnavi02: 85px;
  --gnavi03: 75px;
  --gnavi04: 100px;
  --gnavi05: 75px;
  --gnavi06: 110px;
}
#access {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: var(--easys_navi_h);
  z-index: 1;
}
div#access .menu-header,
div#access .menu-header #menu-gnavi { height: 100%;}
div#access .menu-header {
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}
div#access .menu-header #menu-gnavi { display: inline-block;}

div#access .menu-item a {
  background: url(../files/topnavi02.png) no-repeat left top;
  height: var(--easys_navi_h) !important;
  line-height: var(--easys_navi_h) !important;
  padding: 0;
}
div#access .gnavi11 a { width: var(--gnavi01) !important;}
div#access .gnavi12 a { width: var(--gnavi02) !important;}
div#access .gnavi13 a { width: var(--gnavi03) !important;}
div#access .gnavi14 a { width: var(--gnavi04) !important;}
div#access .gnavi15 a { width: var(--gnavi05) !important;}
div#access .gnavi16 a { width: var(--gnavi06) !important;}
div#access .gnavi11 a { background-position-x: left;}
div#access .gnavi12 a {
  background-position-x: calc(var(--gnavi01) * -1);}
div#access .gnavi13 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);}
div#access .gnavi14 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);}
div#access .gnavi15 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);}
div#access .gnavi16 a {background-position-x: right;}
div#access .menu-item a:hover { background-position-y: bottom;}

/* プルダウンメニューのサイズ */
#access ul li:hover > ul {
  display: flex;
}
#access ul.menu ul.sub-menu {
  flex-direction: column;
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  min-width: 100%;
  width: auto;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  background: none var(--easys_standard_value002);
  box-sizing: border-box;
  color: var(--easys_standard_value003);
  padding: 15px 10px;
  line-height: 1.2em !important;
  text-align: left;
  white-space: nowrap;
  width: 100% !important;
  height: auto !important;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: var(--easys_standard_value003);
}
div#access ul.sub-menu li.sub-gnavi a:hover,
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none var(--easys_standard_value002);
  background-color: #3d3d3b;
  color: var(--easys_standard_value004);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}

/* Gナビ上部固定(最大2000pxを維持) */
/* body.fixed #header_information {
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 700;
}
body.fixed #header_information .main_header {
  display: block;
  pointer-events: all;
  top: 0;
} */
body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
}

/* 固定前のみ */
body:not(.fixed) div#access {
  position: absolute;
  top: 35px;
  left: 20px;
}
body:not(.fixed) div#access li.menu-item {
  float: none;
}
body:not(.fixed) div#access #menu-gnavi > .menu-item > a {
  background-image: url(../files/topnavi.png) !important;
  background-position-x: left !important;
  height     : 30px !important;
  line-height: 30px !important;
  width: 150px !important;
}
body:not(.fixed) div#access .gnavi11 a { background-position-y: top !important;}
body:not(.fixed) div#access .gnavi12 a { background-position-y: calc(30px * -1) !important;}
body:not(.fixed) div#access .gnavi13 a { background-position-y: calc(30px * -2) !important;}
body:not(.fixed) div#access .gnavi14 a { background-position-y: calc(30px * -3) !important;}
body:not(.fixed) div#access .gnavi15 a { background-position-y: calc(30px * -4) !important;}
body:not(.fixed) div#access .gnavi16 a { background-position-y: bottom !important;}
body:not(.fixed) #access ul.menu ul.sub-menu {
  top: 0;
  left: 100%;
}

/* hoverで下線出す */
body:not(.fixed) div#access #menu-gnavi > .menu-item > a::after {
  content: "";
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 25px;
  background: none #fff;
  transition: var(--custom_transition);
}
body:not(.fixed) div#access #menu-gnavi > .menu-item > a:hover::after {
  width: 125px;
}



/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: calc(var(--header_h) * 1px);
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 99;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}
#video_teaser,
#jquery_slider_pc .viewer {
  height: var(--easys_main_h) !important;
}


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  padding: 0;
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: var(--widget_title_bg_color);
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  background: none transparent;
  border-color: var(--border_color);
  border-style: dotted;
  border-width: 0 0 1px;
  line-height: 2;
  padding: 5px;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: var(--link_color);
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: var(--easys_standard_value005);
}


/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  background: none transparent;
  /* background: url(../files/para_bg.png) no-repeat center top; */
  height: 1300px;
  position: relative;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 1080px;
  position: relative;
}

#footer_block > .design_block.block1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: -1;
}
#footer_block > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left : auto;
  margin-right: auto;
  background: url(../files/para_bg.jpg) no-repeat center bottom / auto;
  z-index: -1;
}
#footer_block > .design_block.block2 {
  background-image: url(../files/footer_bg.png);
  background-position: center bottom;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 955px 0 0;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 100%;
  text-align: right;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  width: 305px;
  height: 120px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: -10px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  /* border-color: var(--footnavi_color); */
  border: none;
  color: var(--footnavi_color);
  text-align: left;
  padding-left: 1px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item {
  margin-bottom: 0;
  margin-top: 10px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item .sub-menu {
  margin-top: 10px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item .sub-menu li {
  float: none;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item .sub-menu li a {
  color: #c5a882;
  position: relative;
  padding-left: 20px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item .sub-menu li a::before {
  content: "―";
  position: absolute;
  top: 0;
  left: 0;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  position: absolute;

  /* width: 100%;
  text-align: center;
  top: 200px;
  left: 0; */

  width: 280px;
  text-align: left;
  top: 955px;
  left: calc(50% - 145px);
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}
#footer_sns_btn .footer_sns_inner,
#footer_sns_btn div {
  width: fit-content;
  height: auto;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  position: relative;
  text-align: right;
  width: 960px;
}



/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  bottom: inherit;
  top: 10px;
  z-index: 1000;
}
/* .fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
} */
/* .fixed_btn div#fixed_btn_gtn {
  height: 150px !important;
} */

/* デフォルト動作 */
.fixed_btn {
  display: flex;
  justify-content: flex-end;
  /* flex-direction: column; */
  align-items: flex-end;
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 45px;
}
.fixed_btn div a {
  pointer-events: all;
  overflow: visible !important;
}

.fixed_btn > div {
  position: relative;
}

.fixed_btn div,.fixed_btn div a,.fixed_btn div a:hover {
  width: auto !important;
  height: auto !important;
}
.fixed_btn div {
  margin-bottom: 0;
  margin-left: 6px;
}
.fixed_btn div a {
  position: relative !important;
}
.fixed_btn div a img {
  transition: var(--custom_transition);
}
.fixed_btn div a:hover img {
  opacity: 0;
}

.fixed_btn div#fixed_btn_blog a::after {
  background-image: url(../files/btn_blog_on.png);
}
.fixed_btn div#fixed_btn_access a::after {
  background-image: url(../files/btn_map_on.png);
}
.fixed_btn div#fixed_btn_contact a::after {
  background-image: url(../files/btn_contact_on.png);
}
.fixed_btn div#fixed_btn_insta a::after {
  background-image: url(../files/btn_insta_on.png);
}
.fixed_btn div#fixed_btn_line a::after {
  background-image: url(../files/btn_libe_on.png);
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
}
#float_top_btn > a {
  position: absolute;
  right: 20px;
  bottom: 0;
  pointer-events: all;
  width: fit-content;
  height: fit-content;
  display: block;
}
#float_top_btn > a:hover img {
  opacity: 0.8;
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  height: 130px;
  line-height: 130px;
}
h3.entry_title,
.entry-title,
.entry_title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}
/*h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  フォントサイズはこちら
}*/
.entry_title a:link,
.entry_title a:visited,
.entry_title a:hover,
.entry_title a:active,
.entry-title a:link,
.entry-title a:visited,
.entry-title a:hover,
.entry-title a:active {
  color: var(--entry_title_bg_color);
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}

/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/* * .sub_entry_title,
* .sub_entry_title h4,
* .sub_entry_title h4 a {
  フォントサイズはこちら
} */
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  background: none var(--th_background_color);
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  color: var(--th_character_color);
  font-size: 15px;
  height: auto;
  line-height: 1.7;
  padding: 10px;
  text-align: left;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}

/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  color: var(--link_color) !important;
  padding: 5px 0;
  text-align: center !important;
  width: 100%;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: var(--table_border_color);
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}


/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  background: none transparent;
  border-style: solid;
  border-color: var(--link_color);
  color: var(--link_color) !important;
}
/*.permalink_in a:link,
.permalink_in a:visited,
.pageback a:link,
.pageback a:visited {
}*/
.tablenav .next:link,
.tablenav .next:visited,
.tablenav .prev:link,
.tablenav .prev:visited {
  background: none transparent;
  border: 1px solid var(--easys_standard_value007);
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  background-color: var(--link_color);
  border-color: var(--link_color);
}
.tablenav .current,
a.page-numbers:hover,
.permalink_in a:hover,
.permalink_in a:active,
.pageback a:hover,
.pageback a:active,
.page_up a:hover,
.page_up a:active {
  background: none var(--link_color);
  border-color: var(--link_color);
  border-style: solid;
  color: var(--easys_standard_value008) !important;
}


/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: var(--border_color);
}

/* Cブロック */
.c_01,
.c_02,
.c_03,
.c_05,
.c_06 {
  display: inline-block;
  padding: 0 0 20px;
  width: 100%;
}
.c_04 {
  margin: 0 0 20px;
}

/* Dブロック */
.menu-list table {
  border-collapse: separate;
}

/* Gブロック */
.g_01 .sub_entry_title a,
.g_02 .sub_entry_title a {
  text-decoration: underline;
}
.g_01 .sub_entry_title a:hover,
.g_02 .sub_entry_title a:hover {
  text-decoration: none;
}

/* Kブロック */
.k_03 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.k_03 .news_small_text {
  font-size: 12px;
  line-height: 1.7;
}

/* Z-D ブログRSS */
.z_d1 {
  margin: 0 0 20px;
}

/* Z-E リンクバナー */
.banner_box {
  text-align: center;
}
.banner_box img {
  max-width: 100%;
  width: auto;
}

/* Z-I スライドショー */
.z_j1 {
  margin: 0 0 15px;
}

/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.Z_l1 .news_small_text {
  font-size: 12px;
}

/* Z_M タブブロック */
.z_m1 .link_list {
  font-size: 13px;
  line-height: 1.5;
}
.z_m1 div.link_list {
  margin-bottom: 10px;
}
div.link_list a {
  background-color: transparent;
  border: 1px solid var(--link_color);
  color: var(--link_color);
}
div.link_list a:hover {
  background-color: var(--link_color);
  border: 1px solid var(--link_color);
  color: #fff;
}

.faq-title {
  background-color: var(--link_color);
  color: #fff;
  font-weight: normal;
}


/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: var(--required_color);
}
.iqfm-table button,
.iqfm-table input[type="reset"],
.iqfm-table input[type="button"],
.iqfm-table input[type="submit"] {
  line-height: 1.7;
}
.iqfm-table .post_data {
  margin: 0 0 30px;
}


/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
/*body.coupon {
}*/
.coupon_print_block .print_header,
h1.print_page_title,
.coupon_box table tr td.coupon_data,
.coupon_box table tr td.coupon_meta_title,
.coupon_box table tr td.coupon_meta {
  border-color: var(--table_border_color);
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  background-color: var(--th_background_color);
  color: var(--th_character_color);
  width: 8em;
}
.coupon_box table tr td.coupon_meta {
  background-color: var(--td_background_color);
  color: var(--td_character_color);
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}


/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: var(--easys_standard_value009);
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  height: auto;
  line-height: 1.5;
  padding: 15px 20px 15px 20px;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: var(--blog_title_color);
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  margin: 0 0 20px;
  width: 100%;
  height: 450px;
}


/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}

/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/*  flow矢印余白*/
.flow_arr {
  margin: 10px auto !important;
}

/* メール更新ブロック */
.nj_03 .cu_mail_block {
  padding-bottom: 20px;
}
.nj_03 .img_size_thumb {
  height: 100px;
}
.nj_03 .img_size_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社概要 */
#content [class*="nf_"] small + iframe {
  margin-top: 30px !important;
}

/* フェードのipad対応 */
.easys_content:not(.ni_01) div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 背景と余白調整 */
.easys_content.no_margin { margin-bottom: 0 !important;}
.easys_content.no_margin + .easys_content:not(.no_margin) { margin-top: var(--custom_padding);}
.easys_content.no_margin.nk_01 { padding-bottom: 25px;}
.easys_content.no_margin.nk_01 [class*="title"] {  margin-bottom: 0;}
.shosai #outer_block { padding-top: 70px !important;}

/* テーマ余白調整 */
.easys_content,
.easys_content_inner > div:last-of-type {
  margin-bottom: 0 !important;
}
.easys_content.no_margin + .easys_content:not(.no_margin),
.easys_content:not(.no_margin):not(.nk_01) + .easys_content:not(.no_margin),
.easys_content:not(.no_margin) + .easys_content.no_margin {
  margin-top: var(--custom_padding);
}
#content > .easys_content:last-of-type:not(.no_margin) { margin-bottom: var(--custom_padding) !important;}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */

/* ※GSAPにて実装済（footer_pc.js） */

.easys_content_inner {
  position: relative;
  height: 100%;
}



/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  transition: all 1.3s ease 0s;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* ON画像 */
#xxx a::after,
.fixed_btn div a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: var(--custom_transition);
  opacity: 0;
}
#xxx a:hover::after,
.fixed_btn div a:hover::after {
  opacity: 1;
}

/* ズームアウト表示 */
.zoomIn {
  opacity: 1;
  overflow: hidden;
}
.zoomIn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: 2s ease 0s;
  opacity: 0;
  transform: scale(1.3);
}
.zoomIn.moved::before {
  opacity: 1;
  transform: none;
}

/* ぼかしながら左から表示される */
.blurIn {
  -webkit-mask-image: linear-gradient(90deg, #c9151e 0, #c9151e 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 200% 0;
  mask-image: linear-gradient(90deg, #c9151e 0, #c9151e 80%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 200% 100%;
  mask-position: 200% 0;
  opacity: 1;
}
.blurIn.moved {
  animation: 1s linear 0s 1 normal forwards maskFadeIn;
}
@keyframes maskFadeIn {
  0% {
    -webkit-mask-position: 200% 0;
            mask-position: 200% 0;
  }
  100% {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#f2c0k9yvupr3xn0j2vs4,
#mswk0d0lhfulner7725e,
#b6hb1gvkmt4zqwdfq6wv,
#v55536kmf1p2kepe8vx9,
#t2tadqv7nautni80qpjq,
#i8yslr7v6a5qbsj8z4sj,
#nk1j43g2k6q3c7yxjhxq {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#f2c0k9yvupr3xn0j2vs4 div,
#mswk0d0lhfulner7725e div,
#b6hb1gvkmt4zqwdfq6wv div,
#v55536kmf1p2kepe8vx9 div,
#t2tadqv7nautni80qpjq div,
#i8yslr7v6a5qbsj8z4sj div,
#nk1j43g2k6q3c7yxjhxq div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#f2c0k9yvupr3xn0j2vs4 img,
#mswk0d0lhfulner7725e img,
#b6hb1gvkmt4zqwdfq6wv img,
#v55536kmf1p2kepe8vx9 img,
#t2tadqv7nautni80qpjq img,
#i8yslr7v6a5qbsj8z4sj img,
#nk1j43g2k6q3c7yxjhxq img {
  position: relative;
}
#f2c0k9yvupr3xn0j2vs4 .design_block,
#mswk0d0lhfulner7725e .design_block,
#b6hb1gvkmt4zqwdfq6wv .design_block,
#v55536kmf1p2kepe8vx9 .design_block,
#t2tadqv7nautni80qpjq .design_block,
#i8yslr7v6a5qbsj8z4sj .design_block,
#nk1j43g2k6q3c7yxjhxq .design_block {
  opacity: 0;
}
#f2c0k9yvupr3xn0j2vs4 .design_block[class*="block"].moved,
#mswk0d0lhfulner7725e .design_block[class*="block"].moved,
#b6hb1gvkmt4zqwdfq6wv .design_block[class*="block"].moved,
#v55536kmf1p2kepe8vx9 .design_block[class*="block"].moved,
#t2tadqv7nautni80qpjq .design_block[class*="block"].moved,
#i8yslr7v6a5qbsj8z4sj .design_block[class*="block"].moved,
#nk1j43g2k6q3c7yxjhxq .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  filter: none;
}

/* リンク共通 */
#f2c0k9yvupr3xn0j2vs4 a,
#mswk0d0lhfulner7725e a,
#b6hb1gvkmt4zqwdfq6wv a,
#v55536kmf1p2kepe8vx9 a,
#t2tadqv7nautni80qpjq a,
#i8yslr7v6a5qbsj8z4sj a,
#nk1j43g2k6q3c7yxjhxq a {
  display: block;
  position: relative;
}
#f2c0k9yvupr3xn0j2vs4 a:hover img,
#mswk0d0lhfulner7725e a:hover img,
#b6hb1gvkmt4zqwdfq6wv a:hover img,
#v55536kmf1p2kepe8vx9 a:hover img,
#t2tadqv7nautni80qpjq a:hover img,
#i8yslr7v6a5qbsj8z4sj a:hover img,
#nk1j43g2k6q3c7yxjhxq a:hover img {
  opacity: 1;
}

/* 微拡大フェードインバナー */
#f2c0k9yvupr3xn0j2vs4 .easys_content_inner,
#mswk0d0lhfulner7725e .easys_content_inner,
#b6hb1gvkmt4zqwdfq6wv .easys_content_inner,
#v55536kmf1p2kepe8vx9 .easys_content_inner {
  opacity: 0;
  transition: transform 1.3s ease 0s;
  transform: translateY(calc(var(--custom_fade) * 1px)) scale(0.95);
}
#f2c0k9yvupr3xn0j2vs4 .easys_content_inner.moved,
#mswk0d0lhfulner7725e .easys_content_inner.moved,
#b6hb1gvkmt4zqwdfq6wv .easys_content_inner.moved,
#v55536kmf1p2kepe8vx9 .easys_content_inner.moved {
  opacity: 1;
  transform: none;
}

/* お問い合わせ */
:root {
  --bnrContact_h: 500;
}
#f2c0k9yvupr3xn0j2vs4 .easys_content_inner {
  background: url(../files/bnr_contact_bg.jpg) no-repeat center center / 100%;
  width: 100%;
  transition: transform 1.3s ease 0s, background-size var(--custom_transition);
}
#f2c0k9yvupr3xn0j2vs4 a > .design_block {
  background-color: #3d3d3b;
  border-radius: 100vmax;
  width: calc(120 / var(--easys_max_width) * 100%);
  height: calc(120 / var(--bnrContact_h) * 100%);
  top: calc(195 / var(--bnrContact_h) * 100%);
  left: calc(675 / var(--easys_max_width) * 100%);
  opacity: 1;
  -webkit-clip-path: none !important;
  clip-path:         none !important;
}
#f2c0k9yvupr3xn0j2vs4 a > .design_block::before,
#f2c0k9yvupr3xn0j2vs4 a > .design_block::after {
  content: "";
  width : 110%;
  height: 110%;
  position: absolute;
  top : -5%;
  left: -5%;
  border-radius: 100vmax;
}
#f2c0k9yvupr3xn0j2vs4 a > .design_block::before {
  background-color: #9e886b;
  transition: var(--custom_transition) ease;
  transform: scale(0);
}
#f2c0k9yvupr3xn0j2vs4 a:hover > .design_block::before {
  transform: scale(1);
}
#f2c0k9yvupr3xn0j2vs4 a > .design_block::after {
  background: url(../files/bnr_contact_btn.png) no-repeat center center / 100%;
}
#f2c0k9yvupr3xn0j2vs4:hover .easys_content_inner.moved {
  background-size: 110%;
}

/* ハーフサイズバナー共通 */
#mswk0d0lhfulner7725e .easys_content_inner,
#b6hb1gvkmt4zqwdfq6wv .easys_content_inner,
#v55536kmf1p2kepe8vx9 .easys_content_inner {
  width: 1300px;
  /* width: calc(1300 / var(--easys_max_width) * 100%); */
  transition: transform 1.3s ease 0s;
}
#mswk0d0lhfulner7725e [class*="field_"],
#b6hb1gvkmt4zqwdfq6wv [class*="field_"],
#v55536kmf1p2kepe8vx9 [class*="field_"] {
  height: 100%;
  margin: 0;
  position: relative;
  width: calc(640 / 1300 * 100%) !important;
  transition: background-size var(--custom_transition);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
#mswk0d0lhfulner7725e [class*="field_"]:hover,
#b6hb1gvkmt4zqwdfq6wv [class*="field_"]:hover,
#v55536kmf1p2kepe8vx9 [class*="field_"]:hover {
  background-size: 110%;
}
#mswk0d0lhfulner7725e .eyecatch,
#b6hb1gvkmt4zqwdfq6wv .eyecatch,
#v55536kmf1p2kepe8vx9 .eyecatch {
  width: 100%;
}

/* 施工実績/イベント情報 */
#mswk0d0lhfulner7725e [class*="field_"]:nth-of-type(1) {
  background-image: url(../files/bnrhalf_works_bg.jpg);
}
#mswk0d0lhfulner7725e [class*="field_"]:nth-of-type(2) {
  background-image: url(../files/bnrhalf_info_bg.jpg);
}

/* コンセプト/イベント情報 */
#b6hb1gvkmt4zqwdfq6wv [class*="field_"]:nth-of-type(1) {
  background-image: url(../files/bnrhalf_concept_bg.jpg);
}
#b6hb1gvkmt4zqwdfq6wv [class*="field_"]:nth-of-type(2) {
  background-image: url(../files/bnrhalf_info_bg.jpg);
}

/* 施工実績/会社概要 */
#v55536kmf1p2kepe8vx9 [class*="field_"]:nth-of-type(1) {
  background-image: url(../files/bnrhalf_works_bg.jpg);
}
#v55536kmf1p2kepe8vx9 [class*="field_"]:nth-of-type(2) {
  background-image: url(../files/bnrhalf_company_bg.jpg);
}

/* コンセプト/施工実績/イベント情報/会社概要 */
#t2tadqv7nautni80qpjq .easys_content_inner {
  width: 100%;
}
#t2tadqv7nautni80qpjq [class*="field_"] {
  height: 100%;
  position: relative;
  width: calc( 100% / 4 ) !important;
  margin: 0;
  transform: translateY(calc(var(--custom_fade) * 1px));
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
  opacity: 0;
  transition: transform 1.3s, filter var(--custom_transition), opacity var(--custom_transition), background-size var(--custom_transition);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 101%;
}
#t2tadqv7nautni80qpjq .easys_content_inner.moved [class*="field_"] {
  transform: none;
  -webkit-filter: none;
  -moz-filter:    none;
  -ms-filter:     none;
  -o-filter:      none;
  filter:         none;
  opacity: 1;
}
#t2tadqv7nautni80qpjq [class*="field_"]:hover {
  background-size: 110%;
}
#t2tadqv7nautni80qpjq [class*="field_"]:nth-of-type(1) {
  background-image: url(../files/bnrmany_concept_bg.png);
  transition-delay: 0s, 0s, 0s, 0s;
}
#t2tadqv7nautni80qpjq [class*="field_"]:nth-of-type(2) {
  background-image: url(../files/bnrmany_works_bg.png);
  transition-delay: .2s, .2s, .2s, 0s;
}
#t2tadqv7nautni80qpjq [class*="field_"]:nth-of-type(3) {
  background-image: url(../files/bnrmany_information_bg.png);
  transition-delay: .4s, .4s, .4s, 0s;
}
#t2tadqv7nautni80qpjq [class*="field_"]:nth-of-type(4) {
  background-image: url(../files/bnrmany_company_bg.png);
  transition-delay: .6s, .6s, .6s, 0s;
}
#t2tadqv7nautni80qpjq .eyecatch {
  width: 100%;
}
#t2tadqv7nautni80qpjq a::after {
  content: "";
  width: calc(95 / 500 * 100%);
  height: calc(36 / 600 * 100%);
  position: absolute;
  top: calc(300 / 600 * 100%);
  left: calc(205 / 500 * 100%);
  background: url(../files/bnrmany_btn_arrow.png) no-repeat center center / 100%;
}
#t2tadqv7nautni80qpjq a:hover::after {
  animation: passby 1s cubic-bezier(0.65,0.01,0.3,0.97);
}
@keyframes passby {
  0% {
    transform:translateX(0);
    opacity:1;
  }
  40% {
    opacity:0;
  }
  49.9% {
    transform:translateX(50%);
    opacity:0;
  }
  50% {
    transform:translateX(-50%);
    opacity:0;
  }
  100% {
    transform:translateX(0);
    opacity:1;
  }
}

/* 年間6棟のみ/自社制作/思い出に残る家づくり */
#i8yslr7v6a5qbsj8z4sj {
  background: url(../files/bnrmany_bg.jpg) no-repeat center center / 100%;
  overflow: hidden;
}
#i8yslr7v6a5qbsj8z4sj .easys_content_inner {
  width: calc(1200 / var(--easys_max_width) * 100%);
  position: static;
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"] {
  height: 100%;
  margin: 0;
  position: static;
  width: calc(400 / 1200 * 100%) !important;
}
#i8yslr7v6a5qbsj8z4sj .eyecatch {
  width: 100%;
  position: relative;
  z-index: 10;
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"] > .design_block {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0 !important;
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"]:hover > .design_block {
  opacity: 1 !important;
  transform: scale(1.1);
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"]:nth-of-type(1) > .design_block {
  background-image: url(../files/bnrmany01_bg.jpg);
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"]:nth-of-type(2) > .design_block {
  background-image: url(../files/bnrmany02_bg.jpg);
}
#i8yslr7v6a5qbsj8z4sj [class*="field_"]:nth-of-type(3) > .design_block {
  background-image: url(../files/bnrmany03_bg.jpg);
}

/* リンク付きスライドショー */
#nk1j43g2k6q3c7yxjhxq .easys_content_inner {
  width: 100%;
  height: 600px;
}
#nk1j43g2k6q3c7yxjhxq .img_display {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
#nk1j43g2k6q3c7yxjhxq [class*="field_"] {
  width: fit-content;
  overflow: hidden;
}
#nk1j43g2k6q3c7yxjhxq [class*="field_"],
#nk1j43g2k6q3c7yxjhxq [class*="field_"] .eyecatch,
#nk1j43g2k6q3c7yxjhxq [class*="field_"] .eyecatch a {
  height: 100%;
}
#nk1j43g2k6q3c7yxjhxq [class*="field_"] a {
  padding-left: 1px;
}
#nk1j43g2k6q3c7yxjhxq [class*="field_"] a img {
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: var(--custom_transition);
}
#nk1j43g2k6q3c7yxjhxq [class*="field_"] a:hover img {
  transform: scale(1.05);
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#dpep8veyjkpwx4uscmhf,
#f12188yvzfdj1trkh9f6,
#vn77njwqcx5ynj712lra,
/* .km_grid, */
#ltc1zvqjlmzo7tmh6rfu,
#cw0q4f2zgnav2hquleyq,
#a1fatak1npukbxc0ozc3,
#rofkkqugpdpzaifv1esd {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#dpep8veyjkpwx4uscmhf .easys_content_inner,
#f12188yvzfdj1trkh9f6 .easys_content_inner,
#vn77njwqcx5ynj712lra .easys_content_inner,
#ltc1zvqjlmzo7tmh6rfu .easys_content_inner,
#cw0q4f2zgnav2hquleyq .easys_content_inner,
#a1fatak1npukbxc0ozc3 .easys_content_inner,
#rofkkqugpdpzaifv1esd .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#dpep8veyjkpwx4uscmhf .post_margin,
#f12188yvzfdj1trkh9f6 .post_margin,
#vn77njwqcx5ynj712lra .post_margin,
#ltc1zvqjlmzo7tmh6rfu .post_margin,
#cw0q4f2zgnav2hquleyq .post_margin,
#a1fatak1npukbxc0ozc3 .post_margin,
#rofkkqugpdpzaifv1esd .post_margin {
  margin: 0;
}
#dpep8veyjkpwx4uscmhf .entry_post,
#f12188yvzfdj1trkh9f6 .entry_post,
#vn77njwqcx5ynj712lra .entry_post,
.km_grid .entry_post,
#ltc1zvqjlmzo7tmh6rfu .entry_post,
#cw0q4f2zgnav2hquleyq .entry_post,
#a1fatak1npukbxc0ozc3 .entry_post,
#rofkkqugpdpzaifv1esd .entry_post {
  box-sizing: border-box;
}
#dpep8veyjkpwx4uscmhf .entry_post > [class*="title"],
#f12188yvzfdj1trkh9f6 .entry_post > [class*="title"],
#vn77njwqcx5ynj712lra .entry_post > [class*="title"],
#ltc1zvqjlmzo7tmh6rfu .entry_post > [class*="title"],
#cw0q4f2zgnav2hquleyq .entry_post > [class*="title"],
#a1fatak1npukbxc0ozc3 .entry_post > [class*="title"],
#rofkkqugpdpzaifv1esd .entry_post > [class*="title"] {
  display: none;
}
#dpep8veyjkpwx4uscmhf .text_box,
#f12188yvzfdj1trkh9f6 .text_box,
#vn77njwqcx5ynj712lra .text_box,
#ltc1zvqjlmzo7tmh6rfu .text_box,
#cw0q4f2zgnav2hquleyq .text_box,
#a1fatak1npukbxc0ozc3 .text_box,
#rofkkqugpdpzaifv1esd .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  margin: 0;
}
#dpep8veyjkpwx4uscmhf .post_data,
#f12188yvzfdj1trkh9f6 .post_data,
#vn77njwqcx5ynj712lra .post_data,
#ltc1zvqjlmzo7tmh6rfu .post_data,
#cw0q4f2zgnav2hquleyq .post_data,
#a1fatak1npukbxc0ozc3 .post_data,
#rofkkqugpdpzaifv1esd .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
_::-webkit-full-page-media, _:future, :root #dpep8veyjkpwx4uscmhf .post_data p,
_::-webkit-full-page-media, _:future, :root #f12188yvzfdj1trkh9f6 .post_data p,
_::-webkit-full-page-media, _:future, :root #vn77njwqcx5ynj712lra .post_data p,
_::-webkit-full-page-media, _:future, :root #ltc1zvqjlmzo7tmh6rfu .post_data p,
_::-webkit-full-page-media, _:future, :root #cw0q4f2zgnav2hquleyq .post_data p,
_::-webkit-full-page-media, _:future, :root #a1fatak1npukbxc0ozc3 .post_data p,
_::-webkit-full-page-media, _:future, :root #rofkkqugpdpzaifv1esd .post_data p {
  line-height: 2;
  letter-spacing: -1px;
}
#dpep8veyjkpwx4uscmhf .design_block,
#f12188yvzfdj1trkh9f6 .design_block,
#vn77njwqcx5ynj712lra .design_block,
.km_grid .design_block[class*="block"],
#ltc1zvqjlmzo7tmh6rfu .design_block,
#cw0q4f2zgnav2hquleyq .design_block,
#a1fatak1npukbxc0ozc3 .design_block,
#rofkkqugpdpzaifv1esd .design_block {
  opacity: 0;
}
#dpep8veyjkpwx4uscmhf .design_block[class*="block"].moved,
#f12188yvzfdj1trkh9f6 .design_block[class*="block"].moved,
#vn77njwqcx5ynj712lra .design_block[class*="block"].moved,
.km_grid .design_block[class*="block"].moved,
#ltc1zvqjlmzo7tmh6rfu .design_block[class*="block"].moved,
#cw0q4f2zgnav2hquleyq .design_block[class*="block"].moved,
#a1fatak1npukbxc0ozc3 .design_block[class*="block"].moved,
#rofkkqugpdpzaifv1esd .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  -webkit-filter: none;
  -moz-filter:    none;
  -ms-filter:     none;
  -o-filter:      none;
  filter:         none;
}

/* 木のぬくもりに包まれる暮らし */
#dpep8veyjkpwx4uscmhf {
  background-image: url(../files/design01_bg.jpg);
  height: 1224px;
}
#dpep8veyjkpwx4uscmhf .entry_post {
  padding: 205px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#dpep8veyjkpwx4uscmhf .text_box {
  box-sizing: border-box;
  width: 500px;
  height: 410px;
}
#dpep8veyjkpwx4uscmhf .post_data {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode:vertical-rl;
}
#dpep8veyjkpwx4uscmhf > .design_block.block1 {
  width: 820px;
  height: 750px;
  top: 207px;
  left: calc(50% - 835px);
}
#dpep8veyjkpwx4uscmhf > .design_block.block1::before {
  background-image: url(../files/design01_img01.png);
}
#dpep8veyjkpwx4uscmhf > .design_block.block2 {
  background-image: url(../files/design01_img02.png);
  width: 500px;
  height: 320px;
  top: 737px;
  left: calc(50% + 173px);
}

/* 一つひとつの想いを大切にした家づくり */
#f12188yvzfdj1trkh9f6 {
  height: 1134px;
}
#f12188yvzfdj1trkh9f6 .entry_post {
  padding: 315px 0 0;
}
#f12188yvzfdj1trkh9f6 > .design_block.block1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}
#f12188yvzfdj1trkh9f6 > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left : auto;
  margin-right: auto;
  background: url(../files/design02_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#f12188yvzfdj1trkh9f6 > .design_block.block2 {
  background-image: url(../files/design02_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#f12188yvzfdj1trkh9f6 > .design_block.block3 {
  background-image: url(../files/design02_ttl.png);
  width: 960px;
  height: 120px;
  top: 195px;
  left: calc(50% - 480px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}

/* 熊本県内とその近郊を中心に、お客さまの理想の住まいを提供しています。 */
#vn77njwqcx5ynj712lra {
  background-image: url(../files/design03_bg.jpg);
  height: 1150px;
}
#vn77njwqcx5ynj712lra .entry_post {
  padding: 415px 480px 0 0;
}
#vn77njwqcx5ynj712lra > .design_block.block1 {
  width: 700px;
  height: 820px;
  top: 160px;
  left: calc(50% + 98px);
}
#vn77njwqcx5ynj712lra > .design_block.block1::before {
  background-image: url(../files/design03_img01.png);
}
#vn77njwqcx5ynj712lra > .design_block.block2 {
  background-image: url(../files/design03_img02.png);
  width: 640px;
  height: 230px;
  top: 750px;
  left: calc(50% - 757px);
}

/* NEWS /BLOG */
.km_grid {
  width: 100%;
  background: url(../files/design04_bg.jpg) repeat center top;
  padding: 260px calc((100% - 960px) / 2) var(--custom_padding);
  box-sizing: border-box;
  gap: 45px;
  position: relative;
}
.km_grid .km_grid_col .entry_title {
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  background: url(../files/design04_btn_bg.png) no-repeat left center;
  height: 100px;
  margin-bottom: 0;
}
.km_grid .km_grid_col .entry_title h3 {
  width: 120px;
  height: 50px;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  top: 17px;
  text-indent: -9999px;
  pointer-events: none;
  overflow: hidden;
}
.km_grid .km_grid_col .entry_title h3::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: repeat-y;
  background-position: center top 0px;
  transition: var(--custom_transition);
}
.km_grid .km_grid_col.active .entry_title h3::after {
  background-position: center top 50px;
}
.km_grid .km_grid_col:nth-of-type(1) .entry_title h3::after {
  background-image: url(../files/design04_btn01.png);
}
.km_grid .km_grid_col:nth-of-type(2) .entry_title h3::after {
  background-image: url(../files/design04_btn02.png);
}
.km_grid .km_grid_col .read_more_btn a {
  background: none transparent !important;
  display: block;
  width: 56px;
  height: 43px;
  position: absolute;
  top: 15px;
  left: 379px;
}
.km_grid .km_grid_col .read_more_btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../files/design04_btn_arrow.png) no-repeat left center !important;
}
.km_grid .km_grid_col .entry_title a:hover::after {
  animation: passby 1s cubic-bezier(0.65,0.01,0.3,0.97);
}

.km_grid .post_data,
.km_grid .post_data a {
  color: #fff;
}
.km_grid .blog_post {
  border-color: #fff;
}
#r7lkkay2wwp5r25dhbd5 {
  position: static;
}
.km_grid .design_block.block1 {
  background-image: url(../files/design04_ttl.png);
  width: 960px;
  height: 130px;
  top: 122px;
  left: calc(50% - 480px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}

/* 家づくりにかける想い */
#ltc1zvqjlmzo7tmh6rfu {
  background-image: url(../files/design05_bg.png);
  height: 1150px;
}
#ltc1zvqjlmzo7tmh6rfu .entry_post {
  padding: 738px 460px 0 0;
}
#ltc1zvqjlmzo7tmh6rfu > .design_block.block1 {
  width: 1350px;
  height: 450px;
  top: 82px;
  left: calc(50% - 675px);
}
#ltc1zvqjlmzo7tmh6rfu > .design_block.block1::before {
  background-image: url(../files/design05_imgg01.png);
}
#ltc1zvqjlmzo7tmh6rfu > .design_block.block2 {
  background-image: url(../files/design05_imgg02.png);
  width: 879px;
  height: 300px;
  top: 663px;
  left: calc(50% + 120px);
}

/* 施工実績のご紹介 */
#cw0q4f2zgnav2hquleyq {
  height: 800px;
}
#cw0q4f2zgnav2hquleyq .entry_post {
  padding: 305px 0 0 480px;
}
#cw0q4f2zgnav2hquleyq .post_data {
  color: #fff;
}
#cw0q4f2zgnav2hquleyq > .design_block.block1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}
#cw0q4f2zgnav2hquleyq > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left : auto;
  margin-right: auto;
  background: url(../files/design06_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#cw0q4f2zgnav2hquleyq > .design_block.block2 {
  background-image: url(../files/design06_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* イベント情報のご紹介 */
#a1fatak1npukbxc0ozc3 {
  background-image: url(../files/design08_bg.png);
  height: 1400px;
}
#a1fatak1npukbxc0ozc3 .entry_post {
  padding: 353px 480px 0 0;
}
#a1fatak1npukbxc0ozc3 > .design_block.block1 {
  width: 890px;
  height: 770px;
  top: 190px;
  left: calc(50% + 110px);
}
#a1fatak1npukbxc0ozc3 > .design_block.block1::before {
  background-image: url(../files/design08_img01.png);
}
#a1fatak1npukbxc0ozc3 > .design_block.block2 {
  background-image: url(../files/design08_img02.png);
  width: 880px;
  height: 530px;
  top: 756px;
  left: calc(50% - 1000px);
}

/* ご挨拶 */
#rofkkqugpdpzaifv1esd {
  height: 1000px;
}
#rofkkqugpdpzaifv1esd .entry_post {
  padding: 370px 0 0 480px;
}
#rofkkqugpdpzaifv1esd .post_data {
  color: #fff;
}
#rofkkqugpdpzaifv1esd > .design_block.block1 {
  background-image: url(../files/design09_bg.jpg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#rofkkqugpdpzaifv1esd > .design_block.block2 {
  background-image: url(../files/design09_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}


/*  背景変更
---------------------------------------------------------------------------------------------------- */
/* Haramizu House/Motoyama House/Nagamine House クラス付与済（footer_common.js） */
#shck1vc7a4n800bk3pj5,
#ycrjsh88d93yndca9z5q,
#ieoswirl70aer5y0hrj7 {
  background: url(../files/design07_bg.jpg) repeat center top;
  padding-top: var(--custom_padding);
  padding-bottom: var(--custom_padding);
}
.groupBlock + .groupBlock {
  padding-top: 0 !important;
}