@charset "utf-8";

/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #ffffff;
  --body_text_color: #27273d;
  --link_color: #b6a962;
  --border_color: #666666;
  --table_border_color: transparent;
  --th_background_color: #e9f3f6;
  --td_background_color: #e9f3f6;
  --th_character_color: #27273d;
  --td_character_color: #27273d;
  --required_color: #46a5d1;
  --top_h1_color: #ffffff;
  --header_navigation_color: transparent;
  --top_entry_title_color: #27273d;
  --entry_title_bg_color: #ffffff;
  --blog_title_color: #27273d;
  --sub_entry_title_bg_color: #27273d;
  --entry_title_bg_w570_color: #ffffff;
  --sub_entry_title_bg_w570_color: #287baf;
  --half_entry_title_bg_color: #ffffff;
  --half_sub_entry_title_bg_color: #5098b5;
  --column3_title_bg_color: #ffffff;
  --widget_title_bg_color: #27273d;
  --widget_list_bg_color: #27273d;
  --footnavi_color: #ffffff;
  --address_color: #ffffff;
  --copy_color: #ffffff;
}

/* 置換以外 */
:root {
  /* アニメーション速度 */
  --transition-duration: 0.3s;

  /* トップに戻るボタン */

  --float_top_btn_w: 50px;
  --float_top_btn_x: 30px;

  /* EASYSの最小幅(単位なし) */
  --easys_min_width: 1300;

  /* EASYSの最大幅(単位なし) */
  --easys_max_width: 2000;

  /* トップメインのオリジナル高さ(単位なし) */
  --easys_top_main_h: 930;

  /* 中ページメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 700;

  /*ナビ*/
  --easys_access_h: 80px;

  /* 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-padding-top: var(--easys_access_h);
  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: none no-repeat center top;
  word-break: break-word;
  /* background: url("/files/body_bg.jpg") no-repeat center top/100%;  */
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/html_bg.jpg) no-repeat center / cover;
  content: '';
  pointer-events: none;
}
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: 100px;
  background: none transparent;
}
#branding_box::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100px;
  background: #ffffff;
  content: '';
  pointer-events: none;
}
#page_6 #branding_box {
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0;
  height: 100px;
  background: url('/files/top_header_cover.png') no-repeat center top 100px/100%;
  /* background: none transparent; */
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  bottom: calc(180 / var(--easys_naka_main_h) * 100%);
  left: calc(39 / var(--easys_max_width) * 100%);
  z-index: 753;
  margin: 0 auto;
  width: auto;

  /* text-align: right; */
  transform: translateY(50%);
}

#page_6 #site-description {
  bottom: calc(265 / var(--easys_top_main_h) * 100%);
  left: calc(267 / var(--easys_max_width) * 100%);
}

#page_1023 #site-description {
  left: calc(50 / 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: 0;
  left: 40px;
  z-index: 752;
  width: 225px;
  height: 100px;
  background: url('/files/main_logo.png') no-repeat center top;
  /*
background: none;
top: calc(0 / var(--easys_naka_main_h) * 100%);
left: calc(0 / var(--easys_max_width) * 100%);
width: calc(300 / var(--easys_max_width) * 100%);
height: calc(150 / var(--easys_naka_main_h) * 100%);
*/
}

/*
#page_6 #header_information .main_header a img {
top: calc(0 / var(--easys_top_main_h) * 100%);
left: calc(0 / var(--easys_max_width) * 100%);
width: calc(300 / var(--easys_max_width) * 100%);
height: calc(150 / var(--easys_top_main_h) * 100%);
}
*/

