@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #fff;
  --body_text_color: #000;
  --link_color: #1b621c;
  --border_color: #666;
  --table_border_color: none;
  --th_background_color: #9dc554;
  --td_background_color: #9dc554;
  --th_character_color: #000;
  --td_character_color: #000;
  --required_color: #1b621c;
  --top_h1_color: #fff;
  --header_navigation_color: rgba(255,255,255,0.8);
  --top_entry_title_color: #000;
  --entry_title_bg_color: #fff;
  --blog_title_color: #010101;
  --sub_entry_title_bg_color: #010101;
  --entry_title_bg_w570_color: #010101;
  --sub_entry_title_bg_w570_color: #010101;
  --half_entry_title_bg_color: #fff;
  --half_sub_entry_title_bg_color: #83b032;
  --column3_title_bg_color: #000;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #000;
  --footnavi_color: #000;
  --address_color: #000;
  --copy_color: #fff;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1000;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 700;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001: #fff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255,255,255,0.75);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #333;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #666;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #fff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #fff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #fff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #fff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000;/* ブログ＞ページング＞線色 */
}
/* 個人追加 */
:root {
  --header_h: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 55px;  /*初期ナビ高*/
  --easys_fixed_h: 0px;  /*固定ナビ高*/
  --custom_padding: 150px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}


/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  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;
}

/* ※最初のブロックが背景ありになった場合の余白処理はfooter_common.jsに記述しています */
#outer_block {
  background: none transparent;
}


#main {
  display: flow-root;
  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: 35px;
  left: 60px;
  width: auto;
  white-space: nowrap;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/main_logo.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  width : 450px;
  height: 100px;
  position: absolute;
  top : 35px;
  left: 60px;
  background: url(../files/main_logo.png) no-repeat no-repeat left top;
  pointer-events: none;
  z-index: 700;
}
#header_information .main_header a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
#header_information .main_header a img {
  width: 100%;
  height: 100%;
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
:root {
  --gnavi01: 100px;
  --gnavi02: 100px;
  --gnavi03: 100px;
  --gnavi04: 100px;
  --gnavi05: 100px;
  --gnavi06: 100px;
}
#access {
  display: none;
  position: absolute;
  top: 0;
  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%;
}
div#access .menu-header #menu-gnavi { display: inline-block;}

div#access .menu-item a {
  background: url(../files/topnavi.png) no-repeat left top;
  height: var(--easys_navi_h) !important;
  line-height: var(--easys_navi_h) !important;
  padding: 0;
}
div#access .gnavi11 a { width: var(--gnavi01) !important;}
div#access .gnavi12 a { width: var(--gnavi02) !important;}
div#access .gnavi13 a { width: var(--gnavi03) !important;}
div#access .gnavi14 a { width: var(--gnavi04) !important;}
div#access .gnavi15 a { width: var(--gnavi05) !important;}
div#access .gnavi16 a { width: var(--gnavi06) !important;}
div#access .gnavi11 a { background-position-x: left;}
div#access .gnavi12 a {
  background-position-x: calc(var(--gnavi01) * -1);}
div#access .gnavi13 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);}
div#access .gnavi14 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);}
div#access .gnavi15 a {
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);}
div#access .gnavi16 a {background-position-x: right;}
div#access .menu-item a:hover { background-position-y: bottom;}

/* プルダウンメニューのサイズ */
#access ul li:hover > ul {
  display: flex;
}
#access ul.menu ul.sub-menu {
  flex-direction: column;
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  min-width: 100%;
  width: auto;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  background: none var(--easys_standard_value002);
  box-sizing: border-box;
  color: var(--easys_standard_value003);
  padding: 15px 10px;
  line-height: 1.2em !important;
  text-align: left;
  white-space: nowrap;
  width: 100% !important;
  height: auto !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);
}

/* 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;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
} */


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: calc(var(--header_h) * 1px);
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 99;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}
#video_teaser,
#jquery_slider_pc .viewer {
  height: var(--easys_main_h) !important;
}


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  padding: 0;
  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 {
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 5px;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  background: none transparent;
  border-color: var(--border_color);
  border-style: dotted;
  border-width: 0 0 1px;
  line-height: 2;
  padding: 5px;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: var(--link_color);
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: var(--easys_standard_value005);
}


/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  background: url(../files/footer_bg.png) no-repeat center top;
  height: 600px;
  position: relative;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 407px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 15px 0 0;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: none;
  width: 100%;
}
#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_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  box-sizing: border-box;
  margin: 0;
  padding-top: 30px;
  position: absolute;
  text-align: left;

  /* width: 100%;
  text-align: center;
  top: 200px;
  left: 0; */
  
  width: 410px;
  height: 175px;
  top: 212px;
  left: calc(50% + 70px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}
