@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #f0f0f0;
  --body_text_color: #000;
  --link_color: #5883ff;
  --border_color: #666;
  --table_border_color: none;
  --th_background_color: #ffec4b;
  --td_background_color: #ffec4b;
  --th_character_color: #000;
  --td_character_color: #000;
  --required_color: #5883ff;
  --top_h1_color: #a6a6a6;
  --header_navigation_color: url("../files/topnavi_bg.png") no-repeat right 40px top;
  --top_entry_title_color: #000;
  --entry_title_bg_color: #fff;
  --blog_title_color: #233b80;
  --sub_entry_title_bg_color: #233b80;
  --entry_title_bg_w570_color: #fff;
  --sub_entry_title_bg_w570_color: #233b80;
  --half_entry_title_bg_color: #fff;
  --half_sub_entry_title_bg_color: #233b80;
  --column3_title_bg_color: #fff;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #233b80;
  --footnavi_color: #272727;
  --address_color: #dedede;
  --copy_color: #dedede;
  --kdb_background_color: #dadada;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1035;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 600;/* 中ページメインのオリジナル高さ(単位なし) */
  --fixed_side_btn_bottom :150px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side: 0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full: 240px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_height: 50px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_width_collapsed: 55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: #000;/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #fff;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #32F3FF;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000;/* ブログ＞ページング＞線色 */
  --font_size_10: 10px;
  --font_size_11: 11px;
  --font_size_12: 12px;
  --font_size_13: 13px;
  --font_size_14: 14px;
  --font_size_15: 15px;
  --font_size_16: 16px;
  --font_size_17: 17px;
  --font_size_18: 18px;
  --font_size_20: 20px;
  --font_size_23: 23px;
  --font_size_28: 28px;
}
/* 個人追加 */
:root {
  --header_h: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 60px;  /*初期ナビ高*/
  --easys_fixed_h: 60px;  /*固定ナビ高*/
  --custom_padding: 200px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background-color: var(--basic_background_color);
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-y center top; */

  scroll-padding-top: var(--easys_fixed_h);
  scroll-behavior: smooth;
}
body {
  background: none transparent no-repeat center top calc(var(--header_h) * 1px) / 100%;
  /* background: url(../files/body_bg.jpg) no-repeat center top calc(var(--header_h) * 1px) / 100%; */
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  word-break: break-word;
}
body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body#page_6 {
  background: none no-repeat center top;
}
#wrapper {
  background: none transparent;
}
#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 {
  background: none transparent;
  height: calc(var(--header_h) * 1px);
  /* padding: calc(var(--easys_naka_main_h) / var(--easys_max_width) * 100%) 0 0; */
  padding-bottom: calc(var(--easys_naka_main_h) * 1px);
  position: relative;
  z-index: 500;
}
#page_6 #branding_box {
  /* background: url(../files/top_header_cover.png) no-repeat center bottom / 100%; */
  /* padding-top: calc(var(--easys_top_main_h) / var(--easys_max_width) * 100%); */
  padding-bottom: 100svh;
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  top: 128px;
  left: 55px;
  width: auto;
  white-space: nowrap;
  z-index: 800;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/branding_box_bg.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  width : 350px;
  height: 140px;
  position: absolute;
  top : 0;
  left: 0;
  background: url(../files/main_logo.png) no-repeat no-repeat left top;
  pointer-events: none;
  z-index: 700;
}
#header_information .main_header a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
#header_information .main_header a img {
  width: 100%;
  height: 100%;
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
:root {
  --gnavi01: 120px;
  --gnavi02: 80px;
  --gnavi03: 70px;
  --gnavi04: 80px;
  --gnavi05: 80px;
  --gnavi06: 140px;
  --gnavi07: 120px;
  --gnavi08: 130px;
}
#access {
  /* display: flex;
  justify-content: center; */
  position: absolute;
  top: 0px;
  right: 0;
  padding: 40px 0 0;
  width: 100%;
  height: var(--easys_navi_h);
  z-index: 1;
  pointer-events: none;
}
#access a {
  pointer-events: all;
}
/* div#access .menu-header,
div#access .menu-header #menu-gnavi { height: 100%;}
div#access .menu-header {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
} */
#access .menu-header #menu-gnavi {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  background: var(--header_navigation_color);
}
#access .menu-header #menu-gnavi > li > a {
  height: var(--easys_navi_h);
  background: url("../files/topnavi.png") no-repeat center top;
  line-height: var(--easys_navi_h);
}
#access .menu-header #menu-gnavi > li:nth-of-type(1) > a {
  width: var(--gnavi01);
  background-position-x: left;
}
#access .menu-header #menu-gnavi > li:nth-of-type(2) > a {
  width: var(--gnavi02);
  background-position-x: calc((var(--gnavi01)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(3) > a {
  width: var(--gnavi03);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(4) > a {
  width: var(--gnavi04);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(5) > a {
  width: var(--gnavi05);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(6) > a {
  width: var(--gnavi06);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04) + var(--gnavi05)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(7) > a {
  width: var(--gnavi07);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04) + var(--gnavi05) + var(--gnavi06)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(8) > a {
  width: var(--gnavi08);
  background-position-x: right;
}
#access .menu-header #menu-gnavi > li > a:hover {
  background-position-y: bottom;
}

/* プルダウンメニュー */
#access ul li ul li {
  border-bottom: 1px dotted var(--border_color);
}
#access ul li ul li a {
  padding: 15px 10px;
  background-color: var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em;
}
#access ul li ul li a:hover {
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value004);
}

