@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #f3f2f0;
  --body_text_color: #496a5f;
  --link_color: #7cbf87;
  --border_color: #496a5f;
  --table_border_color: #496a5f;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #496a5f;
  --td_character_color: #496a5f;
  --required_color: #7cbf87;
  --top_h1_color: #496a5f;
  --header_navigation_color: rgba(243,242,240,0.9);
  --top_entry_title_color: #496a5f;
  --entry_title_bg_color: #fff;
  --blog_title_color: #496a5f;
  --sub_entry_title_bg_color: #496a5f;
  --entry_title_bg_w570_color: #496a5f;
  --sub_entry_title_bg_w570_color: #496a5f;
  --half_entry_title_bg_color: #496a5f;
  --half_sub_entry_title_bg_color: #496a5f;
  --column3_title_bg_color: #496a5f;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #496a5f;
  --footnavi_color: #fff;
  --address_color: #fff;
  --copy_color: #a1b1ac;
  --kdb_background_color: #fff;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 930;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 810;/* 中ページメインのオリジナル高さ(単位なし) */
  --fixed_side_btn_bottom :150px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side: 0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full: 135px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_height: 45px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_width_collapsed: 55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(243,242,240,0.9);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #2b614f;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #7cbf87;/* プルダウンメニュー＞文字色(ホバー時) */
  --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: 110;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 60px;  /*初期ナビ高*/
  --easys_fixed_h: 60px;  /*固定ナビ高*/
  --custom_padding: 100px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-x 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_naka_main_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%; */
  padding-top: calc(var(--easys_top_main_h) / var(--easys_max_width) * 100%);
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  top : calc(var(--header_h) * 1px);
  left: 50px;
  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 : 260px;
  height: 60px;
  position: absolute;
  top : 50px;
  left: 0;
  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: 110px;
  --gnavi03: 110px;
  --gnavi04: 110px;
  --gnavi05: 110px;
  --gnavi06: 170px;
}
#access {
  /* display: flex;
  justify-content: center; */
  position: absolute;
  top: 50px;
  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: 0px;
}
#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;
}
body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(990px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
}


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#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: 810px;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 679px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 210px 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;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px 110px;
  width: 305px;
  height: 350px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  background-repeat: no-repeat;
  background-position: center center;
  /* border-color: var(--footnavi_color); */
  border: none;
  box-sizing: border-box;
  color: var(--footnavi_color);
  width: 100px;
  height: 30px;
  padding: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  line-height: 1.0em;
  font-size: var(--font_size_11);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

#menu-footer_navi #menu-item-59 a { background-image: url(../files/footer_navi01.png);}
#menu-footer_navi #menu-item-60 a { background-image: url(../files/footer_navi02.png);}
#menu-footer_navi #menu-item-61 a { background-image: url(../files/footer_navi03.png);}
#menu-footer_navi #menu-item-62 a { background-image: url(../files/footer_navi04.png);}
#menu-footer_navi #menu-item-87 a { background-image: url(../files/footer_navi05.png);}
#menu-footer_navi #menu-item-63 a { background-image: url(../files/footer_navi06.png);}
#menu-footer_navi #menu-item-64 a { background-image: url(../files/footer_navi07.png);}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.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: 480px;
  text-align: left;
  top: 290px;
  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);
  text-align: left;
  width: 960px;
}
/* 中央寄せの時 */
/*
#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;
  align-items: flex-end;
  gap: 0 10px;
  position: absolute;
  bottom: 3px;
  right: 85px;
  left: 0;
  pointer-events: none;
  text-align: right;
  z-index:1000;
}
.fixed_side_btn > div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
}
.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 .weblog    { width: 80px;} */
.fixed_side_btn .gaten     { width: 150px;}

/* サイド固定ボタン：通常時は右端から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.png);
}
.fixed_side_btn .contact a {
  background-image:url(../files/btn_contact.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.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);
}
/* ※footer_pc.jsにて移動済 */
#footer_information .sns a {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
  overflow: visible !important;
  position: relative !important;
  pointer-events: all;
  text-indent: -99999px;
}
#footer_information .sns.instagram,
#footer_information .sns.fb {
  width: 20px;
  height: 20px;
}
#footer_information .sns.hapipure {
  width: 280px;
  height: 50px;
}
#footer_information .sns.instagram a {
  background-image:url(../files/footer_icon_insta.png);
}
#footer_information .sns.fb a {
  background-image:url(../files/footer_icon_fb.png);
}
#footer_information .sns.hapipure a {
  background-image:url(../files/footer_icon_hapipre.png);
}