/* Gナビ上部固定
#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）
---------------------------------------------------------------------------------------------------- */
/* ※表示速度重視のためtheme.cssおよびstyle.cssの関連ソースをコメントアウトしています※ */
#access {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 751;
  margin: 0 0 0 auto;
  padding: 0;
  width: 985px;
  height: var(--easys_access_h);
  font-size: 13px;
  float: right;
}
@media (min-width: 2016px) {
  #access {
    left: calc(50% - 1000px) !important;
  }
}
#access .menu-header {
  position: absolute;
  margin: 0;
  width: 985px;
  height: 100%;
  right: 0;
}
#access #menu-gnavi {
  display: flex;
  width: 985px;
  justify-content: flex-start;
}
#access #menu-gnavi > .menu-item {
  white-space: nowrap;
}
#access #menu-gnavi > .menu-item > a {
  display: block;
  padding: 0 12.5px;
  width: auto;
  height: 80px;
  background: none;
  color: #27273d;
  text-align: center;
  font-weight: 500;
  line-height: 80px;
}
#access #menu-gnavi > .menu-item:first-of-type a {
  padding-left: 35px;
}
#access #menu-gnavi > .menu-item > a:hover {
  background-color: transparent;
  color: #b6a962;
}
#access #menu-gnavi > .menu-item + .menu-item {
  padding-left: 0;
}
/* プルダウンメニュー */
#access #menu-gnavi .sub-menu {
  position: absolute;
  left: 0;
  z-index: 900;
  display: flex;
  box-sizing: border-box;
  height: 0;
  background: #27273d;
  line-height: 60px;
  transition: 0.3s;
  width: 985px;
}
#access #menu-gnavi .sub-menu li + li {
  padding-left: 20px;
  white-space: nowrap;
}
#access #menu-gnavi > .sub-menu li .menu-item:first-of-type a {
  padding-left: 35px;
}
#access #menu-gnavi .sub-menu li + li::before {
  float: left;
  margin-left: -13px;
  color: #ffffff;
  content: '|';
}
#access #menu-gnavi .sub-menu a {
  display: block;
  padding: 0 15px;
  height: 60px !important;
  background: none;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 60px !important;
}
#access #menu-gnavi .sub-menu li:first-of-type a {
  padding-left: 38px;
}
#access #menu-gnavi .sub-menu a:hover {
  color: #e8d983;
  text-decoration: none;
}
#access #menu-gnavi > .menu-item:hover > .sub-menu {
  height: 60px;
}
#access #menu-gnavi > .menu-item:hover > .sub-menu li:hover .sub-menu {
  height: 60px;
}
#access #menu-gnavi .sub-menu li {
  display: none;
}
#access #menu-gnavi .sub-menu .sub-menu > li a {
  padding: 0 15px;
}
#access #menu-gnavi .sub-menu .sub-menu > li:nth-of-type(1) a {
  padding-left: 38px;
}
#access #menu-gnavi > .menu-item:hover > .sub-menu > li {
  display: block;
  width: auto;
}
#access #menu-gnavi > .menu-item:hover > .sub-menu > li:hover .sub-menu > li {
  display: block;
  width: auto;
}

/*固定時用ナビ*/
#access.fixed {
  position: fixed;
  top: 0 !important;
  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.9);
}

#access.fixed .menu-header {
  float: none;
  max-width: calc(var(--easys_max_width) * 1px);
  transform: none;
}

#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);
}

/* 個別設定 */
#access #menu-gnavi > .side-navi > a {
  box-sizing: border-box;
  padding: 0;
  width: 40px;
  height: 80px;
  text-indent: -9999px;
}
#access .gnavi18 a {
  background: url(/files/btn_contact.png) no-repeat center !important;
}
#access .gnavi19 a {
  background: url(/files/btn_blog.png) no-repeat center !important;
}
#access .gnavi20 a {
  background: url(/files/btn_gaten.png) no-repeat center !important;
}
#menu-item-1040 {
  margin-right: 5px;
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: 100px;
  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: 800px;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  background: none transparent;
}
#footer_block::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../files/footer_para_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#footer_box {
  height: 800px;
  background: url(../files/footer_bg.png) no-repeat center top;
}
#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer-widget-area .widget-area {
  position: absolute;
  top: 274px;
  left: calc(50% - 36px);
}

#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);
  height: 36px;
  line-height: 36px;
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
/* 個別設定 */
#menu-item-1048 a {
  width: 270px;
  height: 110px !important;
  display: block !important;
  text-indent: -9999px;
  background: url(/files/footer_contact_off.png) no-repeat center;
  position: absolute;
  top: -244px;
  left: -458px;
}
#menu-item-1048 a::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all var(--transition-duration);
  background: url(../files/footer_contact_on.png) no-repeat center top;
}
#menu-item-1048 a:hover::before {
  opacity: 1;
}
#menu-item-1058 a {
  width: 260px;
  height: 85px !important;
  display: block !important;
  text-indent: -9999px;
  background: url(/files/footer_recruit_off.png) no-repeat center;
  position: absolute;
  top: -108px;
  left: -458px;
}
#menu-item-1058 a::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all var(--transition-duration);
  background: url(../files/footer_recruit_on.png) no-repeat center top;
}
#menu-item-1058 a:hover::before {
  opacity: 1;
}

