@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #fff;
  --body_text_color: #333;
  --link_color: #087de0;
  --border_color: #666;
  --table_border_color: #4e4e4e;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #333;
  --td_character_color: #333;
  --required_color: #087de0;
  --top_h1_color: #fff;
  --header_navigation_color: url(../files/topnavi_bg.png) no-repeat center center;
  --top_entry_title_color: #087de0;
  --entry_title_bg_color: #fff;
  --blog_title_color: #087de0;
  --sub_entry_title_bg_color: #333;
  --entry_title_bg_w570_color: #333;
  --sub_entry_title_bg_w570_color: #087de0;
  --half_entry_title_bg_color: #333;
  --half_sub_entry_title_bg_color: #333;
  --column3_title_bg_color: #087de0;
  --widget_title_bg_color: #333;
  --widget_list_bg_color: #333;
  --footnavi_color: #000;
  --address_color: #000;
  --copy_color: #5d311d;
  --kdb_background_color: #c8ecfb;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1000;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 700;/* 中ページメインのオリジナル高さ(単位なし) */
  --fixed_side_btn_bottom:150px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side:0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full:240px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_width_collapsed:55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_height:50px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_margin:10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255,255,255,1);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #0863af;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #f6efd4;/* プルダウンメニュー＞文字色(ホバー時) */
  --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: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 60px;  /*初期ナビ高*/
  --easys_fixed_h: 60px;  /*固定ナビ高*/
  --custom_padding: 70px; /*ブロック間余白*/
  --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;
  bottom: calc(90 / var(--easys_naka_main_h) * 100%);
  right: calc(120 / var(--easys_max_width) * 100%);
  width: auto;
  white-space: nowrap;
}
#page_6 #site-description {
  bottom: calc(90 / var(--easys_top_main_h) * 100%);
}
#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 : 250px;
  height: 160px;
  position: absolute;
  top : 0;
  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%;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access {
  --gnavi01: 130px;
  --gnavi02: 110px;
  --gnavi03: 110px;
  --gnavi04: 160px;
  --gnavi05: 110px;
  --gnavi06: 140px;
}
#access {
  /* display: flex;
  justify-content: center; */
  position: absolute;
  top: 72px;
  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 {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  padding-right: 60px;
}
#access .menu-header #menu-gnavi {
  display: flex;
  justify-content: flex-end;
  background: var(--header_navigation_color);
  width: fit-content;
  padding: 0 20px;
}
#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;
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
  z-index: 800;
}


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#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.jpg) no-repeat center top;
  position: relative;
  height: 560px;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 395px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 296px 0 0;
  width: 630px;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 100%;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 73px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item {
  margin-bottom: 0;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  position: absolute;

  width: 100%;
  text-align: center;
  top: 215px;
  left: 0;

  /* width: 480px;
  text-align: left;
  top: 200px;
  left: calc(50% - 480px); */
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  font-size: var(--font_size_15);
  /*絶対値指定する時
  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);
}
/* 中央寄せの時 */
/*
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
*/
/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */

/* スライドしない版 */
/* .fixed_side_btn {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 110px;
}
.fixed_side_btn > div {
  position: relative;
  width: fit-content;
  height: fit-content;
}
.fixed_side_btn a {
  display: block;
  font-size: 0;
  height: 30px;
  overflow: visible !important;
  position: relative !important;
  pointer-events: all;
  text-indent: -99999px;
}
.fixed_side_btn .instagram a { width: 120px;}
.fixed_side_btn .line      a { width: 95px;}
.fixed_side_btn .gaten     a { width: 120px;}
.fixed_side_btn .blog      a { width: 80px;}
.fixed_side_btn .contact   a { width: 110px;}
.fixed_side_btn .map       a { width: 80px;} */


/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
.fixed_side_btn {
  position:fixed;
  bottom:var(--fixed_side_btn_bottom);
  right:var(--fixed_side_btn_side);
  z-index:1000;
  pointer-events:none;
}
.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:transform 0.3s ease;
  transform:translateX(calc(var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)));
  pointer-events:auto;
}
.fixed_side_btn div:last-child {
  margin-bottom:0;
}
.fixed_side_btn div:hover {
  transition:transform 0.5s ease;
  transform:translateX(0px);
}
.fixed_side_btn div a {
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  text-indent:-9999px;
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}

/* デフォルトボタン */
.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 .instagram a {
  background-image:url(../files/btn_insta.png);
}
.fixed_side_btn .facebook a {
  background-image:url(../files/btn_fb.png);
}
.fixed_side_btn .youtube a {
  background-image:url(../files/btn_youtube.png);
}
.fixed_side_btn .tiktok a {
  background-image:url(../files/btn_tiktok.png);
}

