@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ ★　*/

/* 下記文字列があるものは連動して変更されます！ */
:root {
  --basic_background_color:#ffffff;
  --body_text_color:#333333;
  --link_color:#4fb3ec;
  --border_color:#2260b4;
  --table_border_color:transparent;
  --th_background_color:#f9f9f9;
  --td_background_color:#f9f9f9;
  --th_character_color:#333333;
  --td_character_color:#333333;
  --required_color:#4fb3ec;
  --top_h1_color:#ffffff;
  --header_navigation_color:transparent;
  --top_entry_title_color:#000000;
  --entry_title_bg_color:#ffffff;
  --blog_title_color:#333333;
  --sub_entry_title_bg_color:#333333;
  --entry_title_bg_w570_color:#ffffff;
  --sub_entry_title_bg_w570_color:#000000;
  --half_entry_title_bg_color:#ffffff;
  --half_sub_entry_title_bg_color:#000000;
  --column3_title_bg_color:#ffffff;
  --widget_title_bg_color:#ffffff;
  --widget_list_bg_color:#2c2c2c;
  --footnavi_color:#ffffff;
  --address_color:#ffffff;
  --copy_color:#ffffff;
}

/* 書き換えが必要なもの！ ★　*/
:root {
    /* スライダーの高さ(単位なし) */
    --easys_top_main_h: 1030;
  
    /* 中ページメイン（ティザー）の高さ(単位なし) */
    --easys_naka_main_h: 640;
  
    /*ナビの高さ（上下ON/OFFの場合は画像の高さ÷２）*/
    --easys_access_h: 0px;
    
    /* プルダウンメニュー＞背景色 */
    --easys_standard_value002: #8cb1ee;
  
    /* プルダウンメニュー＞文字色 */
    --easys_standard_value003: #ffffff;
  
    /* プルダウンメニュー＞文字色(ホバー時) */
    --easys_standard_value004: #89e7ff;
  }

  
/* その他 */
:root {
  /* EASYSの最小幅(単位なし) */
  --easys_min_width: 1300;
  /* EASYSの最大幅(単位なし) */
  --easys_max_width: 2000;
  /* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value001: #ffffff;
  /* カレンダーの本日＞文字色 */
  --easys_standard_value005: #ffffff;
  /* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value006: #ffffff;
  /* ページ遷移ボタン＞線色 */
  --easys_standard_value007: #ffffff;
  /* ページ遷移ボタン＞文字色 */
  --easys_standard_value008: #ffffff;
  /* ブログ＞ページング＞線色 */
  --easys_standard_value009: #000000;
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */

/*背景色 or 画像　どちらか必ず指定してください★*/
html {

  /* 背景色のみなら↓　 */
  background: var(--basic_background_color);

  /* 画像なら↓
  background: url("/files/html_bg.jpg"); */

  /* 通常時 */
  scroll-padding-top: var(--easys_access_h);

  /* ハンバーガーメニューのとき */
  scroll-padding-top: 0;

  scroll-behavior: smooth;
}
/*トップページ　スライダーの背景あり or なし　どちらか必ず指定してください★*/
body#page_6 {

  /* 特に指定がなければ*/
  background: none no-repeat center top;

  /* トップページのスライダーの背景にあたる画像があれば
  background: url("/files/body_top_bg.jpg") no-repeat center top/100%;*/
}

/*中ページ　背景あり or なし　どちらか必ず指定してください★*/
body {
  position: relative;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  word-break: break-word;

  /* 中ページのティザーの背景にあたる画像があれば
  background: url("/files/body_bg.jpg") no-repeat center top/100%;*/

  /* 特に指定がなければ*/
  background: none no-repeat center top;
}
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;
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
}
/*
#jquery_slider_pc + #outer_block, #video_teaser + #outer_block {
  padding-top: 0;
}
  */
#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);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
/*画面上端から記事が入るまでの部分*/

/*トップページ　スライダーに重ねる画像あり or なし　どちらか必ず指定してください★*/
#page_6 #branding_box {
  height: 0px;
  /*ここでトップページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0;

  /* スライダー画像に重ねる画像がある場合↓ */
  background: url("/files/branding_box_bg.png") no-repeat center top/100%;

  /*上記該当しない場合は下記コメントアウト外す！！！
  background: none transparent; */
}

/*中ページ*/
#branding_box {
  position: relative;
  z-index: 500;
  /*ここで中ページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0;
  height: 0;
  background: none transparent;
  pointer-events: none;
}

#branding_box *{
  /* #branding_boxで無効にしたpointer-eventsを再度有効に */
  pointer-events: all;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
/* 中ページサイトタイトル 位置調整必要です　レスポンシブありなしに応じてどちらか選択してください★*/
#site-description {
  position: absolute;
  z-index: 753;
  margin: 0 auto;
  width: auto;

  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: calc(120 / var(--easys_naka_main_h) * 100%);
  left: calc(85 / var(--easys_max_width) * 100%);

  /* 右寄せのとき */
  /* text-align: right; */
}

/* トップページサイトタイトル 位置調整必要です　★*/
#page_6 #site-description {
  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: calc(120 / var(--easys_top_main_h)* 100%);
  left: calc(95 / var(--easys_max_width)* 100%);
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information,
#page_6 #header_information {
  height: 0;
}
/*ロゴ　サイズ、位置、画像のありなし調整必要です　★*/
#header_information .main_header a img {
  position: absolute;
  z-index: 752;

  /* 1 レスポンシブないとき　ロゴ画像レスポンシブ無しで設置します
  width: 340px;
  height: 100px;
  top: 0;
  left: 0;
  background: url("/files/branding_box.png")no-repeat center top; */

  /* 2 レスポンシブあるとき　ロゴ画像レスポンシブ有で設置します */
  top: calc(85 / var(--easys_naka_main_h) * 100%);
  left: calc(80 / var(--easys_max_width) * 100%);
  width: calc(227 / var(--easys_max_width) * 100%);
  height: calc(29 / var(--easys_naka_main_h) * 100%);
  background: url(../files/main_logo.png) no-repeat center top / 100%;

  /* 3 ロゴ画像がスライダーやティザーに含まれている場合　リンク範囲のみここで取得します
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(300 / var(--easys_max_width) * 100%);
  height: calc(150 / var(--easys_naka_main_h) * 100%);
  background:none; */

}

/* トップページ　上記で 2 か 3 を選択した場合のみ必要です★ */
#page_6 #header_information .main_header a img {
  top: calc(85 / var(--easys_top_main_h)* 100%);
  left: calc(95 / var(--easys_max_width)* 100%);
  width: calc(227 / var(--easys_max_width) * 100%);
  height: calc(29 / var(--easys_top_main_h) * 100%); 
}

/* Gナビ上部固定 jsも追記必要です。
　ナビ固定時に、ロゴの追尾の指示がある場合は別途説明するので、声をかけてください

#header_information .main_header a img.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  transform: none !important;
  z-index: 1000;
}

@media(min-width:2000px) {
  #header_information .main_header a img.fixed {
    left: calc(50% - 1000px) !important;
  }
}
*/