#footer_sns_btn .footer_sns_inner,
#footer_sns_btn div {
  width: fit-content;
  height: auto;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}



/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  top: 70px;
  bottom: initial;
  z-index: 1000;
}
.fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
}
/* .fixed_btn div#fixed_btn_gtn {
  height: 150px !important;
} */

/* デフォルト動作 */
.fixed_btn {
  display: flex;
  justify-content: flex-end;
  /* flex-direction: column; */
  align-items: flex-end;
  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: 85px;
}
.fixed_btn div a {
  pointer-events: all;
  overflow: visible !important;
}

.fixed_btn > div {
  position: relative;
}
.fixed_btn > div + div {
  margin-left: 10px;
}

#fixed_btn_official a::after {
  background-image: url(../files/btn_official_on.png);
}
#fixed_btn_gtn a::after {
  background-image: url(../files/btn_gaten_on.png);
}
#fixed_btn_contact a::after {
  background-image: url(../files/btn_contact_on.png);
}

.fixed_btn div,.fixed_btn div a,.fixed_btn div a:hover {
  width: auto !important;
  height: auto !important;
}
.fixed_btn div {
  margin-bottom: 0;
}
.fixed_btn div a {
  position: relative !important;
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#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);
  height: 140px;
  line-height: 140px;
  padding-top: 60px;
}
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,
* .sub_entry_title h4,
* .sub_entry_title h4 a {
  フォントサイズはこちら
} */
* .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 {
  background: none var(--th_background_color);
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  color: var(--th_character_color);
  font-size: 15px;
  height: auto;
  line-height: 1.7;
  padding: 10px;
  text-align: left;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}

/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  color: var(--link_color) !important;
  padding: 5px 0;
  text-align: center !important;
  width: 100%;
}

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: solid 1px var(--table_bordear_color);
  border-right: none;
  border-left: none;
  background: none var(--td_background_color);
  color: var(--td_character_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) { border-collapse: separate; border-spacing : 0 10px !important;}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  background-color: var(--th_background_color);
  border-left: solid 1px var(--table_border_color) !important;
  color: var(--th_character_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:last-child {
  border-right: solid 1px var(--table_border_color) !important;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}
/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}


/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  background: none transparent;
  border-style: solid;
  border-color: var(--link_color);
  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 {
  background: none transparent;
  border: 1px solid var(--easys_standard_value007);
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  background-color: var(--link_color);
  border-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 {
  background: none var(--link_color);
  border-color: var(--link_color);
  border-style: solid;
  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 {
  background-color: transparent;
  border: 1px solid var(--link_color);
  color: var(--link_color);
}
div.link_list a:hover {
  background-color: var(--link_color);
  border: 1px solid var(--link_color);
  color: #fff;
}

.faq-title {
  background-color: var(--link_color);
  color: #fff;
  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 {
  background-color: var(--th_background_color);
  color: var(--th_character_color);
  width: 8em;
}
.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 {
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  height: auto;
  line-height: 1.5;
  padding: 15px 20px 15px 20px;
}
#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"] {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
}


/* ============================== ↓↓各ブロックの個別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;}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */
/* ※GSAPで実装済 */
.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画像 */
#h22ou8k8fxbvnhnsaclh a::after,
#yh6gpiawj98wtgqx507c a::after,
#v10lug5l1a5f7l7jhu6y a::after,
.fixed_btn div 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;
}
#h22ou8k8fxbvnhnsaclh a:hover::after,
#yh6gpiawj98wtgqx507c a:hover::after,
#v10lug5l1a5f7l7jhu6y a:hover::after,
.fixed_btn div a:hover::after {
  opacity: 1;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#inoavwqates6idlsf419,
#h22ou8k8fxbvnhnsaclh,
#yh6gpiawj98wtgqx507c,
#iscag3vmul2hmd05kr4l,
#suv3xr54n1tsos61pvmk,
#esv06v9axeun7jm2l790,
#v10lug5l1a5f7l7jhu6y,
#gziczsz3g7q9pfgmn37m,
#hodqpuf3y33ralkjepoq {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#inoavwqates6idlsf419 div,
#h22ou8k8fxbvnhnsaclh div,
#yh6gpiawj98wtgqx507c div,
#iscag3vmul2hmd05kr4l div,
#suv3xr54n1tsos61pvmk div,
#esv06v9axeun7jm2l790 div,
#v10lug5l1a5f7l7jhu6y div,
#gziczsz3g7q9pfgmn37m div,
#hodqpuf3y33ralkjepoq div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#inoavwqates6idlsf419 img,
#h22ou8k8fxbvnhnsaclh img,
#yh6gpiawj98wtgqx507c img,
#iscag3vmul2hmd05kr4l img,
#suv3xr54n1tsos61pvmk img,
#esv06v9axeun7jm2l790 img,
#v10lug5l1a5f7l7jhu6y img,
#gziczsz3g7q9pfgmn37m img,
#hodqpuf3y33ralkjepoq img {
  position: relative;
}
#inoavwqates6idlsf419 .design_block,
#h22ou8k8fxbvnhnsaclh .design_block,
#yh6gpiawj98wtgqx507c .design_block,
#iscag3vmul2hmd05kr4l .design_block,
#suv3xr54n1tsos61pvmk .design_block,
#esv06v9axeun7jm2l790 .design_block,
#v10lug5l1a5f7l7jhu6y .design_block,
#gziczsz3g7q9pfgmn37m .design_block,
#hodqpuf3y33ralkjepoq .design_block {
  opacity: 0;
}
#inoavwqates6idlsf419 .design_block[class*="block"].moved,
#h22ou8k8fxbvnhnsaclh .design_block[class*="block"].moved,
#yh6gpiawj98wtgqx507c .design_block[class*="block"].moved,
#iscag3vmul2hmd05kr4l .design_block[class*="block"].moved,
#suv3xr54n1tsos61pvmk .design_block[class*="block"].moved,
#esv06v9axeun7jm2l790 .design_block[class*="block"].moved,
#v10lug5l1a5f7l7jhu6y .design_block[class*="block"].moved,
#gziczsz3g7q9pfgmn37m .design_block[class*="block"].moved,
#hodqpuf3y33ralkjepoq .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;
}

