@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ ★　*/

/* 下記文字列があるものは連動して変更されます！ */
:root {
  --basic_background_color:#ffffff;
  --body_text_color:#001324;
  --link_color:#003e73;
  --border_color:#003e73;
  --table_border_color:#3e8bcc;
  --th_background_color:transparent;
  --td_background_color:transparent;
  --th_character_color:#001324;
  --td_character_color:#001324;
  --required_color:#003e73;
  --top_h1_color:#3e8bcc;
  --header_navigation_color:transparent;
  --top_entry_title_color:#001324;
  --entry_title_bg_color:#ffffff;
  --blog_title_color:#001324;
  --sub_entry_title_bg_color:#001324;
  --entry_title_bg_w570_color:#ffffff;
  --sub_entry_title_bg_w570_color:#001324;
  --half_entry_title_bg_color:#ffffff;
  --half_sub_entry_title_bg_color:#001324;
  --column3_title_bg_color:#ffffff;
  --widget_title_bg_color:#ffffff;
  --widget_list_bg_color:#001324;
  --footnavi_color:#001324;
  --address_color:#ffffff;
  --copy_color:#003e73;
}

/* 書き換えが必要なもの！ ★　*/
:root {
    /* スライダーの高さ(単位なし) */
    --easys_top_main_h: 760;
  
    /* 中ページメイン（ティザー）の高さ(単位なし) */
    --easys_naka_main_h: 520;
  
    /*ナビの高さ（上下ON/OFFの場合は画像の高さ÷２）*/
    --easys_access_h: 60px;
    
    /* プルダウンメニュー＞背景色 */
    --easys_standard_value002: rgba(255, 255, 255, 1);
  
    /* プルダウンメニュー＞文字色 */
    --easys_standard_value003: #001324;
  
    /* プルダウンメニュー＞文字色(ホバー時) */
    --easys_standard_value004: #3e8bcc;
  }

  
/* その他 */
: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 120px/100%;

  /* 特に指定がなければ
  background: none no-repeat center top;*/

  /* フォント Noto Sans指定 */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
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;
  position: relative;
}
#wrapper::before,
#wrapper::after{
  box-sizing: border-box;
  content: "";
  display: block;
  height: 100%;
  margin-inline: auto;
  position: absolute;
  top: 0;
  z-index: 1000;
}
#wrapper::before{
  border-left: var(--border_color) 10px solid;
  left: 0;
}
#wrapper::after{
  border-left: var(--border_color) 10px solid;
  right: 0;
}

#outer_block {
  background: none transparent;
}
#jquery_slider_pc + #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: 120px;
  /*ここでトップページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0;

  /* スライダー画像に重ねる画像がある場合↓
  background: url("/files/branding_box_bg_top.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: 120px;
  background: none transparent;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
/* 中ページサイトタイトル 位置調整必要です　レスポンシブありなしに応じてどちらか選択してください★*/
#site-description {
  position: absolute;
  z-index: 753;
  margin: 0 auto;
  width: auto;

  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: 137px;
  left: calc(130 / var(--easys_max_width) * 100%);

  /* 右寄せのとき */
  /* text-align: right; */
}

/* トップページサイトタイトル 位置調整必要です　★*/
#page_6 #site-description {
  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: 137px;
  left: calc(130 / 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: 180px;
  height: 120px;
  top: 0;
  left: 122px;
  background: url("/files/branding_box_bg.png")no-repeat center top;

  /* 2 レスポンシブあるとき　ロゴ画像レスポンシブ有で設置します
  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: url(../files/branding_box.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(0 / var(--easys_top_main_h) * 100%);
left: calc(0 / var(--easys_max_width) * 100%);
width: calc(300 / var(--easys_max_width) * 100%);
height: calc(150 / 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: absolute;
  top: 33px;
  left: 0;
  z-index: 751;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: var(--easys_access_h);

  /* 上からの位置レスポンシブありのとき */
  /*top: calc(40 / var(--easys_naka_main_h) * 100%); */
}

