@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* =================================================================================================================== */
/* PCカスタムプロパティ*/

/* 下記文字列があるものは連動して変更されます！ */
:root {
  --basic_background_color: #2c2c2c;
  --body_text_color: #ffffff;
  --link_color: #ffcf0e;
  --border_color: #ffcf0e;
  --table_border_color: transparent;
  --th_background_color: #000000;
  --td_background_color: #000000;
  --th_character_color: #ffffff;
  --td_character_color: #ffffff;
  --required_color: #ffcf0e;
  --top_h1_color: #ffffff;
  --header_navigation_color: transparent;
  --top_entry_title_color: #ffffff;
  --entry_title_bg_color: #000000;
  --blog_title_color: #ffffff;
  --sub_entry_title_bg_color: #ffffff;
  --entry_title_bg_w570_color: #ffffff;
  --sub_entry_title_bg_w570_color: #ffffff;
  --half_entry_title_bg_color: #ffffff;
  --half_sub_entry_title_bg_color: #ffffff;
  --column3_title_bg_color: #f7c907;
  --widget_title_bg_color: #000000;
  --widget_list_bg_color: #ffffff;
  --footnavi_color: transparent;
  --address_color: #ffcf0e;
  --copy_color: #ffffff;
}

/* 書き換えが必要なもの！ ★　*/
:root {
  /* スライダーの高さ(単位なし) */
  --easys_top_main_h: 1035;

/* 中ページメイン（ティザー）の高さ(単位なし) */
  --easys_naka_main_h: 1035;

/*ナビの高さ（上下ON/OFFの場合は画像の高さ÷２）*/
  --easys_access_h: 0;

/* プルダウンメニュー＞背景色 */
  --easys_standard_value002: rgba(255, 255, 255, 0.75);

/* プルダウンメニュー＞文字色 */
  --easys_standard_value003: #333333;

/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value004: #666666;
}


/* その他 */
: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;
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  /* 背景色のみ */
  background: var(--basic_background_color);

  scroll-padding-top: var(--easys_access_h);
  scroll-behavior: smooth;
}
/*トップページ　スライダーの背景なし*/
body#page_6 {
  background: none no-repeat center top;
}

/*中ページ　背景なし*/
body {
  position: relative;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  background: none no-repeat center top;
  word-break: break-word;
}

/* 枠 */
body > .design_block {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}
body > .design_block::after {
  position: absolute;
  top: -30px;
  left: 50%;
  box-sizing: border-box;
  max-width: calc(2000px + 60px);
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  border: 60px solid #2c2c2c;
  border-radius: 90px;
  content: "";
  transform: translateX(-50%);
}



body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}



#wrapper {
  background: none transparent;
}
#outer_block {
  padding: 0;
  background: none transparent;
}
#main {
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}


/* ===================================================================================================================
   ■ ヘッダー　　★
------------------------------------------------------------------------------------------------------------------- */
/*画面上端から記事が入るまでの部分*/

/*トップページ*/
#page_6 #branding_box {
  /*ここでトップページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0;
  height: 0;
}

/* スライダー画像に重ねる画像↓ */
#page_6 #branding_box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/files/top_header_cover.png") no-repeat top center / 100%;
  content: "";
  opacity: 0;
  transition: transform 1.3s ease 0.6s, opacity 1.3s ease 0.6s;
  transform: translateY(150px);
}
#page_6 #branding_box.moved::before {
  opacity: 1;
  transform: none;
}

/*中ページ*/
#branding_box {
  position: relative;
  z-index: 500;

/*ここで中ページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0;
  height: 0;
  background: none transparent;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
/* 中ページサイトタイトル*/
#site-description {
  position: absolute;
  right: calc(83 / var(--easys_max_width) * 100%);
  bottom: calc(58 / var(--easys_top_main_h) * 100%);
  z-index: 753;
  margin: 0 auto;
  width: auto;

/* 右寄せのとき */
  text-align: right;
}

/* トップページサイトタイトル */
#page_6 #site-description {
  right: calc(83 / var(--easys_max_width) * 100%);
  bottom: calc(58 / var(--easys_top_main_h) * 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;
  top: 58px;
  left: 60px;
  z-index: 752;

/* ロゴ画像レスポンシブ無しで設置します */
  width: 300px;
  height: 80px;

/* top: calc(58 / var(--easys_top_main_h) * 100%);
  left: calc(60 / var(--easys_max_width) * 100%); */
  background: url("/files/main_logo.png")no-repeat center top;
}