/* カレントページのメニュー */
#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);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}

/* Gナビ上部固定(最大2000pxを維持) */
/* body.fixed #header_information {
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 700;
}
body.fixed #header_information .main_header {
  display: block;
  pointer-events: all;
  top: 0;
} */
body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  /* padding: 0; */
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
  z-index: 800;
}


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: calc(var(--header_h) * 1px);
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 99;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}
#video_teaser,
#jquery_slider_pc .viewer {
  /* height: var(--easys_main_h) !important; */
}

/* ティザー＞レスポ無、背景パララ設置 */
#main_teaser {
  overflow: hidden;
}
#main_teaser img {
  object-fit: cover;
  position: relative;
  height: 100%;
  width: auto !important;
  opacity: 0;
  transition: 1.3s;
  transform: translateY(calc(var(--custom_fade) * 1px));
}
body.loaded #main_teaser img {
  opacity: 1;
  transform: none;
}
#main_teaser > .design_block.block1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  backface-visibility: hidden;
}
#main_teaser > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline : auto;
  background: url(../files/60blog_body_bg_pala.jpg) no-repeat center top;
  z-index: -1;
}
#page_9  #main_teaser > .design_block.block1::before { background-image: url(../files/10business_body_bg_pala.jpg);}
#page_12 #main_teaser > .design_block.block1::before { background-image: url(../files/20works_body_bg_pala.jpg);}
#page_81 #main_teaser > .design_block.block1::before { background-image: url(../files/30about_body_bg_pala.jpg);}
#page_15 #main_teaser > .design_block.block1::before { background-image: url(../files/40recruit_body_bg_pala.jpg);}
#page_18 #main_teaser > .design_block.block1::before { background-image: url(../files/50contact_body_bg_pala.jpg);}


/* トップメイン装飾 */
#video_teaser,
#jquery_slider_pc {
  /* padding-top: calc(var(--easys_top_main_h) / var(--easys_max_width) * 100%); */
  height: 100svh;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  backface-visibility: hidden;
  z-index: -1;
}
#video_teaser > div:not(.design_block),
#jquery_slider_pc > div:not(.design_block) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
#video_teaser div:not(.design_block),
#jquery_slider_pc div:not(.design_block) {
  height: 100% !important;
}
#video_teaser video,
#jquery_slider_pc img {
  height: 100%;
  object-fit: cover;
}

#jquery_slider_pc > .design_block.block1 {
  width: 100%;
  height: 121px !important;
  bottom: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#jquery_slider_pc > .design_block.block1::before {
  content: "";
  width: calc(2200 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 60s linear 0s infinite;
  background: url(../files/slide_upper_scroll.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#jquery_slider_pc > .design_block.block2 {
  background-image: url(../files/slide_upper.png);
  background-position: left top;
  width: 100%;
  height: 600px;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(calc(var(--custom_fade) * 1px));
}
body.loaded #jquery_slider_pc > .design_block.block2 {
  opacity: 1;
  transform: none;
}


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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 {
  background: url(../files/footer_bg.png) no-repeat center top;
  position: relative;
  height: 580px;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 493px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 113px 0 0;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 100%;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  /* border-color: var(--footnavi_color); */
  border: none;
  color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  position: absolute;

  width: 100%;
  text-align: center;
  top: 392px;
  left: 0;

  /* width: 480px;
  text-align: left;
  top: 200px;
  left: calc(50% - 480px); */
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#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;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}
/* 中央寄せの時 */
/*
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
*/
/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */

/* スライドしない版 */
/* .fixed_side_btn {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 110px;
  z-index:1000;
}
.fixed_side_btn > div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
}
.fixed_side_btn a {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
  overflow: visible !important;
  position: relative !important;
  pointer-events: all;
  text-indent: -99999px;
}
.fixed_side_btn .instagram { width: 120px;}
.fixed_side_btn .line      { width: 95px;}
.fixed_side_btn .gaten     { width: 120px;}
.fixed_side_btn .weblog    { width: 80px;}
.fixed_side_btn .contact   { width: 110px;}
.fixed_side_btn .map       { width: 80px;} */


/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
.fixed_side_btn {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom:var(--fixed_side_btn_bottom);
  right: 0;
  left: 0;
  margin-inline: auto;
  pointer-events: none;
  overflow: hidden;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  z-index:1000;
}
.fixed_side_btn div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
  margin-bottom:var(--fixed_side_btn_margin);
  overflow:hidden;
  transition: var(--custom_transition);
  right: calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1);
}
.fixed_side_btn div a {
  display:block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: all;
  white-space: nowrap;
}
.fixed_side_btn div:hover {
  transition: .5s;
  right: 0;
}