/* トップページ　上からの位置レスポンシブありのとき　★
#page_6 #access {
  top: calc(40 / var(--easys_top_main_h) * 100%);
  }
*/

div#access .menu-header {
  margin: 0 20px 0 auto;
  /*ナビ画像横幅　↓　★*/
  width: 760px;
  height: var(--easys_access_h);
}

div#access .menu-item a {
  background-image: url('/files/topnavi.png');
  background-repeat: no-repeat;
  background-position: scroll;
  background-color: transparent;
  height: var(--easys_access_h);
  margin: 0px;
  padding: 0px;
}
/*
ナビ一つ目の横幅＝gnabi_1px
ナビ二つ目の横幅＝gnabi_2px　のように当てはめていってください。★

calc()の中で勝手に計算してくれるので記述さえ間違えなければナビの幅が正しくとれます。 */
div#access .gnavi11 a {
  width: 145px;
  background-position-x: left;
}
div#access .gnavi12 a {
  width: 120px;
  background-position-x: calc(-145px);
}
div#access .gnavi13 a {
  width: 115px;
  background-position-x: calc(-145px - 120px);
}
div#access .gnavi14 a {
  width: 90px;
  background-position-x: calc(-145px - 120px - 115px);
}
div#access .gnavi15 a {
  width: 90px;
  background-position-x: calc(-145px - 120px - 115px - 90px);
}
div#access .gnavi16 a {
  width: 200px;
  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, 1);
  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 {
  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: 120px;
  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: 570px;
  background: url(/files/footer_bg.jpg) no-repeat center top;
}

#footer_box {
  height: 600px;
  background: url(/files/footer_box_bg.png) no-repeat center top;
}

#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
/* フッターに記載されナビに当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの場合*/
#footer_sitemap_block {
  position: absolute;
  bottom: 140px;
  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: 280px 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: 25px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
/* 中央以外 */
/*
#copyright {
position: absolute;
bottom: 0px;
left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1001;
}

/* サイドボタンに当たる部分です。
サイズの変更がある場合のみ変更してください　★ */
.fixed_btn div,
.fixed_btn div a {
  width: 50px;
  height: 50px;
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn{
  z-index: 1001;
}
#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: 80px;
  line-height: 80px;
}
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-color: var(--table_border_color);
  border-top: none !important;
  border-right: none !important;
  background: none transparent !important;
}

.easys_content:not(.ne_01) table:not(#wp-calendar) tr>*:first-child {
  border-left: none !important;
}

.easys_content:not(.ne_01) table:not(#wp-calendar) tr:first-child>* {
  border-top: none !important;
}

.easys_content:not(.ne_01) table:not(#wp-calendar) tr:last-child>* {
  border-bottom: none !important;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  vertical-align: top;
  border-color: var(--border_color);
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  background: 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;
}

/*全体フェードイン　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);
} */

/*パララックス除外*/
/* #zg6txb1qdbro0gfddctc .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;
}

/* ===========================================================================
     トップページ
=========================================================================== */
/*セカンドメイン > 消防設備点検
zg6txb1qdbro0gfddctc
--------------------------------------- */
#zg6txb1qdbro0gfddctc {
  position: relative;
}
#zg6txb1qdbro0gfddctc div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#zg6txb1qdbro0gfddctc .easys_content_inner {
  width: 100%;
}
#zg6txb1qdbro0gfddctc [class*="field_"] {
  padding: calc(900 / 2000 * 100%) 0 0;
  background: url(../files/2nd_bg.jpg) no-repeat center top / 100%;
}
/* ボタンの位置とサイズ */
#zg6txb1qdbro0gfddctc .eyecatch {
  position: absolute;

/* 上からの位置 */
  top: calc(484 / 900* 100%);