/* 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: 0;
  left: 0;
  z-index: 751;
  display: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: var(--easys_access_h);
}

div#access .menu-header {
  margin: 0 0 0 auto;

/*ナビ画像横幅　*/
  width: 960px;
  height: var(--easys_access_h);
}

div#access .menu-item a {
  margin: 0;
  padding: 0;
  height: var(--easys_access_h);
  background-color: transparent;
  background-image: url("/files/topnavi.png");
  background-position: scroll;
  background-repeat: no-repeat;
}

/*固定時用ナビ*/
#access.fixed {
  position: fixed;
  top: 0 !important;
  right: 0;
  bottom: inherit;
  left: 0;
  z-index: 999;
  padding: 0;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  width: 100%;
  height: var(--easys_access_h);

/*固定時ナビ背景指示あればここで！*/
  background: rgba(255, 255, 255, 0.95);
}
#access.fixed .menu-header {
  /*固定時ナビの位置調整はここで！*/
  /* 真ん中よせのとき
  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 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  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%;
}

/* フェードインアニメーション */
#jquery_slider_pc {
  overflow: hidden;
  padding: 0 0 calc(100%*(var(--easys_top_main_h) / var(--easys_max_width))) 0;

  clip-path: inset(0);
}
#jquery_slider_pc > div {
  left: -100%;
  opacity: 0;
  transition: left 1.0s ease-in-out, opacity 1.5s ease;
  /* transition-delay: 0.5s; */
}
#jquery_slider_pc.moved > div {
  position: relative;
  left: 0;
  opacity: 1;
}



/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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: 690px;
  background: url(/files/footer_bg.png) no-repeat center top;
}

#footer_box {
  height: 690px;
  background: none;
}

#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
/* フッターに記載されナビに当たる部分 */

/*中央寄せの場合*/
#footer_sitemap_block {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0 auto;
  width: auto;
  transform: translateX(-50%);
  display: none;
}
/* 中央以外 */
/*
#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_information {
  position: absolute;
  top: 326px;
  left: calc(50% + 61px);
}
#footer_information .entry-post {
  margin: 0;
  width: 450px;
  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);
}
/* フッターに記載されるコピーライトに当たる部分 */

/*中央寄せの時*/
#copyright {
  position: absolute;
  bottom: 255px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}


/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
/* サイドボタンに当たる部分 */

.fixed_btn {
  position: fixed;
  top: 69px;
  right: 66px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  width: 410px;
  height: 50px;
}

.fixed_btn div,
.fixed_btn div a {
  width: 50px;
  height: 50px;
}
.fixed_btn #fixed_btn_hp,
.fixed_btn #fixed_btn_hp a {
  width: 210px;
}
.fixed_btn #fixed_btn_contact,
.fixed_btn #fixed_btn_contact a {
  width: 100px;
}
.fixed_btn div a {
  position: static;
}
.fixed_btn a::before {
  position: absolute;
  top: 0;
  z-index: 10;
  display: block;
  height: 100%;
  content: "";
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
/* ON画像 */
.fixed_btn #fixed_btn_insta a::before {
  left: 0;
  width: 50px;
  background: url(/files/btn_insta_on.png) no-repeat center top;
}
.fixed_btn #fixed_btn_gtn a::before {
  left: 50px;
  width: 50px;
  background: url(/files/btn_gaten_on.png) no-repeat center top;
}
.fixed_btn #fixed_btn_hp a::before {
  right: 100px;
  width: 210px;
  background: url(/files/btn_official_on.png) no-repeat center top;
}
.fixed_btn #fixed_btn_contact a::before {
  right: 0;
  width: 100px;
  background: url(/files/btn_contact_on.png) no-repeat center top;
}
.fixed_btn a:hover::before {
  opacity: 1;
}

/*  スクロールトップ 
---------------------------------------------------------------------------------------------------- */
#float_top_btn a:hover img {
  opacity: 0.8;
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  height: 170px;
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  line-height: 260px;
}
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: 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-spacing: 0 10px !important;
  border-collapse: separate;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  border-left: solid 1px var(--table_border_color) !important;
  background-color: var(--th_background_color);
  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 {
  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;
  filter: blur(0) !important;
  transform: translate(0px, 0px) scale(1) !important;
} */

/*全体フェードイン　Dブロックは解除*/
.easys_content_inner:not(.nd_01 .easys_content_inner) {
  opacity: 0;
  transition: 1.3s ease 0s;
  transform: translateY(100px) rotate3d(-1, -1, 0, -20deg);
}