/* リンク共通 */
#inoavwqates6idlsf419 a,
#h22ou8k8fxbvnhnsaclh a,
#yh6gpiawj98wtgqx507c a,
#iscag3vmul2hmd05kr4l a,
#suv3xr54n1tsos61pvmk a,
#esv06v9axeun7jm2l790 a,
#v10lug5l1a5f7l7jhu6y a,
#gziczsz3g7q9pfgmn37m a,
#hodqpuf3y33ralkjepoq a {
  display: block;
  position: relative;
}
#inoavwqates6idlsf419 a:hover img,
#h22ou8k8fxbvnhnsaclh a:hover img,
#yh6gpiawj98wtgqx507c a:hover img,
#iscag3vmul2hmd05kr4l a:hover img,
#suv3xr54n1tsos61pvmk a:hover img,
#esv06v9axeun7jm2l790 a:hover img,
#v10lug5l1a5f7l7jhu6y a:hover img,
#gziczsz3g7q9pfgmn37m a:hover img,
#hodqpuf3y33ralkjepoq a:hover img {
  opacity: 1;
}

/* バナー＞公式ホームページ */
#inoavwqates6idlsf419 .easys_content_inner {
  background: url(../files/bnr_official_bg.jpg) no-repeat center center / 100%;
  width: 100%;
}
#inoavwqates6idlsf419 a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(131, 176, 50, 0.8);
  transition: var(--custom_transition);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#inoavwqates6idlsf419 a:hover::before {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}

/* バナー＞Instagram/TikTok */
:root {
  --bnrSNS_h: 600;
}
#h22ou8k8fxbvnhnsaclh,
#yh6gpiawj98wtgqx507c {
  background: url(../files/bnrhalf01_bg.jpg) no-repeat center center / cover;
}
#h22ou8k8fxbvnhnsaclh::after,
#yh6gpiawj98wtgqx507c::after {
  content: "";
  position: absolute;
  width: calc(200 / var(--easys_max_width) * 100%);
  height: calc(200 / var(--bnrSNS_h) * 100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  background: url(../files/bnrhalf01_anime.png) no-repeat center center / 100%;
}
#h22ou8k8fxbvnhnsaclh .easys_content_inner,
#yh6gpiawj98wtgqx507c .easys_content_inner {
  padding: calc(200 / var(--easys_max_width) * 100%) 0;
  width: calc(1200 / var(--easys_max_width) * 100%);
}
#h22ou8k8fxbvnhnsaclh [class*="field_"],
#yh6gpiawj98wtgqx507c [class*="field_"] {
  height: 100%;
  margin: 0;
  position: relative;
  width: calc(600 / 1200 * 100%) !important;
}
#h22ou8k8fxbvnhnsaclh .eyecatch,
#yh6gpiawj98wtgqx507c .eyecatch {
  width: 100%;
}
#h22ou8k8fxbvnhnsaclh [class*="field_"]:nth-of-type(1) a::after,
#yh6gpiawj98wtgqx507c [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf01_insta_on.png);
}
#h22ou8k8fxbvnhnsaclh [class*="field_"]:nth-of-type(2) a::after,
#yh6gpiawj98wtgqx507c [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf01_tiktok_on.png);
}
#h22ou8k8fxbvnhnsaclh > .design_block,
#yh6gpiawj98wtgqx507c > .design_block {
  width: 100%;
  height: calc(200 / var(--bnrSNS_h) * 100%);
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#h22ou8k8fxbvnhnsaclh > .design_block::before,
#yh6gpiawj98wtgqx507c > .design_block::before {
  content: "";
  width: calc(2000 / var(--easys_max_width) * 400%);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/bnrhalf01_img01.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#h22ou8k8fxbvnhnsaclh > .design_block.block1,