/*ナビ・装飾*/
/* #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_sitemap_block #footer-widget-area .widget-area .menu-item a::after {
  display: block;
  content: '';
  width: 11px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -5px;
  background: url(../files/footer_navi_mark.png) no-repeat center;
}
#menu-item-1058 a::after,
#menu-item-1048 a::after,
#footer_sitemap_block #footer-widget-area .widget-area .f_sub a::after {
  display: none !important;
}
#footer-widget-area .widget-area .menu-item {
  float: none;
  text-align: left;
  position: relative;
  margin-bottom: 0;
}

#footer-widget-area .widget-area .menu-item .sub-menu {
  position: absolute;
  left: 165px;
  width: 350px;
  top: 0;
  display: flex;
}
#footer-widget-area .widget-area .menu-item .sub-menu .f_sub:first-of-type::before {
  display: block;
  content: '';
  width: 15px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../files/footer_subnavi_mark.png) no-repeat center;
}
#footer-widget-area .widget-area .menu-item .sub-menu .f_sub:first-of-type a {
  padding-left: 25px;
}

/*ナビ２列*/
/* #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: 180px;
  left: calc(50% - 474px);
}
#footer_information .entry-post {
  width: 300px;
  margin: 0;
  text-align: left;
}

/*  フッター住所文字色
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}

/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}

#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}

#footer_sns_btn div {
  width: 25px;
  height: 25px;
}

#footer_sns_btn div a:hover {
  opacity: 0.8;
}

/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}

#copyright {
  position: absolute;
  bottom: 210px;
  left: calc(50% - 480px);
}

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed-btn {
  z-index: 1000;
  position: fixed;
  bottom: 0;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.4s;
}

.fixed-btn.first_view {
  visibility: visible;
  opacity: 1;
}

.fixed-btn div,
.fixed-btn div a {
  overflow: hidden;
  width: 320px;
  height: 110px;
  display: block;
  transition: all var(--transition-duration);
}
.fixed-btn div a {
  transform: translateY(10px);
}
.fixed-btn div a:hover {
  transform: translateY(0);
}

.fixed-btn div:last-child {
  margin-bottom: 0;
}

@media (min-width: 2000px) {
  .fixed-btn {
    left: calc(50% - 960px);
    width: 50px;
  }
  #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: 30px;
  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);
  height: 80px;
  line-height: 80px;
}

h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}

/*h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  フォントサイズはこちら
}*/
.entry_title a:link,
.entry_title a:visited,
.entry_title a:hover,
.entry_title a:active,
.entry-title a:link,
.entry-title a:visited,
.entry-title a:hover,
.entry-title a:active {
  color: var(--entry_title_bg_color);
}

/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}

.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}

* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: 20px;
}

* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}

* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}

* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}

/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}

/*
* .sub_entry_title h4 {
  フォントサイズはこちら
}
*/
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}

/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}

.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}

* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 20px;
}

* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}

* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  padding: 10px;
  height: auto;
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}

/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}

small a {
  padding: 5px 0;
  width: 100%;
  color: var(--link_color) !important;
  text-align: center !important;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}

#page_6 [class*='nf_'] {
  padding-bottom: 50px;
}

#rf8jvyojuils00h86sxy .html_post small {
  margin: 10px auto;
  height: 36px;
}

#rf8jvyojuils00h86sxy .html_post small a {
  height: 36px;
}

/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  box-sizing: border-box;
  border: none !important;
  background: none var(--th_background_color);
  color: var(--th_character_color);
}

.easys_content:not(.ne_01) table:not(#wp-calendar) {
  border-spacing: 0 10px !important;
  border-collapse: separate;
}

table.iqfm-table td {
  min-width: 7em;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
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 {
  opacity: 0;
  transition: 1.3s ease 0s;
  transform: translateY(100px);
}

.easys_content_inner.moved {
  opacity: 1;
  transform: translateY(0);
}

/*パララックス除外*/
#dghsjos2lo3vbrolzsnd .easys_content_inner,
#qy1c2mvimxjpkseys0aa .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 p {
  line-height: 2.35;
}
.db_block *[class*='title'] {
  display: none;
}
.outer_top #outer_block:not(.shosai .outer_top #outer_block) {
  padding-top: 0;
}
/* DBボタン */
.db_block .main_btn {
  position: relative;
  display: block;
  padding: 0;
  width: 280px;
  height: 40px;
}
.db_block .main_btn a {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
.db_block .main_btn a::before,
.db_block .main_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  transition: opacity var(--transition-duration) ease 0s;
  pointer-events: none;
}
.db_block .main_btn a::after {
  opacity: 1;
}
.db_block .main_btn a:hover::before {
  opacity: 1;
}
.db_block .main_btn a:hover::after {
  opacity: 0;
}
.db_block .main_btn a::after {
  background: url(../files/design_btn_off.png) no-repeat center top;
}
.db_block .main_btn a::before {
  background: url(../files/design_btn_on.png) no-repeat center top;
}