.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
  opacity: 1;
  transform: translateY(0) rotate3d(0, 0, 1, 0);
}

/*パララックス除外*/
#lwib5d7i5p5ul9yang7t .easys_content_inner,
#qomuvisjl5lxcyeja9wm .easys_content_inner {
  opacity: 1;
  filter: none !important;
  transition: none;
  transform: 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 {
  position: absolute;
  top: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease 0s;
  pointer-events: none;
}

.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;
}

/* ===========================================================================
     トップページ
=========================================================================== */
/*DB＞私たちと一緒に働きましょう！
rj4b91eqmrm1c55mh4rk
--------------------------------------- */
#rj4b91eqmrm1c55mh4rk {
  position: relative;
  z-index: 100;

/* 背景画像 */
  background: url(../files/design01_bg.jpg) no-repeat center top;
}
#rj4b91eqmrm1c55mh4rk,
#rj4b91eqmrm1c55mh4rk .easys_content_inner,
#rj4b91eqmrm1c55mh4rk .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1350px;
}
#rj4b91eqmrm1c55mh4rk [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#rj4b91eqmrm1c55mh4rk .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 564px 0 0 auto;

/* テキストエリアの横幅 */
  width: 480px;
}
#rj4b91eqmrm1c55mh4rk .text_box p {
  line-height: 2;
}

/* 背景画像 */
#rj4b91eqmrm1c55mh4rk::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design01_bg_cover.png)no-repeat center top;
  content: "";
  pointer-events: none;
}

/* 追加画像 */
#rj4b91eqmrm1c55mh4rk .img01 {
  position: absolute;
  top: 0;
  left: calc(50% - 449px);
  width: 900px;
  height: 380px;
  background: url(../files/design01_img01.png) no-repeat center top;

/* 上からフェードイン */
  transform: translate(0,  -100px);
}
#rj4b91eqmrm1c55mh4rk .img01.moved {
  opacity: 1;
  transform: translate(0);
}
#rj4b91eqmrm1c55mh4rk .img02 {
  position: absolute;
  top: 392px;
  left: calc(50% - 543px);
  width: 500px;
  height: 428px;
  background: url(../files/design01_img02.png) no-repeat center top;
}
#rj4b91eqmrm1c55mh4rk .img02.moved {
  opacity: 1;
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}
@keyframes bounceUp {
  0% {
    transform: scale(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.2);
  }
  50% {
    opacity: 1;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#rj4b91eqmrm1c55mh4rk .img03 {
  position: absolute;
  top: 246px;
  left: calc(50% + 248px);
  width: 300px;
  height: 300px;
  background: url(../files/design01_img03.png) no-repeat center top;
  opacity: 1;
  animation: yurayura 2s linear infinite;
}
@keyframes yurayura {
  0%,
  100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}


/*バナー＞お問い合わせフォーム／GATEN職（※）
qegxcbtnyjff5xb8tgpv
--------------------------------------- */
#qegxcbtnyjff5xb8tgpv {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: calc(750 / 2000 * 100%) 0 0 0;
  background: url(../files/bnrhalf_bg.jpg) no-repeat center top / 100%;
}
#qegxcbtnyjff5xb8tgpv .easys_content_inner {
  position: absolute;
  top: calc(130 / 750 * 100%);
  right: 0;
  left: 0;
  z-index: 100;
  margin: 0 auto;
  padding: 0;
  width: calc(1586 / 2000 * 100%);
  opacity: 0;
  transition: 1.3s ease 0s;
  transform: translateY(100px) rotate3d(-1, -1, 0, -20deg);
}
#qegxcbtnyjff5xb8tgpv .easys_content_inner.moved {
  opacity: 1;
  transform: translateY(0) rotate3d(0, 0, 1, 0);
}
#qegxcbtnyjff5xb8tgpv .eyecatch {
  width: 100%;
}
#qegxcbtnyjff5xb8tgpv div {
  margin-bottom: 0;
}
#qegxcbtnyjff5xb8tgpv .field_2col {
  position: relative;
  width: calc(600 / 1586 * 100%) !important;
}
#qegxcbtnyjff5xb8tgpv .field_2col:nth-of-type(2) {
  margin-right: calc(10 / 1586 * 100%) !important;
}
#qegxcbtnyjff5xb8tgpv .eyecatch a img {
  position: relative;
  display: block;
  transition: ease 0.3s;
}
#qegxcbtnyjff5xb8tgpv .eyecatch a:hover img {
  opacity: 1;
  transform: scale(1.1);
}
#qegxcbtnyjff5xb8tgpv .easys_content_inner,
#qegxcbtnyjff5xb8tgpv .img_display,
#qegxcbtnyjff5xb8tgpv [class*="field_"],
#qegxcbtnyjff5xb8tgpv [class*="field_"] .eyecatch {
  overflow: visible !important;
}