#yh6gpiawj98wtgqx507c > .design_block.block1 {
  top: calc(117 / var(--bnrSNS_h) * 100%);
}
#h22ou8k8fxbvnhnsaclh > .design_block.block2,
#yh6gpiawj98wtgqx507c > .design_block.block2 {
  bottom: calc(117 / var(--bnrSNS_h) * 100%);
}
#h22ou8k8fxbvnhnsaclh > .design_block.block2::before,
#yh6gpiawj98wtgqx507c > .design_block.block2::before {
  animation-direction: reverse;
}
/* ＞デザブロ内にいれた場合 */
#moiuxsj5ljja7duap3lj #h22ou8k8fxbvnhnsaclh,
#moiuxsj5ljja7duap3lj #yh6gpiawj98wtgqx507c {
  background: none transparent;
  overflow: visible;
}
#moiuxsj5ljja7duap3lj #h22ou8k8fxbvnhnsaclh::after,
#moiuxsj5ljja7duap3lj #yh6gpiawj98wtgqx507c::after {
  height: calc(200 / 200 * 100%);
}
#moiuxsj5ljja7duap3lj #h22ou8k8fxbvnhnsaclh .easys_content_inner,
#moiuxsj5ljja7duap3lj #yh6gpiawj98wtgqx507c .easys_content_inner {
  padding: 0;
}
#moiuxsj5ljja7duap3lj #h22ou8k8fxbvnhnsaclh > .design_block,
#moiuxsj5ljja7duap3lj #yh6gpiawj98wtgqx507c > .design_block {
  display: none !important;
}

/* バナー＞お問い合わせ/GATEN職 */
#iscag3vmul2hmd05kr4l,
#suv3xr54n1tsos61pvmk,
#esv06v9axeun7jm2l790 {
  background: url(../files/bnrhalf02_bg.jpg) no-repeat center center / cover;
  overflow: hidden;
}
#iscag3vmul2hmd05kr4l *,
#suv3xr54n1tsos61pvmk *,
#esv06v9axeun7jm2l790 * {
  position: static !important;
}
#iscag3vmul2hmd05kr4l .easys_content_inner,
#suv3xr54n1tsos61pvmk .easys_content_inner,
#esv06v9axeun7jm2l790 .easys_content_inner {
  padding: calc(150 / var(--easys_max_width) * 100%) 0;
  width: calc(1000 / var(--easys_max_width) * 100%);
}
#iscag3vmul2hmd05kr4l [class*="field_"],
#suv3xr54n1tsos61pvmk [class*="field_"],
#esv06v9axeun7jm2l790 [class*="field_"] {
  height: 100%;
  margin: 0;
  width: calc(500 / 1000 * 100%) !important;
}
#iscag3vmul2hmd05kr4l .eyecatch,
#suv3xr54n1tsos61pvmk .eyecatch,
#esv06v9axeun7jm2l790 .eyecatch {
  width: 100%;
}
#iscag3vmul2hmd05kr4l a img,
#suv3xr54n1tsos61pvmk a img,
#esv06v9axeun7jm2l790 a img {
  position: relative !important;
  z-index: 10;
}
#iscag3vmul2hmd05kr4l a::before,
#suv3xr54n1tsos61pvmk a::before,
#esv06v9axeun7jm2l790 a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: transform 5s,opacity 0.5s;
  /* 画像スムージングを有効化 */
  image-rendering: auto;
  /* image-rendering: smooth; */
  /* transform使用時はアンチエイリアスを効かせる */
  transform: translateZ(0);
  backface-visibility: hidden;
}
#iscag3vmul2hmd05kr4l a:hover::before,
#suv3xr54n1tsos61pvmk a:hover::before,
#esv06v9axeun7jm2l790 a:hover::before {
  will-change: transform;
  opacity: 1;
  transform: scale(1.1) translate3d(0, 0, 0);
}
#iscag3vmul2hmd05kr4l [class*="field_"]:nth-of-type(1) a::before,
#suv3xr54n1tsos61pvmk [class*="field_"]:nth-of-type(1) a::before,
#esv06v9axeun7jm2l790 [class*="field_"]:nth-of-type(1) a::before {
  background-image: url(../files/bnrhalf02_contact_bg.jpg);
}
#iscag3vmul2hmd05kr4l [class*="field_"]:nth-of-type(2) a::before,
#suv3xr54n1tsos61pvmk [class*="field_"]:nth-of-type(2) a::before,
#esv06v9axeun7jm2l790 [class*="field_"]:nth-of-type(2) a::before {
  background-image: url(../files/bnrhalf02_gaten_bg.jpg);
}