#footer_information .sns.instagram,
#footer_information .sns.fb,
#footer_information .sns.hapipure {
  position: absolute;
}
#footer_information .sns.instagram a:hover,
#footer_information .sns.fb a:hover,
#footer_information .sns.hapipure a:hover {
  opacity: 0.8;
}
#footer_information .sns.instagram {
  top: 693px;
  left: calc(50% + 423px);
}
#footer_information .sns.fb {
  top: 693px;
  left: calc(50% + 460px);
}
#footer_information .sns.hapipure {
  top: 417px;
  left: calc(50% - 480px);
}

/* 個別ボタンの高さ調整 */
/* .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: 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;
}
.fixed_side_btn a:hover,
#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);
}
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;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.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;
}


/* ============================== ↓↓各ブロックの個別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;}
.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;
}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */

/* ※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;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* マウスストーカー */
#stalker {
  background-color: #3f5e54;
  border-radius: 10px;
  height: 10px;
  margin: -6px 0 0 -6px;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  transition:
    background-color 0.2s,
    opacity 0.2s,
    transform 0.2s;
  width: 10px;
  z-index: 1001;
}
#stalker.active {
  /* background-color: #1ebbee; */
  opacity: 0.5;
  transform: scale(4);
}

/* リンクボタン */
.design_btn::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;
  pointer-events: none;
  z-index: 5;
}
.design_btn:hover::after {
  opacity: 1;
}
.design_btn span {
  background-repeat: no-repeat;
  background-position: center center;
  width: 15px;
  height: 15px;
  position: absolute;
  pointer-events: none;
  z-index: 10;
}
.design_btn:hover span {
  animation: anime-arr 1s ease 0s forwards;
}
@keyframes anime-arr {
  10% {
    transform: translateX(10px);
    opacity: 0;
  }
  20% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
  }
}

/* 縮小しながら表示 */
.zoomIn {
  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%;
  transition: 2s;
  transform: scale(1.2);
  opacity: 0;
}
.zoomIn.moved::after {
  transform: none;
  opacity: 1;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#lnpchpnkpsplk9d6dukl,
#y91u55gj22ohwxmypy5t,
#s83arnpnzalfbj0qlfms,
#kzvozg9mrz4315bfpzu1,
#wdp8h0osu50p4ebz0d9c,
#dcu7zplaop7v9upry7uu,
#kxy6y7x8r6vhy06cy8l1 {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#lnpchpnkpsplk9d6dukl div,
#y91u55gj22ohwxmypy5t div,
#s83arnpnzalfbj0qlfms div,
#kzvozg9mrz4315bfpzu1 div,
#wdp8h0osu50p4ebz0d9c div,
#dcu7zplaop7v9upry7uu div,
#kxy6y7x8r6vhy06cy8l1 div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#lnpchpnkpsplk9d6dukl img,
#y91u55gj22ohwxmypy5t img,
#s83arnpnzalfbj0qlfms img,
#kzvozg9mrz4315bfpzu1 img,
#wdp8h0osu50p4ebz0d9c img,
#dcu7zplaop7v9upry7uu img,
#kxy6y7x8r6vhy06cy8l1 img {
  position: relative;
}
#lnpchpnkpsplk9d6dukl .design_block,
#y91u55gj22ohwxmypy5t .design_block,
#s83arnpnzalfbj0qlfms .design_block,
#kzvozg9mrz4315bfpzu1 .design_block,
#wdp8h0osu50p4ebz0d9c .design_block,
#dcu7zplaop7v9upry7uu .design_block,
#kxy6y7x8r6vhy06cy8l1 .design_block {
  opacity: 0;
}
#lnpchpnkpsplk9d6dukl .design_block[class*="block"].moved,
#y91u55gj22ohwxmypy5t .design_block[class*="block"].moved,
#s83arnpnzalfbj0qlfms .design_block[class*="block"].moved,
#kzvozg9mrz4315bfpzu1 .design_block[class*="block"].moved,
#wdp8h0osu50p4ebz0d9c .design_block[class*="block"].moved,
#dcu7zplaop7v9upry7uu .design_block[class*="block"].moved,
#kxy6y7x8r6vhy06cy8l1 .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;
}

