@charset "utf-8";

/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #ffffff ;
  --body_text_color: #000000 ;
  --link_color: #0091f1 ;
  --border_color: #adadad ;
  --table_border_color: #adadad ;
  --th_background_color: transparent ;
  --td_background_color: transparent ;
  --th_character_color: #000000 ;
  --td_character_color: #000000 ;
  --required_color: #d70000 ;
  --top_h1_color: #ffffff ;
  --header_navigation_color: transparent ;
  --top_entry_title_color: #ffffff ;
  --entry_title_bg_color: #ffffff ;
  --blog_title_color: #0a2059 ;
  --sub_entry_title_bg_color: #0a2059 ;
  --entry_title_bg_w570_color: #ffffff ;
  --sub_entry_title_bg_w570_color: #0a2059 ;
  --half_entry_title_bg_color: #0a2059 ;
  --half_sub_entry_title_bg_color: #0a2059 ;
  --column3_title_bg_color: #0a2059 ;
  --widget_title_bg_color: #ffffff ;
  --widget_list_bg_color: #0a2059 ;
  --footnavi_color: #ffffff ;
  --address_color: #ffffff ;
  --copy_color: #ffffff ;
}

/* 置換以外 */
:root {
  /* アニメーション速度 */
  --transition-duration: 0.3s;

/* トップに戻るボタン */

  --float_top_btn_w: 50px;
  --float_top_btn_x: 30px;

/* サイドボタン */
  --side_btn_w: 50px;

/* EASYSの最小幅(単位なし) */
  --easys_min_width: 1300;

/* EASYSの最大幅(単位なし) */
  --easys_max_width: 2000;

/* トップメインのオリジナル高さ(単位なし) */
  --easys_top_main_h: 1080;

/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 578;

/*ナビ*/
  /* --easys_access_h: ＊＊＊px; */
  /* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value001: #ffffff;

/* プルダウンメニュー＞背景色 */
  --easys_standard_value002: rgba(255, 255, 255, 0.75);

/* プルダウンメニュー＞文字色 */
  --easys_standard_value003: #333333;

/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value004: #666666;

/* カレンダーの本日＞文字色 */
  --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);

/* background: url("/files/html_bg.jpg") repeat-x center top; */

  scroll-padding-top: 0;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width) * 1px);
  max-width: calc(var(--easys_max_width) * 1px);
  background: url("/files/body_bg.png") no-repeat center top/100%;
  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;
  /* background: url(../files/top_body_bg.jpg) no-repeat center top / 100%; */
}

#wrapper {
  background: none transparent;
}

#outer_block {
  background: none transparent;
}

#main {
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}

/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  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;
}

#page_6 #branding_box {
  /* background: url("/files/top_header_cover.png") no-repeat center top/100%; */
  /* background: none transparent; */
  overflow: hidden;
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0;
  height: 0;
}

#page_6 #branding_box::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(1024 / 1080 * 100%);
  background: url(../files/top_header_cover01.png) no-repeat center top/100%;
  content: "";
  opacity: 0;
  pointer-events: none;
}
#page_6 #branding_box.appear::before {
  animation: poyooon 0.9s linear 0.5s forwards;
}
@keyframes poyooon {
  0% {
    opacity: 1;
    transform: scale(1,1) translate(0,0);
  }

  10% {
    transform: scale(1.1,0.9) translate(0,5%);
  }

  40% {
    transform: scale(1.2,0.8) translate(0,15%);
  }

  50% {
    transform: scale(1,1) translate(0,0);
  }

  60% {
    transform: scale(0.9,1.2) translate(0,-20%);
  }

  75% {
    transform: scale(0.9,1.2) translate(0,-10%);
  }

  85% {
    transform: scale(1.2,0.8) translate(0,15%);
  }

  100% {
    opacity: 1;
    transform: scale(1,1) translate(0,0);
  }
}

#page_6 #branding_box::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  margin-top: calc(616 / 2000 * 100%);
  margin-left: calc(424 / 2000 * 100%);
  width: calc(1192 / 2000 * 100%);
  height: calc(274 / 1080 * 100%);
  background-image: url(../files/top_header_cover02.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  content: " ";
  opacity: 0;
  transition: 1s ease 0s;
  transform: scale(0.5);
  pointer-events: none;
}
#page_6 #branding_box.appear::after {
  animation: bounceElastic 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.2s;
}
@keyframes bounceElastic {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  65% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.05);
  }
  85% {
    transform: scale(0.98);
  }
  95% {
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 753;
  margin: 0 auto;
  width: auto;

/*
  top: calc(145 / var(--easys_naka_main_h) * 100%);
  left: calc(105 / var(--easys_max_width) * 100%);
    */
  text-align: right;
}