/* バナー＞キャリアチェンジ/アルバイトから/仲がいい/女性活躍中 */
:root {
  --bnr4_h: 1000;
}
#v10lug5l1a5f7l7jhu6y {
  background: url(../files/bnrmany_bg.jpg) no-repeat center center / cover;
  padding-top: calc(415 / var(--easys_max_width) * 100%);
  padding-bottom: calc(235 / var(--easys_max_width) * 100%);
  overflow: hidden;
}
#v10lug5l1a5f7l7jhu6y div {
  overflow: visible !important;
}
#v10lug5l1a5f7l7jhu6y .easys_content_inner {
  width: calc(1560 / var(--easys_max_width) * 100%);
}
#v10lug5l1a5f7l7jhu6y [class*="field_"] {
  height: 100%;
  margin: 0;
  position: relative;
  width: calc(390 / 1560 * 100%) !important;
  opacity: 0;
  transition: all 1.3s ease 0s;
  transform: translateY(calc(var(--custom_fade) * 1px));
}
#v10lug5l1a5f7l7jhu6y .img_display.moved [class*="field_"] {
  opacity: 1;
  transform: translateY(0);
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(2) {
  transition-delay: .3s;
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(3) {
  transition-delay: .6s;
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(4) {
  transition-delay: .9s;
}
#v10lug5l1a5f7l7jhu6y .eyecatch {
  width: 100%;
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrmany01_on.png);
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrmany02_on.png);
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(3) a::after {
  background-image: url(../files/bnrmany03_on.png);
}
#v10lug5l1a5f7l7jhu6y [class*="field_"]:nth-of-type(4) a::after {
  background-image: url(../files/bnrmany04_on.png);
}
#v10lug5l1a5f7l7jhu6y > .design_block.block1 {
  background-image: url(../files/bnrmany_ttl.png);
  background-size: 100%;
  width: calc(900 / var(--easys_max_width) * 100%);
  height: calc(220 / var(--bnr4_h) * 100%);
  top: calc(190 / var(--bnr4_h) * 100%);
  left: calc(550 / var(--easys_max_width) * 100%);
  transform: scale(2);
}

/* 画像イメージ共通 */
#gziczsz3g7q9pfgmn37m .easys_content_inner,
#hodqpuf3y33ralkjepoq .easys_content_inner {
  overflow: hidden;
  width: 100%;
}
#gziczsz3g7q9pfgmn37m [class*="field_"]:nth-of-type(1),
#hodqpuf3y33ralkjepoq [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;
}
#gziczsz3g7q9pfgmn37m [class*="field_"]:nth-of-type(1) img,
#hodqpuf3y33ralkjepoq [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;
}
#gziczsz3g7q9pfgmn37m [class*="field_"]:nth-of-type(2),
#hodqpuf3y33ralkjepoq [class*="field_"]:nth-of-type(2) {
  position: relative;
}

/* 画像＞イメージ01 */
#gziczsz3g7q9pfgmn37m {}

/* 画像＞イメージ02 */
#hodqpuf3y33ralkjepoq .easys_content_inner {
  padding: calc(700 / var(--easys_max_width) * 100%) 0 0;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#ydgm3u53e7rucz25y4tt,