/* 2段階イン 別途クラス付与済 */
.design_block.clipin {
  opacity: 1;
  transition: 0.6s;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.design_block.clipin.moved {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.design_block.clipin::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5098b5;
  content: '';
  transition: 0.6s;
}
.design_block.clipin.moved::after {
  transition-delay: 0.6s;
  transform: translateX(100%);
}

/* ===========================================================================
　　トップページ　　pageID：6
=========================================================================== */
/*DB>建設機械の運搬なら株式会社ハヤカワ
obn1r6q94d6bd39b6p8v
--------------------------------------- */
#obn1r6q94d6bd39b6p8v {
  position: relative;
  background: url(../files/design01_bg01.png) no-repeat center top;
}
#obn1r6q94d6bd39b6p8v,
#obn1r6q94d6bd39b6p8v .easys_content_inner,
#obn1r6q94d6bd39b6p8v .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1020px;
}
#obn1r6q94d6bd39b6p8v .easys_content_inner {
  width: 960px;
}
#obn1r6q94d6bd39b6p8v *[class*='title'] {
  display: none;
}
#obn1r6q94d6bd39b6p8v .text_box {
  margin: 698px auto 0 0;
  width: 830px;
}
#obn1r6q94d6bd39b6p8v .post_data {
  margin-bottom: 20px;
}
#obn1r6q94d6bd39b6p8v .main_btn {
  position: relative;
  display: block;
  padding: 0;
  width: 280px;
  height: 40px;
}
#obn1r6q94d6bd39b6p8v .main_btn a {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
#obn1r6q94d6bd39b6p8v .main_btn a::before,
#obn1r6q94d6bd39b6p8v .main_btn a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  transition: opacity var(--transition-duration) ease 0s;
  pointer-events: none;
}
#obn1r6q94d6bd39b6p8v .main_btn a::after {
  opacity: 1;
}
#obn1r6q94d6bd39b6p8v .main_btn a:hover::before {
  opacity: 1;
}
#obn1r6q94d6bd39b6p8v .main_btn a:hover::after {
  opacity: 0;
}
#obn1r6q94d6bd39b6p8v .main_btn a::after {
  background: url(../files/design_btn_off.png) no-repeat center top;
}
#obn1r6q94d6bd39b6p8v .main_btn a::before {
  background: url(../files/design_btn_on.png) no-repeat center top;
}
#obn1r6q94d6bd39b6p8v .img01 {
  background: url(../files/design01_img01.jpg) no-repeat center top;
  width: 1120px;
  height: 440px;
  position: absolute;
  top: 200px;
  left: calc(50% - 1000px);
}
#obn1r6q94d6bd39b6p8v .img02 {
  background: url(../files/design01_img02.jpg) no-repeat center top;
  width: 240px;
  height: 320px;
  position: absolute;
  top: 650px;
  left: calc(50% - -450px);
}
#obn1r6q94d6bd39b6p8v .img03 {
  background: url(../files/design01_img03.png) no-repeat center top;
  width: 390px;
  height: 95px;
  position: absolute;
  top: 877px;
  left: calc(50% - -193px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

/*DB>当社の取り組みをご紹介しております
nw28yo5utm3xbprmv7ru
--------------------------------------- */
#nw28yo5utm3xbprmv7ru {
  position: relative;
}
#nw28yo5utm3xbprmv7ru::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../files/design02_bg01.png) no-repeat center top;
  z-index: 12;
}
#nw28yo5utm3xbprmv7ru,
#nw28yo5utm3xbprmv7ru .easys_content_inner,
#nw28yo5utm3xbprmv7ru .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1125px;
}
#nw28yo5utm3xbprmv7ru .easys_content_inner {
  width: 960px;
}
#nw28yo5utm3xbprmv7ru *[class*='title'] {
  display: none;
}
#nw28yo5utm3xbprmv7ru .text_box {
  margin: 600px auto 0 0;
  width: 370px;
}
#nw28yo5utm3xbprmv7ru .post_data {
  margin-bottom: 25px;
}
#nw28yo5utm3xbprmv7ru::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 190px;
  background: url(../files/design02_img01.png) repeat-x left top;
  content: '';
  animation: loopdb2 40s linear 0s infinite;
}
@keyframes loopdb2 {
  to {
    background-position: top left -1980px;
  }
}
#nw28yo5utm3xbprmv7ru .img01 {
  background: url(../files/design02_img02.jpg) no-repeat center top;
  width: 480px;
  height: 260px;
  position: absolute;
  top: 64px;
  left: calc(50% - 748px);
}
/* 個別色指定 */
#nw28yo5utm3xbprmv7ru > .img01::after {
  background-color: #27273d;
}
#nw28yo5utm3xbprmv7ru .img02 {
  background: url(../files/design02_img03.jpg) no-repeat center top;
  width: 1000px;
  height: 820px;
  position: absolute;
  top: 152px;
  left: calc(50% - 0px);
}
#nw28yo5utm3xbprmv7ru .img03 {
  background: url(../files/design02_img04.png) no-repeat center top;
  width: 485px;
  height: 130px;
  position: absolute;
  top: 336px;
  left: calc(50% - 330px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

/*DB>お問い合わせをお待ちしております
occcpwt49safzgwrsx8v
--------------------------------------- */
#occcpwt49safzgwrsx8v {
  position: relative;
  background: url(../files/design03_bg01.png) no-repeat center top;
}
#occcpwt49safzgwrsx8v,
#occcpwt49safzgwrsx8v .easys_content_inner,
#occcpwt49safzgwrsx8v .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 985px;
}
#occcpwt49safzgwrsx8v .easys_content_inner {
  width: 1100px;
}
#occcpwt49safzgwrsx8v *[class*='title'] {
  display: none;
}
#occcpwt49safzgwrsx8v .text_box {
  margin: 580px 70px 0 auto;
  width: 562px;
}
#occcpwt49safzgwrsx8v .text_box p {
  margin-bottom: 35px;
}
#occcpwt49safzgwrsx8v .post_data {
  margin-bottom: 40px;
}
#occcpwt49safzgwrsx8v .main_btn {
  position: absolute;
  top: 746px;
  left: 9px;
}
#occcpwt49safzgwrsx8v .main_btn a::after {
  background: url(../files/design03_btn_off.png) no-repeat center top;
}
#occcpwt49safzgwrsx8v .main_btn a::before {
  background: url(../files/design03_btn_on.png) no-repeat center top;
}
#occcpwt49safzgwrsx8v::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 220px;
  background: url(../files/design03_img01.png) repeat-x left top;
  content: '';
  animation: loopdb3 40s linear 0s infinite;
}
@keyframes loopdb3 {
  to {
    background-position: top left -1650px;
  }
}
#occcpwt49safzgwrsx8v .img01 {
  background: url(../files/design03_img02.jpg) no-repeat center top;
  width: 730px;
  height: 280px;
  position: absolute;
  top: 52px;
  left: calc(50% - 1000px);
}
#occcpwt49safzgwrsx8v .img02 {
  background: url(../files/design03_img03.jpg) no-repeat center top;
  width: 810px;
  height: 380px;
  position: absolute;
  top: 132px;
  left: calc(50% - 115px);
}
/* 個別色指定 */
#occcpwt49safzgwrsx8v > .img02::after {
  background-color: #27273d;
}
#occcpwt49safzgwrsx8v .img03 {
  background: url(../files/design03_img04.png) no-repeat center top;
  width: 370px;
  height: 150px;
  position: absolute;
  top: 389px;
  left: calc(50% - 566px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#occcpwt49safzgwrsx8v .img04 {
  background: url(../files/design03_img05.png) no-repeat center bottom;
  width: 420px;
  height: 168px;
  position: absolute;
  top: 389px;
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  left: calc(50% - 345px);
  transition-delay: 0.5s;
}

