@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #f1f1f1;
  --body_text_color: #333;
  --link_color: #225a0d;
  --border_color: #666;
  --table_border_color: #4e4e4e;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #333;
  --td_character_color: #333;
  --required_color: #225a0d;
  --top_h1_color: #fff;
  --header_navigation_color: rgba(43, 43, 43, 0.9);
  --top_entry_title_color: #000;
  --entry_title_bg_color: #fff;
  --blog_title_color: #333;
  --sub_entry_title_bg_color: #333;
  --entry_title_bg_w570_color: #000;
  --sub_entry_title_bg_w570_color: #000;
  --half_entry_title_bg_color: #000;
  --half_sub_entry_title_bg_color: #000;
  --column3_title_bg_color: #fff;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #2c2c2c;
  --footnavi_color: #fff;
  --address_color: #282828;
  --copy_color: #282828;
  --kdb_background_color: #e2e2e2;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --fixed_side_btn_bottom :0px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side: 0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full: 50px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_height: 50px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_width_collapsed: 55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(43, 43, 43, 0.9);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #fff;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #368718;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000;/* ブログ＞ページング＞線色 */
  --font_size_10: 10px;
  --font_size_11: 11px;
  --font_size_12: 12px;
  --font_size_13: 13px;
  --font_size_14: 14px;
  --font_size_15: 15px;
  --font_size_16: 16px;
  --font_size_17: 17px;
  --font_size_18: 18px;
  --font_size_20: 20px;
  --font_size_23: 23px;
  --font_size_28: 28px;
}

/* 個人追加 */
:root {
  --header_h: 150;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 80px;  /*初期ナビ高*/
  --easys_fixed_h: 80px;  /*固定ナビ高*/
  --custom_padding: 80px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
  --easys_branding_h: 640;/* 中ページメインのオリジナル高さ(単位なし) */
}
body#page_6 {
  --easys_branding_h: 950;/* トップメインのオリジナル高さ(単位なし) */
}


/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background-color: var(--basic_background_color);
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-y center top; */

  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;
}
#outer_block {
  background: none transparent;
}
#main {
  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: none transparent;
  height: calc(var(--header_h) * 1px);
  padding: calc(var(--easys_branding_h) / var(--easys_max_width) * 100%) 0 0;
  position: relative;
  z-index: 500;
}
#page_6 #branding_box {
  background: url(../files/top_header_cover.png) no-repeat center bottom / 100%;
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  bottom: calc(55 / var(--easys_branding_h) * 100%);
  left: calc(75 / var(--easys_max_width) * 100%);
  width: auto;
  white-space: nowrap;
}
#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/branding_box_bg.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  width : 280px;
  height: var(--easys_navi_h);
  position: absolute;
  top : 35px;
  left: 30px;
  background: url(../files/main_logo.png) no-repeat no-repeat left top;
  pointer-events: none;
  z-index: 700;
}
#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: 120px;
  --gnavi03: 120px;
  --gnavi04: 140px;
  --gnavi05: 120px;
  --gnavi06: 200px;
}
#access {
  /* display: flex;
  justify-content: center; */
  position: absolute;
  top: 35px;
  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: center;
  width: 100%;
} */
#access .menu-header #menu-gnavi {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}
#access .menu-header #menu-gnavi > li > a {
  height: var(--easys_navi_h);
  background: url("../files/topnavi.png") no-repeat center top;
  line-height: var(--easys_navi_h);
}
#access .menu-header #menu-gnavi > li:nth-of-type(1) > a {
  width: var(--gnavi01);
  background-position-x: left;
}
#access .menu-header #menu-gnavi > li:nth-of-type(2) > a {
  width: var(--gnavi02);
  background-position-x: calc((var(--gnavi01)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(3) > a {
  width: var(--gnavi03);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(4) > a {
  width: var(--gnavi04);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(5) > a {
  width: var(--gnavi05);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(6) > a {
  width: var(--gnavi06);
  background-position-x: right;
}
#access .menu-header #menu-gnavi > li > a:hover {
  background-position-y: bottom;
}

/* プルダウンメニュー */
#access ul li ul li {
  border-bottom: 1px dotted var(--border_color);
}
#access ul li ul li a {
  padding: 15px 10px;
  background-color: var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em;
}
#access ul li ul li a:hover {
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value004);
}