#ito7nj12pp2d64px5jxr,
#w5o2590as1s2plm3hepm,
#ggbr68s2kchhx5x9i6h9,
#lm830z60prtg5pc8mh94,
#q871v4o20mcztgnkbtbx,
#moiuxsj5ljja7duap3lj,
#p75kll7wdak406yyb0ma {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#ydgm3u53e7rucz25y4tt .easys_content_inner,
#ito7nj12pp2d64px5jxr .easys_content_inner,
#w5o2590as1s2plm3hepm .easys_content_inner,
#ggbr68s2kchhx5x9i6h9 .easys_content_inner,
#lm830z60prtg5pc8mh94 .easys_content_inner,
#q871v4o20mcztgnkbtbx .easys_content_inner,
#moiuxsj5ljja7duap3lj .easys_content_inner,
#p75kll7wdak406yyb0ma .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#ydgm3u53e7rucz25y4tt .post_margin,
#ito7nj12pp2d64px5jxr .post_margin,
#w5o2590as1s2plm3hepm .post_margin,
#ggbr68s2kchhx5x9i6h9 .post_margin,
#lm830z60prtg5pc8mh94 .post_margin,
#q871v4o20mcztgnkbtbx .post_margin,
#moiuxsj5ljja7duap3lj .post_margin,
#p75kll7wdak406yyb0ma .post_margin {
  margin: 0;
}
#ydgm3u53e7rucz25y4tt .entry_post,
#ito7nj12pp2d64px5jxr .entry_post,
#w5o2590as1s2plm3hepm .entry_post,
#ggbr68s2kchhx5x9i6h9 .entry_post,
#lm830z60prtg5pc8mh94 .entry_post,
#q871v4o20mcztgnkbtbx .entry_post,
#moiuxsj5ljja7duap3lj .entry_post,
#p75kll7wdak406yyb0ma .entry_post {
  box-sizing: border-box;
}
#ydgm3u53e7rucz25y4tt .entry_post > [class*="title"],
#ito7nj12pp2d64px5jxr .entry_post > [class*="title"],
#w5o2590as1s2plm3hepm .entry_post > [class*="title"],
#ggbr68s2kchhx5x9i6h9 .entry_post > [class*="title"],
#lm830z60prtg5pc8mh94 .entry_post > [class*="title"],
#q871v4o20mcztgnkbtbx .entry_post > [class*="title"],
#moiuxsj5ljja7duap3lj .entry_post > [class*="title"],
#p75kll7wdak406yyb0ma .entry_post > [class*="title"] {
  display: none;
}
#ydgm3u53e7rucz25y4tt .text_box,
#ito7nj12pp2d64px5jxr .text_box,
#w5o2590as1s2plm3hepm .text_box,
#ggbr68s2kchhx5x9i6h9 .text_box,
#lm830z60prtg5pc8mh94 .text_box,
#q871v4o20mcztgnkbtbx .text_box,
#moiuxsj5ljja7duap3lj .text_box,
#p75kll7wdak406yyb0ma .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  margin: 0;
}
#ydgm3u53e7rucz25y4tt .post_data,
#ito7nj12pp2d64px5jxr .post_data,
#w5o2590as1s2plm3hepm .post_data,
#ggbr68s2kchhx5x9i6h9 .post_data,
#lm830z60prtg5pc8mh94 .post_data,
#q871v4o20mcztgnkbtbx .post_data,
#moiuxsj5ljja7duap3lj .post_data,
#p75kll7wdak406yyb0ma .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
#ydgm3u53e7rucz25y4tt .post_data p,
#ito7nj12pp2d64px5jxr .post_data p,
#w5o2590as1s2plm3hepm .post_data p,
#ggbr68s2kchhx5x9i6h9 .post_data p,
#lm830z60prtg5pc8mh94 .post_data p,
#q871v4o20mcztgnkbtbx .post_data p,
#moiuxsj5ljja7duap3lj .post_data p,
#p75kll7wdak406yyb0ma .post_data p {
  line-height: 2;
}
#ydgm3u53e7rucz25y4tt .design_block,
#ito7nj12pp2d64px5jxr .design_block,
#w5o2590as1s2plm3hepm .design_block,
#ggbr68s2kchhx5x9i6h9 .design_block,
#lm830z60prtg5pc8mh94 .design_block,
#q871v4o20mcztgnkbtbx .design_block,
#moiuxsj5ljja7duap3lj .design_block,
#p75kll7wdak406yyb0ma .design_block {
  opacity: 0;
}
#ydgm3u53e7rucz25y4tt .design_block[class*="block"].moved,
#ito7nj12pp2d64px5jxr .design_block[class*="block"].moved,
#w5o2590as1s2plm3hepm .design_block[class*="block"].moved,
#ggbr68s2kchhx5x9i6h9 .design_block[class*="block"].moved,
#lm830z60prtg5pc8mh94 .design_block[class*="block"].moved,
#q871v4o20mcztgnkbtbx .design_block[class*="block"].moved,
#moiuxsj5ljja7duap3lj .design_block[class*="block"].moved,
#p75kll7wdak406yyb0ma .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;
}