/*バナー＞新卒採用特設サイト（※top）
j4tzwfewu69v7ym2tgw6
--------------------------------------- */
#j4tzwfewu69v7ym2tgw6 {
  position: relative;
  height: 280px;
  margin-block: 70px;
}
#j4tzwfewu69v7ym2tgw6 .easys_content_inner,
#j4tzwfewu69v7ym2tgw6 .img_display,
#j4tzwfewu69v7ym2tgw6 .field_1col {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#j4tzwfewu69v7ym2tgw6 .eyecatch {
  overflow: hidden;
  width: 100%;
}
#j4tzwfewu69v7ym2tgw6 .margin-bottom_30 {
  margin-bottom: 0;
}
#j4tzwfewu69v7ym2tgw6 .eyecatch a,
#j4tzwfewu69v7ym2tgw6 .eyecatch a img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 1090px;
  height: 280px;
  transition: ease var(--transition-duration);
  object-fit: cover;
}
#j4tzwfewu69v7ym2tgw6 .eyecatch a::before {
  position: absolute;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/bnr_recruit_on.png) no-repeat center;
  content: '';
  opacity: 0;
  transition: ease var(--transition-duration);
}
#j4tzwfewu69v7ym2tgw6 .eyecatch a:hover::before {
  opacity: 1;
}
#j4tzwfewu69v7ym2tgw6 .eyecatch a:hover img {
  opacity: 1;
}

/* 新着情報
g1tti3n35c1cf5py6q2a
mcjm4i1sgutqg0x0egdd
--------------------------------------- */
#g1tti3n35c1cf5py6q2a *[class*='title'] {
  display: none;
}
#mcjm4i1sgutqg0x0egdd {
  background: url(/files/design04_title.png) no-repeat left calc(50% - 395px) top;
  padding: 0;
  position: relative;
  min-height: 520px;
  margin-block: 150px;
}
#mcjm4i1sgutqg0x0egdd .easys_content_inner {
  position: relative;
  clip-path: none !important;
  width: 1080px;
}
#mcjm4i1sgutqg0x0egdd .post_data {
  width: 520px;
  position: relative;
  overflow: visible;
  float: right;
}
#mcjm4i1sgutqg0x0egdd .blog_thumb {
  width: 100px;
  height: 100px;
  float: none;
  margin-top: 10px;
}
#mcjm4i1sgutqg0x0egdd .date_area {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  position: absolute;
  left: -128px;
  top: -16px;
}
#mcjm4i1sgutqg0x0egdd .post_title_list {
  font-size: 16px;
}
#mcjm4i1sgutqg0x0egdd .post_title_list a,
#mcjm4i1sgutqg0x0egdd .news_small_text a {
  color: #5098b5;
}
#mcjm4i1sgutqg0x0egdd .news_small_text {
  font-size: 14px;
  line-height: 1.8;
  display: inline-block;
  margin-top: 15px;
}
#mcjm4i1sgutqg0x0egdd .blog_post {
  width: 730px;
  margin-left: 350px;
  background: #fff;
  padding: 35px 41px 30px;
  box-shadow: 2px 2px 8px rgba(32, 54, 109, 0.2);
  border-radius: 7px;
  box-sizing: border-box;
  border: none;
  margin-bottom: 10px;
}
#mcjm4i1sgutqg0x0egdd .read_more_btn {
  position: absolute;
  top: 243px;
  left: calc(50% - 542px);
  width: 235px;
  height: 40px;
}
#mcjm4i1sgutqg0x0egdd .read_more_btn a {
  width: 100%;
  height: 100%;
  background: url(/files/design04_btn_off.png) no-repeat center top;
}
#mcjm4i1sgutqg0x0egdd .read_more_btn a::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: all var(--transition-duration);
  opacity: 0;
  left: 0;
  background: url(../files/design04_btn_on.png) no-repeat center top/100%;
}
#mcjm4i1sgutqg0x0egdd .read_more_btn a:hover::before {
  opacity: 1;
}
#mcjm4i1sgutqg0x0egdd .read_more_btn a img {
  display: none;
}