/* ループ画像 */
#qegxcbtnyjff5xb8tgpv::before {
  position: absolute;
  top: calc(100%*(227/750));
  left: 0;
  z-index: 1;
  display: block;
  width: calc(100%*((2000*2)/2000));
  height: calc(100%*(300/750));
  background: url(../files/bnrhalf_repeat_bg.png) repeat-x left top / auto 100%;
  content: "";
  animation: loop 40s linear 0s infinite;
}
@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100%/2));
  }
}

/* 背景画像 */
#qegxcbtnyjff5xb8tgpv::after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/bnrhalf_bg_cover.png) no-repeat center top / 100%;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}


/*バナー＞明希工業で出来ることはこれ！！（※）
uwxa1hx0kmb5e008t315
--------------------------------------- */
#uwxa1hx0kmb5e008t315 {
  position: relative;
  padding: calc(1000 / 2000 * 100%) 0 0 0;
  background: url(../files/bnrmany_bg.jpg) no-repeat center top / 100%;
}
#uwxa1hx0kmb5e008t315 .easys_content_inner {
  position: absolute;
  top: calC(441 / 1000 * 100%);
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  width: calc(1400 / 2000 * 100%);
}
#uwxa1hx0kmb5e008t315 .eyecatch {
  width: 100%;
}
#uwxa1hx0kmb5e008t315 .margin-bottom_30,
#uwxa1hx0kmb5e008t315 .margin-bottom_50 {
  margin-bottom: 0;
}
#uwxa1hx0kmb5e008t315 .img_display {
  display: flex;
  justify-content: space-between;
}
#uwxa1hx0kmb5e008t315 .field_4col {
  position: relative;
  margin: 0;
  width: calc(350 / 1400 * 100%) !important;
  opacity: 0;
}

/* ホバー */
#uwxa1hx0kmb5e008t315 .eyecatch a:hover img {
  opacity: 1;
  animation: bounce 1s ease-in-out 1;
}
@keyframes bounce {
  16.65% {
    transform: translateY(16px);
  }
  33.3% {
    transform: translateY(-12px);
  }
  49.95% {
    transform: translateY(8px);
  }
  66.6% {
    transform: translateY(-4px);
  }
  83.25% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 表示 */
#uwxa1hx0kmb5e008t315 .easys_content_inner.moved .field_4col {
  animation: poyoyon 1s ease-in-out forwards;
}
@keyframes poyoyon {
  0% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%,
  100% {
    opacity: 1;
  }
}
#uwxa1hx0kmb5e008t315 .easys_content_inner.moved .field_4col:nth-of-type(2) {
  animation-delay: 0.6s;
}
#uwxa1hx0kmb5e008t315 .easys_content_inner.moved .field_4col:nth-of-type(3) {
  animation-delay: 1.2s;
}
#uwxa1hx0kmb5e008t315 .easys_content_inner.moved .field_4col:nth-of-type(4) {
  animation-delay: 1.8s;
}

/* 追加画像 */
#uwxa1hx0kmb5e008t315 .img01 {
  z-index: 100;
  display: block;
  margin-top: calc(-64 / 2000 * 100%);
  margin-left: calc(253 / 2000 * 100%);
  width: calc(1500 / 2000 * 100%);
  height: calc(500 / 1000 * 100%);
  background: url(../files/bnrmany_ttl.png) no-repeat center top / 100%;

/* 上からフェードイン */
  transform: translate(0,  -100px);
}
#uwxa1hx0kmb5e008t315 .img01.moved {
  opacity: 1;
  transform: translate(0);
}


/*DB＞明希工業では、こんなことをしています！！
lo0usqa2l934hnmlvpjb
--------------------------------------- */
#lo0usqa2l934hnmlvpjb {
  position: relative;