/* リンク共通 */
#lnpchpnkpsplk9d6dukl a,
#y91u55gj22ohwxmypy5t a,
#s83arnpnzalfbj0qlfms a,
#kzvozg9mrz4315bfpzu1 a,
#wdp8h0osu50p4ebz0d9c a,
#dcu7zplaop7v9upry7uu a {
  display: block;
  position: relative;
}
#lnpchpnkpsplk9d6dukl a:hover img,
#y91u55gj22ohwxmypy5t a:hover img,
#s83arnpnzalfbj0qlfms a:hover img,
#kzvozg9mrz4315bfpzu1 a:hover img,
#wdp8h0osu50p4ebz0d9c a:hover img,
#dcu7zplaop7v9upry7uu a:hover img {
  opacity: 1;
}

/* お問い合わせ01 */
#lnpchpnkpsplk9d6dukl {
  padding: 123px 0;
}
#lnpchpnkpsplk9d6dukl .design_btn span {
  background-image: url(../files/bnr_contact_arr.png);
  top: 243px;
  left: 730px;
}
#lnpchpnkpsplk9d6dukl .design_btn::after {
  background-image: url(../files/bnr_contact_on.png);
}
#lnpchpnkpsplk9d6dukl > .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);
}
#lnpchpnkpsplk9d6dukl > .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/bnr_contact_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}

/* お問い合わせ02 */
#y91u55gj22ohwxmypy5t {
  background: url(../files/bnr_contact02_bg.jpg) no-repeat center center;
}
#y91u55gj22ohwxmypy5t .design_btn span {
  background-image: url(../files/bnr_contact_arr.png);
  top: 234px;
  left: 905px;
}
#y91u55gj22ohwxmypy5t .design_btn::after {
  background-image: url(../files/bnr_contact02_on.jpg);
}

/* ハーフサイズバナー共通 */
#s83arnpnzalfbj0qlfms,
#kzvozg9mrz4315bfpzu1,
#wdp8h0osu50p4ebz0d9c,
#dcu7zplaop7v9upry7uu {
  background: url(../files/bnrhalf_bg.jpg) repeat left top;
  padding: 200px 0;
}
#s83arnpnzalfbj0qlfms [class*="field_"],
#kzvozg9mrz4315bfpzu1 [class*="field_"],
#wdp8h0osu50p4ebz0d9c [class*="field_"],
#dcu7zplaop7v9upry7uu [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#s83arnpnzalfbj0qlfms .eyecatch,
#kzvozg9mrz4315bfpzu1 .eyecatch,
#wdp8h0osu50p4ebz0d9c .eyecatch,
#dcu7zplaop7v9upry7uu .eyecatch {
  width: 100% !important;
}
#s83arnpnzalfbj0qlfms .eyecatch img,
#kzvozg9mrz4315bfpzu1 .eyecatch img,
#wdp8h0osu50p4ebz0d9c .eyecatch img,
#dcu7zplaop7v9upry7uu .eyecatch img {
  width: auto;
}
#s83arnpnzalfbj0qlfms .design_btn span,
#kzvozg9mrz4315bfpzu1 .design_btn span,
#wdp8h0osu50p4ebz0d9c .design_btn span,
#dcu7zplaop7v9upry7uu .design_btn span {
  background-image: url(../files/bnrhalf_arr.png);
  top: 215px;
  right: 15px;
}
#content > .easys_content#s83arnpnzalfbj0qlfms:last-child,
#content > .easys_content#kzvozg9mrz4315bfpzu1:last-child,
#content > .easys_content#wdp8h0osu50p4ebz0d9c:last-child,
#content > .easys_content#dcu7zplaop7v9upry7uu:last-child {
  padding-bottom: 0;
}