/*  グローバルナビ（access）
---------------------------------------------------------------------------------------------------- */
/* 上からの位置は#accessで、左右の位置はdiv#access .menu-headerで ★*/
#access {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: -1;
  margin: 0 auto;
  padding: 0;
  pointer-events: none;  
  background: url('/files/topnavi_bg.png') no-repeat center center,
  linear-gradient(-15deg, #125faf, #203f91);
  transition: left .3s, visibility .3s;
  width: 100vw;
  min-width: 1300px;

  
  height: 100vh; /* var(--easys_access_h) 使わない */
  overflow: hidden;
  /* 上からの位置レスポンシブありのとき */
  /*top: calc(40 / var(--easys_naka_main_h) * 100%); */
}

/* トップページ　上からの位置レスポンシブありのとき　★
#page_6 #access {
  top: calc(40 / var(--easys_top_main_h) * 100%);
  }
*/

#access.opened{
  visibility: visible;
  left: 0;
  pointer-events: all;
  z-index: 951;
}
#menuTrigger{
  height: 151px;
  width: 151px;
  position: fixed;
  top: calc(35 / var(--easys_naka_main_h) * 100%);
  right: calc(55 / var(--easys_max_width) * 100%);

  z-index: 999;
}
/* トップページ */
#page_6 #menuTrigger {
  top: calc(35 / var(--easys_top_main_h) * 100%);
  right: calc(55 / var(--easys_max_width) * 100%);
}
#menuTrigger button{
  background: url('/files/navi_btn.png') no-repeat center top;
  border: none;
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
/* ナビメニュー表示時 */
#access.opened + #menuTrigger button{
  background: url('/files/navi_btn_on.png') no-repeat center top;
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}

div#access .menu-header {
  margin: 0 0 0 auto;
  /*ナビ画像横幅　↓　★*/
  width: 720px;
  height: 270px;
    /* ナビ中央寄せ */
    position: absolute;
    inset: 0;
    margin: auto;

}

#menu-gnavi{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

div#access li.menu-item{
  width: 240px;
  height: 90px;
}

div#access .menu-item a {
  background: url('/files/topnavi.png') no-repeat center center;
  width: 240px;
  height: 90px;
  margin: 0px;
  padding: 0px;
}

/* y軸 ポジション */
div#access .menu-item:nth-of-type(-n+3) a{
  background-position-y: 0;
}
div#access .menu-item:nth-of-type(n+4):nth-of-type(-n+6) a{
  background-position-y: -90px;
}
div#access .menu-item:nth-of-type(n+7):nth-of-type(-n+8) a{
  background-position-y: calc(-90px * 2);
}

/* x軸 ポジション */
div#access .menu-item:nth-of-type(3n + 1) a{
  background-position-x: 0;
}
div#access .menu-item:nth-of-type(3n + 2) a{
  background-position-x: -240px;
}
div#access .menu-item:nth-of-type(3n + 3) a{
  background-position-x: calc(-240px * 2);
}


div#access .menu-item a:hover {
  background-image: url('/files/topnavi_on.png');
}

/*
ナビ一つ目の横幅＝gnabi_1px
ナビ二つ目の横幅＝gnabi_2px　のように当てはめていってください。★

calc()の中で勝手に計算してくれるので記述さえ間違えなければナビの幅が正しくとれます。 */


/*
div#access .gnavi11 a {
  width: gnabi_1px;
  background-position-x: left;
}
div#access .gnavi12 a {
  width: gnabi_2px;
  background-position-x: calc(-gnabi_1px);
}
div#access .gnavi13 a {
  width: gnabi_3px;
  background-position-x: calc(-gnabi_1px - gnabi_2px);
}
div#access .gnavi14 a {
  width: gnabi_4px;
  background-position-x: calc(-gnabi_1px - gnabi_2px - gnabi_3px);
}
div#access .gnavi15 a {
  width: gnabi_5px;
  background-position-x: calc(-gnabi_1px - gnabi_2px - gnabi_3px - gnabi_4px);
}
div#access .gnavi16 a {
  width: gnabi_6px;
  background-position-x: right;
}
div#access .menu-item a:hover {
  background-position-y: bottom;
}*/

/*固定時用ナビ*/
#access.fixed {
  position: fixed;
  height: var(--easys_access_h);
  width: 100%;
  max-width: calc(var(--easys_max_width)*1px);
  min-width: calc(var(--easys_min_width)*1px);
  padding: 0;
  top: 0 !important;
  bottom: inherit;
  right: 0;
  left: 0;
  /*固定時ナビ背景指示あればここで！★*/
  background: rgba(255, 255, 255, 0.95);
  z-index: 999;
}
#access.fixed .menu-header {
  /*固定時ナビの位置調整はここで！真ん中 or 右寄せ必ず選択してください★*/

  /* 真ん中よせのとき
  margin: 0 auto; */

  /*右寄せのとき
  margin:0 0 0 auto;*/

  float: none;
  max-width: calc(var(--easys_max_width)*1px);
  transform: none !important;
}

#access ul.menu ul.sub-menu {
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  height: auto;
  width: 100%;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  box-sizing: border-box;
  padding: 15px 10px;
  width: 100%;
  height: auto !important;
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em !important;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: var(--easys_standard_value003);
}
div#access ul.sub-menu li.sub-gnavi a:hover,
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value004);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  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%;
}

/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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 {
  position: relative;
  height: 595px;
  background: url(/files/footer_bg.png) no-repeat center top;
}

#footer_box {
  height: 595px;
  background: none;
}

#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
/* フッターに記載されナビに当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの場合*/
#footer_sitemap_block {
  position: absolute;
  bottom: 200px;
  left: 50%;
  margin: 0 auto;
  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: 960px;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: var(--footnavi_color);
}
#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-widget-area .widget-area .menu-item {
  position: relative;
}

#footer-widget-area .widget-area .menu-item::before {
  display: block;
  content: '・';
  width: 15px;
  height: 15px;
  color: #ccc;
  position: absolute;
} */

/*ナビ縦*/
/* #footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer-widget-area .widget-area .menu-item {
  float: none;
  text-align: left;
} */

/*ナビ２列*/
/* #footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100px;
  align-content: space-between;
  width: 425px;
} */

/*  フッター情報
---------------------------------------------------------------------------------------------------- */
/* フッターに記載される住所や電話番号に当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの場合*/
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  width: 300px;
  margin: 250px auto 0;
  text-align: center;
}
/* 中央以外 */
/*
#footer_information{
position: absolute;
top: 180px;
    left: calc(50% + -474px);
}
#footer_information .entry-post {
  width: 450px;
margin: 0;
text-align: left;
}
*/


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#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;
  height: 25px;
}
#footer_sns_btn div {
  width: 25px;
  height: 25px;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}
/* フッターに記載されるコピーライトに当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの時*/
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
/* 中央以外 */
/*
#copyright {
position: absolute;
bottom: 0px;
left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.footer_fixed_btn {
  position: fixed;
  bottom: 200px;
  right: 0;
  z-index: 499;
}

.footer_fixed_btn a{
  display: block;
  width: 45px;
  height: 45px;
  transition: width .3s;
}

.footer_fixed_btn a:hover{
  width: 60px;
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn{
  z-index: 499; /* ハンバーガーメニューと被り防止 */
}
#float_top_btn a:hover img {
  opacity: 0.8;
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  height: 70px;
  line-height: 70px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}