/*イメージ画像（※top）
qy1c2mvimxjpkseys0aa
--------------------------------------- */
#qy1c2mvimxjpkseys0aa {
  position: relative;
  overflow: hidden;
}
#qy1c2mvimxjpkseys0aa .easys_content_inner {
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
#qy1c2mvimxjpkseys0aa .easys_content_inner,
#qy1c2mvimxjpkseys0aa .img_display,
#qy1c2mvimxjpkseys0aa .eyecatch,
#qy1c2mvimxjpkseys0aa .field_1col {
  position: relative;
  top: 0;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 740px;
}
#qy1c2mvimxjpkseys0aa div {
  margin-bottom: 0;
  line-height: 0;
}
#qy1c2mvimxjpkseys0aa .img_display .field_1col {
  position: absolute;
  top: 0;
}
#qy1c2mvimxjpkseys0aa [class*='field_']:nth-of-type(1) img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
}
#qy1c2mvimxjpkseys0aa .img_display div:nth-of-type(2) .eyecatch img {
  position: absolute;
  left: calc(50% - 1000px);
  width: 2000px;
  height: 740px;
}

/* ===========================================================================
　　事業内容　　pageID：9
=========================================================================== */
/*DB>事業内容のご紹介
vy01bvx30uq6vgbhkjgm
--------------------------------------- */
#vy01bvx30uq6vgbhkjgm {
  position: relative;
  color: #fff;
  background: url(../files/design05_bg01.jpg) no-repeat center top;
}
#vy01bvx30uq6vgbhkjgm,
#vy01bvx30uq6vgbhkjgm .easys_content_inner,
#vy01bvx30uq6vgbhkjgm .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1600px;
}
#vy01bvx30uq6vgbhkjgm .easys_content_inner {
  width: 960px;
}
#vy01bvx30uq6vgbhkjgm *[class*='title'] {
  display: none;
}
#vy01bvx30uq6vgbhkjgm .text_box {
  margin: 1015px 0 0 auto;
  width: 437px;
}
#vy01bvx30uq6vgbhkjgm .img01 {
  background: url(../files/design05_img01.jpg) no-repeat center top;
  width: 880px;
  height: 260px;
  position: absolute;
  top: 202px;
  left: calc(50% - -120px);
}
#vy01bvx30uq6vgbhkjgm .img02 {
  background: url(../files/design05_img02.jpg) no-repeat center top;
  width: 880px;
  height: 570px;
  position: absolute;
  top: 300px;
  left: calc(50% - 1000px);
}
#vy01bvx30uq6vgbhkjgm .img03 {
  background: url(../files/design05_img04.png) no-repeat center top;
  width: 430px;
  height: 160px;
  position: absolute;
  top: 1135px;
  left: calc(50% - 584px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#vy01bvx30uq6vgbhkjgm::before {
  position: absolute;
  top: 1207px;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 170px;
  background: url(../files/design05_img03.png) repeat-x left top;
  content: '';
  animation: loopdb5 40s linear 0s infinite;
}
@keyframes loopdb5 {
  to {
    background-position: top left -2000px;
  }
}

/*バナー＞お問い合わせ（※business）
j35i2vfyjw6yb4sh6n9g
--------------------------------------- */
#j35i2vfyjw6yb4sh6n9g {
  position: relative;
  height: 240px;
  margin-block: 170px;
}
#j35i2vfyjw6yb4sh6n9g .easys_content_inner,
#j35i2vfyjw6yb4sh6n9g .img_display,
#j35i2vfyjw6yb4sh6n9g .field_1col {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#j35i2vfyjw6yb4sh6n9g .eyecatch {
  overflow: hidden;
  width: 100%;
}
#j35i2vfyjw6yb4sh6n9g .margin-bottom_30 {
  margin-bottom: 0;
}
#j35i2vfyjw6yb4sh6n9g .eyecatch a,
#j35i2vfyjw6yb4sh6n9g .eyecatch a img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 960px;
  height: 240px;
  transition: ease var(--transition-duration);
  object-fit: cover;
}
#j35i2vfyjw6yb4sh6n9g .eyecatch a::before {
  position: absolute;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/bnr_contact_on.png) no-repeat center;
  content: '';
  opacity: 0;
  transition: ease var(--transition-duration);
}
#j35i2vfyjw6yb4sh6n9g .eyecatch a:hover::before {
  opacity: 1;
}
#j35i2vfyjw6yb4sh6n9g .eyecatch a:hover img {
  opacity: 1;
}