/* デフォルトボタン */
.fixed_side_btn .gaten a {
  background-image:url(../files/btn_gaten.png);
}
.fixed_side_btn .map a {
  background-image:url(../files/btn_map.png);
}
.fixed_side_btn .contact a {
  background-image:url(../files/btn_contact.png);
}
.fixed_side_btn .weblog a {
  background-image:url(../files/btn_blog.png);
}

/* SNSボタン */
.fixed_side_btn .line a {
  background-image:url(../files/btn_line.png);
}
.fixed_side_btn .instagram a {
  background-image:url(../files/btn_insta.png);
}
.fixed_side_btn .facebook a {
  background-image:url(../files/btn_fb.png);
}
.fixed_side_btn .youtube a {
  background-image:url(../files/btn_youtube.png);
}
.fixed_side_btn .tiktok a {
  background-image:url(../files/btn_tiktok.png);
}

/* 個別ボタンの高さ調整 */
/* .fixed_side_btn .gaten {
  height: 150px;
} */

/* 2000幅を超えた時 */
/* #wrapper {
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}
@media (min-width: 2000px) {
  .fixed_side_btn {
    left:calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width:var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform:translateX(0);
  }

  .fixed_side_btn div:hover {
    transform:translateX(calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1));
  }
} */


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
}
#float_top_btn > a {
  position: absolute;
  right: 20px;
  bottom: 0;
  pointer-events: all;
  width: fit-content;
  height: fit-content;
  display: block;
}
#float_top_btn > a:hover img {
  opacity: 0.8;
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}


/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  margin-bottom: 60px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
  margin-bottom: 60px;
}
/*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: var(--font_size_20);
  margin-bottom: 40px;
}
* .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);
  margin-bottom: 40px;
}
* .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);
  margin-bottom: 40px;
}
* .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);
  margin-bottom: 40px;
}
/*
* .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: var(--font_size_20);
  margin-bottom: 40px;
}
* .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);
  margin-bottom: 40px;
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* ブログ見出し */
#blog_main .entry-title {
  margin-bottom: 40px;
}


/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.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: var(--font_size_15);
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}


/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  padding: 5px 0;
  width: 100%;
  color: var(--link_color) !important;
  text-align: center !important;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  border: solid 1px var(--table_bordear_color);
  border-right: none;
  border-left: none;
  background: none var(--td_background_color);
  color: var(--td_character_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) { border-collapse: separate; border-spacing : 0 10px !important;}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  background-color: var(--th_background_color);
  border-left: solid 1px var(--table_border_color) !important;
  color: var(--th_character_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:last-child {
  border-right: solid 1px var(--table_border_color) !important;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}
/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/*  flow矢印余白*/
.flow_arr {
  margin: 10px auto !important;
}

/* メール更新ブロック */
.nj_03 .cu_mail_block {
  padding-bottom: 20px;
}
.nj_03 .img_size_thumb {
  height: 100px;
}
.nj_03 .img_size_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社概要 */
#content [class*="nf_"] small + iframe {
  margin-top: 30px !important;
}

/* フェードのipad対応 */
.easys_content:not(.ni_01) div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 背景と余白調整 */
.easys_content.no_margin { margin-bottom: 0 !important;}
.easys_content.no_margin + .easys_content:not(.no_margin) { margin-top: var(--custom_padding);}
.easys_content.no_margin.nk_01 { padding-bottom: 25px;}
.easys_content.no_margin.nk_01 [class*="title"] {  margin-bottom: 0;}
#outer_block { padding-top: var(--custom_padding);}
.shosai #outer_block { padding-top: var(--custom_padding) !important;}

/* テーマ余白調整 */
.easys_content,
.easys_content_inner > div:last-of-type {
  margin-bottom: 0 !important;
}
.easys_content.no_margin + .easys_content:not(.no_margin),
.easys_content:not(.no_margin):not(.nk_01) + .easys_content:not(.no_margin),
.easys_content:not(.no_margin) + .easys_content.no_margin {
  margin-top: var(--custom_padding);
}
#content > .easys_content:last-of-type:not(.no_margin) { margin-bottom: var(--custom_padding) !important;}
.easys_content.no_margin + .easys_content.sp_01,
.easys_content + .easys_content.sp_01 {
  padding: 0 !important;
  margin: 0 !important;
}
.easys_content + .easys_content.sp_01  + .easys_content {
  margin-top: 0 !important;
}