/* 個別ボタンの高さ調整 */
/* .fixed_side_btn .gaten {
  height: 150px;
} */

/* 2000幅を超えた時 */
#wrapper {
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}

@media (min-width: 2000px) {
  .fixed_side_btn {
    left:calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width:var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform:translateX(0);
  }

  .fixed_side_btn div:hover {
    transform:translateX(calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1));
  }
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
}
#float_top_btn > a {
  position: absolute;
  right: 20px;
  bottom: 0;
  pointer-events: all;
  width: fit-content;
  height: fit-content;
  display: block;
}
#float_top_btn > a:hover img {
  opacity: 0.8;
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}


/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  padding-top: 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: 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_inner {
  position: relative;
  height: 100%;
}
#outer_block .easys_content_inner {
  top: calc(var(--custom_fade) * 1px);
  opacity: 0;
  transition: all 1.3s ease 0s;
}
#outer_block .easys_content_inner.moved {
  opacity: 1;
  top: 0px;
}
#outer_block .nd_01 .easys_content_inner {
  opacity: 1;
  top: 0px;
}


/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  transition: all 1.3s ease 0s;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* ON画像 */
#xsu8g3mv8h5otm6isa9a [class*="_btn"] a::after,
#c51hy1k2jykjoyqozt2p a::after,
#y1m626gq6x338py4mixf a::after,
#faumtloyng5ozi17czxn a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: var(--custom_transition);
  opacity: 0;
}
#xsu8g3mv8h5otm6isa9a [class*="_btn"] a:hover::after,
#c51hy1k2jykjoyqozt2p a:hover::after,
#y1m626gq6x338py4mixf a:hover::after,
#faumtloyng5ozi17czxn a:hover::after {
  opacity: 1;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#c51hy1k2jykjoyqozt2p,
#g9erlrv1lk1rpouip5yl,
#brftv8qvmidmb0g6f0n1,
#y1m626gq6x338py4mixf,
#faumtloyng5ozi17czxn,
#ajps5tumdh8sj9s52qfm {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#c51hy1k2jykjoyqozt2p div,
#g9erlrv1lk1rpouip5yl div,
#brftv8qvmidmb0g6f0n1 div,
#y1m626gq6x338py4mixf div,
#faumtloyng5ozi17czxn div,
#ajps5tumdh8sj9s52qfm div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#c51hy1k2jykjoyqozt2p img,
#g9erlrv1lk1rpouip5yl img,
#brftv8qvmidmb0g6f0n1 img,
#y1m626gq6x338py4mixf img,
#faumtloyng5ozi17czxn img,
#ajps5tumdh8sj9s52qfm img {
  position: relative;
}
#c51hy1k2jykjoyqozt2p .design_block,
#g9erlrv1lk1rpouip5yl .design_block,
#brftv8qvmidmb0g6f0n1 .design_block,
#y1m626gq6x338py4mixf .design_block,
#faumtloyng5ozi17czxn .design_block,
#ajps5tumdh8sj9s52qfm .design_block {
  opacity: 0;
}
#c51hy1k2jykjoyqozt2p .design_block[class*="block"].moved,
#g9erlrv1lk1rpouip5yl .design_block[class*="block"].moved,
#brftv8qvmidmb0g6f0n1 .design_block[class*="block"].moved,
#y1m626gq6x338py4mixf .design_block[class*="block"].moved,
#faumtloyng5ozi17czxn .design_block[class*="block"].moved,
#ajps5tumdh8sj9s52qfm .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;
}

/* リンク共通 */
#c51hy1k2jykjoyqozt2p a,
#g9erlrv1lk1rpouip5yl a,
#brftv8qvmidmb0g6f0n1 a,
#y1m626gq6x338py4mixf a,
#faumtloyng5ozi17czxn a {
  display: block;
  position: relative;
}
#c51hy1k2jykjoyqozt2p a:hover img,
#g9erlrv1lk1rpouip5yl a:hover img,
#brftv8qvmidmb0g6f0n1 a:hover img,
#y1m626gq6x338py4mixf a:hover img,
#faumtloyng5ozi17czxn a:hover img {
  opacity: 1;
}