/* 施工実績/採用情報 */
#s83arnpnzalfbj0qlfms [class*="field_"]:nth-of-type(1) .design_btn::after {
  background-image: url(../files/bnrhalf_works_on.jpg);
}
#s83arnpnzalfbj0qlfms [class*="field_"]:nth-of-type(2) .design_btn::after {
  background-image: url(../files/bnrhalf_recruit_on.jpg);
}

/* 会社概要/採用情報 */
#kzvozg9mrz4315bfpzu1 [class*="field_"]:nth-of-type(1) .design_btn::after {
  background-image: url(../files/bnrhalf_company_on.jpg);
}
#kzvozg9mrz4315bfpzu1 [class*="field_"]:nth-of-type(2) .design_btn::after {
  background-image: url(../files/bnrhalf_recruit_on.jpg);
}

/* 会社概要/事業内容 */
#wdp8h0osu50p4ebz0d9c [class*="field_"]:nth-of-type(1) .design_btn::after {
  background-image: url(../files/bnrhalf_company_on.jpg);
}
#wdp8h0osu50p4ebz0d9c [class*="field_"]:nth-of-type(2) .design_btn::after {
  background-image: url(../files/bnrhalf_business_on.jpg);
}

/* 事業内容/採用情報 */
#dcu7zplaop7v9upry7uu [class*="field_"]:nth-of-type(1) .design_btn::after {
  background-image: url(../files/bnrhalf_business_on.jpg);
}
#dcu7zplaop7v9upry7uu [class*="field_"]:nth-of-type(2) .design_btn::after {
  background-image: url(../files/bnrhalf_recruit_on.jpg);
}