/*h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  フォントサイズはこちら
}*/
.entry_title a:link,
.entry_title a:visited,
.entry_title a:hover,
.entry_title a:active,
.entry-title a:link,
.entry-title a:visited,
.entry-title a:hover,
.entry-title a:active {
  color: var(--entry_title_bg_color);
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/*
* .sub_entry_title 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: 20px;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  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: 15px;
  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: none !important;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  box-sizing: border-box;
}

.easys_content:not(.ne_01) table:not(#wp-calendar) {
  border-collapse: separate;
  border-spacing: 0 10px !important;
}

table.iqfm-table td {
  min-width: 7em;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}




/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  border-style: solid;
  border-color: var(--link_color);
  background: none transparent;
  color: var(--link_color) !important;
}
/*.permalink_in a:link,
.permalink_in a:visited,
.pageback a:link,
.pageback a:visited {
}*/
.tablenav .next:link,
.tablenav .next:visited,
.tablenav .prev:link,
.tablenav .prev:visited {
  border: 1px solid var(--easys_standard_value007);
  background: none transparent;
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  border-color: var(--link_color);
  background-color: var(--link_color);
}
.tablenav .current,
a.page-numbers:hover,
.permalink_in a:hover,
.permalink_in a:active,
.pageback a:hover,
.pageback a:active,
.page_up a:hover,
.page_up a:active {
  border-style: solid;
  border-color: var(--link_color);
  background: none var(--link_color);
  color: var(--easys_standard_value008) !important;
}



/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: var(--border_color);
}


/* Cブロック */
.c_01,
.c_02,
.c_03,
.c_05,
.c_06 {
  display: inline-block;
  padding: 0 0 20px;
  width: 100%;
}
.c_04 {
  margin: 0 0 20px;
}


/* Dブロック */
.menu-list table {
  border-collapse: separate;
}


/* Gブロック */
.g_01 .sub_entry_title a,
.g_02 .sub_entry_title a {
  text-decoration: underline;
}
.g_01 .sub_entry_title a:hover,
.g_02 .sub_entry_title a:hover {
  text-decoration: none;
}


/* Kブロック */
.k_03 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.k_03 .news_small_text {
  font-size: 12px;
  line-height: 1.7;
}


/* Z-D ブログRSS */
.z_d1 {
  margin: 0 0 20px;
}


/* Z-E リンクバナー */
.banner_box {
  text-align: center;
}
.banner_box img {
  max-width: 100%;
  width: auto;
}



/* Z-I スライドショー */
.z_j1 {
  margin: 0 0 15px;
}


/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.Z_l1 .news_small_text {
  font-size: 12px;
}


/* Z_M タブブロック */
.z_m1 .link_list {
  font-size: 13px;
  line-height: 1.5;
}
.z_m1 div.link_list {
  margin-bottom: 10px;
}
div.link_list a {
  border: 1px solid var(--link_color);
  background-color: transparent;
  color: var(--link_color);
}
div.link_list a:hover {
  border: 1px solid var(--link_color);
  background-color: var(--link_color);
  color: #ffffff;
}


.faq-title {
  background-color: var(--link_color);
  color: #ffffff;
  font-weight: normal;
}



/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: var(--required_color);
}
.iqfm-table button,
.iqfm-table input[type="reset"],
.iqfm-table input[type="button"],
.iqfm-table input[type="submit"] {
  line-height: 1.7;
}
.iqfm-table .post_data {
  margin: 0 0 30px;
}



/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
/*body.coupon {
}*/
.coupon_print_block .print_header,
h1.print_page_title,
.coupon_box table tr td.coupon_data,
.coupon_box table tr td.coupon_meta_title,
.coupon_box table tr td.coupon_meta {
  border-color: var(--table_border_color);
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  width: 8em;
  background-color: var(--th_background_color);
  color: var(--th_character_color);
}
.coupon_box table tr td.coupon_meta {
  background-color: var(--td_background_color);
  color: var(--td_character_color);
}
.e-04 .menu_area td {
  height: 3.5em;
}

.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}



/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: var(--easys_standard_value009);
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  padding: 15px 20px 15px 20px;
  height: auto;
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  line-height: 1.5;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: var(--blog_title_color);
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  margin: 0 0 20px;
  width: 100%;
  height: 450px;
}


/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}


/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  display: block;
  visibility: hidden;
  margin-top: -110px;
  height: 110px;
  content: "";
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */
/*.moved {
  top: 0;
  opacity: 1 !important;
  transform: translate(0px, 0px) scale(1) !important;
  filter: blur(0) !important;
}

/* text_box共通 下からフェードイン */
.nd_01 .post_data, .ndb_01 .post_data  {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.3s ease 0s, opacity 1.3s ease 0s;
}

.nd_01 .post_data.moved, .ndb_01 .post_data.moved  {
  top: 0;
  opacity: 1;
  transform: translate(0px, 0px) scale(1);
  filter: blur(0);
}

/* DBブロック共通処理 タイトル非表示 */
.ndb_01 .easys_content_inner [class*='title']:first-of-type{
  height: 0.01px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
}

/* DB,Dブロックタイトル共通 フェードインアニメーション */
.nd_01 .easys_content_inner [class*='title']:first-of-type,
.ndb_01 .easys_content_inner [class*='title']:first-of-type{
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.3s ease 0s, opacity 1.3s ease 0s;
}
.nd_01 .easys_content_inner [class*='title']:first-of-type.moved,
.ndb_01 .easys_content_inner [class*='title']:first-of-type.moved{
  opacity: 1;
  transform: none;
}

/*全体フェードイン　Dブロックは解除*/
/* .easys_content_inner:not(.nd_01 .easys_content_inner) {
  opacity: 0;
  transform: translateY(100px);
  transition: 1.3s ease 0s;
}

.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
  opacity: 1;
  transform: translateY(0);
} */

/*パララックス除外*/
/* #xxx .easys_content_inner {
  opacity: 1;
  transition: none;
  transform: none !important;
  filter: none !important;
} */

/* 対象のマージンを消す */
.easys_content.no_margin {
  margin: 0;
}

/* もし記事が割り込まれたらマージンを入れる */
.easys_content.no_margin+.easys_content:not(.no_margin) {
  margin-top: 70px;
}

.easys_content.no_margin.nk_01 [class*="title"] {
  margin-bottom: 0;
  padding-bottom: 25px;
}

/* デザインブロック共通設定
--------------------------------------- */
/*追加画像*/
.design_block,
.add_image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease 0s;
  z-index: 9;
}

.add_image {
  opacity: 1;
}

.db_block {
  margin-top: 0 !important;
}

.db_block *[class*="title"] {
  display: none;
}

.easys_content .sub_post .float_left {
  float: left !important;
}

.easys_content .sub_post .float_right {
  float: right !important;
}

.outer_top #outer_block:not(.shosai .outer_top #outer_block) {
  padding-top: 0;
}

#outer_block .ndb_01:first-child{
  /* #outer_blockの余白消し */
  margin-top: -70px;
}

/* ===========================================================================
     トップページ
=========================================================================== */
/*DB > はじめまして！
az1ag7vflizus13ht8mo
--------------------------------------- */
#az1ag7vflizus13ht8mo {
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  overflow: hidden;
  height: 1760px;
}
/* ブロック下部画像 */
#az1ag7vflizus13ht8mo::before{
  content: "";
  bottom: 0;
  left: calc(50% - 1000px);
  width: 2000px;
  height: 100vh;
  background: url(/files/db01_img04.jpg) no-repeat center bottom / cover;
  position: fixed;
  object-fit: cover;
}
#az1ag7vflizus13ht8mo,
#az1ag7vflizus13ht8mo .easys_content_inner,
#az1ag7vflizus13ht8mo .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#az1ag7vflizus13ht8mo .easys_content_inner{
  /* 背景画像 */
  background: url(../files/db01_bg.jpg) no-repeat center top;
  height: 1160px;
  width: 100%;
}