/* カレントページのメニュー */
#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);
}
#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;
  background-image: url(../files/main_logo_tsuibi.png);
} */
body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
  z-index: 800;
}
body.fixed #access .menu-header #menu-gnavi > li > a {
  background-image: url(../files/topnavi_tsuibi.png);
}


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#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 {
  padding: 0;
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  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 {
  overflow: hidden;
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  padding: 5px;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: var(--border_color);
  background: none transparent;
  line-height: 2;
}
#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: url(../files/footer_bg.png) no-repeat center top;
  position: relative;
  height: 680px;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 640px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 525px 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%;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  width: 100%;
  height: 155px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
}
#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;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.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: 700px;
  text-align: left;
  top: 285px;
  left: calc(50% - 480px);
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  position: absolute;
  width: 700px;
  text-align: left;
  top: 362px;
  left: calc(50% - 480px);

}
/* 中央寄せの時 */
/*
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
*/
/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/


/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */

/* スライドしない版 */
.fixed_side_btn {
  display: flex;
  justify-content: flex-end;
  /* flex-direction: column; */
  align-items: flex-end;
  position: fixed;
  bottom:var(--fixed_side_btn_bottom);
  right: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 40px;
  z-index:1000;
}
.fixed_side_btn > div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
  margin-left: 10px;
}
.fixed_side_btn a {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
  overflow: visible !important;
  position: relative !important;
  pointer-events: all;
  text-indent: -99999px;
}
.fixed_side_btn .contact   { width: 190px;}
.fixed_side_btn .map       { width: 150px;}
.fixed_side_btn .instagram { width: 50px;}
.fixed_side_btn .line      { width: 50px;}

.fixed_side_btn .contact   a::after { background-image: url(../files/btn_contact_on.png);}
.fixed_side_btn .map       a::after { background-image: url(../files/btn_map_on.png);}
.fixed_side_btn .instagram a::after { background-image: url(../files/btn_insta_on.png);}
.fixed_side_btn .line      a::after { background-image: url(../files/btn_line_on.png);}

/* .fixed_side_btn .gaten     { width: 120px;}
.fixed_side_btn .weblog    { width: 80px;} */

/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
/* .fixed_side_btn {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom:var(--fixed_side_btn_bottom);
  right: 0;
  left: 0;
  margin-inline: auto;
  pointer-events: none;
  overflow: hidden;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  z-index:1000;
}
.fixed_side_btn div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
  margin-bottom:var(--fixed_side_btn_margin);
  overflow:hidden;
  transition: var(--custom_transition);
  right: calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1);
}
.fixed_side_btn div a {
  display:block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: all;
  white-space: nowrap;
}
.fixed_side_btn div:hover {
  transition: .5s;
  right: 0;
} */

/* デフォルトボタン */
.fixed_side_btn .gaten a {
  background-image:url(../files/btn_gaten.png);
}
.fixed_side_btn .map a {
  background-image:url(../files/btn_map_off.png);
}
.fixed_side_btn .contact a {
  background-image:url(../files/btn_contact_off.png);
}
.fixed_side_btn .weblog a {
  background-image:url(../files/btn_blog.png);
}

/* SNSボタン */
.fixed_side_btn .line a {
  background-image:url(../files/btn_line_off.png);
}
.fixed_side_btn .instagram a {
  background-image:url(../files/btn_insta_off.png);
}
.fixed_side_btn .facebook a {
  background-image:url(../files/btn_fb.png);
}
.fixed_side_btn .youtube a {
  background-image:url(../files/btn_youtube.png);
}
.fixed_side_btn .tiktok a {
  background-image:url(../files/btn_tiktok.png);
}

/* 個別ボタンの高さ調整 */
/* .fixed_side_btn .gaten {
  height: 150px;
} */

/* 2000幅を超えた時 */
/* #wrapper {
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}
@media (min-width: 2000px) {
  .fixed_side_btn {
    left:calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width:var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform:translateX(0);
  }

  .fixed_side_btn div:hover {
    transform:translateX(calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1));
  }
} */


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 80px;
  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: 40px;
  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);
  padding-top: 20px;
  /* height: 60px;
  line-height: 60px; */
  /* padding-top: 30px; */
}
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: var(--font_size_20);
}
* .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 h4 {
  フォントサイズはこちら
}
*/
* .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: var(--font_size_20);
}
* .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 {
  padding: 10px;
  height: auto;
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  text-align: left;
  font-size: var(--font_size_15);
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}


/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  padding: 5px 0;
  width: 100%;
  color: var(--link_color) !important;
  text-align: center !important;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  border-color:var(--table_border_color);
  border-top:none !important;
  border-right:none !important;
  background: var(--td_background_color) !important;