/* #page_6 #site-description {
  top: 0;
  left: 0;
  top: calc(145 / var(--easys_top_main_h) * 100%);
  left: calc(105 / var(--easys_max_width) * 100%);
} */

#site-description a {
  display: inline;
  color: var(--top_h1_color);
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information,
#page_6 #header_information {
  height: 0;
}

/*ロゴ*/
#header_information .main_header a img {
  position: absolute;
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  z-index: 752;
  width: calc(356 / var(--easys_max_width) * 100%);
  height: calc(117 / var(--easys_naka_main_h) * 100%);
  background: url(../files/main_logo.png) no-repeat center top / 100%;
}

#page_6 #header_information .main_header a img {
  top: calc(0 / var(--easys_top_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(356 / var(--easys_max_width) * 100%);
  height: calc(117 / var(--easys_top_main_h) * 100%);
}

/* Gナビ上部固定
#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 {
  position: absolute;
  top: 0;

/*top: calc(40 / var(--easys_naka_main_h) * 100%); */
  left: 0;
  z-index: 751;
  display: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: var(--easys_access_h);
}

/*
#page_6 #access {
  top: calc(40 / var(--easys_top_main_h) * 100%);
  }
*/

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;
  width: 160px;
  height: var(--easys_access_h);
  background-color: transparent;
  background-image: url("/files/topnavi.png");
  background-position: scroll;
  background-repeat: no-repeat;
}

div#access .gnavi11 a {
  width: gnabi_1px;
  background-position-x: left;
}

div#access .gnavi12 a {
  width: gnabi_2px;
  background-position-x: calc(-gnabi_1px);
}

div#access .gnavi13 a {
  width: gnabi_3px;
  background-position-x: calc(-gnabi_1px - gnabi_2px);
}

div#access .gnavi14 a {
  width: gnabi_4px;
  background-position-x: calc(-gnabi_1px - gnabi_2px - gnabi_3px);
}

div#access .gnavi15 a {
  width: 160px;
  background-position-x: calc(-gnabi_1px - gnabi_2px - gnabi_3px - gnabi_4px);
}

div#access .gnavi16 a {
  width: 160px;
  background-position-x: right;
}

div#access .menu-item a:hover {
  background-position-y: bottom;
}

/*固定時用ナビ*/
#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 {
  float: none;
  margin: 0 auto;
  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%;
}

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%;
}

/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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: 843px;
  background: url(/files/_footer_bg.jpg) no-repeat center top;
}

#footer_box {
  height: 843px;
  background: none;
}

#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer-widget-area .widget-area {
  position: absolute;
  top: 431px;
  left: calc(50% - 495px);
}

#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 960px;
}

#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border: none;
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border: none;
  color: var(--footnavi_color);
  line-height: 2;
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

/*ナビ・装飾*/
/* #footer-widget-area .widget-area .menu-item {
  position: relative;
}

#footer-widget-area .widget-area .menu-item::before {
  display: block;
  content: '・';
  width: 15px;
  height: 15px;
  color: #ccc;
  position: absolute;
} */

/*ナビ縦*/
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer-widget-area .widget-area .menu-item {
  float: none;
  text-align: left;
}

/*ナビ２列*/
/* #footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100px;
  align-content: space-between;
  width: 425px;
} */

/*  フッター情報
---------------------------------------------------------------------------------------------------- */
#footer_information {
  position: absolute;
  top: 337px;
  left: calc(50% - 480px);
}
#footer_information .entry-post {
  margin: 0;
  width: 300px;
  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: 40px;
  left: calc(50% - -259px);
}

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  z-index: 1000;
  /* opacity: 0;
    visibility: hidden;
  transition: ease-in-out .4s; */
}

/* .fixed_btn.first_view {
  visibility: visible;
  opacity: 1;
} */

.fixed_btn div,
.fixed_btn div a {
  overflow: hidden;
  width: var(--side_btn_w);
  height: 50px;
}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {
  height: 150px;
}

.fixed_btn div:last-child {
  margin-bottom: 0;
}