/* SPのみ表示ボタン非表示 */
.sponly {
  display: none;
}

/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */
.easys_content_inner {
  position: relative;
  height: 100%;
}
/* #outer_block .easys_content_inner {
  top: calc(var(--custom_fade) * 1px);
  opacity: 0;
  transition: all 1.3s ease 0s;
}
#outer_block .easys_content_inner.moved {
  opacity: 1;
  top: 0px;
}
#outer_block .nd_01 .easys_content_inner {
  opacity: 1;
  top: 0px;
} */


/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  transition: all 1.3s ease 0s;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* ON画像 */
#tkqurm0b38vcjse5k2i9 [class*="_btn"] a::after,
#c6xi8g2p95vs329j7smg [class*="_btn"] a::after,
#ka9qpbugzn4jc67yndus a::after,
#pb2wkepxv5y6f6z1jf1k a::after,
#efsgjlfj8nm7egag9ska a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  /* transition: var(--custom_transition); */
  opacity: 0;
}
#tkqurm0b38vcjse5k2i9 [class*="_btn"] a:hover::after,
#c6xi8g2p95vs329j7smg [class*="_btn"] a:hover::after,
#ka9qpbugzn4jc67yndus a:hover::after,
#pb2wkepxv5y6f6z1jf1k a:hover::after,
#efsgjlfj8nm7egag9ska a:hover::after {
  opacity: 1;
}

/* 2段階イン 別途クラス付与済 */
.clipIn {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
  opacity: 1 !important;
  transition: .6s;
}
.clipIn.moved {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}
.clipIn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1472DC;
  transition: .6s;
}
.clipIn.moved::after {
  transform: translateX(100%);
  transition-delay: .6s;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#ka9qpbugzn4jc67yndus,
#pb2wkepxv5y6f6z1jf1k,
#efsgjlfj8nm7egag9ska,
#zvwt00d6uuvtepy0udml,
#b713wmz2chq16y9lwqz1 {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#ka9qpbugzn4jc67yndus div,
#pb2wkepxv5y6f6z1jf1k div,
#efsgjlfj8nm7egag9ska div,
#zvwt00d6uuvtepy0udml div,
#b713wmz2chq16y9lwqz1 div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#ka9qpbugzn4jc67yndus img,
#pb2wkepxv5y6f6z1jf1k img,
#efsgjlfj8nm7egag9ska img,
#zvwt00d6uuvtepy0udml img,
#b713wmz2chq16y9lwqz1 img {
  position: relative;
}
#ka9qpbugzn4jc67yndus .design_block,
#pb2wkepxv5y6f6z1jf1k .design_block,
#efsgjlfj8nm7egag9ska .design_block,
#zvwt00d6uuvtepy0udml .design_block,
#b713wmz2chq16y9lwqz1 .design_block {
  opacity: 0;
}
#ka9qpbugzn4jc67yndus .design_block[class*="block"].moved,
#pb2wkepxv5y6f6z1jf1k .design_block[class*="block"].moved,
#efsgjlfj8nm7egag9ska .design_block[class*="block"].moved,
#zvwt00d6uuvtepy0udml .design_block[class*="block"].moved,
#b713wmz2chq16y9lwqz1 .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  filter: none;
}

/* リンク共通 */
#ka9qpbugzn4jc67yndus a,
#pb2wkepxv5y6f6z1jf1k a,
#efsgjlfj8nm7egag9ska a {
  display: block;
  position: relative;
}
#ka9qpbugzn4jc67yndus a:hover img,
#pb2wkepxv5y6f6z1jf1k a:hover img,
#efsgjlfj8nm7egag9ska a:hover img {
  opacity: 1;
}

/* バナー共通＞画像下からイン */
#ka9qpbugzn4jc67yndus div,
#pb2wkepxv5y6f6z1jf1k div,
#efsgjlfj8nm7egag9ska div {
  overflow: visible !important;
}
#ka9qpbugzn4jc67yndus a,
#pb2wkepxv5y6f6z1jf1k a,
#efsgjlfj8nm7egag9ska a {
  opacity: 0;
  transition: 1.3s;
  transform: translateY(calc(var(--custom_fade) * 1px));
}
#ka9qpbugzn4jc67yndus .easys_content_inner.moved a,
#pb2wkepxv5y6f6z1jf1k .easys_content_inner.moved a,
#efsgjlfj8nm7egag9ska .easys_content_inner.moved a {
  opacity: 1;
  transform: none;
}