/*バナー＞GATEN（※business）
t10c35ij7m09dchta3v5
--------------------------------------- */
#t10c35ij7m09dchta3v5 {
  position: relative;
  height: 240px;
  margin-block: 170px;
}
#t10c35ij7m09dchta3v5 .easys_content_inner,
#t10c35ij7m09dchta3v5 .img_display,
#t10c35ij7m09dchta3v5 .field_1col {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#t10c35ij7m09dchta3v5 .eyecatch {
  overflow: hidden;
  width: 100%;
}
#t10c35ij7m09dchta3v5 .margin-bottom_30 {
  margin-bottom: 0;
}
#t10c35ij7m09dchta3v5 .eyecatch a,
#t10c35ij7m09dchta3v5 .eyecatch a img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 960px;
  height: 240px;
  transition: ease var(--transition-duration);
  object-fit: cover;
}
#t10c35ij7m09dchta3v5 .eyecatch a::before {
  position: absolute;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/bnr_gaten_on.png) no-repeat center;
  content: '';
  opacity: 0;
  transition: ease var(--transition-duration);
}
#t10c35ij7m09dchta3v5 .eyecatch a:hover::before {
  opacity: 1;
}
#t10c35ij7m09dchta3v5 .eyecatch a:hover img {
  opacity: 1;
}

/* バナー余白設定
--------------------------------------- */
#j35i2vfyjw6yb4sh6n9g.nextBnr {
  margin-bottom: 0;
}
#t10c35ij7m09dchta3v5.nextBnr {
  margin-top: 20px;
}

/* ===========================================================================
　　ハヤカワの取り組み　　pageID：12
=========================================================================== */
/*DB>当社の取り組みをご紹介
do9xnpztbzy3ll1ne5rz
--------------------------------------- */
#do9xnpztbzy3ll1ne5rz {
  position: relative;
  background: url(../files/design06_bg01.png) no-repeat center top;
}
#do9xnpztbzy3ll1ne5rz + .easys_content {
  margin-top: 0;
}
#do9xnpztbzy3ll1ne5rz,
#do9xnpztbzy3ll1ne5rz .easys_content_inner,
#do9xnpztbzy3ll1ne5rz .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 970px;
}
#do9xnpztbzy3ll1ne5rz .easys_content_inner {
  width: 960px;
}
#do9xnpztbzy3ll1ne5rz *[class*='title'] {
  display: none;
}
#do9xnpztbzy3ll1ne5rz .text_box {
  margin: 620px auto 0;
  width: 810px;
}
#do9xnpztbzy3ll1ne5rz .text_box p {
  text-align: center;
}
#do9xnpztbzy3ll1ne5rz .img01 {
  background: url(../files/design06_img01.jpg) no-repeat center top;
  width: 475px;
  height: 290px;
  position: absolute;
  top: 200px;
  left: calc(50% - 480px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#do9xnpztbzy3ll1ne5rz .img02 {
  background: url(../files/design06_img02.jpg) no-repeat center top;
  width: 475px;
  height: 290px;
  position: absolute;
  top: 200px;
  left: calc(50% - -6px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#do9xnpztbzy3ll1ne5rz .img03 {
  background: url(../files/design06_bg02.png) no-repeat center top;
  width: 2000px;
  height: 970px;
  position: absolute;
  top: 0px;
  transform: translate(0, -100px);
  left: calc(50% - 1000px);
}
#do9xnpztbzy3ll1ne5rz::before {
  position: absolute;
  top: 688px;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 200px;
  background: url(../files/design06_img03.png) repeat-x left top;
  content: '';
  animation: loopdb6 40s linear 0s infinite;
}
@keyframes loopdb6 {
  to {
    background-position: top left -1640px;
  }
}

/* ===========================================================================
　　会社概要　　pageID：81
=========================================================================== */
/*DB>代表挨拶
dghsjos2lo3vbrolzsnd
--------------------------------------- */
#dghsjos2lo3vbrolzsnd {
  position: relative;
  overflow: hidden;
}
#dghsjos2lo3vbrolzsnd,
#dghsjos2lo3vbrolzsnd .easys_content_inner,
#dghsjos2lo3vbrolzsnd .entry_post {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
  height: 1000px;
}
#dghsjos2lo3vbrolzsnd .easys_content_inner {
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
#dghsjos2lo3vbrolzsnd .easys_content_inner::before {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../files/design07_bg01.jpg) no-repeat center / cover;
  content: '';
  transform: translateX(-50%);
  pointer-events: none;
}
#dghsjos2lo3vbrolzsnd .easys_content_inner::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../files/design07_bg02.png) no-repeat center top;
  content: '';
  transform: translateX(-50%);
  pointer-events: none;
}
#dghsjos2lo3vbrolzsnd .text_box {
  position: absolute;
  top: 440px;
  left: calc(50% - 480px);
  margin: 0;
  width: 480px;
  overflow: visible;
}
#dghsjos2lo3vbrolzsnd .text_box::before {
  display: block;
  content: '';
  width: 400px;
  height: 110px;
  pointer-events: none;
  position: absolute;
  bottom: -104px;
  left: -48px;
  background: url(../files/design07_img02.png) no-repeat center top/100%;
}
#dghsjos2lo3vbrolzsnd .img01 {
  background: url(../files/design07_img01.png) no-repeat center top;
  width: 400px;
  height: 110px;
  position: absolute;
  top: 706px;
  left: calc(50% - 528px);
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  z-index: 9;
}
#dghsjos2lo3vbrolzsnd::before {
  position: absolute;
  top: 0;
  left: calc(50% + 659px);
  z-index: 11;
  display: block;
  width: 140px;
  height: 100%;
  background: url(../files/design07_img03.png) repeat-y left top;
  content: '';
  animation: loopdb7 40s linear 0s infinite;
  animation-direction: reverse;
}
@keyframes loopdb7 {
  to {
    background-position: top -1200px left;
  }
}