@media (min-width: 2000px) {
  .fixed_btn {
    left: calc(50% + 1000px - var(--side_btn_w));
    width: var(--side_btn_w);
  }
  #float_top_btn {
    left: calc(50% + (1000px - var(--float_top_btn_w) - var(--float_top_btn_x)));
  }
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  right: var(--float_top_btn_x);
  bottom: 40px;
  width: var(--float_top_btn_w);
}

#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);
  font-size: 32px;
}

h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
  font-size: 27px;
}

h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  font-size: 27px;
}
.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);
  font-size: 24px;
}


* .sub_entry_title h4 {
  font-size: 24px;
}

* .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;
}

#page_6 [class*="nf_"] {
  padding-bottom: 50px;
}

#rf8jvyojuils00h86sxy .html_post small {
  margin: 10px auto;
  height: 36px;
}

#rf8jvyojuils00h86sxy .html_post small a {
  height: 36px;
}
/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: var(--table_border_color);
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}

/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.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;
}

/*  ローディング画面
---------------------------------------------------------------------------------------------------- */
/* .black-screen {
  background-color: #000000;
}

.black-screen>.inner {
  top: calc(50vh - (5vw / 2));
  width: 3vw;
  height: 3vw;
  background-image: url("/files/loading.svg");
} */

/*  地図
---------------------------------------------------------------------------------------------------- */
#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: "";
}

/*  ブロックレイアウト調整　追記部分
---------------------------------------------------------------------------------------------------- */
/* 新着リスト下余白 */
.nq_01 {
  padding-bottom: 30px;
}

/* スライドショーブロック下余白 */
.np_04 {
  margin-bottom: 70px;
}

/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */
.moved {
  top: 0;
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translate(0px, 0px) scale(1) !important;

          clip-path: inset(0) !important;
  -webkit-clip-path: inset(0) !important;
}

/*全体フェードイン　Dブロックは解除*/
/* .easys_content_inner:not(.nd_01 .easys_content_inner) {
  opacity: 0;
  transform: translateY(100px);
  transition: 1.3s ease 0s;
}

.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
  opacity: 1;
  transform: translateY(0);
} */

/*パララックス除外*/
/* #acym6jxn3ruawwonnqcu .easys_content_inner {
  top: 0 !important;
  opacity: 1;
  transition: none;
  transform: none !important;
  filter: none !important;
} */

/* DBテキストのみフェードイン */
/* .db_block .text_box {
  opacity: 0;
  transition: all 1.3s;
  transform: translate(0, 100px);
} */

/* 対象のマージンを消す */
.easys_content.no_margin {
  margin: 0;
}

/* もし記事が割り込まれたらマージンを入れる */
.easys_content.no_margin + .easys_content:not(.no_margin) {
  margin-top: 100px;
}

.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;
}

.outer_top #outer_block:not(.shosai .outer_top #outer_block) {
  padding-top: 0;
}

.fade_b.moved_in {
  animation: bounceElastic 1s
  cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.fade_c {
  animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===========================================================================
　　トップページ　　pageID：6
=========================================================================== */
/*DB>神奈川県川崎市にある株式会社寿建工
acym6jxn3ruawwonnqcu
--------------------------------------- */
#acym6jxn3ruawwonnqcu {
  position: relative;
  background: url(../files/design01_bg.jpg) no-repeat center top;
  color: #ffffff;
}
#acym6jxn3ruawwonnqcu,
#acym6jxn3ruawwonnqcu .easys_content_inner,
#acym6jxn3ruawwonnqcu .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1280px;
}
#acym6jxn3ruawwonnqcu .easys_content_inner {
  width: 960px;
}
#acym6jxn3ruawwonnqcu *[class*="title"] {
  display: none;
}
#acym6jxn3ruawwonnqcu .text_box {
  margin: 400px auto 0 120px;
  width: 710px;
}
#acym6jxn3ruawwonnqcu::before {
  position: absolute;
  top: 1186px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 95px;
  background: url(../files/design01_txt.png) repeat-x left top;
  content: "";
  animation: loop1 100s linear 0s infinite;
}
@keyframes loop1 {
  to {
    background-position: top left -4511px;
  }
}
#acym6jxn3ruawwonnqcu .img01 {
  position: absolute;
  top: 47px;
  left: calc(50% - 753px);
  width: 1449px;
  height: 890px;
  background: url(../files/design01_image.png) no-repeat center top;
  transition-delay: 0.3s;
  transform: translate(0, 100px);
}
#acym6jxn3ruawwonnqcu .img_01 {
  position: absolute;
  top: 160px;
  left: calc(50% - 260px);
  width: 520px;
  height: 191px;
  background: url(../files/design01_ttl.png) no-repeat center top;
  opacity: 0;
  pointer-events: none;
}
#acym6jxn3ruawwonnqcu .img_02 {
  position: absolute;
  top: 625px;
  left: calc(50% - 210px);
  width: 420px;
  height: 237px;
  background: url(../files/design01_illust.png) no-repeat center top;
}