/* DB＞わたしたちにしか出来ない仕事を */
#ydgm3u53e7rucz25y4tt {
  height: 1650px;
}
#ydgm3u53e7rucz25y4tt .entry_post {
  padding: 910px 70px 0;
}
#ydgm3u53e7rucz25y4tt .post_data {
  text-align: center;
}
#ydgm3u53e7rucz25y4tt > .design_block.block1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 1px) !important;
  clip-path:         inset(0 1px) !important;
}
#ydgm3u53e7rucz25y4tt > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left : auto;
  margin-right: auto;
  background: url(../files/design01_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#ydgm3u53e7rucz25y4tt > .design_block.block2 {
  background-image: url(../files/design01_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#ydgm3u53e7rucz25y4tt > .design_block.block3,
#ydgm3u53e7rucz25y4tt > .design_block.block4,
#ydgm3u53e7rucz25y4tt > .design_block.block5 {
  transition: .6s all ease-in-out 0s;
}
#ydgm3u53e7rucz25y4tt > .design_block.block3 {
  background-image: url(../files/design01_img01.png);
  width: 900px;
  height: 850px;
  top: 90px;
  left: calc(50% - 710px);
  margin-left: calc(var(--custom_fade) * -1px);
}
#ydgm3u53e7rucz25y4tt > .design_block.block4 {
  background-image: url(../files/design01_img02.png);
  width: 1100px;
  height: 850px;
  top: 35px;
  left: calc(50% - 257px);
  margin-top: calc(var(--custom_fade) * 1px);
  transition-delay: .2s;
}
#ydgm3u53e7rucz25y4tt > .design_block.block5 {
  background-image: url(../files/design01_img03.png);
  width: 2000px;
  height: 450px;
  top: 495px;
  left: calc(50% - 1000px);
  transform: scale(2);
  transition-delay: .4s;
}

/* DB＞選べるキャリア！ */
#ito7nj12pp2d64px5jxr {
  background-image: url(../files/design02_bg.jpg);
  height: 1100px;
}
#ito7nj12pp2d64px5jxr .entry_post {
  padding: 800px 0 0;
}
#ito7nj12pp2d64px5jxr .post_data {
  text-align: center;
}
#ito7nj12pp2d64px5jxr > .design_block.block1 {
  width: 100%;
  height: 720px;
  top: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#ito7nj12pp2d64px5jxr > .design_block.block1::before {
  content: "";
  width: calc(2000 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design02_img01.jpg) repeat-x left top / auto 100%;
}
#ito7nj12pp2d64px5jxr > .design_block.block2 {
  background-image: url(../files/design02_ttl.png);
  width: 1200px;
  height: 500px;
  top: 110px;
  left: calc(50% - 592px);
  transform: scale(2);
}

/* DB＞①「キャリアチェンジ出来る！」 */
#w5o2590as1s2plm3hepm {
  background-image: url(../files/design03_bg.png);
  height: 1500px;
}
#w5o2590as1s2plm3hepm .entry_post {
  padding: 760px 0 0 480px;
}
#w5o2590as1s2plm3hepm > .design_block.block1 {
  background-image: url(../files/design03_img01.png);
  width: 600px;
  height: 600px;
  top: 60px;
  left: calc(50% - 30px);
  opacity: 1;
  -webkit-animation: anime-rotate 60s linear 0s infinite;
  animation        : anime-rotate 60s linear 0s infinite;
}
@keyframes anime-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#w5o2590as1s2plm3hepm > .design_block.block2 {
  background-image: url(../files/design03_img02.png);
  width: 950px;
  height: 550px;
  top: 657px;
  left: calc(50% - 1000px);
  margin-top: calc(var(--custom_fade) * 1px);
}
#w5o2590as1s2plm3hepm > .design_block.block3 {
  background-image: url(../files/design03_img03.png);
  width: 750px;
  height: 450px;
  top: 1020px;
  left: calc(50% + 22px);
  margin-left: calc(var(--custom_fade) * 1px);
}
#w5o2590as1s2plm3hepm > .design_block.block4 {
  background-image: url(../files/design03_ttl.png);
  width: 2000px;
  height: 200px;
  top: 490px;
  left: calc(50% - 1000px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#w5o2590as1s2plm3hepm > .design_block.block5 {
  background-image: url(../files/design03_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* DB＞⓶「アルバイトから気軽にスタート出来る！」 */
#ggbr68s2kchhx5x9i6h9 {
  background-image: url(../files/design04_bg.jpg);
  height: 1200px;
}
#ggbr68s2kchhx5x9i6h9 .entry_post {
  padding: 408px 480px 0 0;
}
#ggbr68s2kchhx5x9i6h9 > .design_block.block1 {
  background-image: url(../files/design04_img01.png);
  width: 300px;
  height: 600px;
  top: 190px;
  left: calc(50% + 150px);
  margin-top: calc(var(--custom_fade) * -1px);
}
#ggbr68s2kchhx5x9i6h9 > .design_block.block2 {
  background-image: url(../files/design04_img02.png);
  width: 500px;
  height: 1050px;
  top: 175px;
  left: calc(50% + 272px);
  margin-left: calc(var(--custom_fade) * 1px);
}
#ggbr68s2kchhx5x9i6h9 > .design_block.block3 {
  background-image: url(../files/design04_img03.png);
  width: 700px;
  height: 350px;
  top: 683px;
  left: calc(50% - 800px);
  margin-top: calc(var(--custom_fade) * 1px);
}
#ggbr68s2kchhx5x9i6h9 > .design_block.block4 {
  background-image: url(../files/design04_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* DB＞③「とにかく仲がいい！雰囲気の良い現場！」 */
#lm830z60prtg5pc8mh94 {
  height: 1000px;
}
#lm830z60prtg5pc8mh94 .entry_post {
  padding: 430px 10px 0;
}
#lm830z60prtg5pc8mh94 .post_data {
  color: #fff;
  text-align: center;
}
#lm830z60prtg5pc8mh94 > .design_block.block1 {
  background-image: url(../files/design05_bg.jpg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: circle(0 at 50% 50%);
  clip-path:         circle(0 at 50% 50%);
}
#lm830z60prtg5pc8mh94 > .design_block.block1.moved {
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path:         circle(100% at 50% 50%);
}
#lm830z60prtg5pc8mh94 > .design_block.block2 {
  width: 100%;
  height: 250px;
  top: 633px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#lm830z60prtg5pc8mh94 > .design_block.block2::before {
  content: "";
  width: calc(2000 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design05_img01.png) repeat-x left top / auto 100%;
}
#lm830z60prtg5pc8mh94 > .design_block.block3 {
  background-image: url(../files/design05_ttl.png);
  width: 700px;
  height: 250px;
  top: 205px;
  left: calc(50% - 345px);
  margin-top: calc(var(--custom_fade) * -1px);
}