color: var(--td_character_color);
}
.table_area td.td_name,
.post_data .wpcf7 table th {
  background: var(--th_background_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  border-left:none !important;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr:first-child > * {
  border-top:none !important;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr:last-child > * {
  border-bottom:none !important;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color:var(--border_color) !important;
}
/* Dメニュー下線 */
.td_cell {
  vertical-align:top;
  border-color:var(--border_color);
}

.table_area table tr td {
  border:solid 1px var(--table_border_color) !important;
  border-right:none !important;
  background: var(--td_background_color);
}


/* ============================== ↓↓各ブロックの個別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;}
/* #outer_block { padding-top: var(--custom_padding);} */
.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;}
.easys_content.no_margin + .easys_content.sp_01,
.easys_content + .easys_content.sp_01 {
  padding: 0 !important;
  margin: 0 !important;
}
.easys_content + .easys_content.sp_01  + .easys_content {
  margin-top: 0 !important;
}

/* ブログ見出し */
#blog_main .entry-title {
  background: none transparent;
  border-top: 2px solid #2b2b2b;
  border-bottom: 2px solid #2b2b2b;
}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */
.easys_content_inner {
  position: relative;
  height: 100%;
}

#outer_block .easys_content_inner {
  top: calc(var(--custom_fade) * 1px);
  opacity: 0;
  transition: all 1.3s ease 0s;
}
#outer_block .nd_01 .easys_content_inner,
#outer_block .easys_content_inner.moved {
  opacity: 1;
  top: 0px;
}


/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  transition: all 1.3s ease 0s;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* ON画像 */
#xrg1n9lv2hfb348hfx2k a::after,
#inb90u2d747h7kcv9pn6 a::after,
#qx0v5ledceozkxxb6fob a::after,
#flq3hsdqpfeeoe6eo9sx a::after,
.fixed_side_btn 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;
}
#xrg1n9lv2hfb348hfx2k a:hover::after,
#inb90u2d747h7kcv9pn6 a:hover::after,
#qx0v5ledceozkxxb6fob a:hover::after,
#flq3hsdqpfeeoe6eo9sx a:hover::after,
.fixed_side_btn a:hover::after {
  opacity: 1;
}

/* ボタンやじるし */
.design_btn {
  position: relative;
}
.design_btn span {
  width: 30px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.design_btn span::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../files/bnr_arr.png) no-repeat center center;
}
.design_btn:hover span::after {
  animation: more 0.4s cubic-bezier(0.65, 0.01, 0.3, 0.97);
}
@keyframes more {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  40% {
    opacity: 0;
  }
  49.9% {
    opacity: 0;
    transform: translateX(20px);
  }
  50% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ふわっとクローズイン */
.zoomIn {
  opacity: 1;
  overflow: hidden;
}
.zoomIn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: 2s;
}
.zoomIn.moved::after {
  opacity: 1;
  transform: none;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#xrg1n9lv2hfb348hfx2k,
#inb90u2d747h7kcv9pn6,
#qx0v5ledceozkxxb6fob,
#flq3hsdqpfeeoe6eo9sx,
#l3n5upvavz12knoeg6y7,
#kkik6m6n3t3tejvowvad,
#ciyhd7t3petarkuxpu6k {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#xrg1n9lv2hfb348hfx2k div,
#inb90u2d747h7kcv9pn6 div,
#qx0v5ledceozkxxb6fob div,
#flq3hsdqpfeeoe6eo9sx div,
#l3n5upvavz12knoeg6y7 div,
#kkik6m6n3t3tejvowvad div,
#ciyhd7t3petarkuxpu6k div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#xrg1n9lv2hfb348hfx2k img,
#inb90u2d747h7kcv9pn6 img,
#qx0v5ledceozkxxb6fob img,
#flq3hsdqpfeeoe6eo9sx img,
#l3n5upvavz12knoeg6y7 img,
#kkik6m6n3t3tejvowvad img,
#ciyhd7t3petarkuxpu6k img {
  position: relative;
}
#xrg1n9lv2hfb348hfx2k .design_block,
#inb90u2d747h7kcv9pn6 .design_block,
#qx0v5ledceozkxxb6fob .design_block,
#flq3hsdqpfeeoe6eo9sx .design_block,
#l3n5upvavz12knoeg6y7 .design_block,
#kkik6m6n3t3tejvowvad .design_block,
#ciyhd7t3petarkuxpu6k .design_block {
  opacity: 0;
}
#xrg1n9lv2hfb348hfx2k .design_block[class*="block"].moved,
#inb90u2d747h7kcv9pn6 .design_block[class*="block"].moved,
#qx0v5ledceozkxxb6fob .design_block[class*="block"].moved,
#flq3hsdqpfeeoe6eo9sx .design_block[class*="block"].moved,
#l3n5upvavz12knoeg6y7 .design_block[class*="block"].moved,
#kkik6m6n3t3tejvowvad .design_block[class*="block"].moved,
#ciyhd7t3petarkuxpu6k .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;
}