/* 画像＞イメージ */
#kxy6y7x8r6vhy06cy8l1 .easys_content_inner {
  overflow: hidden;
  width: 100%;
}
#kxy6y7x8r6vhy06cy8l1 [class*="field_"]:nth-of-type(1) {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: 0;
}
#kxy6y7x8r6vhy06cy8l1 [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;
}
#kxy6y7x8r6vhy06cy8l1 [class*="field_"]:nth-of-type(2) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--easys_max_width) * 1px);
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#z0x762cvl6j79yrlzz38,
#edmii1eay4xa3mwdugqq,
#jr9h8t87mpdnzxqkb0af,
#a01v8a74a62pbhf7cq6j,
#b0ykwxnis8chkyzjg39v,
#xjqohp55glfkey3kp5j6,
#f75d0ift5ht79keumbqp {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#z0x762cvl6j79yrlzz38 .easys_content_inner,
#edmii1eay4xa3mwdugqq .easys_content_inner,
#jr9h8t87mpdnzxqkb0af .easys_content_inner,
#a01v8a74a62pbhf7cq6j .easys_content_inner,
#b0ykwxnis8chkyzjg39v .easys_content_inner,
#xjqohp55glfkey3kp5j6 .easys_content_inner,
#f75d0ift5ht79keumbqp .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#z0x762cvl6j79yrlzz38 .post_margin,
#edmii1eay4xa3mwdugqq .post_margin,
#jr9h8t87mpdnzxqkb0af .post_margin,
#a01v8a74a62pbhf7cq6j .post_margin,
#b0ykwxnis8chkyzjg39v .post_margin,
#xjqohp55glfkey3kp5j6 .post_margin,
#f75d0ift5ht79keumbqp .post_margin {
  margin: 0;
}
#z0x762cvl6j79yrlzz38 .entry_post,
#edmii1eay4xa3mwdugqq .entry_post,
#jr9h8t87mpdnzxqkb0af .entry_post,
#a01v8a74a62pbhf7cq6j .entry_post,
#b0ykwxnis8chkyzjg39v .entry_post,
#xjqohp55glfkey3kp5j6 .entry_post,
#f75d0ift5ht79keumbqp .entry_post {
  box-sizing: border-box;
}
#z0x762cvl6j79yrlzz38 .entry_post > [class*="title"],
#edmii1eay4xa3mwdugqq .entry_post > [class*="title"],
#jr9h8t87mpdnzxqkb0af .entry_post > [class*="title"],
#a01v8a74a62pbhf7cq6j .entry_post > [class*="title"],
#b0ykwxnis8chkyzjg39v .entry_post > [class*="title"],
#xjqohp55glfkey3kp5j6 .entry_post > [class*="title"],
#f75d0ift5ht79keumbqp .entry_post > [class*="title"] {
  display: none;
}
#z0x762cvl6j79yrlzz38 .text_box,
#edmii1eay4xa3mwdugqq .text_box,
#jr9h8t87mpdnzxqkb0af .text_box,
#a01v8a74a62pbhf7cq6j .text_box,
#b0ykwxnis8chkyzjg39v .text_box,
#xjqohp55glfkey3kp5j6 .text_box,
#f75d0ift5ht79keumbqp .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  margin: 0;
}
#z0x762cvl6j79yrlzz38 .post_data,
#edmii1eay4xa3mwdugqq .post_data,
#jr9h8t87mpdnzxqkb0af .post_data,
#a01v8a74a62pbhf7cq6j .post_data,
#b0ykwxnis8chkyzjg39v .post_data,
#xjqohp55glfkey3kp5j6 .post_data,
#f75d0ift5ht79keumbqp .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
_::-webkit-full-page-media, _:future, :root #z0x762cvl6j79yrlzz38 .post_data p,
_::-webkit-full-page-media, _:future, :root #edmii1eay4xa3mwdugqq .post_data p,
_::-webkit-full-page-media, _:future, :root #jr9h8t87mpdnzxqkb0af .post_data p,
_::-webkit-full-page-media, _:future, :root #a01v8a74a62pbhf7cq6j .post_data p,
_::-webkit-full-page-media, _:future, :root #b0ykwxnis8chkyzjg39v .post_data p,
_::-webkit-full-page-media, _:future, :root #xjqohp55glfkey3kp5j6 .post_data p,
_::-webkit-full-page-media, _:future, :root #f75d0ift5ht79keumbqp .post_data p {
  line-height: 2;
  letter-spacing: -1px;
}
#z0x762cvl6j79yrlzz38 .design_block,
#edmii1eay4xa3mwdugqq .design_block,
#jr9h8t87mpdnzxqkb0af .design_block,
#a01v8a74a62pbhf7cq6j .design_block,
#b0ykwxnis8chkyzjg39v .design_block,
#xjqohp55glfkey3kp5j6 .design_block,
#f75d0ift5ht79keumbqp .design_block {
  opacity: 0;
}
#z0x762cvl6j79yrlzz38 .design_block[class*="block"].moved,
#edmii1eay4xa3mwdugqq .design_block[class*="block"].moved,
#jr9h8t87mpdnzxqkb0af .design_block[class*="block"].moved,
#a01v8a74a62pbhf7cq6j .design_block[class*="block"].moved,
#b0ykwxnis8chkyzjg39v .design_block[class*="block"].moved,
#xjqohp55glfkey3kp5j6 .design_block[class*="block"].moved,
#f75d0ift5ht79keumbqp .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で行っています※ */
#z0x762cvl6j79yrlzz38 [class*="_btn"],
#edmii1eay4xa3mwdugqq [class*="_btn"] {
  margin: 40px 0 0;
  padding: 0;
  width: fit-content;
  height: fit-content;
  position: relative;
}
#z0x762cvl6j79yrlzz38 [class*="_btn"] a,
#edmii1eay4xa3mwdugqq [class*="_btn"] a {
  background: url(../files/design01_btn_off.png) no-repeat center top;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 230px;
  height: 40px;
}
#z0x762cvl6j79yrlzz38 .design_btn::after,
#edmii1eay4xa3mwdugqq .design_btn::after {
  background: url(../files/design01_btn_on.png) no-repeat center top;
}
#z0x762cvl6j79yrlzz38 .design_btn span,
#edmii1eay4xa3mwdugqq .design_btn span {
  background: url(../files/bnr_contact_arr.png) no-repeat center top;
  top: 0;
  bottom: 0;
  right: 17px;
  margin: auto;
}