#az1ag7vflizus13ht8mo .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

/* ループ画像 */
#az1ag7vflizus13ht8mo .entry_post::before {
  top: 160px;
  left: 0;
  width: 1641px;
  height: 410px;
  background: url(/files/db01_img01.png) repeat-x center bottom;
  content: "";
  position: absolute;
  animation: loop_db01_img01 40s linear 0s infinite;
}
@keyframes loop_db01_img01 {
  to {
    background-position: top left -1641px;
  }
}

#az1ag7vflizus13ht8mo [class*='title'] {
  margin: 0;
  width: 688px;
  position: absolute;
  left: calc(50% - 1530px / 2);
  text-align: left;
  background: url(/files/db01_img02.png) no-repeat center top;
  height: 513px;
  text-indent: -9999px;
  top: 385px;
  opacity: 1;
  transform: none;
}
#az1ag7vflizus13ht8mo .text_box {
  width: 555px;
  position: absolute;
  top: 625px;
  right: 0;
  left: calc(50% - 15px);
  overflow: visible;
}
#az1ag7vflizus13ht8mo .post_data{
}

/* ループ画像 */
#az1ag7vflizus13ht8mo .easys_content_inner::after {
  position: absolute;
  bottom: 90px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 110px;
  background: url(../files/db01_img03.png) repeat-x left top;
  content: "";
  animation: loop_db01_img03 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_db01_img03 {
  to {
    background-position: top left 1010px;
  }
}


/*DB > こんな塗装業者は要注意！
xead6pvldnl0v5vrzv9g
--------------------------------------- */
#xead6pvldnl0v5vrzv9g {
  /* 背景画像 */
  background: url(../files/db02_bg.jpg) no-repeat center top;
  height: 900px;
}
#xead6pvldnl0v5vrzv9g,
#xead6pvldnl0v5vrzv9g .easys_content_inner,
#xead6pvldnl0v5vrzv9g .entry_post {
  height: 900px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#xead6pvldnl0v5vrzv9g .easys_content_inner{
  height: 900px;
}

#xead6pvldnl0v5vrzv9g .sub_post{
  width: 43%;
  margin-top: 435px;
  padding: 40px 3% 0;
  vertical-align: top;
}
#xead6pvldnl0v5vrzv9g .sub_post:nth-of-type(2n){
  margin-left: 2%;
}

#xead6pvldnl0v5vrzv9g .entry_post{
}

#xead6pvldnl0v5vrzv9g [class*='title'] {
  height: 0.01px;
  margin: 0;
  text-align: left;
  text-indent: -9999px;
}
#xead6pvldnl0v5vrzv9g [class*='headline_title'] {
  margin: 0;
  width: 573px;
  position: absolute;
  left: calc(50% - 190px);
  text-align: left;
  background: url(/files/db02_img01.png) no-repeat center top;
  height: 228px;
  text-indent: -9999px;
  top: 150px;
}
#xead6pvldnl0v5vrzv9g .text_box {
  width: 555px;
  position: absolute;
  top: 553px;
  right: 0;
  left: calc(50% - 20px);
  overflow: visible;
}
#xead6pvldnl0v5vrzv9g .post_data{
}

#xead6pvldnl0v5vrzv9g [class*='headline_title'],
#xead6pvldnl0v5vrzv9g .sub_post{
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.3s, transform 1.3s;
}
#xead6pvldnl0v5vrzv9g [class*='headline_title'].moved,
#xead6pvldnl0v5vrzv9g .sub_post.moved{
  opacity: 1;
  transform: none;
}


/*DB > 屋根工事を検討されている方へ
l7p74hk4irm3lzbg2e10
--------------------------------------- */
#l7p74hk4irm3lzbg2e10 {
  /* 背景画像 */
  background: url(../files/db03_bg.jpg) no-repeat center top;
  height: 1150px;
}
#l7p74hk4irm3lzbg2e10,
#l7p74hk4irm3lzbg2e10 .easys_content_inner,
#l7p74hk4irm3lzbg2e10 .entry_post {
  height: 1150px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#l7p74hk4irm3lzbg2e10 [class*='headline_title'] {
  margin: 0;
  width: 1046px;
  position: absolute;
  left: calc(50% - 520px);
  text-align: left;
  background: url(/files/db03_img01.png) no-repeat center top;
  height: 453px;
  text-indent: -9999px;
  top: 165px;
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 1.3s, transform 1.3s;
}
#l7p74hk4irm3lzbg2e10 [class*='headline_title'].moved{
  opacity: 1;
  transform: none;
}
#l7p74hk4irm3lzbg2e10 .text_box {
  width: 950px;
  position: absolute;
  top: 665px;
  right: 0;
  left: 0;
  overflow: visible;
}
#l7p74hk4irm3lzbg2e10 .post_data{
}


/*バナー > 業者の選び方/事業内容/施工の流れ
bctv2w9k5ohbl6hwyy5g
--------------------------------------- */
#bctv2w9k5ohbl6hwyy5g {
  /* 背景画像あれば */
  background: url(../files/03bn_bg.jpg) no-repeat center top;
  height: 600px;
}
#bctv2w9k5ohbl6hwyy5g,
#bctv2w9k5ohbl6hwyy5g .easys_content_inner,
#bctv2w9k5ohbl6hwyy5g .entry_post {
  height: 600px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#bctv2w9k5ohbl6hwyy5g .easys_content_inner {
  padding: 0;
  width: 920px;
}
#bctv2w9k5ohbl6hwyy5g .eyecatch {
  width: 100%;
}
#bctv2w9k5ohbl6hwyy5g .margin-bottom_30,
#bctv2w9k5ohbl6hwyy5g .margin-bottom_50 {
  margin-bottom: 0;
}
#bctv2w9k5ohbl6hwyy5g .img_display {
  display: flex;
  justify-content: space-between;
  margin-top: 250px;
}
#bctv2w9k5ohbl6hwyy5g .field_3col {
  margin: 0;
  position: relative;
  width: 300px !important;
}
#bctv2w9k5ohbl6hwyy5g .field_3col::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}
#bctv2w9k5ohbl6hwyy5g .field_3col:hover::before {
  opacity: 1;
}

#bctv2w9k5ohbl6hwyy5g div:nth-child(1 of [class*="field_"])::before {
  /*1つめ　ON画像*/
  background: url(/files/03bn_01_on.png) no-repeat center top;
}
#bctv2w9k5ohbl6hwyy5g div:nth-child(2 of [class*="field_"])::before {
  /*2つめ　ON画像*/
  background: url(/files/03bn_02_on.png) no-repeat center top;
}
#bctv2w9k5ohbl6hwyy5g div:nth-child(3 of [class*="field_"])::before {
  /*3つめ　ON画像*/
  background: url(/files/03bn_03_on.png) no-repeat center top;
}
#bctv2w9k5ohbl6hwyy5g .eyecatch a img {
  opacity: 1;
}