/* リンク共通 */
#xrg1n9lv2hfb348hfx2k a,
#inb90u2d747h7kcv9pn6 a,
#qx0v5ledceozkxxb6fob a,
#flq3hsdqpfeeoe6eo9sx a,
#l3n5upvavz12knoeg6y7 a {
  display: block;
  position: relative;
}
#xrg1n9lv2hfb348hfx2k a:hover img,
#inb90u2d747h7kcv9pn6 a:hover img,
#qx0v5ledceozkxxb6fob a:hover img,
#flq3hsdqpfeeoe6eo9sx a:hover img,
#l3n5upvavz12knoeg6y7 a:hover img {
  opacity: 1;
}

/* フルサイズバナー共通 */
#xrg1n9lv2hfb348hfx2k .easys_content_inner,
#inb90u2d747h7kcv9pn6 .easys_content_inner {
  margin-inline: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  width: fit-content;
}
#xrg1n9lv2hfb348hfx2k [class*="field_"],
#inb90u2d747h7kcv9pn6 [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#xrg1n9lv2hfb348hfx2k .eyecatch,
#inb90u2d747h7kcv9pn6 .eyecatch {
  width: 100% !important;
}
#xrg1n9lv2hfb348hfx2k .eyecatch img,
#inb90u2d747h7kcv9pn6 .eyecatch img {
  width: auto;
}
#xrg1n9lv2hfb348hfx2k + #inb90u2d747h7kcv9pn6,
#inb90u2d747h7kcv9pn6 + #xrg1n9lv2hfb348hfx2k {
  margin-top: 20px;
}

/* お問い合わせ */
#xrg1n9lv2hfb348hfx2k a::after {
  background-image: url(../files/bnr_contact_on.png);
}
#xrg1n9lv2hfb348hfx2k .design_btn span {
  top: 158px;
  left: 818px;
}

/* GATEN職 */
#inb90u2d747h7kcv9pn6 a::after {
  background-image: url(../files/bnr_gaten_on.png);
}
#inb90u2d747h7kcv9pn6 .design_btn span {
  top: 155px;
  left: 832px;
}

/* Instagram/line */
#qx0v5ledceozkxxb6fob {
  background: url(../files/bnrhalf_bg.png) no-repeat center center;
  padding-top: 223px;
  padding-bottom: 147px;
}
#qx0v5ledceozkxxb6fob .easys_content_inner {
  width: 865px;
}
#qx0v5ledceozkxxb6fob [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#qx0v5ledceozkxxb6fob .eyecatch {
  width: 100% !important;
}
#qx0v5ledceozkxxb6fob .eyecatch img {
  width: auto;
}
#qx0v5ledceozkxxb6fob [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf_insta_on.png);
}
#qx0v5ledceozkxxb6fob [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf_line_on.png);
}

/* 業務内容/施工実績 */
#flq3hsdqpfeeoe6eo9sx [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#flq3hsdqpfeeoe6eo9sx .eyecatch {
  width: 100% !important;
}
#flq3hsdqpfeeoe6eo9sx .eyecatch img {
  width: auto;
}
#flq3hsdqpfeeoe6eo9sx [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf_business_on.png);
}
#flq3hsdqpfeeoe6eo9sx [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf_works_on.png);
}
#flq3hsdqpfeeoe6eo9sx .design_btn span {
  top: 220px;
  left: 428px;
}
#flq3hsdqpfeeoe6eo9sx .design_btn span::after {
  background-image: url(../files/design_btn_arr.png);
}