/*バナー＞お問い合わせ／GATEN（※）
zwylaw1myrh17puubfrg
--------------------------------------- */
.clone_block {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: calc(760 / 2000 * 100%) 0 0 0;
  background: #0b1f5a;
}

/* パーティクル背景 */
.clone_block::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
}
.clone_block::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(570 / 2000 * 100%);
  height: calC(310 / 760 * 100%);
  background: url(../files/2column_bnr_ttl.png)no-repeat center /100%;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.clone_block .particles-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.clone_block .easys_content_inner {
  position: absolute;
  top: calc(142 / 760 * 100%);
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0 !important;
  width: calc(1300 / 2000 * 100%);
}
.clone_block .eyecatch {
  width: 100%;
}
.clone_block .margin-bottom_30 {
  margin-bottom: 0;
}
.clone_block .field_2col {
  position: relative;
  overflow: visible;
  width: calc(300 / 1300 * 100%) !important;
}
.clone_block .eyecatch a img {
  position: relative;
  z-index: 11;
  opacity: 1;
}
.clone_block .field_2col::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: calc(946 / 300 * 100%);
  height: 100%;
  content: "";
  opacity: 0;
  transition: all var(--transition-duration) 0.1s;
  pointer-events: none;
}
.clone_block .float_left::after {
  background: url(../files/2column_bnr_contact_on.png)no-repeat center /100%;
  transform: translate(-30px, 0);
}
.clone_block .float_right::after {
  right: 0;
  left: auto;
  background: url(../files/2column_bnr_gtn_on.png) no-repeat center  / 100%;
  transform: translate(30px, 0);
}
.clone_block .field_2col:hover::after {
  opacity: 1;
  transform: none;
}
.clone_block .eyecatch::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
  content: "";
  transition: all var(--transition-duration);
  pointer-events: none;
}
.clone_block .float_right .eyecatch::after {
  right: 0;
  left: auto;
  transform-origin: right;
}
.clone_block .eyecatch:hover::after {
  width: calc(940 / 300 * 100%);
}