/* 背景画像 */
  background: url(../files/design02_bg.jpg) no-repeat center top;
}
#lo0usqa2l934hnmlvpjb,
#lo0usqa2l934hnmlvpjb .easys_content_inner {
  position: relative;
  z-index: 100;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1700px;
}
#lo0usqa2l934hnmlvpjb .entry_post {
  position: relative;
  margin: 869px 0 0;
  padding-bottom: 0;
}
#lo0usqa2l934hnmlvpjb [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#lo0usqa2l934hnmlvpjb .sub_post {
  position: absolute;
  margin: 0;
  width: 250px;
}
#lo0usqa2l934hnmlvpjb .sub_post_0 {
  top: 0;
  left: 12px;
}
#lo0usqa2l934hnmlvpjb .sub_post_1 {
  left: 355px;
  width: 255px;
}
#lo0usqa2l934hnmlvpjb .sub_post_2 {
  left: 709px;
}
#lo0usqa2l934hnmlvpjb .sub_post_3 {
  top: 487px;
  left: 4px;
}
#lo0usqa2l934hnmlvpjb .sub_post_4 {
  top: 487px;
  left: 355px;
}
#lo0usqa2l934hnmlvpjb .sub_post_5 {
  top: 487px;
  left: 709px;
}
#lo0usqa2l934hnmlvpjb .sub_post p {
  line-height: 2;
}

/* 背景画像 */
#lo0usqa2l934hnmlvpjb::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design02_bg_cover.png)no-repeat center top;
  content: "";
  pointer-events: none;
}

/* 追加画像 */
#lo0usqa2l934hnmlvpjb .img01 {
  position: absolute;
  top: 122px;
  left: calc(50% + 361px);
  width: 400px;
  height: 280px;
  background: url(../files/design02_img01.png) no-repeat center top;
}
#lo0usqa2l934hnmlvpjb .img01.moved {
  opacity: 0;
  animation: bounceInUp 1.0s ease 0s forwards normal;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    animation-timing-function: cubic-bezier(0.215,0.61,0.355,1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 900px, 0) scaleY(4);
  }
  60% {
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

#lo0usqa2l934hnmlvpjb .img02 {
  position: absolute;
  top: 117px;
  left: calc(50% - 346px);
  width: 700px;
  height: 300px;
  background: url(../files/design02_ttl.png) no-repeat center top;
}
#lo0usqa2l934hnmlvpjb .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*バナー＞お問い合わせフォーム／GATEN職（clone_1）
nkmsslkgv2hlqecqmaci
--------------------------------------- */
#nkmsslkgv2hlqecqmaci .easys_content_inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/*DB＞ずばり、こんな方をお待ちしています！！
nyilq2ovxrvviz82fdnr
--------------------------------------- */
#nyilq2ovxrvviz82fdnr {
  position: relative;

/* 背景画像 */
  background: url(../files/design03_bg.jpg) no-repeat center top;
}
#nyilq2ovxrvviz82fdnr,
#nyilq2ovxrvviz82fdnr .easys_content_inner,
#nyilq2ovxrvviz82fdnr .entry_post {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1150px;
}
#nyilq2ovxrvviz82fdnr [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#nyilq2ovxrvviz82fdnr .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 771px 0 0 auto;

/* テキストエリアの横幅 */
  width: 940px;
}
#nyilq2ovxrvviz82fdnr .text_box p {
  color: #000000;
  text-align: center;
}

/* 追加画像 */
#nyilq2ovxrvviz82fdnr .img01 {
  position: absolute;
  top: 297px;
  left: calc(50% - 749px);
  width: 1500px;
  height: 700px;
  background: url(../files/design03_img01.png) no-repeat center top;
}
#nyilq2ovxrvviz82fdnr .img01.moved {
  opacity: 1;
  animation: bounceInUp 1.0s ease 0s forwards normal;
}
#nyilq2ovxrvviz82fdnr .img02 {
  position: absolute;
  top: 91px;
  left: calc(50% - 649px);
  width: 1300px;
  height: 230px;
  background: url(../files/design03_ttl.png) no-repeat center top;
}
#nyilq2ovxrvviz82fdnr .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*バナー＞公式ホームページはこちら（※）
o0yo23j5z3flu7j6nec5
--------------------------------------- */
#o0yo23j5z3flu7j6nec5 .easys_content_inner,
#o0yo23j5z3flu7j6nec5 .img_display,
#o0yo23j5z3flu7j6nec5 .eyecatch {
  position: relative;
  padding: 0;
  width: 100%;
}
#o0yo23j5z3flu7j6nec5 .easys_content_inner {
  width: calc(2000 / 2000 * 100%);
}
#o0yo23j5z3flu7j6nec5 .eyecatch a {
  display: block;
}
#o0yo23j5z3flu7j6nec5 .eyecatch::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100%;