/* DB画像＞お家の気になる箇所をクリック */
#l3n5upvavz12knoeg6y7 {
  background: 
  /* url(../files/link_01_off.png) no-repeat center center,
  url(../files/link_02_off.png) no-repeat center center,
  url(../files/link_03_off.png) no-repeat center center,
  url(../files/link_04_off.png) no-repeat center center,
  url(../files/link_05_off.png) no-repeat center center,
  url(../files/link_06_off.png) no-repeat center center,
  url(../files/link_07_off.png) no-repeat center center, */
  url(../files/design01_bg.png) no-repeat center center;
  height: 1030px;
}
#l3n5upvavz12knoeg6y7 .easys_content_inner {
  width: 1300px;
}
#l3n5upvavz12knoeg6y7 > .design_block.block1 {
  width: 100%;
  height: 150px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto !important;
  opacity: 1;
  overflow: hidden;
}
#l3n5upvavz12knoeg6y7 > .design_block.block1::before {
  content: "";
  width: calc(1430 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design01_img02.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#l3n5upvavz12knoeg6y7 > .design_block.block2 {
  background-image: url(../files/design01_img01.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* ＞多リンク */
#l3n5upvavz12knoeg6y7 [class*="field_"] a img {
  opacity: 0; /* 管理画面で入れた画像は非表示にする */
}
/* ＞hoverしたときの画像を設置 表示非表示はJqueryで処理し、デフォルトは非表示 */
#l3n5upvavz12knoeg6y7 [class*="field_"] {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--custom_transition);
  /* display: none; */
  pointer-events: none;
}
#l3n5upvavz12knoeg6y7 [class*="field_"]::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--custom_transition);
}
#l3n5upvavz12knoeg6y7 [class*="field_"].active::before {
  opacity: 0;
}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(1)::before { background-image: url(/files/link_01_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(2)::before { background-image: url(/files/link_02_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(3)::before { background-image: url(/files/link_03_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(4)::before { background-image: url(/files/link_04_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(5)::before { background-image: url(/files/link_05_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(6)::before { background-image: url(/files/link_06_off.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(7)::before { background-image: url(/files/link_07_off.png);}
/* ＞各画像のONを設定 */
#l3n5upvavz12knoeg6y7 [class*="field_"] .eyecatch::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  transition: var(--custom_transition);
  opacity: 0;
  pointer-events: none;
}
#l3n5upvavz12knoeg6y7 [class*="field_"].active .eyecatch::after {
  opacity: 1;
}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(1) .eyecatch::after { background-image: url(/files/link_01_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(2) .eyecatch::after { background-image: url(/files/link_02_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(3) .eyecatch::after { background-image: url(/files/link_03_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(4) .eyecatch::after { background-image: url(/files/link_04_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(5) .eyecatch::after { background-image: url(/files/link_05_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(6) .eyecatch::after { background-image: url(/files/link_06_on.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(7) .eyecatch::after { background-image: url(/files/link_07_on.png);}

#l3n5upvavz12knoeg6y7 [class*="field_"]::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .9s;
  transform: translateY(-50px);
  opacity: 0;
  pointer-events: none;
}
#l3n5upvavz12knoeg6y7 [class*="field_"].active::after {
  transform: none;
  opacity: 1;
}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(1)::after { background-image: url(/files/link_01_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(2)::after { background-image: url(/files/link_02_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(3)::after { background-image: url(/files/link_03_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(4)::after { background-image: url(/files/link_04_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(5)::after { background-image: url(/files/link_05_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(6)::after { background-image: url(/files/link_06_arr.png);}
#l3n5upvavz12knoeg6y7 [class*="field_"]:nth-of-type(7)::after { background-image: url(/files/link_07_arr.png);}
/* ＞リンクボタンの共通設定 */
#l3n5upvavz12knoeg6y7 .link_hover {
  position: absolute;
  height: 40px;
}
#l3n5upvavz12knoeg6y7 .link_hover a {
  display: block;
  height: 100%;
  width: 100%;
}
/* ＞各リンクボタンの設定 leftは必ずしもcalcでなくてよい */
#l3n5upvavz12knoeg6y7 .link_hover.link1 {
  top: 197px;
  left: calc(50% + 230px);
  width: 220px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link2 {
  top: 300px;
  left: calc(50% + 315px);
  width: 280px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link3 {
  top: 626px;
  left: calc(50% + 378px);
  width: 220px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link4 {
  top: 825px;
  left: calc(50% + 95px);
  width: 220px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link5 {
  top: 826px;
  left: calc(50% - 375px);
  width: 220px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link6 {
  top: 710px;
  left: calc(50% - 588px);
  width: 278px;
}
#l3n5upvavz12knoeg6y7 .link_hover.link7 {
  top: 726px;
  left: calc(50% + 236px);
  width: 220px;
}

/* 画像＞こんなお困りごとはありませんか？ */
#kkik6m6n3t3tejvowvad .easys_content_inner {
  margin-inline: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  width: fit-content;
}
#kkik6m6n3t3tejvowvad [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#kkik6m6n3t3tejvowvad .eyecatch {
  width: 100% !important;
}
#kkik6m6n3t3tejvowvad .eyecatch img {
  width: auto;
}

/* 画像＞イメージ */
#ciyhd7t3petarkuxpu6k .easys_content_inner {
  overflow: hidden;
  width: 100%;
  padding-top: calc(700 / var(--easys_max_width) * 100%);
}
#ciyhd7t3petarkuxpu6k [class*="field_"]:nth-of-type(1) {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: 0;
}
#ciyhd7t3petarkuxpu6k [class*="field_"]:nth-of-type(1) img {
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  z-index: 0;
}
#ciyhd7t3petarkuxpu6k [class*="field_"]:nth-of-type(2) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--easys_max_width) * 1px);
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#vshfj19uzzpqokzf39r4,
#pyxivsimi9s64lm1g0hz,
#nl98ufchlh1sp3fgt12y,
#e9b7bzn54ybvcmauspiw,
#j3cngaeh4y60dtjib9mo,
#j9hoax5xbdqdqo6hws8t,
#y10ihtuzsuly6julvqse {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#vshfj19uzzpqokzf39r4 .easys_content_inner,
#pyxivsimi9s64lm1g0hz .easys_content_inner,
#nl98ufchlh1sp3fgt12y .easys_content_inner,
#e9b7bzn54ybvcmauspiw .easys_content_inner,
#j3cngaeh4y60dtjib9mo .easys_content_inner,
#j9hoax5xbdqdqo6hws8t .easys_content_inner,
#y10ihtuzsuly6julvqse .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#vshfj19uzzpqokzf39r4 .post_margin,
#pyxivsimi9s64lm1g0hz .post_margin,
#nl98ufchlh1sp3fgt12y .post_margin,
#e9b7bzn54ybvcmauspiw .post_margin,
#j3cngaeh4y60dtjib9mo .post_margin,
#j9hoax5xbdqdqo6hws8t .post_margin,
#y10ihtuzsuly6julvqse .post_margin {
  margin: 0;
}
#vshfj19uzzpqokzf39r4 .entry_post,
#pyxivsimi9s64lm1g0hz .entry_post,
#nl98ufchlh1sp3fgt12y .entry_post,
#e9b7bzn54ybvcmauspiw .entry_post,
#j3cngaeh4y60dtjib9mo .entry_post,
#j9hoax5xbdqdqo6hws8t .entry_post,
#y10ihtuzsuly6julvqse .entry_post {
  box-sizing: border-box;
}
#vshfj19uzzpqokzf39r4 .entry_post > [class*="title"],
#pyxivsimi9s64lm1g0hz .entry_post > [class*="title"],
#nl98ufchlh1sp3fgt12y .entry_post > [class*="title"],
#e9b7bzn54ybvcmauspiw .entry_post > [class*="title"],
#j3cngaeh4y60dtjib9mo .entry_post > [class*="title"],
#j9hoax5xbdqdqo6hws8t .entry_post > [class*="title"],
#y10ihtuzsuly6julvqse .entry_post > [class*="title"] {
  display: none;
}
#vshfj19uzzpqokzf39r4 .text_box,
#pyxivsimi9s64lm1g0hz .text_box,
#nl98ufchlh1sp3fgt12y .text_box,
#e9b7bzn54ybvcmauspiw .text_box,
#j3cngaeh4y60dtjib9mo .text_box,
#j9hoax5xbdqdqo6hws8t .text_box,
#y10ihtuzsuly6julvqse .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  position: relative;
  width: 100%;
  /* margin: 0; */
  margin: calc(var(--custom_fade) * 1px) 0 0;
  opacity: 0;
  transition: all 1.3s ease 0s;
}
#vshfj19uzzpqokzf39r4 .text_box.moved,
#pyxivsimi9s64lm1g0hz .text_box.moved,
#nl98ufchlh1sp3fgt12y .text_box.moved,
#e9b7bzn54ybvcmauspiw .text_box.moved,
#j3cngaeh4y60dtjib9mo .text_box.moved,
#j9hoax5xbdqdqo6hws8t .text_box.moved,
#y10ihtuzsuly6julvqse .text_box.moved {
  margin-top: 0px;
  opacity: 1;
}
#vshfj19uzzpqokzf39r4 .post_data,
#pyxivsimi9s64lm1g0hz .post_data,
#nl98ufchlh1sp3fgt12y .post_data,
#e9b7bzn54ybvcmauspiw .post_data,
#j3cngaeh4y60dtjib9mo .post_data,
#j9hoax5xbdqdqo6hws8t .post_data,
#y10ihtuzsuly6julvqse .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
_::-webkit-full-page-media, _:future, :root #vshfj19uzzpqokzf39r4 .post_data p,
_::-webkit-full-page-media, _:future, :root #pyxivsimi9s64lm1g0hz .post_data p,
_::-webkit-full-page-media, _:future, :root #nl98ufchlh1sp3fgt12y .post_data p,
_::-webkit-full-page-media, _:future, :root #e9b7bzn54ybvcmauspiw .post_data p,
_::-webkit-full-page-media, _:future, :root #j3cngaeh4y60dtjib9mo .post_data p,
_::-webkit-full-page-media, _:future, :root #j9hoax5xbdqdqo6hws8t .post_data p,
_::-webkit-full-page-media, _:future, :root #y10ihtuzsuly6julvqse .post_data p {
  line-height: 2;
  letter-spacing: -1px;
}
#vshfj19uzzpqokzf39r4 .design_block,
#pyxivsimi9s64lm1g0hz .design_block,
#nl98ufchlh1sp3fgt12y .design_block,
#e9b7bzn54ybvcmauspiw .design_block,
#j3cngaeh4y60dtjib9mo .design_block,
#j9hoax5xbdqdqo6hws8t .design_block,
#y10ihtuzsuly6julvqse .design_block {
  opacity: 0;
}
#vshfj19uzzpqokzf39r4 .design_block[class*="block"].moved,
#pyxivsimi9s64lm1g0hz .design_block[class*="block"].moved,
#nl98ufchlh1sp3fgt12y .design_block[class*="block"].moved,
#e9b7bzn54ybvcmauspiw .design_block[class*="block"].moved,
#j3cngaeh4y60dtjib9mo .design_block[class*="block"].moved,
#j9hoax5xbdqdqo6hws8t .design_block[class*="block"].moved,
#y10ihtuzsuly6julvqse .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;
}


/* 共通ボタン-ブロック内リンク */
/* ※遷移先でのボタン非表示処理はfooter_common.jsで行っています※ */
#vshfj19uzzpqokzf39r4 [class*="_btn"],
#pyxivsimi9s64lm1g0hz [class*="_btn"] {
  margin: 57px 0 0;
  padding: 0;
  width: fit-content;
  height: fit-content;
}
#vshfj19uzzpqokzf39r4 [class*="_btn"] a,
#pyxivsimi9s64lm1g0hz [class*="_btn"] a {
  background: url(../files/design02_btn.png) no-repeat center top;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 300px;
  height: 40px;
}
#vshfj19uzzpqokzf39r4 .design_btn span,
#pyxivsimi9s64lm1g0hz .design_btn span {
  top: 5px;
  left: initial;
  right: 2px;
}
#vshfj19uzzpqokzf39r4 .design_btn span::after,
#pyxivsimi9s64lm1g0hz .design_btn span::after {
  background-image: url(../files/design_btn_arr.png);
}
#vshfj19uzzpqokzf39r4 [class*="_btn"] a::after,
#pyxivsimi9s64lm1g0hz [class*="_btn"] a::after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #368718;
  transition: var(--custom_transition);
}
#vshfj19uzzpqokzf39r4 [class*="_btn"] a:hover::after,
#pyxivsimi9s64lm1g0hz [class*="_btn"] a:hover::after {
  content: "";
  width: 100%;
}

/* お家まわり、まとめてお任せ */
#vshfj19uzzpqokzf39r4 {
  background-image: url(../files/design02_bg.png);
  height: 1010px;
}
#vshfj19uzzpqokzf39r4 .entry_post {
  padding: 410px 0 0 480px;
}
#vshfj19uzzpqokzf39r4 > .design_block.block1 {
  width: 680px;
  height: 660px;
  top: 197px;
  left: calc(50% - 808px);
}
#vshfj19uzzpqokzf39r4 > .design_block.block1::after {
  background-image: url(../files/design02_img01.png);
}
#vshfj19uzzpqokzf39r4 + .easys_content {
  margin-top: 0 !important;
}

/* 住まいに寄り添い、ひとつずつ丁寧に。 */
#pyxivsimi9s64lm1g0hz {
  background-image: url(../files/design03_bg.png);
  height: 870px;
}
#pyxivsimi9s64lm1g0hz .entry_post {
  padding: 323px 480px 0 30px;
}
#pyxivsimi9s64lm1g0hz [class*="_btn"] a {
  background-image: url(../files/design03_btn.png);
  width: 350px;
}
#pyxivsimi9s64lm1g0hz > .design_block.block1 {
  width: 680px;
  height: 660px;
  top: 40px;
  left: calc(50% + 148px);
}
#pyxivsimi9s64lm1g0hz > .design_block.block1::after {
  background-image: url(../files/design03_img01.png);
}
#pyxivsimi9s64lm1g0hz > .design_block.block2 {
  width: 340px;
  height: 340px;
  top: 240px;
  left: calc(50% - 1000px);
  transition-delay: .3s;
}
#pyxivsimi9s64lm1g0hz > .design_block.block2::after {
  background-image: url(../files/design03_img02.png);
}
#pyxivsimi9s64lm1g0hz + .easys_content {
  margin-top: 0 !important;
}