/*バナー＞株式会社寿建工で働くポイント
bjtw334ws575hxequadx
--------------------------------------- */
#bjtw334ws575hxequadx {
  position: relative;
  padding-top: calc(820 / 2000 * 100%);
  background: url(../files/bnr_4column_bg.png) no-repeat center top / 100%;
}
#bjtw334ws575hxequadx .easys_content_inner {
  position: absolute;
  top: calc(350 / 820 * 100%);
  left: 50%;
  padding: 0;
  width: calc(1864/ 2000 * 100%);
  transform: translateX(-50%);
}
#bjtw334ws575hxequadx .eyecatch {
  width: 100%;
}
#bjtw334ws575hxequadx .margin-bottom_30,
#bjtw334ws575hxequadx .margin-bottom_50 {
  margin-bottom: 0;
}
#bjtw334ws575hxequadx .img_display {
  display: flex;
  justify-content: space-between;
}
#bjtw334ws575hxequadx .field_1col {
  position: relative;
  width: calc(430 / 1864 * 100%) !important;
}
#bjtw334ws575hxequadx .eyecatch a img {
  opacity: 1;
  transition: all var(--transition-duration);
}
#bjtw334ws575hxequadx .eyecatch a:hover img {
  transform: scale(0.9);
}
#bjtw334ws575hxequadx .img_01 {
  display: block;
  margin-top: calc(160 / 2000 * 100%);
  margin-left: calc(543 / 2000 * 100%);
  width: calc(914 / 2000 * 100%);
  height: calc(110 / 810 * 100%);
  background: url(../files/bnr_4column_ttl.png) no-repeat center top / 100%;
}
/*DB>求人募集中です！
qt5auogp76321nk8zdhj
--------------------------------------- */
#qt5auogp76321nk8zdhj {
  position: relative;
}
#qt5auogp76321nk8zdhj::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design02_bg.png)no-repeat center top;
  content: "";
  pointer-events: none;
}
#qt5auogp76321nk8zdhj,
#qt5auogp76321nk8zdhj .easys_content_inner,
#qt5auogp76321nk8zdhj .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 959px;
}
#qt5auogp76321nk8zdhj .easys_content_inner {
  z-index: 11;
  width: 1180px;
}
#qt5auogp76321nk8zdhj *[class*="title"] {
  display: none;
}
#qt5auogp76321nk8zdhj .text_box {
  margin: 346px auto 0 0;
  width: 530px;
}
#qt5auogp76321nk8zdhj::after {
  position: absolute;
  top: 161px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 658px;
  background: url(../files/design02_image.jpg) repeat-x left top;
  content: "";
  animation: loop1 60s linear 0s infinite;
}
@keyframes loop1 {
  to {
    background-position: top left -2262px;
  }
}
#qt5auogp76321nk8zdhj .img01 {
  position: absolute;
  top: 704px;
  left: calc(50% - 613px);
  z-index: 12;
  width: 218px;
  height: 255px;
  background: url(../files/design02_cover02.png) no-repeat center top;
  transform: translate(0, 100px);
}
#qt5auogp76321nk8zdhj .img_01 {
  position: absolute;
  top: 165px;
  left: calc(50% - 590px);
  z-index: 12;
  width: 403px;
  height: 142px;
  background: url(../files/design02_ttl.png) no-repeat center top;
}
#qt5auogp76321nk8zdhj .img_02 {
  position: absolute;
  top: 143px;
  left: calc(50% - 155px);
  z-index: 12;
  width: 151px;
  height: 111px;
  background: url(../files/design02_cover01.png) no-repeat center top;
}

/*バナー＞お問い合わせ／GATEN（clone_1）
omdks9yavryw7oi9f2i8
--------------------------------------- */

/*DB>ご応募お待ちしております
xdbuj2b7qbi1p6awhvz1
--------------------------------------- */
#xdbuj2b7qbi1p6awhvz1 {
  position: relative;
  background: url(../files/design03_box_bg.png) no-repeat  left calc(50% - -8px) top 733px,url(../files/design03_bg.png) no-repeat center top;
}
#xdbuj2b7qbi1p6awhvz1,
#xdbuj2b7qbi1p6awhvz1 .easys_content_inner,
#xdbuj2b7qbi1p6awhvz1 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1212px;
}
#xdbuj2b7qbi1p6awhvz1 .easys_content_inner {
  width: 960px;
}
#xdbuj2b7qbi1p6awhvz1 *[class*="title"] {
  display: none;
}
#xdbuj2b7qbi1p6awhvz1 .text_box {
  margin: 797px auto 0 120px;
  width: 720px;
}
#xdbuj2b7qbi1p6awhvz1 .img01 {
  position: absolute;
  top: 140px;
  left: calc(50% - 365px);
  z-index: 10;
  width: 728px;
  height: 499px;
  background: url(../files/design03_image.png) no-repeat center top;
  transform: translate(0, 100px);
}
#xdbuj2b7qbi1p6awhvz1 .img_01 {
  position: absolute;
  top: 600px;
  left: calc(50% - 349px);
  z-index: 11;
  width: 698px;
  height: 99px;
  background: url(../files/design03_ttl.png) no-repeat center top;
  transition-delay: 0.2s;
}
#xdbuj2b7qbi1p6awhvz1 .img_02 {
  position: absolute;
  top: 228px;
  left: calc(50% - -308px);
  z-index: 12;
  width: 141px;
  height: 194px;
  background: url(../files/design03_illust01.png) no-repeat center top;
}
#xdbuj2b7qbi1p6awhvz1 .img_03 {
  position: absolute;
  top: 400px;
  left: calc(50% - 504px);
  z-index: 13;
  width: 197px;
  height: 338px;
  background: url(../files/design03_illust02.png) no-repeat center top;
  animation-delay: -1s;
}