/*タイトル＞新着情報
g1tti3n35c1cf5py6q2a
--------------------------------------- */
#g1tti3n35c1cf5py6q2a{
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 1.3s, transform 1.3s;
}
#g1tti3n35c1cf5py6q2a.moved{
  opacity: 1;
  transform: none;
}
#g1tti3n35c1cf5py6q2a .easys_content_inner{
  padding-top: 130px;
  position: relative;
  z-index: 1;
}
#g1tti3n35c1cf5py6q2a [class*='title']{
  background: none;
  /* display: flex; */
  margin: 0 auto;
  padding: 0;
  width: 433px;
  height: 162px;
}
#g1tti3n35c1cf5py6q2a [class*='title'] h3{
  background: url(/files/db04_img01.png) no-repeat center top;
  height: 162px;
  width: 305px;
  margin: 0 auto 0 10px;
  padding: 0;
  text-indent: -9999px;
}

#g1tti3n35c1cf5py6q2a .read_more_btn{
  height: 75px;
  width: 75px;
  margin-top: 65px;
}

#g1tti3n35c1cf5py6q2a .read_more_btn a{
  background: url(/files/db04_btn.png) no-repeat center top;
  width: 75px;
  height: 75px;
  position: relative;
}

#g1tti3n35c1cf5py6q2a .read_more_btn a::before{
  background: url(/files/db04_btn_on.png) no-repeat center top;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .3s;
  width: 100%;
  height: 100%;
}

#g1tti3n35c1cf5py6q2a .read_more_btn a:hover::before{
  opacity: 1;
}

/*新着情報
mcjm4i1sgutqg0x0egdd
--------------------------------------- */
#mcjm4i1sgutqg0x0egdd{
  padding-block: 65px 180px;
  margin-bottom: 0;
}

#mcjm4i1sgutqg0x0egdd .easys_content_inner:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}

#mcjm4i1sgutqg0x0egdd .blog_post {
  width: calc((100% - 30px) / 3) ;
  border-bottom: none;
  box-sizing: border-box;
  margin-bottom: 0;

  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.3s, transform 1.3s;
}
#mcjm4i1sgutqg0x0egdd .blog_post.moved{
  opacity: 1;
  transform: none;
}

.blog_list_text_size{
  width: auto;
}

#mcjm4i1sgutqg0x0egdd .eyecatch {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  max-height: 220px;
}

#mcjm4i1sgutqg0x0egdd .eyecatch img {
  object-fit: cover;
  object-position: center;
  height: auto;
  max-height: 220px;
}

#mcjm4i1sgutqg0x0egdd .date_area {
  width: 100%;
}

#mcjm4i1sgutqg0x0egdd .post_title_list{
  white-space: normal;
}

#mcjm4i1sgutqg0x0egdd .post_title_list a{
  color: currentColor;
  font-size: 18px;
}

/*イメージ画像
kwz6bka9e7hdmo1crw1l
--------------------------------------- */
#kwz6bka9e7hdmo1crw1l {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  overflow: hidden;
  position: relative;
}
#kwz6bka9e7hdmo1crw1l div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#kwz6bka9e7hdmo1crw1l,
#kwz6bka9e7hdmo1crw1l .field_1col,
#kwz6bka9e7hdmo1crw1l .easys_content_inner {
  width: 100%;
  height: 550px;
}
#kwz6bka9e7hdmo1crw1l .eyecatch {
  position: absolute;
  /* 上からの位置 */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin:0 auto;
  width: 2000px;
  height: 550px;
}

#kwz6bka9e7hdmo1crw1l video{
  left: 0;
  position: fixed;
  top: 0;
  width: 2000px;
  height: 100vh;
  object-fit: cover;
}

/*会社概要 (top)
rf8jvyojuils00h86sxy
--------------------------------------- */



/* ===========================================================================
     業務内容
=========================================================================== */
/*DB > 防水塗装工事
c395zgxl5kxlzwo01yam
--------------------------------------- */
#c395zgxl5kxlzwo01yam {
  /* 背景画像 */
  background: url(../files/db05_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
  height: 960px;
}
#c395zgxl5kxlzwo01yam,
#c395zgxl5kxlzwo01yam .easys_content_inner,
#c395zgxl5kxlzwo01yam .entry_post {
  height: 960px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* ブロック下部画像 */
#c395zgxl5kxlzwo01yam::before {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 115px;
/* ループさせる画像 */
  background: url(../files/db05_img03.png) repeat-x left top;
  content: "";
  animation: loop_db05_img03 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_db05_img03 {
  to {
    background-position: top left -1510px;
  }
}

#c395zgxl5kxlzwo01yam,
#c395zgxl5kxlzwo01yam .easys_content_inner,
#c395zgxl5kxlzwo01yam .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#c395zgxl5kxlzwo01yam .easys_content_inner{
  width: 1280px;
}
#c395zgxl5kxlzwo01yam .easys_content_inner::before {
  position: absolute;
  top: 215px;
  left: 0;
  display: block;
  width: 575px;
  height: 583px;
  background: url(../files/db05_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(-100px);
  opacity: 0;

  transition: opacity 1.3s, transform 1.3s;
}

#c395zgxl5kxlzwo01yam .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#c395zgxl5kxlzwo01yam [class*='title'] {
  margin: 0;
  width: 534px;
  position: absolute;
  left: calc(50% - 45px / 2);
  text-align: left;
  background: url(/files/db05_img02.png) no-repeat center top;
  height: 172px;
  text-indent: -9999px;
  top: 290px;
  transform: translateX(100px);
}
#c395zgxl5kxlzwo01yam .text_box {
  width: 515px;
  position: absolute;
  top: 470px;
  right: 0;
  left: calc(50% - 25px);
  overflow: visible;
}
#c395zgxl5kxlzwo01yam .post_data{
  color: #ffffff;
}

#c395zgxl5kxlzwo01yam .easys_content_inner.moved::before,
#c395zgxl5kxlzwo01yam [class*='title'].moved{
  opacity: 1;
  transform: none;
}


/*DB > 外壁調査・打診
yfwzzd0gojjhu7phjmjv
--------------------------------------- */
#yfwzzd0gojjhu7phjmjv {
  /* 背景画像 */
  background: url(../files/db06_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}

#yfwzzd0gojjhu7phjmjv,
#yfwzzd0gojjhu7phjmjv .easys_content_inner,
#yfwzzd0gojjhu7phjmjv .entry_post {
  height: 840px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#yfwzzd0gojjhu7phjmjv .easys_content_inner{
  width: 1280px;
}
#yfwzzd0gojjhu7phjmjv .easys_content_inner::before {
  position: absolute;
  top: 75px;
  left: calc(50% - 50px);
  display: block;
  width: 583px;
  height: 430px;
  background: url(../files/db06_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#yfwzzd0gojjhu7phjmjv .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#yfwzzd0gojjhu7phjmjv [class*='title'] {
  margin: 0;
  width: 444px;
  position: absolute;
  left: 5px;
  text-align: left;
  background: url(/files/db06_img02.png) no-repeat center top;
  height: 152px;
  text-indent: -9999px;
  top: 250px;
  transform: translateX(-100px);
}
#yfwzzd0gojjhu7phjmjv .text_box {
  width: 955px;
  position: absolute;
  top: 490px;
  right: 0;
  left: 0;
  overflow: visible;
}
#yfwzzd0gojjhu7phjmjv .post_data{
  /* color: #ffffff; */
}

#yfwzzd0gojjhu7phjmjv .easys_content_inner.moved::before,
#yfwzzd0gojjhu7phjmjv [class*='title'].moved{
  opacity: 1;
  transform: none;
}


/*DB > 外壁塗装
v875hsyr0uf9df4y6ve9
--------------------------------------- */
#v875hsyr0uf9df4y6ve9 {
  /* 背景画像 */
  background: url(../files/db07_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}