/* セカンドメイン */
#c51hy1k2jykjoyqozt2p {
  background: url(../files/secondmain_bg.jpg) no-repeat center top;
  box-sizing: border-box;
  height: 1040px;
  padding-top: 822px;
}
#c51hy1k2jykjoyqozt2p a::after {
  background-image: url(../files/secondmain_btn_on.png);
}
#c51hy1k2jykjoyqozt2p > .design_block.block1 {
  background-image: url(../files/secondmain_ttl.png);
  width: 820px;
  height: 180px;
  top: 144px;
  left: calc(50% - 410px);
}
#c51hy1k2jykjoyqozt2p > .design_block.block1.moved {
  animation: purine01 0.8s linear forwards 0s;
}
@keyframes purine01 {
  0% {
    opacity: 0;
  }
  30%,100% {
    opacity: 1;
  }
  0% {
    transform: translateY(-100px); /* 高いところからスタート（大きく上に） */
  }
  30% {
    transform: translateY(50px); /* ストン！と落ちる（下に落下） */
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-70px); /* 大きく跳ねる（上へ） */
  }
  70% {
    transform: translateY(40px); /* ぐっと沈む（下へ） */
  }
  85% {
    transform: translateY(-20px); /* 小さく跳ねる（上へ） */
  }
  95% {
    transform: translateY(10px); /* 小さく沈む（下へ） */
  }
  100% {
    transform: translateY(0); /* 元の位置に戻る */
  }
}
#c51hy1k2jykjoyqozt2p > .design_block.block2,
#c51hy1k2jykjoyqozt2p > .design_block.block3,
#c51hy1k2jykjoyqozt2p > .design_block.block4,
#c51hy1k2jykjoyqozt2p > .design_block.block5 {
  /* width: 295px; */
  height: 370px;
  top: 340px;
}
#c51hy1k2jykjoyqozt2p > .design_block.block2.moved,
#c51hy1k2jykjoyqozt2p > .design_block.block3.moved,
#c51hy1k2jykjoyqozt2p > .design_block.block4.moved,
#c51hy1k2jykjoyqozt2p > .design_block.block5.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}
@keyframes bounceUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#c51hy1k2jykjoyqozt2p > .design_block.block2 {
  background-image: url(../files/secondmain_img01.png);
  left: calc(50% - 620px);
  animation-delay: .0s;
  width: 330px;
}
#c51hy1k2jykjoyqozt2p > .design_block.block3 {
  background-image: url(../files/secondmain_img02.png);
  left: calc(50% - 283px);
  animation-delay: .2s;
  width: 300px;
}
#c51hy1k2jykjoyqozt2p > .design_block.block4 {
  background-image: url(../files/secondmain_img03.png);
  left: calc(50% + 18px);
  animation-delay: .4s;
  width: 300px;
}
#c51hy1k2jykjoyqozt2p > .design_block.block5 {
  background-image: url(../files/secondmain_img04.png);
  left: calc(50% + 315px);
  animation-delay: .6s;
  width: 320px;
}
#c51hy1k2jykjoyqozt2p > .design_block.block2.moved { animation-delay: .0s;}
#c51hy1k2jykjoyqozt2p > .design_block.block3.moved { animation-delay: .2s;}
#c51hy1k2jykjoyqozt2p > .design_block.block4.moved { animation-delay: .4s;}
#c51hy1k2jykjoyqozt2p > .design_block.block5.moved { animation-delay: .6s;}
#c51hy1k2jykjoyqozt2p > .design_block.block6 {
  background-image: url(../files/secondmain_img05.png);
  width: 680px;
  height: 560px;
  top: 480px;
  left: calc(50% - 1000px);
  transform: translateX(calc(var(--custom_fade) * -1px));
}

/* フルサイズバナー共通 */
#g9erlrv1lk1rpouip5yl,
#brftv8qvmidmb0g6f0n1 {
  background-repeat: no-repeat;
  background-position: center center;
  box-sizing: border-box;
  height: 500px;
  overflow: hidden;
}
#g9erlrv1lk1rpouip5yl div,
#brftv8qvmidmb0g6f0n1 div {
  overflow: visible !important;
}
#g9erlrv1lk1rpouip5yl a:hover img,
#brftv8qvmidmb0g6f0n1 a:hover img {
  animation: bounce 1s ease-in-out 1;
}
@keyframes bounce {
  16.65% {
    transform: translateY(16px);
  }
  33.3% {
    transform: translateY(-12px);
  }
  49.95% {
    transform: translateY(8px);
  }
  66.6% {
    transform: translateY(-4px);
  }
  83.25% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* お問い合わせ */
#g9erlrv1lk1rpouip5yl {
  background-image: url(../files/bnr_contact_bg.png);
  padding-top: 103px;
}

/* GATEN職 */
#brftv8qvmidmb0g6f0n1 {
  background-image: url(../files/bnr_gaten_bg.png);
  padding-top: 76px;
}