/* 横からの位置 */
  left: calc(1040 / 2000* 100%);
  display: block;
  width: calc(340 / 2000 * 100%);
}
#zg6txb1qdbro0gfddctc .eyecatch a {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: calc(50 / 340 * 100%);
  height: 0;
}
#zg6txb1qdbro0gfddctc .eyecatch a img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 1s;
}
#zg6txb1qdbro0gfddctc .eyecatch a {
  position: relative;
  
}
#zg6txb1qdbro0gfddctc .eyecatch a::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/2nd_btn_on.png)no-repeat center top/100%;
  content: "";
  opacity: 0;
  transition: opacity 1s;
  transform: translateX(-50%);
  pointer-events: none;
}
#zg6txb1qdbro0gfddctc .eyecatch a:hover::before {
  opacity: 1;
} 
#zg6txb1qdbro0gfddctc .eyecatch a:hover img {
  opacity: 0;
}

.map_pin {
  position: absolute;
  top: calc(572 / 900* 100%);
  right: calc(229 / 900* 100%);
  display: inline-block;
  width: calc(108 / 2000* 100%);
  height: calc(108 / 900* 100%);
  border: none;
  border-radius: 50%;
  background: none transparent;
  transition: 0.3s;
}

.map_pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid #001324;
  border-radius: 50%;
  box-shadow: 0 0 4px 1px rgb(255 255 255 / 25%);
  content: "";
  transform: translate(-50%, -50%);
  animation: plus-loop 2.8s cubic-bezier(0, 0, 0.15, 0.99) 1ms infinite;
}

@keyframes plus-loop {
  0% {
    box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.355);
  }
}

/*DB > その防災設備、ちゃんと動きますか？
tiqy3wibgvjjyq1aka4t
--------------------------------------- */
#tiqy3wibgvjjyq1aka4t {
  position: relative;
  /* 背景画像 */
  background: url(../files/pc_top01_bg.png) no-repeat center top;
}
#tiqy3wibgvjjyq1aka4t,
#tiqy3wibgvjjyq1aka4t .easys_content_inner,
#tiqy3wibgvjjyq1aka4t .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1200px;
}
#tiqy3wibgvjjyq1aka4t [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#tiqy3wibgvjjyq1aka4t .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 705px auto 0 0;
  /* テキストエリアの横幅 */
  width: 480px;
}

/* 下記リンクボタンがある場合 ------------------------------------*/
#tiqy3wibgvjjyq1aka4t .post_data {
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 50px;
}
#tiqy3wibgvjjyq1aka4t .main_btn {
  position: relative;
  display: block;
  padding: 0;
  /* ボタンサイズ */
  width: 340px;
  height: 50px;
}
#tiqy3wibgvjjyq1aka4t .main_btn a {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
#tiqy3wibgvjjyq1aka4t .main_btn a::before,
#tiqy3wibgvjjyq1aka4t .main_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  transition: opacity 1s ease 0s;
  pointer-events: none;
}
#tiqy3wibgvjjyq1aka4t .main_btn a::after {
  opacity: 1;
}
#tiqy3wibgvjjyq1aka4t .main_btn a:hover::before {
  opacity: 1;
}
#tiqy3wibgvjjyq1aka4t .main_btn a:hover::after {
  opacity: 0;
}
#tiqy3wibgvjjyq1aka4t .main_btn a::after {
/* OFF画像 */
  background: url(../files/pc_top01_btn_off.png) no-repeat center top;
}
#tiqy3wibgvjjyq1aka4t .main_btn a::before {
/* ON画像 */
  background: url(../files/pc_top01_btn_on.png) no-repeat center top;
}

/*イメージ画像
ahzlng0gh7gy8xi96gwh
--------------------------------------- */
#ahzlng0gh7gy8xi96gwh {
  position: relative;
}
#ahzlng0gh7gy8xi96gwh .easys_content_inner {
  padding: 0;
  width: 100%;
  height: 600px;

          clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