/* バナー共通＞余白調整 */
#ka9qpbugzn4jc67yndus + #pb2wkepxv5y6f6z1jf1k,
#ka9qpbugzn4jc67yndus + #efsgjlfj8nm7egag9ska,
#pb2wkepxv5y6f6z1jf1k + #ka9qpbugzn4jc67yndus,
#pb2wkepxv5y6f6z1jf1k + #efsgjlfj8nm7egag9ska,
#efsgjlfj8nm7egag9ska + #ka9qpbugzn4jc67yndus,
#efsgjlfj8nm7egag9ska + #pb2wkepxv5y6f6z1jf1k {
  margin-top: 10px;
}
#content .nd_01:last-of-type#ka9qpbugzn4jc67yndus,
#content .nd_01:last-of-type#pb2wkepxv5y6f6z1jf1k,
#content .nd_01:last-of-type#efsgjlfj8nm7egag9ska {
  margin-bottom: 0 !important;
}

/* フルサイズバナー共通 */
#ka9qpbugzn4jc67yndus .easys_content_inner,
#pb2wkepxv5y6f6z1jf1k .easys_content_inner {
  margin-inline: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  width: fit-content;
}
#ka9qpbugzn4jc67yndus [class*="field_"],
#pb2wkepxv5y6f6z1jf1k [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#ka9qpbugzn4jc67yndus .eyecatch,
#pb2wkepxv5y6f6z1jf1k .eyecatch {
  width: 100% !important;
}
#ka9qpbugzn4jc67yndus .eyecatch img,
#pb2wkepxv5y6f6z1jf1k .eyecatch img {
  width: auto;
}

/* 見積もり無料！お気軽にお問い合わせ */
#ka9qpbugzn4jc67yndus a::after {
  background-image: url(../files/bnr_contact_on.png);
}
#page_6 .easys_content + #ka9qpbugzn4jc67yndus {
  margin-top: 120px !important;
}

/* お問い合わせ */
#pb2wkepxv5y6f6z1jf1k a::after {
  background-image: url(../files/bnr_contact02_on.png);
}

/* 会社概要/採用情報/事業内容 うち２つ */
#efsgjlfj8nm7egag9ska .easys_content_inner {
  width: 1200px;
}
#efsgjlfj8nm7egag9ska .img_display {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#efsgjlfj8nm7egag9ska [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#efsgjlfj8nm7egag9ska .eyecatch {
  width: 100% !important;
}
#efsgjlfj8nm7egag9ska .eyecatch img {
  width: auto;
}
#efsgjlfj8nm7egag9ska [class*="field_"]:nth-of-type(1) a::after {
  background-image: url(../files/bnrhalf_about_on.png);
}
#efsgjlfj8nm7egag9ska [class*="field_"]:nth-of-type(2) a::after {
  background-image: url(../files/bnrhalf_business_on.png);
}
#efsgjlfj8nm7egag9ska [class*="field_"]:nth-of-type(3) a::after {
  background-image: url(../files/bnrhalf_recruit_on.png);
}

/* 画像＞このようなお悩みありませんか？ */
#zvwt00d6uuvtepy0udml {
  padding-top: 300px;
}
#zvwt00d6uuvtepy0udml .easys_content_inner {
  margin-inline: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  width: fit-content;
}
#zvwt00d6uuvtepy0udml [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#zvwt00d6uuvtepy0udml .eyecatch {
  width: 100% !important;
}
#zvwt00d6uuvtepy0udml .eyecatch img {
  width: auto;
}