/* ハーフサイズバナー共通 */
#y1m626gq6x338py4mixf,
#faumtloyng5ozi17czxn {
  background: url(../files/bnrhalf01_bg.png) no-repeat center center;
  box-sizing: border-box;
  height: 500px;
  padding-top: 160px;
}
#y1m626gq6x338py4mixf::after,
#faumtloyng5ozi17czxn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
}
#y1m626gq6x338py4mixf [class*="field_"],
#faumtloyng5ozi17czxn [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#y1m626gq6x338py4mixf .eyecatch,
#faumtloyng5ozi17czxn .eyecatch {
  width: 100% !important;
}
#y1m626gq6x338py4mixf .eyecatch img,
#faumtloyng5ozi17czxn .eyecatch img {
  width: auto;
}

/* GATEN職/中村工業の魅力 */
#y1m626gq6x338py4mixf::after {
  background-image: url(../files/bnrhalf01_img.png);
}
#y1m626gq6x338py4mixf [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf01_gaten_on.png);
}
#y1m626gq6x338py4mixf [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf01_charm_on.png);
}

/* お問い合わせ/会社概要 */
#faumtloyng5ozi17czxn::after {
  background-image: url(../files/bnrhalf02_img.png);
}
#faumtloyng5ozi17czxn [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf02_contact_on.png);
}
#faumtloyng5ozi17czxn [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf02_company_on.png);
}

/* 画像＞イメージ */
#ajps5tumdh8sj9s52qfm .easys_content_inner {
  overflow: hidden;
  width: 100%;
  height: 500px;
}
#ajps5tumdh8sj9s52qfm [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;
}
#ajps5tumdh8sj9s52qfm [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;
}
#ajps5tumdh8sj9s52qfm [class*="field_"]:nth-of-type(2) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--easys_max_width) * 1px);
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 解体工事の中村工業 */
#xsu8g3mv8h5otm6isa9a {
  background: url(../files/design_bg.png) no-repeat center top;
  height: 1000px;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#xsu8g3mv8h5otm6isa9a .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#xsu8g3mv8h5otm6isa9a .post_margin {
  margin: 0;
}
#xsu8g3mv8h5otm6isa9a .entry_post {
  box-sizing: border-box;
  padding: 510px 0 0 480px;
}
#xsu8g3mv8h5otm6isa9a .entry_post > [class*="title"] {
  display: none;
}
#xsu8g3mv8h5otm6isa9a .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  /* margin: 0; */
  margin: calc(var(--custom_fade) * 1px) 0 0;
  opacity: 0;
  transition: all 1.3s ease 0s;
}
#xsu8g3mv8h5otm6isa9a .text_box.moved {
  margin-top: 0px;
  opacity: 1;
}
#xsu8g3mv8h5otm6isa9a .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
_::-webkit-full-page-media, _:future, :root #xsu8g3mv8h5otm6isa9a .post_data p {
  line-height: 2;
  letter-spacing: -1px;
}
#xsu8g3mv8h5otm6isa9a .design_block {
  opacity: 0;
}
#xsu8g3mv8h5otm6isa9a .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;
}

/* 共通ボタン-ブロック内リンク */
#xsu8g3mv8h5otm6isa9a [class*="_btn"] {
  margin: 50px 0 0 auto;
  padding: 0;
  width: fit-content;
  height: fit-content;
}
#xsu8g3mv8h5otm6isa9a [class*="_btn"] a {
  background: url(../files/design_btn_off.png) no-repeat center top;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 298px;
  height: 60px;
}
#xsu8g3mv8h5otm6isa9a [class*="_btn"] a::after {
  background: url(../files/design_btn_on.png) no-repeat center top;
}

#xsu8g3mv8h5otm6isa9a > .design_block.block1 {
  background-image: url(../files/design_ttl.png);
  width: 650px;
  height: 310px;
  top: 325px;
  left: calc(50% - 170px);
}
#xsu8g3mv8h5otm6isa9a > .design_block.block1.moved {
  animation: purine01 0.8s linear forwards 0s;
}
#xsu8g3mv8h5otm6isa9a > .design_block.block2 {
  background-image: url(../files/design_img01.png);
  width: 300px;
  height: 300px;
  top: 608px;
  left: calc(50% - 620px);
}
#xsu8g3mv8h5otm6isa9a > .design_block.block2.moved {
  animation: bounceInUp 1.0s ease 0s forwards normal;
}

@keyframes bounceInUp{
  0%,
  60%,
  75%,
  90%,
  100%{
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }
  0%{
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60%{
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(.9);
  }
  75%{
    transform: translate3d(0, 10px, 0) scaleY(.95);
  }
  90%{
    transform: translate3d(0, -5px, 0) scaleY(.985);
  }
  100%{
    transform: translateZ(0);
  }
}