/* 庭づくりを、もっと自由に。 */
#nl98ufchlh1sp3fgt12y {
  background-image: url(../files/design04_bg.png);
  height: 830px;
}
#nl98ufchlh1sp3fgt12y .entry_post {
  padding: 215px 0 0;
}
#nl98ufchlh1sp3fgt12y .post_data {
  height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 品質で応える、確かな施工 */
#e9b7bzn54ybvcmauspiw {
  background-image: url(../files/design05_bg.png);
  height: 560px;
}
#e9b7bzn54ybvcmauspiw .entry_post {
  padding: 193px 0 0 392px;
}
#e9b7bzn54ybvcmauspiw .post_data {
  color: #fff;
}

/* お庭の「どうしよう？」　お任せください！ */
#j3cngaeh4y60dtjib9mo {
  background-image: url(../files/design06_bg.png);
  height: 1000px;
}
#j3cngaeh4y60dtjib9mo .entry_post {
  padding: 323px 290px 0 290px;
}
#j3cngaeh4y60dtjib9mo > .design_block.block1 {
  width: 360px;
  height: 300px;
  top: 115px;
  left: calc(50% - 678px);
}
#j3cngaeh4y60dtjib9mo > .design_block.block1::after {
  background-image: url(../files/design06_img01.png);
}
#j3cngaeh4y60dtjib9mo > .design_block.block2 {
  width: 510px;
  height: 480px;
  top: 167px;
  left: calc(50% + 306px);
}
#j3cngaeh4y60dtjib9mo > .design_block.block2::after {
  background-image: url(../files/design06_img02.png);
}
#j3cngaeh4y60dtjib9mo > .design_block.block3 {
  width: 270px;
  height: 250px;
  top: 612px;
  left: calc(50% - 533px);
}
#j3cngaeh4y60dtjib9mo > .design_block.block3::after {
  background-image: url(../files/design06_img03.png);
}
#j3cngaeh4y60dtjib9mo + .easys_content {
  margin-top: 0 !important;
}