/* 画像＞イメージ */
#b713wmz2chq16y9lwqz1 .easys_content_inner {
  overflow: hidden;
  width: 100%;
}
#b713wmz2chq16y9lwqz1 [class*="field_"]:nth-of-type(1) {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: 0;
}
#b713wmz2chq16y9lwqz1 [class*="field_"]:nth-of-type(1) img {
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  z-index: 0;
}
#b713wmz2chq16y9lwqz1 [class*="field_"]:nth-of-type(2) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content !important;
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#tkqurm0b38vcjse5k2i9,
#c6xi8g2p95vs329j7smg,
#j5ze0hd8vn1vrd3smiwz,
#qttjls4nfp7j8ssldaup,
#xbg4lir7e22ydhgfcdry,
#h0u3pvkvef1j5xuymf64,
#jnd17d5r98xosk7aj99a {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#tkqurm0b38vcjse5k2i9 .easys_content_inner,
#c6xi8g2p95vs329j7smg .easys_content_inner,
#j5ze0hd8vn1vrd3smiwz .easys_content_inner,
#qttjls4nfp7j8ssldaup .easys_content_inner,
#xbg4lir7e22ydhgfcdry .easys_content_inner,
#h0u3pvkvef1j5xuymf64 .easys_content_inner,
#jnd17d5r98xosk7aj99a .easys_content_inner {
  opacity: 1;
  top: 0px;
  width: 1300px;
}
#tkqurm0b38vcjse5k2i9 .post_margin,
#c6xi8g2p95vs329j7smg .post_margin,
#j5ze0hd8vn1vrd3smiwz .post_margin,
#qttjls4nfp7j8ssldaup .post_margin,
#xbg4lir7e22ydhgfcdry .post_margin,
#h0u3pvkvef1j5xuymf64 .post_margin,
#jnd17d5r98xosk7aj99a .post_margin {
  margin: 0;
}
#tkqurm0b38vcjse5k2i9 .entry_post,
#c6xi8g2p95vs329j7smg .entry_post,
#j5ze0hd8vn1vrd3smiwz .entry_post,
#qttjls4nfp7j8ssldaup .entry_post,
#xbg4lir7e22ydhgfcdry .entry_post,
#h0u3pvkvef1j5xuymf64 .entry_post,
#jnd17d5r98xosk7aj99a .entry_post {
  box-sizing: border-box;
}
#tkqurm0b38vcjse5k2i9 .entry_post > [class*="title"],
#c6xi8g2p95vs329j7smg .entry_post > [class*="title"],
#j5ze0hd8vn1vrd3smiwz .entry_post > [class*="title"],
#qttjls4nfp7j8ssldaup .entry_post > [class*="title"],
#xbg4lir7e22ydhgfcdry .entry_post > [class*="title"],
#h0u3pvkvef1j5xuymf64 .entry_post > [class*="title"],
#jnd17d5r98xosk7aj99a .entry_post > [class*="title"] {
  display: none;
  background: none transparent;
  font-size: 34px;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
  height: auto;
}
#tkqurm0b38vcjse5k2i9 .text_box,
#c6xi8g2p95vs329j7smg .text_box,
#j5ze0hd8vn1vrd3smiwz .text_box,
#qttjls4nfp7j8ssldaup .text_box,
#xbg4lir7e22ydhgfcdry .text_box,
#h0u3pvkvef1j5xuymf64 .text_box,
#jnd17d5r98xosk7aj99a .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  position: relative;
  width: 100%;
  margin: 0;
  /* margin: calc(var(--custom_fade) * 1px) 0 0;
  opacity: 0;
  transition: all 1.3s ease 0s; */
}
/* #tkqurm0b38vcjse5k2i9 .text_box.moved,
#c6xi8g2p95vs329j7smg .text_box.moved,
#j5ze0hd8vn1vrd3smiwz .text_box.moved,
#qttjls4nfp7j8ssldaup .text_box.moved,
#xbg4lir7e22ydhgfcdry .text_box.moved,
#h0u3pvkvef1j5xuymf64 .text_box.moved,
#jnd17d5r98xosk7aj99a .text_box.moved {
  margin-top: 0px;
  opacity: 1;
} */
#tkqurm0b38vcjse5k2i9 .post_data,
#c6xi8g2p95vs329j7smg .post_data,
#j5ze0hd8vn1vrd3smiwz .post_data,
#qttjls4nfp7j8ssldaup .post_data,
#xbg4lir7e22ydhgfcdry .post_data,
#h0u3pvkvef1j5xuymf64 .post_data,
#jnd17d5r98xosk7aj99a .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
  position: relative;
}
#tkqurm0b38vcjse5k2i9 .post_data p,
#c6xi8g2p95vs329j7smg .post_data p,
#j5ze0hd8vn1vrd3smiwz .post_data p,
#qttjls4nfp7j8ssldaup .post_data p,
#xbg4lir7e22ydhgfcdry .post_data p,
#h0u3pvkvef1j5xuymf64 .post_data p,
#jnd17d5r98xosk7aj99a .post_data p {
  line-height: 2.3;
}
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p,
_::-webkit-full-page-media, _:future, :root #xxx .post_data p {
  line-height: 1.7;
  letter-spacing: -1px;
}
#tkqurm0b38vcjse5k2i9 .design_block,
#c6xi8g2p95vs329j7smg .design_block,
#j5ze0hd8vn1vrd3smiwz .design_block,
#qttjls4nfp7j8ssldaup .design_block,
#xbg4lir7e22ydhgfcdry .design_block,
#h0u3pvkvef1j5xuymf64 .design_block,
#jnd17d5r98xosk7aj99a .design_block {
  opacity: 0;
}
#tkqurm0b38vcjse5k2i9 .design_block[class*="block"].moved,
#c6xi8g2p95vs329j7smg .design_block[class*="block"].moved,
#j5ze0hd8vn1vrd3smiwz .design_block[class*="block"].moved,
#qttjls4nfp7j8ssldaup .design_block[class*="block"].moved,
#xbg4lir7e22ydhgfcdry .design_block[class*="block"].moved,
#h0u3pvkvef1j5xuymf64 .design_block[class*="block"].moved,
#jnd17d5r98xosk7aj99a .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  -webkit-filter: none;
  -moz-filter:    none;
  -ms-filter:     none;
  -o-filter:      none;
  filter:         none;
}