#v875hsyr0uf9df4y6ve9,
#v875hsyr0uf9df4y6ve9 .easys_content_inner,
#v875hsyr0uf9df4y6ve9 .entry_post {
  height: 1190px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#v875hsyr0uf9df4y6ve9 .easys_content_inner{
  width: 960px;
  height: 1190px;
}
#v875hsyr0uf9df4y6ve9 .easys_content_inner::before {
  position: absolute;
  top: 175px;
  left: 0;
  display: block;
  width: 582px;
  height: 363px;
  background: url(../files/db07_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(-100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}
#v875hsyr0uf9df4y6ve9 .easys_content_inner::after {
  position: absolute;
  bottom: 150px;
  right: -40px;
  display: block;
  width: 927px;
  height: 384px;
  background: url(../files/db07_img03.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#v875hsyr0uf9df4y6ve9 .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#v875hsyr0uf9df4y6ve9 [class*='title'] {
  margin: 0;
  width: 405px;
  position: absolute;
  left: calc(50% + 120px);
  text-align: left;
  background: url(/files/db07_img02.png) no-repeat center top;
  height: 203px;
  text-indent: -9999px;
  top: 295px;
  transform: translateX(100px);
}
#v875hsyr0uf9df4y6ve9 .text_box {
  width: 585px;
  position: absolute;
  top: 565px;
  right: 0;
  left: 0;
  overflow: visible;
}
#v875hsyr0uf9df4y6ve9 .post_data{
  /* color: #ffffff; */
}

#v875hsyr0uf9df4y6ve9 .easys_content_inner.moved::before,
#v875hsyr0uf9df4y6ve9 .easys_content_inner.moved::after,
#v875hsyr0uf9df4y6ve9 [class*='title'].moved{
  opacity: 1;
  transform: none;
}

/*バナー > 施工の流れ/会社概要(※business)
xa0asu3etlpqa94n5itu
--------------------------------------- */
#xa0asu3etlpqa94n5itu {
  position: relative;
  box-sizing: border-box;
  height: 700px;
  /* 背景画像あれば */
  background: url(../files/hb_bg.jpg) repeat center top;
}
#xa0asu3etlpqa94n5itu,
#xa0asu3etlpqa94n5itu .easys_content_inner,
#xa0asu3etlpqa94n5itu .entry_post {
  height: 700px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#xa0asu3etlpqa94n5itu .easys_content_inner {
  padding: 0;
  width: 1155px;
  height: 700px;
  position: absolute;
  top: calc(50% - 325px / 2);
  right: 0;
  left: 0;
  margin: 0 auto;
}
#xa0asu3etlpqa94n5itu .eyecatch {
  width: 100%;
}
#xa0asu3etlpqa94n5itu div {
  margin-bottom: 0;
}
#xa0asu3etlpqa94n5itu .field_2col {
  position: relative;
  width: 560px !important;
}
#xa0asu3etlpqa94n5itu .field_2col::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s;
  pointer-events: none;
  opacity: 0;
}
#xa0asu3etlpqa94n5itu .field_2col:hover::before {
  opacity: 1;
}
#xa0asu3etlpqa94n5itu .float_left::before {
  /*左側ON画像*/
  background: url(../files/hb_flow_on.jpg) no-repeat center top;
}
#xa0asu3etlpqa94n5itu .float_right::before {
  /*右側ON画像*/
  background: url(../files/hb_company_on.jpg) no-repeat center top;
}
#xa0asu3etlpqa94n5itu .eyecatch a img {
  opacity: 1;
}

/* ===========================================================================
     業者の選び方
=========================================================================== */
/*DB > どんな業者だったら安心？
xcqmxp0dyrschka4cbqa
--------------------------------------- */
#xcqmxp0dyrschka4cbqa {
  /* 背景画像 */
  background: url(../files/db08_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}
#xcqmxp0dyrschka4cbqa,
#xcqmxp0dyrschka4cbqa .easys_content_inner,
#xcqmxp0dyrschka4cbqa .entry_post {
  height: 1100px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#xcqmxp0dyrschka4cbqa .easys_content_inner{
  width: 960px;
  height: 1100px;
}
#xcqmxp0dyrschka4cbqa .easys_content_inner::before {
  position: absolute;
  top: 170px;
  right: -230px;
  display: block;
  width: 835px;
  height: 389px;
  background: url(../files/db08_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}
#xcqmxp0dyrschka4cbqa .easys_content_inner::after {
  position: absolute;
  bottom: 230px;
  left: -195px;
  display: block;
  width: 515px;
  height: 254px;
  background: url(../files/db08_img03.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateY(-100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#xcqmxp0dyrschka4cbqa .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#xcqmxp0dyrschka4cbqa [class*='title'] {
  margin: 0;
  width: 454px;
  position: absolute;
  left: -34px;
  text-align: left;
  background: url(/files/db08_img02.png) no-repeat center top;
  height: 235px;
  text-indent: -9999px;
  top: 312px;
  transform: translateX(-100px);
}
#xcqmxp0dyrschka4cbqa .text_box {
  width: 565px;
  position: absolute;
  top: 640px;
  right: 0;
  left: 0;
  overflow: visible;
  margin-left: auto;
}
#xcqmxp0dyrschka4cbqa .post_data{
}

#xcqmxp0dyrschka4cbqa .easys_content_inner.moved::before,
#xcqmxp0dyrschka4cbqa .easys_content_inner.moved::after,
#xcqmxp0dyrschka4cbqa [class*='title'].moved{
  opacity: 1;
  transform: none;
}

/*コンテンツ画像 > 消費者トラブルが増加
l31phyr3uv3vr0z9mdol
--------------------------------------- */
#l31phyr3uv3vr0z9mdol{
  margin: 0;
  padding: 0;
}
#l31phyr3uv3vr0z9mdol .easys_content_inner{
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 950px;
  width: 100%;
}
#l31phyr3uv3vr0z9mdol .easys_content_inner img{
  width: 2000px;
  left: calc(50% - 1000px);
  position: absolute;
  height: 950px;
}


/*DB > これを言われたら危険！ 絶対に騙されない万能チェックシート！
fx2fnpo5vlbxij5va784
--------------------------------------- */
#fx2fnpo5vlbxij5va784 {
  /* 背景画像 */
  background: url(../files/db09_bg.jpg) no-repeat center top;
  height: 1000px;
  position: relative;
}
#fx2fnpo5vlbxij5va784::before {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 150px;
  /* ループさせる画像 */
  background: url(../files/db09_img02.png) repeat-x left top;
  content: "";
  animation: loop_db09_img02 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_db09_img02 {
  to {
    background-position: top left -1180px;
  }
}
#fx2fnpo5vlbxij5va784,
#fx2fnpo5vlbxij5va784 .easys_content_inner,
#fx2fnpo5vlbxij5va784 .entry_post {
  height: 1000px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#fx2fnpo5vlbxij5va784 .easys_content_inner{
  height: 900px;
  width: 940px;
}

#fx2fnpo5vlbxij5va784 .entry_post{
}