/* ===========================================================================
　　ドライバー採用情報　　pageID：15
=========================================================================== */
/*DB>ドライバーの中途募集
m1qn9sd3v2m2x8c099w5
--------------------------------------- */
#m1qn9sd3v2m2x8c099w5 {
  position: relative;
  background: url(../files/design08_bg01.png) no-repeat center top;
}
#m1qn9sd3v2m2x8c099w5 + .easys_content {
  margin-top: 0;
}
#m1qn9sd3v2m2x8c099w5,
#m1qn9sd3v2m2x8c099w5 .easys_content_inner,
#m1qn9sd3v2m2x8c099w5 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  height: 1710px;
}
#m1qn9sd3v2m2x8c099w5 .easys_content_inner {
  width: 960px;
}
#m1qn9sd3v2m2x8c099w5 *[class*='title'] {
  display: none;
}
#m1qn9sd3v2m2x8c099w5 .text_box {
  margin: 523px 0 0 auto;
  width: 385px;
}
#m1qn9sd3v2m2x8c099w5 .img01 {
  background: url(../files/design08_img01.jpg) no-repeat center top;
  width: 1000px;
  height: 720px;
  position: absolute;
  top: 200px;
  left: calc(50% - 1000px);
}
#m1qn9sd3v2m2x8c099w5 .img02 {
  background: url(../files/design08_img02.jpg) no-repeat center top;
  width: 730px;
  height: 420px;
  position: absolute;
  top: 1035px;
  left: calc(50% - -157px);
}
/* 個別色指定 */
#m1qn9sd3v2m2x8c099w5 > .img02::after {
  background-color: #27273d;
}
#m1qn9sd3v2m2x8c099w5 .img03 {
  background: url(../files/design08_img03.jpg) no-repeat center top;
  width: 280px;
  height: 380px;
  position: absolute;
  top: 1150px;
  left: calc(50% - 673px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#m1qn9sd3v2m2x8c099w5 .img04 {
  background: url(../files/design08_img04.jpg) no-repeat center top;
  width: 280px;
  height: 380px;
  position: absolute;
  top: 1150px;
  left: calc(50% - 373px);
  opacity: 1;

  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#m1qn9sd3v2m2x8c099w5 .img05 {
  background: url(../files/design08_img06.png) no-repeat center top;
  width: 515px;
  height: 170px;
  position: absolute;
  top: 1252px;
  left: calc(50% - 69px);
}
#m1qn9sd3v2m2x8c099w5::before {
  position: absolute;
  top: 990px;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 190px;
  background: url(../files/design08_img05.png) repeat-x left top;
  content: '';
  animation: loopdb8 40s linear 0s infinite;
}
@keyframes loopdb8 {
  to {
    background-position: top left -2000px;
  }
}

/* ===========================================================================
　　お問い合わせ　　pageID：18
=========================================================================== */
/*バナー＞お問い合わせフォームへ
iu9atreje67lc8xafy87
--------------------------------------- */
#iu9atreje67lc8xafy87 {
  position: relative;
  height: 620px;
  background: url(/files/bnrmany_bg.png) repeat center top;
}
#iu9atreje67lc8xafy87 div {
  margin-bottom: 0;
}
#iu9atreje67lc8xafy87 .easys_content_inner {
  position: absolute;
  top: 300px;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  width: 960px;
  height: 220px;
}
#iu9atreje67lc8xafy87 .img_display {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#iu9atreje67lc8xafy87 .eyecatch {
  width: 100%;
}
#iu9atreje67lc8xafy87 .field_1col {
  position: relative;
  overflow: hidden;
  width: 310px !important;
}
#iu9atreje67lc8xafy87 .field_1col::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
#iu9atreje67lc8xafy87 .field_1col:hover::before {
  opacity: 1;
}
#iu9atreje67lc8xafy87 div:nth-child(1 of [class*='field_'])::before {
  background: url(/files/bnrmany_01_on.png) no-repeat center / 100%;
}
#iu9atreje67lc8xafy87 div:nth-child(2 of [class*='field_'])::before {
  background: url(/files/bnrmany_02_on.png) no-repeat center / 100%;
}
#iu9atreje67lc8xafy87 div:nth-child(3 of [class*='field_'])::before {
  background: url(/files/bnrmany_03_on.png) no-repeat center / 100%;
}
#iu9atreje67lc8xafy87 .eyecatch a img {
  opacity: 1;
  z-index: 99;
  position: relative;
}