/*バナー＞公式サイト（※）
kucskdomx070xnly44qv
--------------------------------------- */
#kucskdomx070xnly44qv {
  background: url(../files/bnr_officialsite_bg.png) no-repeat center top / 100%;

  padding-block: calc(120 / 2000 * 100%);
}
#kucskdomx070xnly44qv .easys_content_inner,
#kucskdomx070xnly44qv .img_display,
#kucskdomx070xnly44qv .eyecatch {
  position: relative;
  padding: 0;
  width: 100%;
}
#kucskdomx070xnly44qv div {
  margin-bottom: 0;
}
#kucskdomx070xnly44qv .easys_content_inner {
  width: calc(1300 / 2000 * 100%);
}
#kucskdomx070xnly44qv .eyecatch a {
  display: block;
}
#kucskdomx070xnly44qv .eyecatch a img {
  opacity: 1;
  transition: all var(--transition-duration);
}
#kucskdomx070xnly44qv .eyecatch a:hover img {
  transform: scale(0.9);
}


/*タイトル＞新着情報
g1tti3n35c1cf5py6q2a
--------------------------------------- */

/*新着情報
mcjm4i1sgutqg0x0egdd
--------------------------------------- */
#g1tti3n35c1cf5py6q2a {
  /*見出しブロック削除*/
  display: none;
}
#mcjm4i1sgutqg0x0egdd {
  position: relative;
  box-sizing: border-box;
  padding-top: 360px;
  padding-bottom: 150px;
  background: url(../files/design04_bg.jpg) no-repeat center /cover;
}
#mcjm4i1sgutqg0x0egdd .main_btn {
  position: absolute;
  top: 170px;
  left: calc(50% - -370px);
  margin: 0;
  padding: 0;
  width: 110px;
  height: 110px;
  transition: all var(--transition-duration);
}
#mcjm4i1sgutqg0x0egdd .main_btn:hover {
  transform: scale(0.90);
}
#mcjm4i1sgutqg0x0egdd .main_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design04_morebtn_txt.png)no-repeat center /100%;
  content: "";
  animation: 20s linear infinite rotation1;
  pointer-events: none;
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mcjm4i1sgutqg0x0egdd .main_btn a {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: url(/files/design04_morebtn_bg.png) no-repeat center;
  text-indent: -9999px;
}
#mcjm4i1sgutqg0x0egdd .blog_post span {
  color: #024cb3;/*日付、リード */
}

#mcjm4i1sgutqg0x0egdd .post_title_list a {
  color: #082155;
}

#mcjm4i1sgutqg0x0egdd .blog_post .news_small_text {
  color: #082155;
}
#mcjm4i1sgutqg0x0egdd .blog_post .news_small_text a {
  color: #024cb3;
}
/* ブログ記事一覧 横並び　※最新3件表示 */
#mcjm4i1sgutqg0x0egdd {
  overflow: hidden;
  margin: 0;
}
#mcjm4i1sgutqg0x0egdd .blog_post {
  display: block;
  float: left;
  width: 290px;
  border: none;
  border-radius: 25px;
  background-color: #ffffff;
}
#mcjm4i1sgutqg0x0egdd .blog_post:nth-child(2) {
  margin: 0 45px;
}/* 記事間 左右余白調整 */
#mcjm4i1sgutqg0x0egdd .blog_list_text_size {
  box-sizing: border-box;
  padding: 15px 15px 25px;
  width: 100%;
}
#mcjm4i1sgutqg0x0egdd .eyecatch {
  float: none;
}
#mcjm4i1sgutqg0x0egdd .eyecatch img {
  width: 290px;
  height: 220px;

  object-fit: cover;
}
#mcjm4i1sgutqg0x0egdd .date_area {
  /* 日付 */
  padding: 0;
}
#mcjm4i1sgutqg0x0egdd .post_title_list {
  padding: 0;

  /* 記事タイトル */
}
#mcjm4i1sgutqg0x0egdd .blog_thumb {
  max-height: none;

/* サムネイル画像 */
  width: 290px;
  height: 220px;
  border-radius: 25px 25px 0 0;
}
#mcjm4i1sgutqg0x0egdd .news_small_text {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  word-break: break-all;
  font-size: 14px;

/* 記事本文 */
  line-height: 1.8;
}
#mcjm4i1sgutqg0x0egdd .img_01 {
  position: absolute;
  top: 160px;
  left: calc(50% - 481px);
  width: 277px;
  height: 120px;
  background: url(../files/design04_ttl.png) no-repeat center top;
}

/*イメージ画像①
i7etvih31mgzcn310nt1
--------------------------------------- */
#i7etvih31mgzcn310nt1 {
  position: relative;
  overflow: hidden;
}
#i7etvih31mgzcn310nt1 .easys_content_inner {
  padding: 0;
  padding: calc(580 / 2000 * 100%) 0 0 0;
  width: 100%;

          clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