/* DB＞④「女性が活躍中！」 */
#q871v4o20mcztgnkbtbx {
  background-image: url(../files/design06_bg.jpg);
  height: 1100px;
}
#q871v4o20mcztgnkbtbx .entry_post {
  padding: 422px 480px 0 0;
}
#q871v4o20mcztgnkbtbx > .design_block.block1 {
  background-image: url(../files/design06_img01.png);
  width: 700px;
  height: 550px;
  top: 157px;
  left: calc(50% + 57px);
  margin-left: calc(var(--custom_fade) * 1px);
}
#q871v4o20mcztgnkbtbx > .design_block.block2 {
  background-image: url(../files/design06_img02.png);
  width: 1000px;
  height: 500px;
  top: 673px;
  left: calc(50% - 716px);
  margin-top: calc(var(--custom_fade) * 1px);
}
#q871v4o20mcztgnkbtbx > .design_block.block3 {
  background-image: url(../files/design06_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* DB＞ゆうきホームの魅力をもっと知る！ */
#moiuxsj5ljja7duap3lj {
  background-image: url(../files/design07_bg.jpg);
  height: 1250px;
}
#moiuxsj5ljja7duap3lj > .easys_content_inner {
  height: 870px;
}
#moiuxsj5ljja7duap3lj > .easys_content_inner .entry_post {
  padding: 555px 0 0 480px;
}
#moiuxsj5ljja7duap3lj > .design_block.block1 {
  width: 100%;
  height: 450px;
  top: 73px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#moiuxsj5ljja7duap3lj > .design_block.block1::before {
  content: "";
  width: calc(2000 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design07_img01.png) repeat-x left top / auto 100%;
}
#moiuxsj5ljja7duap3lj > .design_block.block2 {
  background-image: url(../files/design07_img02.png);
  width: 1600px;
  height: 200px;
  top: 315px;
  left: calc(50% - 800px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#moiuxsj5ljja7duap3lj > .design_block.block3 {
  background-image: url(../files/design07_ttl.png);
  width: 550px;
  height: 300px;
  top: 517px;
  left: calc(50% - 598px);
  margin-top: calc(var(--custom_fade) * -1px);
}

/* DB＞ここまでお読みいただき、ありがとうございます！ */
#p75kll7wdak406yyb0ma {
  height: 800px;
}
#p75kll7wdak406yyb0ma .entry_post {
  padding: 400px 160px 0;
}
#p75kll7wdak406yyb0ma .post_data {
  color: #fff;
  text-align: center;
}
#p75kll7wdak406yyb0ma > .design_block.block1 {
  background-image: url(../files/design08_bg.jpg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
}
#p75kll7wdak406yyb0ma > .design_block.block2 {
  background-image: url(../files/design08_ttl.png);
  width: 1000px;
  height: 300px;
  top: 90px;
  left: calc(50% - 500px);
  margin-top: calc(var(--custom_fade) * -1px);
}
#p75kll7wdak406yyb0ma > .design_block.block3 {
  background-image: url(../files/design08_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}


/*  その他
---------------------------------------------------------------------------------------------------- */
/* お問い合わせフォームの縦表示 */
#seziry65bum2kb8vn262 .post-html,
#seziry65bum2kb8vn262 .zc_form_content {
  float: none;
  width: 100% !important;
}
#seziry65bum2kb8vn262 .post-html [class*="title"] {
  background-image: url(../files/sub_entry_title_bg.png);
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  height: 60px;
  line-height: 60px;
  width: 100%;
}