/* 10年後、「頼んでよかった」と思える塗装を。 */
#z0x762cvl6j79yrlzz38 {
  background-image: url(../files/design01_bg.jpg);
  height: 800px;
}
#z0x762cvl6j79yrlzz38 .entry_post {
  padding: 398px 560px 0 0;
}
#z0x762cvl6j79yrlzz38 > .design_block.block1 {
  background-image: url(../files/design01_ttl.png);
  width: 385px;
  height: 60px;
  top: 228px;
  left: calc(50% - 480px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#z0x762cvl6j79yrlzz38 + .easys_content {
  margin-top: 0;
}

/* プレシャスが選ばれる3つの理由 */
#edmii1eay4xa3mwdugqq {
  background-image: url(../files/design02_bg.jpg);
  height: 1480px;
}
#edmii1eay4xa3mwdugqq .entry_post {
  padding: 553px 0 0 0;
}
#edmii1eay4xa3mwdugqq [class*="_btn"] {
  margin-left: 323px;
}
#edmii1eay4xa3mwdugqq [class*="_btn"] a {
  background-image: url(../files/design02_btn_off.png);
}
#edmii1eay4xa3mwdugqq .sub_post {
  display: inline-block;
  margin-top: 390px;
  vertical-align: top;
  width: 280px;
}
#edmii1eay4xa3mwdugqq .sub_post + .sub_post {
  margin-left: 60px;
}
#edmii1eay4xa3mwdugqq .sub_post > .entry_title {
  display: none;
}
#edmii1eay4xa3mwdugqq .design_btn::after {
  background-image: url(../files/design02_btn_on.png);
}
#edmii1eay4xa3mwdugqq > .design_block.block1 {
  width: 100%;
  height: 110px;
  bottom: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#edmii1eay4xa3mwdugqq > .design_block.block1::before {
  content: "";
  width: calc(1965 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design02_img01.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#edmii1eay4xa3mwdugqq > .design_block.block2 {
  width: 540px;
  height: 310px;
  top: 227px;
  left: calc(50% + 140px);
}
#edmii1eay4xa3mwdugqq > .design_block.block2::after {
  background-image: url(../files/design02_img02.jpg);
}
#edmii1eay4xa3mwdugqq > .design_block.block3 {
  width: 1115px;
  height: 370px;
  top: 16px;
  left: calc(50% - 1000px);
}
#edmii1eay4xa3mwdugqq > .design_block.block3::after {
  background-image: url(../files/design02_img03.jpg);
}
#edmii1eay4xa3mwdugqq > .design_block.block4 {
  background-image: url(../files/design02_ttl.png);
  width: 345px;
  height: 60px;
  top: 529px;
  left: calc(50% - 526px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}

/* 暮らしや製品を、塗装の力でもっと長く、美しく。 */
#jr9h8t87mpdnzxqkb0af {
  background-image: url(../files/design03_bg.jpg);
  height: 1235px;
}
#jr9h8t87mpdnzxqkb0af .entry_post {
  padding: 500px 0 0 352px;
}
#jr9h8t87mpdnzxqkb0af > .design_block.block1 {
  width: 780px;
  height: 735px;
  top: 200px;
  left: calc(50% - 1000px);
}
#jr9h8t87mpdnzxqkb0af > .design_block.block1::after {
  background-image: url(../files/design03_img01.jpg);
}
#jr9h8t87mpdnzxqkb0af > .design_block.block2 {
  width: 610px;
  height: 270px;
  top: 903px;
  left: calc(50% + 104px);
}
#jr9h8t87mpdnzxqkb0af > .design_block.block2::after {
  background-image: url(../files/design03_img02.jpg);
}
#jr9h8t87mpdnzxqkb0af > .design_block.block3 {
  background-image: url(../files/design03_ttl.png);
  width: 425px;
  height: 125px;
  top: 336px;
  left: calc(50% - 135px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#jr9h8t87mpdnzxqkb0af + .easys_content {
  margin-top: 0;
}