/* ON画像 */
  background: url(/files/bnr_contact_bg_on.png) no-repeat center top/100%;
  content: "";
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
#o0yo23j5z3flu7j6nec5 .eyecatch:hover::before {
  opacity: 1;
}
#o0yo23j5z3flu7j6nec5 .margin-bottom_30,
#o0yo23j5z3flu7j6nec5 .margin-bottom_50 {
  margin-bottom: 0;
}
#o0yo23j5z3flu7j6nec5 .eyecatch a img {
  opacity: 1;
}


/*バナー＞お問い合わせフォーム／GATEN職（clone_2）
f71gric508zzc6kjbpc1
--------------------------------------- */
#f71gric508zzc6kjbpc1 .easys_content_inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/*イメージ画像➀
lwib5d7i5p5ul9yang7t
--------------------------------------- */
#lwib5d7i5p5ul9yang7t {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: calc(800 / 2000 * 100%) 0 0 0;
}
#lwib5d7i5p5ul9yang7t [class*="field_"]:nth-of-type(1) img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}
#lwib5d7i5p5ul9yang7t .easys_content_inner {
  position: absolute;
  top: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#lwib5d7i5p5ul9yang7t .margin-bottom_50 {
  margin-bottom: 0;
  line-height: 0;
}
#lwib5d7i5p5ul9yang7t [class*="field_"]:nth-of-type(2) .eyecatch {
  position: absolute;
  top: calc(0 / 800 * 100%);
  left: calc(0 / 2000 * 100%);
  display: block;
  width: calc(2000 / 2000 * 100%);
}

/* 画面サイズ変えたときに上下に線がちらつくときだけ下記使用ください */
#lwib5d7i5p5ul9yang7t::before,
#lwib5d7i5p5ul9yang7t::after {
  position: absolute;
  left: 50%;
  z-index: 10;
  display: block;
  width: 100%;
  height: 2px;
  background: #2c2c2c;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
#lwib5d7i5p5ul9yang7t::before {
  top: -1px;
}
#lwib5d7i5p5ul9yang7t::after {
  bottom: -1px;
}

#lwib5d7i5p5ul9yang7t .easys_content_inner::before,
#lwib5d7i5p5ul9yang7t .easys_content_inner::after,
#lwib5d7i5p5ul9yang7t [class*="field_"]:nth-of-type(2) .eyecatch::before,
#lwib5d7i5p5ul9yang7t [class*="field_"]:nth-of-type(2) .eyecatch::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 4px;
  height: 100%;
  background: #2c2c2c;
  content: "";
  pointer-events: none;
}


/*DB＞キャリアアップや昇給のチャンスをつかめる！
qvy4z294919lrnh2rq2b
--------------------------------------- */
#qvy4z294919lrnh2rq2b {
  position: relative;

/* 背景画像 */
  background: url(../files/design04_bg.jpg) no-repeat center top;
}
#qvy4z294919lrnh2rq2b,
#qvy4z294919lrnh2rq2b .easys_content_inner,
#qvy4z294919lrnh2rq2b .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1250px;
}
#qvy4z294919lrnh2rq2b [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#qvy4z294919lrnh2rq2b .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 440px 0 0 auto;

/* テキストエリアの横幅 */
  width: 480px;
}
#qvy4z294919lrnh2rq2b .entry_post {
  position: relative;
  margin: 951px 0 0;
  padding-bottom: 0;
}

#qvy4z294919lrnh2rq2b .sub_post {
  position: absolute;
  margin: 0;
  width: 255px;
  color: #000000;
}
#qvy4z294919lrnh2rq2b .sub_post p {
  line-height: 2;
}
#qvy4z294919lrnh2rq2b .sub_post_0 {
  left: 8px;
}
#qvy4z294919lrnh2rq2b .sub_post_1 {
  left: 356px;
}
#qvy4z294919lrnh2rq2b .sub_post_2 {
  left: 692px;
}

/* 追加画像 */
#qvy4z294919lrnh2rq2b .img01 {
  position: absolute;
  top: 388px;
  left: calc(50% - 496px);
  width: 1000px;
  height: 550px;
  background: url(../files/design04_img01.png) no-repeat center top;

/* 下からフェードイン */
  transform: translate(0,  100px);
}
#qvy4z294919lrnh2rq2b .img01.moved {
  opacity: 1;
  transform: translate(0);
}
#qvy4z294919lrnh2rq2b .img02 {
  position: absolute;
  top: 179px;
  left: calc(50% - 476px);
  width: 960px;
  height: 200px;
  background: url(../files/design04_ttl.png) no-repeat center top;
}
#qvy4z294919lrnh2rq2b .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*DB＞プライベートの時間を確保！
hnt6acyxaj9cf2hrrim0
--------------------------------------- */
#hnt6acyxaj9cf2hrrim0 {
  position: relative;