#ahzlng0gh7gy8xi96gwh .img_display {
  height: 0;
}
#ahzlng0gh7gy8xi96gwh img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}

/*バナー > 求人情報/会社情報(※top)
tmjumdf07ey9mlneigwc
--------------------------------------- */
#tmjumdf07ey9mlneigwc {
  position: relative;
  box-sizing: border-box;
  height:300px;
}
#ahzlng0gh7gy8xi96gwh + #tmjumdf07ey9mlneigwc{
  margin-top: -140px;
}
#tmjumdf07ey9mlneigwc .easys_content_inner {
  padding: 0;
  width: 1300px;
  height: 300px;
  padding-inline: 20px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#tmjumdf07ey9mlneigwc .eyecatch {
  width: 100%;
}
#tmjumdf07ey9mlneigwc div {
  margin-bottom: 0;
}
#tmjumdf07ey9mlneigwc .field_2col {
  /* 背景画像あれば */
  background: url(../files/_half_bnr_bg.png) repeat center top #001324;
  position: relative;
  width: 630px !important;
}
#tmjumdf07ey9mlneigwc .field_2col::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s;
  pointer-events: none;
  opacity: 0;
  left: -100%;
}
#tmjumdf07ey9mlneigwc .field_2col:hover::before {
  opacity: 1;
  left: 0;
}
#tmjumdf07ey9mlneigwc .float_left::before {
  /*左側ON画像*/
  background: url(../files/_half_bnr_on.jpg) no-repeat center top;
}
#tmjumdf07ey9mlneigwc .float_right::before {
  /*右側ON画像*/
  background: url(../files/_half_bnr_on.jpg) no-repeat center top;
}
#tmjumdf07ey9mlneigwc .eyecatch a img {
  opacity: 1;
  position: relative;
  z-index: 1;
}

/*バナー > お問い合わせ(※top)
a2h95vd92k7vjgqe2hir
--------------------------------------- */
#a2h95vd92k7vjgqe2hir {
}
/* イメージ画像とお問い合わせセクションが隣接する時はお問い合わせにマージンを追加 */
#tmjumdf07ey9mlneigwc + #a2h95vd92k7vjgqe2hir{
  margin-top: 70px;
}
#a2h95vd92k7vjgqe2hir .easys_content_inner,
#a2h95vd92k7vjgqe2hir .img_display,
#a2h95vd92k7vjgqe2hir .eyecatch {
  width: 100%;
  padding: 0;
  position: relative;
}
#a2h95vd92k7vjgqe2hir .easys_content_inner {
  width: calc(2000 / 2000 * 100%);
}
#a2h95vd92k7vjgqe2hir .eyecatch a {
  display: block;
}
#a2h95vd92k7vjgqe2hir .eyecatch::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  /* ON画像 */
  background: url(/files/_bnr_contact_on.png)no-repeat center top/100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9;
  transition: all 1s;
  opacity: 0;
}
#a2h95vd92k7vjgqe2hir .eyecatch:hover::before {
  opacity: 1;
  left: 0;
}
#a2h95vd92k7vjgqe2hir .eyecatch::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  /* 背景画像 */
  background: url(/files/_bnr_contact_bg.jpg)no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
#a2h95vd92k7vjgqe2hir .eyecatch a::before{
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: url(/files/_bnr_contact_slide.png)no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: -100%;
  transition: all 1s;
}
#a2h95vd92k7vjgqe2hir .eyecatch:hover a::before{
  left: 0;
}

#a2h95vd92k7vjgqe2hir .margin-bottom_30,
#a2h95vd92k7vjgqe2hir .margin-bottom_50 {
  margin-bottom: 0;
}
#a2h95vd92k7vjgqe2hir .eyecatch a img {
  opacity: 1;
}




/* 
--------------------------------------- */

/* 
--------------------------------------- */