/* 塗装工事で失敗しないために */
#a01v8a74a62pbhf7cq6j {
  height: 1070px;
}
#a01v8a74a62pbhf7cq6j .entry_post {
  padding: 662px 10px 0 0;
}
#a01v8a74a62pbhf7cq6j > .design_block.block1 {
  width: 920px;
  height: 415px;
  top: 44px;
  left: calc(50% - 715px);
}
#a01v8a74a62pbhf7cq6j > .design_block.block1::after {
  background-image: url(../files/design04_img01.png);
}
#a01v8a74a62pbhf7cq6j > .design_block.block2 {
  width: 490px;
  height: 360px;
  top: 175px;
  left: calc(50% + 223px);
}
#a01v8a74a62pbhf7cq6j > .design_block.block2::after {
  background-image: url(../files/design04_img02.jpg);
}
#a01v8a74a62pbhf7cq6j > .design_block.block3 {
  background-image: url(../files/design04_ttl.png);
  width: 630px;
  height: 50px;
  top: 540px;
  left: calc(50% - 480px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#a01v8a74a62pbhf7cq6j > .design_block.block4 {
  background-image: url(../files/design04_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#a01v8a74a62pbhf7cq6j + .easys_content {
  margin-top: 0;
}

/* 一つひとつのご依頼に、最適な塗装をご提案しています。 */
#b0ykwxnis8chkyzjg39v {
  height: 1010px;
}
#b0ykwxnis8chkyzjg39v .entry_post {
  padding: 670px 180px 0;
}
#b0ykwxnis8chkyzjg39v .post_data {
  text-align: center;
}
#b0ykwxnis8chkyzjg39v > .design_block.block1 {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#b0ykwxnis8chkyzjg39v > .design_block.block1::before {
  content: "";
  width: calc(1800 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design05_img01.jpg) repeat-x left top / auto 100%;
}
#b0ykwxnis8chkyzjg39v > .design_block.block2 {
  background-image: url(../files/design05_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#b0ykwxnis8chkyzjg39v > .design_block.block3 {
  background-image: url(../files/design05_ttl.png);
  width: 350px;
  height: 60px;
  top: 508px;
  left: calc(50% - 175px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#b0ykwxnis8chkyzjg39v + .easys_content {
  margin-top: 0;
}

/* 誠実に向き合える仲間を募集しています。 */
#xjqohp55glfkey3kp5j6 {
  background-image: url(../files/design06_bg.jpg);
  height: 1080px;
}
#xjqohp55glfkey3kp5j6 .entry_post {
  padding: 280px 0 0 452px;
}
#xjqohp55glfkey3kp5j6 > .design_block.block1 {
  width: 430px;
  height: 250px;
  top: 558px;
  left: calc(50% - 596px);
}
#xjqohp55glfkey3kp5j6 > .design_block.block1::after {
  background-image: url(../files/design06_img01.jpg);
}
#xjqohp55glfkey3kp5j6 > .design_block.block2 {
  width: 840px;
  height: 390px;
  top: 558px;
  left: calc(50% - 146px);
}
#xjqohp55glfkey3kp5j6 > .design_block.block2::after {
  background-image: url(../files/design06_img02.png);
}
#xjqohp55glfkey3kp5j6 > .design_block.block3 {
  background-image: url(../files/design06_ttl.png);
  width: 410px;
  height: 75px;
  top: 290px;
  left: calc(50% - 490px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#xjqohp55glfkey3kp5j6 + .easys_content {
  margin-top: 0;
}

/* 代表挨拶 */
#f75d0ift5ht79keumbqp {
  background-image: url(../files/design07_bg.jpg);
  height: 1100px;
}
#f75d0ift5ht79keumbqp .entry_post {
  padding: 420px 0 0 312px;
}
#f75d0ift5ht79keumbqp > .design_block.block1 {
  width: 770px;
  height: 775px;
  top: 200px;
  left: calc(50% - 1000px);
}
#f75d0ift5ht79keumbqp > .design_block.block1::after {
  background-image: url(../files/design07_img.jpg);
}
#f75d0ift5ht79keumbqp > .design_block.block2 {
  background-image: url(../files/design07_ttl01.png);
  width: 393px;
  height: 56px;
  top: 288px;
  left: calc(50% - 165px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#f75d0ift5ht79keumbqp > .design_block.block3 {
  background-image: url(../files/design07_ttl02.png);
  width: 645px;
  height: 20px;
  top: 904px;
  left: calc(50% - 164px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#f75d0ift5ht79keumbqp + .easys_content {
  margin-top: 0;
}