/* 背景画像 */
  background: url(../files/design05_bg.jpg) no-repeat center top;
}
#hnt6acyxaj9cf2hrrim0,
#hnt6acyxaj9cf2hrrim0 .easys_content_inner,
#hnt6acyxaj9cf2hrrim0 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1350px;
}
#hnt6acyxaj9cf2hrrim0 [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#hnt6acyxaj9cf2hrrim0 .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 924px auto 0 5px;

/* テキストエリアの横幅 */
  width: 480px;
}
#hnt6acyxaj9cf2hrrim0 .text_box p {
  line-height: 2;
}

/* 背景画像 */
#hnt6acyxaj9cf2hrrim0::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design05_bg_cover.png)no-repeat center top;
  content: "";
  pointer-events: none;
}

/* 追加画像 */
#hnt6acyxaj9cf2hrrim0 .img01 {
  position: absolute;
  top: 133px;
  left: calc(50% - 694px);
  width: 1400px;
  height: 550px;
  background: url(../files/design05_img01.png) no-repeat center top;
}
#hnt6acyxaj9cf2hrrim0 .img01.moved {
  opacity: 1;
  animation: transscaleX 1.7s ease 0s 1 normal;
}
@keyframes transscaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
#hnt6acyxaj9cf2hrrim0 .img02 {
  position: absolute;
  top: 574px;
  left: calc(50% - 647px);
  width: 600px;
  height: 350px;
  background: url(../files/design05_ttl.png) no-repeat center top;
}
#hnt6acyxaj9cf2hrrim0 .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*バナー＞お問い合わせフォーム／GATEN職（clone_3）
qjmypzhkpqxanzsiiy6q
--------------------------------------- */
#qjmypzhkpqxanzsiiy6q .easys_content_inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/*DB＞目指せ！多能工！
cfcij1icmeadnf12u1gm
--------------------------------------- */
#cfcij1icmeadnf12u1gm {
  position: relative;
}
#cfcij1icmeadnf12u1gm,
#cfcij1icmeadnf12u1gm .easys_content_inner,
#cfcij1icmeadnf12u1gm .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1300px;
}
#cfcij1icmeadnf12u1gm .easys_content_inner {
  width: 975px;
}
#cfcij1icmeadnf12u1gm [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#cfcij1icmeadnf12u1gm .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 914px 0 0 auto;

/* テキストエリアの横幅 */
  width: 480px;
}
#cfcij1icmeadnf12u1gm .text_box p {
  line-height: 2;
}

/* 背景画像 */
#cfcij1icmeadnf12u1gm::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design06_bg_cover.png)no-repeat center top;
  content: "";
  pointer-events: none;
}

/* 追加画像 */
#cfcij1icmeadnf12u1gm .img01 {
  position: absolute;
  top: 177px;
  left: calc(50% - 452px);
  overflow: hidden;
  width: 1450px;
  height: 580px;
  opacity: 1;
}
/* ズームアウト */
#cfcij1icmeadnf12u1gm .img01::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design06_img01.jpg) no-repeat center top;
  content: "";
  opacity: 0;
  transition: 2s ease 0s;
  transform: scale(1.3);
  transform-origin: center;
}
#cfcij1icmeadnf12u1gm .img01.moved::after {
  opacity: 1;
  transform: scale(1.0);
}

#cfcij1icmeadnf12u1gm .img02 {
  position: absolute;
  top: 221px;
  left: calc(50% - 607px);
  z-index: 10;
  width: 700px;
  height: 450px;
  background: url(../files/design06_ttl.png) no-repeat center top;
}
#cfcij1icmeadnf12u1gm .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*DB＞資格支援制度でレベルアップ！
fbkbe60j8ewj8rkwyl0p
--------------------------------------- */
#fbkbe60j8ewj8rkwyl0p {
  position: relative;
}
#fbkbe60j8ewj8rkwyl0p,
#fbkbe60j8ewj8rkwyl0p .easys_content_inner,
#fbkbe60j8ewj8rkwyl0p .entry_post {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1050px;
}
#fbkbe60j8ewj8rkwyl0p [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#fbkbe60j8ewj8rkwyl0p .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 445px auto 0 0;

/* テキストエリアの横幅 */
  width: 480px;
}
#fbkbe60j8ewj8rkwyl0p .text_box p {
  line-height: 2;
}