/* 共通ボタン-ブロック内リンク */
/* ※遷移先でのボタン非表示処理はfooter_common.jsで行っています※ */
#tkqurm0b38vcjse5k2i9 [class*="_btn"],
#c6xi8g2p95vs329j7smg [class*="_btn"] {
  margin: 40px 0 0;
  padding: 0;
  width: fit-content;
  height: fit-content;
  opacity: 0;
  transition: 1.3s;
  transform: translateY(calc(var(--custom_fade) * 1px));
}
#tkqurm0b38vcjse5k2i9 [class*="_btn"].moved,
#c6xi8g2p95vs329j7smg [class*="_btn"].moved {
  opacity: 1;
  transform: none;
}
#tkqurm0b38vcjse5k2i9 [class*="_btn"] a,
#c6xi8g2p95vs329j7smg [class*="_btn"] a {
  background: url(../files/design01_btn.png) no-repeat center top;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 1140px;
  height: 100px;
}
#tkqurm0b38vcjse5k2i9 [class*="_btn"] a::after,
#c6xi8g2p95vs329j7smg [class*="_btn"] a::after {
  background: url(../files/design01_btn_on.png) no-repeat center top;
}

/* 富士テックが選ばれる理由 */
#tkqurm0b38vcjse5k2i9 {
  background-image: url(../files/design01_bg01.jpg);
  height: 1805px;
}
#tkqurm0b38vcjse5k2i9 .entry_post {
  padding: 905px 50px 0;
}
#tkqurm0b38vcjse5k2i9 [class*="_btn"] {
  position: absolute;
  top: 1305px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#tkqurm0b38vcjse5k2i9 .sub_post {
  box-sizing: border-box;
  float: left;
  margin-top: 0;
  padding: 130px 13px 30px 30px;
  height: 355px;
  width: 400px;
}
#tkqurm0b38vcjse5k2i9 .sub_post > .entry_title {
  background: none transparent;
  color: #0e0e0e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 15px;
  padding: 0;
  text-align: left;
  width: auto;
  height: auto;
  white-space: normal;
}
#tkqurm0b38vcjse5k2i9 .sub_post > .entry_title br {
  display: block;
}
#tkqurm0b38vcjse5k2i9 .sub_post .post_data {
  line-height: 1.5;
  font-size: 15px;
}

#tkqurm0b38vcjse5k2i9 > .design_block.block1 {
  background-image: url(../files/design01_bg02-01.jpg);
  width: 800px;
  height: 350px;
  top: 205px;
  left: calc(50% - 810px);
}
#tkqurm0b38vcjse5k2i9 > .design_block.block2 {
  background-image: url(../files/design01_bg02-02.jpg);
  width: 800px;
  height: 350px;
  top: 131px;
  left: calc(50% + 11px);
}
#tkqurm0b38vcjse5k2i9 > .design_block.block3 {
  background-image: url(../files/design01_bg03.png);
  padding-top: center top;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* 一つひとつの現場に、確かな技術を。わたしたちの施工実績をご紹介！ */
#c6xi8g2p95vs329j7smg {
  background-image: url(../files/design02_bg01.png);
  height: 1340px;
}
#c6xi8g2p95vs329j7smg .entry_post {
  padding: 830px 740px 0 80px;
}
#c6xi8g2p95vs329j7smg [class*="_btn"] a {
  background-image: url(../files/design02_btn.png);
  width: 300px;
  height: 50px;
}
#c6xi8g2p95vs329j7smg [class*="_btn"] a::after {
  background-image: url(../files/design02_btn_on.png);
}
#c6xi8g2p95vs329j7smg > .design_block.block1 {
  background-image: url(../files/design02_bg02.png);
  width: 1600px;
  height: 428px;
  top: 0px;
  left: calc(50% - 800px);
  transform: translateY(calc(var(--custom_fade) * 1px));
}
#c6xi8g2p95vs329j7smg > .design_block.block2 {
  width: 910px;
  height: 400px;
  top: 620px;
  left: calc(50% - 0px);
  opacity: 1;
  overflow: hidden;
}
#c6xi8g2p95vs329j7smg > .design_block.block2::before {
  content: "";
  width: calc(1240 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 60s linear 0s infinite reverse;
  background: url(../files/design02_bg03_scroll.png) repeat-x left top / auto 100%;
}