#fx2fnpo5vlbxij5va784 .sub_post{
  box-sizing: border-box;
  vertical-align: top;
  position: absolute;
  margin: 0;
  
  transform: translateY(100px);
}
#fx2fnpo5vlbxij5va784 .sub_post_0{
  width: 410px;
  top: 400px;
  height: 340px;
  padding: 40px 45px;
}
#fx2fnpo5vlbxij5va784 .sub_post_1{
  width: 525px;
  right: 0;
  top: 400px;
  height: 185px;
  padding: 30px 55px;
}
#fx2fnpo5vlbxij5va784 .sub_post_2{
  width: 525px;
  right: 0;
  top: 585px;
  height: 155px;
  padding: 25px 55px;
}

#fx2fnpo5vlbxij5va784 .sub_post:nth-of-type(2n){
  margin-left: 2%;
}

#fx2fnpo5vlbxij5va784 .entry_post{
  height: 100%;
}

#fx2fnpo5vlbxij5va784 [class*='entry_title'] {
  background: none;
  margin: 0;
  text-align: left;
  color: #00257a;
  height: auto;
  width: auto;
  line-height: 1.8;
  font-size: 20px;
  padding: 0;
}
#fx2fnpo5vlbxij5va784 .sub_post_2 [class*='entry_title'] {
  font-size: 16px;
  color: inherit;
}
#fx2fnpo5vlbxij5va784 .sub_post_2 [class*='entry_title'] + .sub_post_texts p:first-of-type{
  color: #00257a;
  line-height: 1.8;
  font-size: 20px;
}
#fx2fnpo5vlbxij5va784 [class*='headline_title'] {
  margin: 0;
  width: 569px;
  position: absolute;
  left: calc(50% - 220px);
  text-align: left;
  background: url(/files/db09_img01.png) no-repeat center top;
  height: 136px;
  text-indent: -9999px;
  top: 195px;
  transform: translateY(-100px);
}
#fx2fnpo5vlbxij5va784 .text_box {
  width: 555px;
  position: absolute;
  top: 553px;
  right: 0;
  left: calc(50% - 20px);
  overflow: visible;
}
#fx2fnpo5vlbxij5va784 .post_data{
}

#fx2fnpo5vlbxij5va784 [class*='headline_title'],
#fx2fnpo5vlbxij5va784 .sub_post{
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}
#fx2fnpo5vlbxij5va784 [class*='headline_title'].moved,
#fx2fnpo5vlbxij5va784 .entry_post.moved .sub_post{
  opacity: 1;
  transform: none;
}



/*バナー > 施工の流れ/会社概要(choice)
xa0asu3etlpqa94n5itu
--------------------------------------- */


/* ===========================================================================
     施工の流れ
=========================================================================== */
/*DB > 施工期間
onolex9lhlwra6avhrq0
--------------------------------------- */
#onolex9lhlwra6avhrq0 {
  /* 背景画像 */
  background: url(../files/db10_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}
#onolex9lhlwra6avhrq0,
#onolex9lhlwra6avhrq0 .easys_content_inner,
#onolex9lhlwra6avhrq0 .entry_post {
  height: 1000px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#onolex9lhlwra6avhrq0 .easys_content_inner{
  width: 1280px;
}
#onolex9lhlwra6avhrq0 .easys_content_inner::before {
  position: absolute;
  top: 205px;
  left: 91px;
  display: block;
  width: 496px;
  height: 606px;
  background: url(../files/db10_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(-100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#onolex9lhlwra6avhrq0 .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#onolex9lhlwra6avhrq0 [class*='title'] {
  margin: 0;
  width: 463px;
  position: absolute;
  left: calc(50% + 15px / 2);
  text-align: left;
  background: url(/files/db10_img02.png) no-repeat center top;
  height: 174px;
  text-indent: -9999px;
  top: 285px;
  transform: translateX(100px);
}
#onolex9lhlwra6avhrq0 .text_box {
  width: 475px;
  position: absolute;
  top: 490px;
  right: 0;
  left: calc(50% + 5px);
  overflow: visible;
}
#onolex9lhlwra6avhrq0 .post_data{
  color: #ffffff;
}

#onolex9lhlwra6avhrq0 .easys_content_inner.moved::before,
#onolex9lhlwra6avhrq0 [class*='title'].moved{
  opacity: 1;
  transform: none;
}


/*コンテンツ画像 > 塗装工事の工程
dr12yiiemgcszw6sjhhr
--------------------------------------- */
#dr12yiiemgcszw6sjhhr{
  margin: 0;
  padding: 0;
}
#dr12yiiemgcszw6sjhhr .easys_content_inner{
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 730px;
  width: 100%;
}
#dr12yiiemgcszw6sjhhr .easys_content_inner img{
  width: 2000px;
  left: calc(50% - 1000px);
  position: absolute;
  height: 730px;
}


/*DB > 塗装工事の工程
lxjlkfztxh0ar4s1c67e
--------------------------------------- */
#lxjlkfztxh0ar4s1c67e {
  /* 背景画像 */
  background: url(../files/db11_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
  height: 475px;
}
/* ループ画像 */
#lxjlkfztxh0ar4s1c67e::after {
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 110px;
  background: url(../files/db01_img03.png) repeat-x left top;
  content: "";
  animation: loop_db01_img03 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_db01_img03 {
  to {
    background-position: top left 1010px;
  }
}

#lxjlkfztxh0ar4s1c67e .text_box{
  margin-top: 45px;
  padding: 40px 35px;
  box-sizing: border-box;
}

#lxjlkfztxh0ar4s1c67e .post_data{
  color: #ffffff;
}

/*バナー > 会社概要(※flow)
yg7lkt6bp3xcme8y4rb4
--------------------------------------- */
#yg7lkt6bp3xcme8y4rb4 {
  position: relative;
  box-sizing: border-box;
  height: 500px;
  overflow: hidden;
}
#yg7lkt6bp3xcme8y4rb4 .easys_content_inner::before{
  content: "";
  background: url(../files/bn_company_bg.jpg) repeat center top / cover;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw; /* min()フォールバック用 */
  width: min(2000px, 100vw);
  height: 100vh;
  pointer-events: none;
}
#yg7lkt6bp3xcme8y4rb4 .easys_content_inner {
  padding: 0;
  width: 100%;
  height: 500px;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  overflow: hidden;
}
#yg7lkt6bp3xcme8y4rb4 .eyecatch {
  width: 100%;
}
#yg7lkt6bp3xcme8y4rb4 div {
  margin-bottom: 0;
}
#yg7lkt6bp3xcme8y4rb4 .field_1col {
  left: calc(50% - 1000px);
  position: absolute;
  width: 2000px !important;
}
#yg7lkt6bp3xcme8y4rb4 .field_1col::before {
  background: url(../files/bn_company_top_on.png) no-repeat center top;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s;
  pointer-events: none;
  opacity: 0;
}
#yg7lkt6bp3xcme8y4rb4 .field_1col:hover::before {
  opacity: 1;
}
#yg7lkt6bp3xcme8y4rb4 .eyecatch a img {
  transition: all 0.5s;
  opacity: 1;
}
#yg7lkt6bp3xcme8y4rb4 .field_1col:hover a img {
  opacity: 0;
}


/* ===========================================================================
     求人情報(現場作業)
=========================================================================== */
/*DB > シンプルだから面白い
d6yxc7dopw6ajrfhs952
--------------------------------------- */
#d6yxc7dopw6ajrfhs952 {
  /* 背景画像 */
  background: url(../files/db12_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
  height: 1000px;
}

#d6yxc7dopw6ajrfhs952 .easys_content_inner{
  position: relative;
}

#d6yxc7dopw6ajrfhs952 .text_box{
  position: absolute;
  box-sizing: border-box;
  overflow: visible;
  width: 480px;
  left: calc(50% - 150px);
  top: 540px;
}