/* 背景画像 */
#fbkbe60j8ewj8rkwyl0p::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design07_bg_cover.png)no-repeat center top;
  content: "";
  pointer-events: none;
}

/* 追加画像 */
#fbkbe60j8ewj8rkwyl0p .img01 {
  top: 107px;
  left: calc(50% - 1000px);
  overflow: hidden;
  width: 1560px;
  height: 650px;
  opacity: 1;
}
/* ズームアウト */
#fbkbe60j8ewj8rkwyl0p .img01::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design07_img01.jpg) no-repeat center top;
  content: "";
  opacity: 0;
  transition: 2s ease 0s;
  transform: scale(1.3);
  transform-origin: center;
}
#fbkbe60j8ewj8rkwyl0p .img01.moved::after {
  opacity: 1;
  transform: scale(1.0);
}

#fbkbe60j8ewj8rkwyl0p .img02 {
  top: -113px;
  left: calc(50% + 322px);
  width: 400px;
  height: 400px;
  background: url(../files/design07_img02.png) no-repeat center top;

/* 上からフェードイン */
  transform: translate(0,  -100px);
}
#fbkbe60j8ewj8rkwyl0p .img02.moved {
  opacity: 1;
  transform: translate(0);
}
#fbkbe60j8ewj8rkwyl0p .img03 {
  top: 121px;
  left: calc(50% - 656px);
  width: 650px;
  height: 350px;
  background: url(../files/design07_ttl.png) no-repeat center top;
}
#fbkbe60j8ewj8rkwyl0p .img03.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*バナー＞お問い合わせフォーム／GATEN職（clone_4）
ogbucs0tjxo8xjky8lxs
--------------------------------------- */
#ogbucs0tjxo8xjky8lxs .easys_content_inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/*DB＞ここまでお読みいただき、誠にありがとうございます！
fsmhig2uaj6uxzsqrynh
--------------------------------------- */
#fsmhig2uaj6uxzsqrynh {
  position: relative;

/* 背景画像 */
  background: url(../files/design08_bg.jpg) no-repeat center top;
}
#fsmhig2uaj6uxzsqrynh,
#fsmhig2uaj6uxzsqrynh .easys_content_inner,
#fsmhig2uaj6uxzsqrynh .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;

/* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1200px;
}
#fsmhig2uaj6uxzsqrynh [class*="title"] {
  /* タイトル削除 */
  display: none;
}
#fsmhig2uaj6uxzsqrynh .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 491px 0 0 auto;

/* テキストエリアの横幅 */
  width: 480px;
  color: #000000;
}
#fsmhig2uaj6uxzsqrynh .text_box p {
  line-height: 2;
}

/* 追加画像 */
#fsmhig2uaj6uxzsqrynh .img01 {
  position: absolute;
  top: 251px;
  left: calc(50% - 744px);
  width: 800px;
  height: 850px;
  background: url(../files/design08_img01.png) no-repeat center top;

/* 左からフェードイン */
  transform: translate(-100px, 0);
}
#fsmhig2uaj6uxzsqrynh .img01.moved {
  opacity: 1;
  transform: translate(0);
}
#fsmhig2uaj6uxzsqrynh .img02 {
  position: absolute;
  top: 143px;
  left: calc(50% - 448px);
  width: 900px;
  height: 200px;
  background: url(../files/design08_ttl.png) no-repeat center top;
}
#fsmhig2uaj6uxzsqrynh .img02.moved {
  animation: bounceUp cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.0s forwards;
}


/*イメージ画像➁
qomuvisjl5lxcyeja9wm
--------------------------------------- */
#qomuvisjl5lxcyeja9wm {
  position: relative;
  margin-bottom: 0;
  padding: calc(800 / 2000 * 100%) 0 0 0;
}
#qomuvisjl5lxcyeja9wm [class*="field_"]:nth-of-type(1) img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}
#qomuvisjl5lxcyeja9wm .easys_content_inner {
  position: absolute;
  top: 0;
  padding: 0;
  width: 100%;
  height: 100%;

  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#qomuvisjl5lxcyeja9wm .margin-bottom_50 {
  margin-bottom: 0;
  line-height: 0;
}

/* 画面サイズ変えたときに上下に線がちらつくときだけ下記使用ください */
/* #qomuvisjl5lxcyeja9wm::before,
#qomuvisjl5lxcyeja9wm::after {
  position: absolute;
  left: 50%;
  z-index: 10;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
#qomuvisjl5lxcyeja9wm::before {
  top: -1px;
}
#qomuvisjl5lxcyeja9wm::after {
  bottom: -1px;
} */