#i7etvih31mgzcn310nt1 .img_display {
  height: 0;
}
#i7etvih31mgzcn310nt1 img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}

/*DB>最高の仲間と、楽しく働く！
mgyfl6gml9l8qj3ij1qt
--------------------------------------- */
#mgyfl6gml9l8qj3ij1qt {
  position: relative;
  background: url(../files/design05_bg.png) no-repeat center top;
}
#mgyfl6gml9l8qj3ij1qt,
#mgyfl6gml9l8qj3ij1qt .easys_content_inner,
#mgyfl6gml9l8qj3ij1qt .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1000px;
}
#mgyfl6gml9l8qj3ij1qt .easys_content_inner {
  width: 960px;
}
#mgyfl6gml9l8qj3ij1qt *[class*="title"] {
  display: none;
}
#mgyfl6gml9l8qj3ij1qt .text_box {
  margin: 458px 0 0 auto;
  width: 430px;
}
#mgyfl6gml9l8qj3ij1qt .img_01 {
  position: absolute;
  top: 178px;
  left: calc(50% - -45px);
  width: 363px;
  height: 231px;
  background: url(../files/design05_ttl.png) no-repeat center top;
}
#mgyfl6gml9l8qj3ij1qt .img01 {
  position: absolute;
  top: 159px;
  left: calc(50% - 650px);
  width: 600px;
  height: 680px;
  background: url(../files/design05_image.png) no-repeat center top;
  transform: translate(0, 100px);
}
#mgyfl6gml9l8qj3ij1qt .img02 {
  position: absolute;
  top: 333px;
  left: calc(50% - -342px);
  width: 138px;
  height: 83px;
  background: url(../files/design05_illust01.png) no-repeat center top;
  transform: translate(100px,0);
}
#mgyfl6gml9l8qj3ij1qt .img03 {
  position: absolute;
  top: 728px;
  left: calc(50% - 620px);
  width: 293px;
  height: 176px;
  background: url(../files/design05_illust02.png) no-repeat center top;
  transform: translate(-100px,0);
}

/*DB>プラント・鉄骨・水道。社会を支える技術で、一生モノのスキルを掴む！
w7hpkii3u746bql1xopc
--------------------------------------- */
#w7hpkii3u746bql1xopc {
  position: relative;
  background: url(../files/design06_bg.png) no-repeat center top;
  color: #ffffff;
}
#w7hpkii3u746bql1xopc,
#w7hpkii3u746bql1xopc .easys_content_inner,
#w7hpkii3u746bql1xopc .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1202px;
}
#w7hpkii3u746bql1xopc .easys_content_inner {
  width: 960px;
}
#w7hpkii3u746bql1xopc *[class*="title"] {
  display: none;
}
#w7hpkii3u746bql1xopc .text_box {
  margin: 888px auto 0 0;
  width: 960px;
}
#w7hpkii3u746bql1xopc .img_01 {
  position: absolute;
  top: 610px;
  left: calc(50% - 560px);
  width: 1120px;
  height: 234px;
  background: url(../files/design06_ttl.png) no-repeat center top;
}
#w7hpkii3u746bql1xopc .img01 {
  position: absolute;
  top: 159px;
  left: calc(50% - 600px);
  width: 1200px;
  height: 410px;
  background: url(../files/design06_image.png) no-repeat center top;
  transform: translate(0, 100px);
}
#w7hpkii3u746bql1xopc .img02 {
  position: absolute;
  top: 609px;
  left: calc(50% - -395px);
  width: 151px;
  height: 133px;
  background: url(../files/design06_illust01.png) no-repeat center top;
  transform: translate(100px,0);
}
#w7hpkii3u746bql1xopc .img03 {
  position: absolute;
  top: 801px;
  left: calc(50% - 635px);
  width: 122px;
  height: 244px;
  background: url(../files/design06_illust02.png) no-repeat center top;
  transform: translate(-100px,0);
}

/*バナー＞お問い合わせ／GATEN（clone_3）
c239o6xhxyruqx7x0w22
--------------------------------------- */