#tkqurm0b38vcjse5k2i9 + #c6xi8g2p95vs329j7smg {
  margin-top: -280px;
}

/* 次の土地活用まで見据えた、安心・安全な解体工事。 */
#j5ze0hd8vn1vrd3smiwz {
  background-image: url(../files/design03_bg01.jpg);
  height: 1054px;
}
#j5ze0hd8vn1vrd3smiwz .entry_post {
  padding: 605px 750px 0 50px;
}
#j5ze0hd8vn1vrd3smiwz > .design_block.block1 {
  background-image: url(../files/design03_bg02-01.jpg);
  width: 295px;
  height: 220px;
  top: 314px;
  left: calc(50% - 0px);
}
#j5ze0hd8vn1vrd3smiwz > .design_block.block2 {
  background-image: url(../files/design03_bg02-02.jpg);
  width: 295px;
  height: 220px;
  top: 314px;
  left: calc(50% + 305px);
}
#j5ze0hd8vn1vrd3smiwz > .design_block.block3 {
  background-image: url(../files/design03_bg02-03.jpg);
  width: 600px;
  height: 220px;
  top: 542px;
  left: calc(50% - 0px);
}
#j5ze0hd8vn1vrd3smiwz + .easys_content {
  margin-top: 0;
}

/* 建物を建てるための、土地づくりを支えます。 */
#qttjls4nfp7j8ssldaup {
  background-image: url(../files/design04_bg01.jpg);
  height: 1000px;
}
#qttjls4nfp7j8ssldaup .entry_post {
  padding: 605px 750px 0 50px;
}
#qttjls4nfp7j8ssldaup > .design_block.block1 {
  background-image: url(../files/design04_bg02-01.jpg);
  width: 295px;
  height: 220px;
  top: 311px;
  left: calc(50% - 0px);
}
#qttjls4nfp7j8ssldaup > .design_block.block2 {
  background-image: url(../files/design04_bg02-02.jpg);
  width: 295px;
  height: 220px;
  top: 311px;
  left: calc(50% + 305px);
}
#qttjls4nfp7j8ssldaup > .design_block.block3 {
  background-image: url(../files/design04_bg02-03.jpg);
  width: 600px;
  height: 220px;
  top: 539px;
  left: calc(50% - 0px);
}

/* 安全な暮らしを支える、確かな技術力。 */
#xbg4lir7e22ydhgfcdry {
  background-image: url(../files/design05_bg01.jpg);
  height: 1000px;
}
#xbg4lir7e22ydhgfcdry .entry_post {
  padding: 604px 750px 0 50px;
}
#xbg4lir7e22ydhgfcdry .post_data {
  color: #fff;
}
#xbg4lir7e22ydhgfcdry > .design_block.block1 {
  background-image: url(../files/design05_bg02-01.jpg);
  width: 295px;
  height: 448px;
  top: 311px;
  left: calc(50% - 0px);
}
#xbg4lir7e22ydhgfcdry > .design_block.block2 {
  background-image: url(../files/design05_bg02-02.jpg);
  width: 295px;
  height: 448px;
  top: 311px;
  left: calc(50% + 305px);
}
#xbg4lir7e22ydhgfcdry > .design_block.block3 {
  background-image: url(../files/design05_bg03.png);
  width: 599px;
  height: 150px;
  top: 700px;
  left: calc(50% - 0px);
  opacity: 1;
}

/* 代表挨拶 */
#h0u3pvkvef1j5xuymf64 {
  background-image: url(../files/design06_bg01.jpg);
  height: 1131px;
}
#h0u3pvkvef1j5xuymf64 .entry_post {
  padding: 196px 40px 0 750px;
}
#h0u3pvkvef1j5xuymf64 > .design_block.block1 {
  background-image: url(../files/design06_bg02-01.jpg);
  width: 799px;
  height: 387px;
  top: 274px;
  left: calc(50% - 800px);
}
#h0u3pvkvef1j5xuymf64 > .design_block.block2 {
  background-image: url(../files/design06_bg02-02.jpg);
  width: 876px;
  height: 266px;
  top: 756px;
  left: calc(50% - 225px);
}
#h0u3pvkvef1j5xuymf64 > .design_block.block3 {
  background-image: url(../files/design06_bg03.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

/* 壊すだけじゃない。 沖縄の未来をつくる仕事です。 */
#jnd17d5r98xosk7aj99a {
  background-image: url(../files/design07_bg.jpg);
  height: 950px;
}
#jnd17d5r98xosk7aj99a .entry_post {
  padding: 614px 250px 0;
}
#jnd17d5r98xosk7aj99a + .easys_content:not([class*="kd_"]) {
  margin-top: 0;
}
/* #jnd17d5r98xosk7aj99a + .easys_content {
  margin-top: 0;
} */