#d6yxc7dopw6ajrfhs952 .post_data{
  color: #ffffff;
}


/*DB > 時間を大切に
m6b5mx2h5pxhxv4uf330
--------------------------------------- */
#m6b5mx2h5pxhxv4uf330 {
  /* 背景画像 */
  background: url(../files/db13_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
  height: 900px;
}
#m6b5mx2h5pxhxv4uf330,
#m6b5mx2h5pxhxv4uf330 .easys_content_inner,
#m6b5mx2h5pxhxv4uf330 .entry_post {
  height: 900px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#m6b5mx2h5pxhxv4uf330::before {
  animation: loop_vertical 40s linear 0s infinite;
  background: url(../files/db13_img01.png) repeat left top / contain;
  position: absolute;
  left: calc(50% + 130px);
  z-index: 1;
  display: block;
  width: 370px;
  height: calc(1045px * 2);
  content: "";
  pointer-events: none;
  top: 0;
}

@keyframes loop_vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50%));
  }
}

#m6b5mx2h5pxhxv4uf330 .easys_content_inner{
  position: relative;
  width: 940px;
}

#m6b5mx2h5pxhxv4uf330 .text_box{
  position: absolute;
  box-sizing: border-box;
  overflow: visible;
  width: 520px;
  left: 0;
  top: 440px;
}

#m6b5mx2h5pxhxv4uf330 .post_data{
  color: #ffffff;
}


/*バナー > 会社概要(field-work)
yg7lkt6bp3xcme8y4rb4
--------------------------------------- */


/* ===========================================================================
     求人情報(営業職)
=========================================================================== */
/*DB > 共に成長しよう
kjycjk8a2g2j1ld0y78n
--------------------------------------- */
#kjycjk8a2g2j1ld0y78n {
  /* 背景画像 */
  background: url(../files/db14_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}

#kjycjk8a2g2j1ld0y78n,
#kjycjk8a2g2j1ld0y78n .easys_content_inner,
#kjycjk8a2g2j1ld0y78n .entry_post {
  height: 1000px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#kjycjk8a2g2j1ld0y78n .easys_content_inner{
  width: 960px;
}
#kjycjk8a2g2j1ld0y78n .easys_content_inner::before {
  position: absolute;
  top: 180px;
  left: calc(50% - 150px);
  display: block;
  width: 868px;
  height: 529px;
  background: url(../files/db14_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#kjycjk8a2g2j1ld0y78n .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#kjycjk8a2g2j1ld0y78n [class*='title'] {
  margin: 0;
  width: 414px;
  position: absolute;
  left: 0;
  text-align: left;
  background: url(/files/db14_img02.png) no-repeat center top;
  height: 210px;
  text-indent: -9999px;
  top: 350px;
  transform: translateX(-100px);
}
#kjycjk8a2g2j1ld0y78n .text_box {
  width: 955px;
  position: absolute;
  top: 610px;
  right: 0;
  left: 0;
  overflow: visible;
}
#kjycjk8a2g2j1ld0y78n .post_data{
}

#kjycjk8a2g2j1ld0y78n .easys_content_inner.moved::before,
#kjycjk8a2g2j1ld0y78n [class*='title'].moved{
  opacity: 1;
  transform: none;
}


/*DB > 安心の環境
l6iij3h11tow07jlwtp8
--------------------------------------- */
#l6iij3h11tow07jlwtp8 {
  /* 背景画像 */
  background: url(../files/db15_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}
#l6iij3h11tow07jlwtp8,
#l6iij3h11tow07jlwtp8 .easys_content_inner,
#l6iij3h11tow07jlwtp8 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 920px;
}
#l6iij3h11tow07jlwtp8 .easys_content_inner{
}
#l6iij3h11tow07jlwtp8 .easys_content_inner::before {
  position: absolute;
  top: 240px;
  left: -15px;
  display: block;
  width: 430px;
  height: 486px;
  background: url(../files/db15_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(-100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#l6iij3h11tow07jlwtp8 .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#l6iij3h11tow07jlwtp8 [class*='title'] {
  margin: 0;
  width: 590px;
  position: absolute;
  left: 50%;
  text-align: left;
  background: none;
  height: 155px;
  text-indent: -9999px;
  top: 260px;
  transform: none;
}
#l6iij3h11tow07jlwtp8 .text_box {
  width: 480px;
  position: absolute;
  top: 435px;
  right: 0;
  left: 50%;
  overflow: visible;
}
#l6iij3h11tow07jlwtp8 .post_data{
  color: #ffffff;
}

#l6iij3h11tow07jlwtp8 .easys_content_inner.moved::before,
#l6iij3h11tow07jlwtp8 [class*='title'].moved{
  opacity: 1;
  transform: none;
}

/*バナー > 会社概要(sales-position)
yg7lkt6bp3xcme8y4rb4
--------------------------------------- */


/* ===========================================================================
     会社概要
=========================================================================== */
/*DB > ご挨拶
rhlzpcdfvadcpqpf1lde
--------------------------------------- */
/*DB > ご挨拶
rhlzpcdfvadcpqpf1lde
--------------------------------------- */
#rhlzpcdfvadcpqpf1lde {
  /* 背景画像 */
  background: url(../files/db16_bg.jpg) no-repeat center top;
  position: relative;
  overflow: hidden;
}

#rhlzpcdfvadcpqpf1lde,
#rhlzpcdfvadcpqpf1lde .easys_content_inner,
#rhlzpcdfvadcpqpf1lde .entry_post {
  height: 1330px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
#rhlzpcdfvadcpqpf1lde .easys_content_inner{
  width: 960px;
  height: 100%;
}
#rhlzpcdfvadcpqpf1lde .easys_content_inner::before {
  position: absolute;
  top: 155px;
  left: calc(50% - 165px);
  display: block;
  width: 842px;
  height: 594px;
  background: url(../files/db16_img01.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}
#rhlzpcdfvadcpqpf1lde .easys_content_inner::after {
  position: absolute;
  bottom: 150px;
  left: -95px;
  display: block;
  width: 898px;
  height: 337px;
  background: url(../files/db16_img03.png) no-repeat left top;
  content: "";
  display: block;
  transform: translateY(100px);
  opacity: 0;
  transition: opacity 1.3s, transform 1.3s;
}

#rhlzpcdfvadcpqpf1lde .entry_post{
  width: 960px;
  margin-inline: auto;
  height: 100%;
  display: block;
}

#rhlzpcdfvadcpqpf1lde [class*='title'] {
  margin: 0;
  width: 504px;
  position: absolute;
  left: 5px;
  text-align: left;
  background: url(/files/db16_img02.png) no-repeat center top;
  height: 180px;
  text-indent: -9999px;
  top: 385px;
  transform: translateX(-100px);
}
#rhlzpcdfvadcpqpf1lde .text_box {
  width: 695px;
  position: absolute;
  top: 590px;
  right: 0;
  left: 5px;
  overflow: visible;
}
#rhlzpcdfvadcpqpf1lde .post_data{
}

#rhlzpcdfvadcpqpf1lde .easys_content_inner.moved::before,
#rhlzpcdfvadcpqpf1lde .easys_content_inner.moved::after,
#rhlzpcdfvadcpqpf1lde [class*='title'].moved{
  opacity: 1;
  transform: none;
}


/* 
--------------------------------------- */

/* 
--------------------------------------- */