/*DB>頑張るほど稼げる！収入直結の環境！
xf1o1y6nemi0syh026vv
--------------------------------------- */
#xf1o1y6nemi0syh026vv {
  position: relative;
  background: url(../files/design07_bg.png) no-repeat center top;
  color: #ffffff;
}
#xf1o1y6nemi0syh026vv,
#xf1o1y6nemi0syh026vv .easys_content_inner,
#xf1o1y6nemi0syh026vv .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1000px;
}
#xf1o1y6nemi0syh026vv .easys_content_inner {
  width: 960px;
}
#xf1o1y6nemi0syh026vv *[class*="title"] {
  display: none;
}
#xf1o1y6nemi0syh026vv .text_box {
  margin: 487px auto 0 0;
  width: 480px;
}
#xf1o1y6nemi0syh026vv .img_01 {
  position: absolute;
  top: 206px;
  left: calc(50% - 486px);
  width: 457px;
  height: 231px;
  background: url(../files/design07_ttl.png) no-repeat center top;
}
#xf1o1y6nemi0syh026vv .img01 {
  position: absolute;
  top: 160px;
  left: calc(50% - -50px);
  width: 600px;
  height: 680px;
  background: url(../files/design07_image.png) no-repeat center top;
  transform: translate(0, 100px);
}
#xf1o1y6nemi0syh026vv .img02 {
  position: absolute;
  top: 160px;
  left: calc(50% - 174px);
  width: 105px;
  height: 85px;
  background: url(../files/design07_illust01.png) no-repeat center top;
  transform: translate(0, -100px);
}
#xf1o1y6nemi0syh026vv .img03 {
  position: absolute;
  top: 600px;
  left: calc(50% - 665px);
  width: 175px;
  height: 242px;
  background: url(../files/design07_illust02.png) no-repeat center top;
  transform: translate(0, 100px);
}

/*DB>即入居可能！安心の新生活スタート！
gahbu7iueuhk2pubx9kl
--------------------------------------- */
#gahbu7iueuhk2pubx9kl {
  position: relative;
  background: url(../files/design08_bg.png) no-repeat center top;
}
#gahbu7iueuhk2pubx9kl,
#gahbu7iueuhk2pubx9kl .easys_content_inner,
#gahbu7iueuhk2pubx9kl .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1000px;
}
#gahbu7iueuhk2pubx9kl .easys_content_inner {
  width: 960px;
}
#gahbu7iueuhk2pubx9kl *[class*="title"] {
  display: none;
}
#gahbu7iueuhk2pubx9kl .text_box {
  margin: 459px 0 0 auto;
  width: 430px;
}
#gahbu7iueuhk2pubx9kl .img_01 {
  position: absolute;
  top: 179px;
  left: calc(50% - -46px);
  width: 559px;
  height: 231px;
  background: url(../files/design08_ttl.png) no-repeat center top;
}
#gahbu7iueuhk2pubx9kl .img01 {
  position: absolute;
  top: 159px;
  left: calc(50% - 650px);
  width: 600px;
  height: 680px;
  background: url(../files/design08_image.png) no-repeat center top;
  transform: translate(0, 100px);
}
#gahbu7iueuhk2pubx9kl .img02 {
  position: absolute;
  top: 180px;
  left: calc(50% - -385px);
  width: 131px;
  height: 130px;
  background: url(../files/design08_illust01.png) no-repeat center top;
  transform: translate(0, -100px);
}
#gahbu7iueuhk2pubx9kl .img03 {
  position: absolute;
  top: 661px;
  left: calc(50% - 642px);
  width: 180px;
  height: 235px;
  background: url(../files/design08_illust02.png) no-repeat center top;
  transform: translate(0, 100px);
}

/*バナー＞お問い合わせ／GATEN（clone_4）
ci9bd2xjzk39d0g55ex9
--------------------------------------- */

/*募集要項　ブロック_1
rvo63u8a2ygj5ehvf0ie
--------------------------------------- */

/*会社概要
rf8jvyojuils00h86sxy
--------------------------------------- */

/*イメージ画像②
f0vyhh3d8livzy7f70sa
--------------------------------------- */
#f0vyhh3d8livzy7f70sa {
  position: relative;
  overflow: hidden;
}
#f0vyhh3d8livzy7f70sa .easys_content_inner {
  padding: 0;
  padding: calc(580 / 2000 * 100%) 0 0 0;
  width: 100%;

          clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
#f0vyhh3d8livzy7f70sa .img_display {
  height: 0;
}
#f0vyhh3d8livzy7f70sa img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}