/* 代表挨拶 */
#j9hoax5xbdqdqo6hws8t {
  background-image: url(../files/design07_bg.png);
  height: 930px;
}
#j9hoax5xbdqdqo6hws8t .easys_content_inner {
  width: 1040px;
}
#j9hoax5xbdqdqo6hws8t .entry_post {
  padding: 263px 10px 0 560px;
}
#j9hoax5xbdqdqo6hws8t > .design_block.block1 {
  width: 710px;
  height: 640px;
  top: 120px;
  left: calc(50% - 760px);
}
#j9hoax5xbdqdqo6hws8t > .design_block.block1::after {
  background-image: url(../files/design07_img01.png);
}
#j9hoax5xbdqdqo6hws8t + .easys_content {
  margin-top: 0 !important;
}

/* 技を磨き、誇りを築く。 */
#y10ihtuzsuly6julvqse {
  height: 790px;
}
#y10ihtuzsuly6julvqse .entry_post {
  padding: 332px 510px 0 0;
}
#y10ihtuzsuly6julvqse .post_data {
  color: #fff;
}
#y10ihtuzsuly6julvqse > .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);
  backface-visibility: hidden;
}
#y10ihtuzsuly6julvqse > .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-inline : auto;
  background: url(../files/design08_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#y10ihtuzsuly6julvqse > .design_block.block2 {
  background-image: url(../files/design08_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
