@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #fff;
  --body_text_color: #111;
  --link_color: #1d7b13;
  --border_color: #7b7b7b;
  --table_border_color: #424242;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #111;
  --td_character_color: #111;
  --required_color: #1d7b13;
  --top_h1_color: #fff;
  --header_navigation_color: rgba(255,255,255,1);
  --top_entry_title_color: #1d7b13;
  --entry_title_bg_color: #222;
  --blog_title_color: #222;
  --sub_entry_title_bg_color: #1d7b13;
  --entry_title_bg_w570_color: #222;
  --sub_entry_title_bg_w570_color: #1d7b13;
  --half_entry_title_bg_color: #222;
  --half_sub_entry_title_bg_color: #1d7b13;
  --column3_title_bg_color: #fff;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #222;
  --footnavi_color: #fff;
  --address_color: #fff;
  --copy_color: #9ac244;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1080;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 1010;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001: #fff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255,255,255,0.75);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #333;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #666;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #fff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #fff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #fff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #fff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000;/* ブログ＞ページング＞線色 */
}
/* 個人追加 */
:root {
  --header_h: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 40px;  /*初期ナビ高*/
  --easys_fixed_h: 0px;  /*固定ナビ高*/
  --custom_padding: 160px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}


/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  scroll-padding-top: var(--easys_fixed_h);
  scroll-behavior: smooth;
}
body {
  background: none transparent no-repeat center top calc(var(--header_h) * 1px) / 100%;
  /* background: url(../files/body_bg.jpg) no-repeat center top calc(var(--header_h) * 1px) / 100%; */
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  word-break: break-word;
}
body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body#page_6 {
  background: none no-repeat center top;
}
#wrapper {
  background: none transparent;
/* ハンバーガーメニュー用 */
  clip-path: inset(0);
  max-width: calc(var(--easys_max_width)*1px);
  padding-right: 80px;
  position: relative;
}
#wrapper::after {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #44972b;
  pointer-events: none;
  z-index: 400;
}

/* ※最初のブロックが背景ありになった場合の余白処理はfooter_common.jsに記述しています */
#outer_block {
  background: none transparent;
}


#main {
  display: flow-root;
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  background: none transparent;
  height: calc(var(--header_h) * 1px);
  /* padding: calc(var(--easys_naka_main_h) / var(--easys_max_width) * 100%) 0 0; */
  padding-top: 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-top: var(--easys_main_h);
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: auto;
  white-space: nowrap;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/main_logo.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  width : 300px;
  height: 70px;
  position: absolute;
  top : 30px;
  left: 30px;
  background: url(../files/main_logo02.png) no-repeat no-repeat left top;
  pointer-events: none;
  z-index: 700;
}
#page_6 #header_information .main_header {
  width : 110px;
  height: 110px;
  background-image: url(../files/main_logo.png);
}
#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%;
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
div#access .menu-item a {
  background: url(../files/topnavi.png) no-repeat left top;
  height: var(--easys_navi_h) !important;
  line-height: var(--easys_navi_h) !important;
  width: 560px !important;
  padding: 0;
}
div#access .gnavi11 a { background-position-y: top !important;}
div#access .gnavi12 a { background-position-y: calc(var(--easys_navi_h) * -1) !important;}
div#access .gnavi13 a { background-position-y: calc(var(--easys_navi_h) * -2) !important;}
div#access .gnavi14 a { background-position-y: calc(var(--easys_navi_h) * -3) !important;}
div#access .gnavi15 a { background-position-y: calc(var(--easys_navi_h) * -4) !important;}
div#access .gnavi16 a { background-position-y: calc(var(--easys_navi_h) * -5) !important;}
div#access .gnavi17 a { background-position-y: bottom !important;}
div#access .menu-item a:hover { background-position-x: right;}

/* ホバー時 */
div#access #menu-gnavi > .menu-item > a::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #9ac245;
  opacity: 0;
}
div#access #menu-gnavi > .menu-item > a:hover::before {
  opacity: 1;
}
div#access #menu-gnavi > .menu-item > a::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 14px;
  right: 5px;
  background: url(../files/topnavi_arr_off.png) no-repeat center center;
}
div#access #menu-gnavi > .menu-item > a:hover::after {
  animation: anime-arr .8s ease 0s forwards;
}

/* プルダウンメニューのサイズ */
#access ul li:hover > ul {
  display: flex;
}
#access ul.menu ul.sub-menu {
  flex-direction: column;
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  min-width: 100%;
  width: auto;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  background: none var(--easys_standard_value002);
  box-sizing: border-box;
  color: var(--easys_standard_value003);
  padding: 15px 10px;
  line-height: 1.2em !important;
  text-align: left;
  white-space: nowrap;
  width: 100% !important;
  height: auto !important;
}
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: var(--easys_standard_value003);
}
div#access ul.sub-menu li.sub-gnavi a:hover,
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value004);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}

/* ハンバーガーメニュー */
#access {
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: visible;
  pointer-events: none;
}


#access a {
  pointer-events: all;
}
#access .menu-header {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 80px;
  transition: .5s;
  background: var(--header_navigation_color);
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path:         inset(0 0 0 100%);
}
.opened #access .menu-header {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}
#access #menu-gnavi {
  width: 560px;
  height: 240px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#menuTrigger {
  background: none transparent;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  height: fit-content;
  position: fixed;
  top  : 30px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 10000;
}
#menuTrigger button {
  background: none transparent;
  background-color: #16650c;
  border-radius: 100vmax;
  border: none;
  pointer-events: all;
  cursor: pointer;
  width : 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 20px;
}

#menuTrigger button:before {
  background: url(../files/btn_menu_text_off.png) no-repeat center top;
  bottom: -55px;
  color: #ffffff;
  content: "";
  display: block;
  height: 33px;
  left: 0;
  margin-inline: auto;
  position: absolute;
  right: 0;
  width: 10px;
  z-index: 2;
}
#menuTrigger button span:nth-of-type(1) {
  background: #ffffff;
  border-radius: 30%;
  bottom: 0;
  height: 4px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  z-index: 5;
}
#menuTrigger button:hover span:nth-of-type(1) {
  animation: span_move01 .5s linear 0s forwards;
}
#menuTrigger button span:nth-of-type(2) {
  background: #ffffff;
  border-radius: 30%;
  bottom: 0;
  height: 4px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  z-index: 5;
}

#menuTrigger button:hover span:nth-of-type(2) {
  animation: span_move02 .5s linear 0s forwards;
}
@keyframes span_move01 {
  0%{
    opacity: 1;
  }

  50%{
    opacity: 1;
    transform: translateY(0px);
  }

  100%{
    opacity: 1;
    transform: translateY(-5px);
  }
}
@keyframes span_move02 {
  0%{
    opacity: 1;
  }

  50%{
    opacity: 1;
    transform: translateY(0px);
  }

  100%{
    opacity: 1;
    transform: translateY(5px);
  }
}
#menuTrigger button span:nth-of-type(3) {
  background: #ffffff;
  border-radius: 50%;
  bottom: 0;
  height: 6px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .5s cubic-bezier(.215, .61, .355, 1);
  width: 6px;
  z-index: 0;
}
#menuTrigger button:hover span:nth-of-type(3) {
  background-color: #16650c;
  border-radius: 50%;
  display: block;
  height: 40px;
  margin: auto;
  transition: all .5s cubic-bezier(.215, .61, .355, 1);
  width: 40px;
}
.opened #menuTrigger button span:nth-of-type(1),
.opened #menuTrigger button span:nth-of-type(2) {
  opacity: 1;
}

.opened #menuTrigger button span:nth-of-type(3) {
  display: none;
}

.opened #menuTrigger button:before {
  opacity: 0;
}
#menuTrigger button:after {
  background: url(../files/btn_menu_text_on.png) no-repeat center top;
  bottom: -50px;
  content: "";
  display: block;
  height: 37px;
  left: 0;
  margin-inline: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 10px;
  z-index: 2;
}
.opened #menuTrigger button:after {
  opacity: 1;
}
.opened #menuTrigger button span:nth-of-type(1) {
  border-radius: 30%;
  height: 4px;
  width: 12px;
}
.opened #menuTrigger button span:nth-of-type(2) {
  border-radius: 30%;
  height: 4px;
  width: 12px;
}

/* 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 !important;
  background-image: url(../files/main_logo.png) !important;
  width: 110px !important;
  height: 110px !important;
}
/* body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
} */


/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  position: absolute;
  top: calc(var(--header_h) * 1px);
  right: 80px;
  left: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 99;
  max-width: calc(1920 * 1px);
}
#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(1920 * 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 {
  height: 100%;
  object-fit: cover;
  width: calc(1920 * 1px) !important;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  padding: 0;
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: var(--widget_title_bg_color);
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  background: none transparent;
  border-color: var(--border_color);
  border-style: dotted;
  border-width: 0 0 1px;
  line-height: 2;
  padding: 5px;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: var(--link_color);
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: var(--easys_standard_value005);
}


/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  /* background: url(../files/footer_bg.png) no-repeat center top; */
  background: #44972b;
  height: 640px;
  position: relative;
}
#footer_box {
  /* background: none transparent; */
  background: url(../files/footer_box_bg.png) no-repeat center top;
  height: 550px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 155px 0 0;
  width: 1100px;
  /*絶対値指定する時
  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%;
  text-align: right;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  display: flex;
  flex-direction: column;
  width: 550px;
  height: 300px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  /* border-color: var(--footnavi_color); */
  border: none;
  box-sizing: border-box;
  color: var(--footnavi_color);
  font-size: 14px;
  padding-left: 1px;
  text-align: left;
  position: relative;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
  text-decoration: none;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item {
  margin-bottom: 18px;
  position: relative;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #9ac245;
  opacity: 0;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item:hover::after {
  opacity: 1;
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a::before {
  content: attr(title)" | ";
  position: relative;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 5px;
  background: url(../files/footer_link_arr_off.png) no-repeat center center;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover::after {
  animation: anime-arr .8s ease 0s forwards;
}

@keyframes anime-arr {
  15% {
    transform: translateX(2px);
    opacity: 0;
  }
  25% {
    background-image: url(../files/footer_link_arr_on.png);
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    background-image: url(../files/footer_link_arr_on.png);
    transform: translateX(5px);
    opacity: 1;
  }
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  position: absolute;

  /* width: 100%;
  text-align: center;
  top: 200px;
  left: 0; */

  width: 500px;
  text-align: left;
  top: 270px;
  left: calc(50% - 550px);
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}
#footer_sns_btn .footer_sns_inner,
#footer_sns_btn div {
  width: fit-content;
  height: auto;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  text-align: left;
  width: 1100px;
}



/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  bottom: 0;
  top: 0;
  margin: auto;
  height: fit-content;
  z-index: 1000;
}
/* .fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
} */
/* .fixed_btn div#fixed_btn_gtn {
  height: 150px !important;
} */

/* デフォルト動作 */
.fixed_btn {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  right: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  /* overflow: hidden; */
  box-sizing: border-box;
  padding-right: 80px;
}
.fixed_btn div a {
  pointer-events: all;
  overflow: visible !important;
}

.fixed_btn > div {
  position: relative;
}

.fixed_btn div,.fixed_btn div a,.fixed_btn div a:hover {
  width: auto !important;
  height: auto !important;
}
.fixed_btn div {
  margin-bottom: 0;
}
.fixed_btn div a {
  position: relative !important;
}

.fixed_btn div#fixed_btn_gtn a {
  overflow: visible;
}
.fixed_btn div#fixed_btn_gtn::before {
  content: "";
  width: 315px;
  height: 315px;
  border-radius: 100vmax;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  scale: 0;
  background-color: rgba(154, 194, 68, 0.8);
  transition: var(--custom_transition);
}
.fixed_btn div#fixed_btn_gtn:hover::before {
  scale: 1;
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
}
#float_top_btn a {
  pointer-events: all;
  width: fit-content;
  height: fit-content;
  display: block;
}
#float_top_btn > a:hover img {
  opacity: 0.8;
}
#float_top_btn::before,
#float_top_btn::after {
  content: "";
  width: 1px;
  height: 90px;
  position: absolute;
  bottom: 90px;
  right: 40px;
}
#float_top_btn::before {
  background: rgba(95, 95, 95, .4);
}
#float_top_btn::after {
  background: #2c365c;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite reverse;
}
@keyframes sdl {
  0%{
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50%{
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1%{
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100%{
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

#fixed_btn_blog {
  margin-right: 30px;
  overflow: hidden;
}
#fixed_btn_blog a {
  position: relative;
}
#fixed_btn_blog a::before,
#fixed_btn_blog a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#fixed_btn_blog a::before {
  width: calc(179 * 4px);
  animation: anime-bg 4s linear 0s infinite;
  background: url(../files/btn_blog_text.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#fixed_btn_blog a::after {
  background: url(../files/btn_blog_cover.png) no-repeat center center;
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */

/* read-more時の中央揃え*/
.entry_title {
  text-align: center;
  padding-left: 0;
  width: 100%;
}
.entry_title h3 {
  padding-left: 120px;
  width: 700px;
}
.sub_entry_title {
  width: 100%;
  padding-left: 0;
  text-align: center;
}
.sub_entry_title h4 {
  padding-left: 120px;
  width: 700px;
}

.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  height: 80px;
  line-height: 80px;
  padding-top: 40px;
}
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;
  text-align: center;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}

/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/* * .sub_entry_title,
* .sub_entry_title h4,
* .sub_entry_title h4 a {
  フォントサイズはこちら
} */
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 20px;
  text-align: center;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  background: none var(--th_background_color);
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  color: var(--th_character_color);
  font-size: 15px;
  height: auto;
  line-height: 1.7;
  padding: 10px;
  text-align: left;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}

/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  color: var(--link_color) !important;
  padding: 5px 0;
  text-align: center !important;
  width: 100%;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: var(--table_border_color);
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}


/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  background: none transparent;
  border-style: solid;
  border-color: var(--link_color);
  color: var(--link_color) !important;
}
/*.permalink_in a:link,
.permalink_in a:visited,
.pageback a:link,
.pageback a:visited {
}*/
.tablenav .next:link,
.tablenav .next:visited,
.tablenav .prev:link,
.tablenav .prev:visited {
  background: none transparent;
  border: 1px solid var(--easys_standard_value007);
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  background-color: var(--link_color);
  border-color: var(--link_color);
}
.tablenav .current,
a.page-numbers:hover,
.permalink_in a:hover,
.permalink_in a:active,
.pageback a:hover,
.pageback a:active,
.page_up a:hover,
.page_up a:active {
  background: none var(--link_color);
  border-color: var(--link_color);
  border-style: solid;
  color: var(--easys_standard_value008) !important;
}


/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: var(--border_color);
}

/* Cブロック */
.c_01,
.c_02,
.c_03,
.c_05,
.c_06 {
  display: inline-block;
  padding: 0 0 20px;
  width: 100%;
}
.c_04 {
  margin: 0 0 20px;
}

/* Dブロック */
.menu-list table {
  border-collapse: separate;
}

/* Gブロック */
.g_01 .sub_entry_title a,
.g_02 .sub_entry_title a {
  text-decoration: underline;
}
.g_01 .sub_entry_title a:hover,
.g_02 .sub_entry_title a:hover {
  text-decoration: none;
}

/* Kブロック */
.k_03 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.k_03 .news_small_text {
  font-size: 12px;
  line-height: 1.7;
}

/* Z-D ブログRSS */
.z_d1 {
  margin: 0 0 20px;
}

/* Z-E リンクバナー */
.banner_box {
  text-align: center;
}
.banner_box img {
  max-width: 100%;
  width: auto;
}

/* Z-I スライドショー */
.z_j1 {
  margin: 0 0 15px;
}

/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.Z_l1 .news_small_text {
  font-size: 12px;
}

/* Z_M タブブロック */
.z_m1 .link_list {
  font-size: 13px;
  line-height: 1.5;
}
.z_m1 div.link_list {
  margin-bottom: 10px;
}
div.link_list a {
  background-color: transparent;
  border: 1px solid var(--link_color);
  color: var(--link_color);
}
div.link_list a:hover {
  background-color: var(--link_color);
  border: 1px solid var(--link_color);
  color: #fff;
}

.faq-title {
  background-color: var(--link_color);
  color: #fff;
  font-weight: normal;
}


/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: var(--required_color);
}
.iqfm-table button,
.iqfm-table input[type="reset"],
.iqfm-table input[type="button"],
.iqfm-table input[type="submit"] {
  line-height: 1.7;
}
.iqfm-table .post_data {
  margin: 0 0 30px;
}


/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
/*body.coupon {
}*/
.coupon_print_block .print_header,
h1.print_page_title,
.coupon_box table tr td.coupon_data,
.coupon_box table tr td.coupon_meta_title,
.coupon_box table tr td.coupon_meta {
  border-color: var(--table_border_color);
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  background-color: var(--th_background_color);
  color: var(--th_character_color);
  width: 8em;
}
.coupon_box table tr td.coupon_meta {
  background-color: var(--td_background_color);
  color: var(--td_character_color);
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}


/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: var(--easys_standard_value009);
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  height: auto;
  line-height: 1.5;
  padding: 15px 20px 15px 20px;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: var(--blog_title_color);
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  margin: 0 0 20px;
  width: 100%;
  height: 450px;
}


/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}

/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/*  flow矢印余白*/
.flow_arr {
  margin: 10px auto !important;
}

/* メール更新ブロック */
.nj_03 .cu_mail_block {
  padding-bottom: 20px;
}
.nj_03 .img_size_thumb {
  height: 100px;
}
.nj_03 .img_size_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社概要 */
#content [class*="nf_"] small + iframe {
  margin-top: 30px !important;
}

/* フェードのipad対応 */
.easys_content:not(.ni_01) div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 背景と余白調整 */
.easys_content.no_margin { margin-bottom: 0 !important;}
.easys_content.no_margin + .easys_content:not(.no_margin) { margin-top: var(--custom_padding);}
.easys_content.no_margin.nk_01 { padding-bottom: 25px;}
.easys_content.no_margin.nk_01 [class*="title"] {  margin-bottom: 0;}
.shosai #outer_block { padding-top: 70px !important;}

/* テーマ余白調整 */
.easys_content,
.easys_content_inner > div:last-of-type {
  margin-bottom: 0 !important;
}
.easys_content.no_margin + .easys_content:not(.no_margin),
.easys_content:not(.no_margin):not(.nk_01) + .easys_content:not(.no_margin),
.easys_content:not(.no_margin) + .easys_content.no_margin {
  margin-top: var(--custom_padding);
}
#content > .easys_content:last-of-type:not(.no_margin) { margin-bottom: var(--custom_padding) !important;}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */

/* ※GSAPで実装済（footer_pc.js） */

.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;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#oja5qw5w5c62nk6xti1g,
#zm8ozo6u39tg4ov005q0,
#wg857qt4zuyekfbw0i8o {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#oja5qw5w5c62nk6xti1g div,
#zm8ozo6u39tg4ov005q0 div,
#wg857qt4zuyekfbw0i8o div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#oja5qw5w5c62nk6xti1g img,
#zm8ozo6u39tg4ov005q0 img,
#wg857qt4zuyekfbw0i8o img {
  position: relative;
}
#oja5qw5w5c62nk6xti1g .design_block,
#zm8ozo6u39tg4ov005q0 .design_block,
#wg857qt4zuyekfbw0i8o .design_block {
  opacity: 0;
}
#oja5qw5w5c62nk6xti1g .design_block[class*="block"].moved,
#zm8ozo6u39tg4ov005q0 .design_block[class*="block"].moved,
#wg857qt4zuyekfbw0i8o .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;
}

/* リンク共通 */
#oja5qw5w5c62nk6xti1g a,
#zm8ozo6u39tg4ov005q0 a {
  display: block;
  position: relative;
}
#oja5qw5w5c62nk6xti1g a:hover img,
#zm8ozo6u39tg4ov005q0 a:hover img {
  opacity: 1;
}

/* ボタン */
.design_btn div {
  position: absolute;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.design_btn div::before {
  content: "";
  width : 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: auto;
  box-sizing: border-box;
  border-radius: 100vmax;
  border: 2px solid #f1f1f1;
  opacity: 0.7;
}
.design_btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  box-sizing: border-box;
  overflow: visible !important;
  transform: rotate(-90deg);
}
.design_btn:hover circle {
  animation: circle 0.7s;
  opacity: 1;
}
.design_btn circle {
  opacity: 0;
  fill: transparent;
  stroke: #9ac244;
  stroke-width: 1px;
  overflow: visible;
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 366;
  }

  99.9%,
  to {
    stroke-dasharray: 366 366;
  }
}

/* お問い合わせ */
:root {
  --bnrContact_h: 580;
}
#oja5qw5w5c62nk6xti1g .easys_content_inner {
  padding: calc(var(--bnrContact_h) / 1920 * 100%) 0 0;
  width: 100%;
}
#oja5qw5w5c62nk6xti1g a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../files/bnr_contact_bg.jpg) no-repeat center top / 100%;
  transition: var(--custom_transition);
}
#oja5qw5w5c62nk6xti1g a:hover::before {
  transform: scale(1.1);
}
#oja5qw5w5c62nk6xti1g .img_display {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#oja5qw5w5c62nk6xti1g .design_btn div {
  background-image: url(../files/bnr_contact_link.png);
  width: calc(360 / 1920 * 100%);
  height: calc(360 / var(--bnrContact_h) * 100%);
  top: calc(110 / var(--bnrContact_h) * 100%);
  left: calc(1440 / 1920 * 100%);
}

/* 業務内容/実績紹介 */
:root {
  --bnrhalf_h: 450;
}
#zm8ozo6u39tg4ov005q0 .easys_content_inner {
  width: 100%;
}
#zm8ozo6u39tg4ov005q0 [class*="field_"] {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  height: 100%;
  position: relative;
  width: calc( 100% / 2 ) !important;
}
#zm8ozo6u39tg4ov005q0 .eyecatch {
  width: 100%;
}
#zm8ozo6u39tg4ov005q0 [class*="field_"]:nth-of-type(1) {
  background-image: url(../files/bnrhalf_wwd_bg_on.jpg);
}
#zm8ozo6u39tg4ov005q0 [class*="field_"]:nth-of-type(2) {
  background-image: url(../files/bnrhalf_projects_bg_on.png);
}
#zm8ozo6u39tg4ov005q0 .design_btn div {
  background-image: url(../files/bnrhalf_projects_link_btn.png);
  width: calc(221 / 1920 * 200%);
  height: calc(221 / var(--bnrhalf_h) * 100%);
  top: calc(116 / var(--bnrhalf_h) * 100%);
  left: calc(600 / 1920 * 200%);
}

/* 画像＞イメージ */
#wg857qt4zuyekfbw0i8o .easys_content_inner {
  padding: calc(780 / var(--easys_max_width) * 100%) 0 0;
  overflow: hidden;
  width: 100%;
}
#wg857qt4zuyekfbw0i8o [class*="field_"]:nth-of-type(1) {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: 0;
}
#wg857qt4zuyekfbw0i8o [class*="field_"]:nth-of-type(1) img {
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(2000 * 1px));
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  z-index: 0;
}
#wg857qt4zuyekfbw0i8o [class*="field_"]:nth-of-type(2) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(1920 * 1px);
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#jvdg42oq06k8tvacylk4,
#rdwk3bgtuie9hwyaabp5,
#uy8uyyjfmtor14u63lpn,
#glzbvxddikv9fd1r6gnz,
#jycrjk7v535bq81xe9tv,
#l991oynazdo7d3xxzq3d,
#mc2i6ceqf7ix7uha8rgw {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#jvdg42oq06k8tvacylk4 .easys_content_inner,
#rdwk3bgtuie9hwyaabp5 .easys_content_inner,
#uy8uyyjfmtor14u63lpn .easys_content_inner,
#glzbvxddikv9fd1r6gnz .easys_content_inner,
#jycrjk7v535bq81xe9tv .easys_content_inner,
#l991oynazdo7d3xxzq3d .easys_content_inner,
#mc2i6ceqf7ix7uha8rgw .easys_content_inner {
  opacity: 1;
  top: 0px;
  width: 1100px;
}
#jvdg42oq06k8tvacylk4 .post_margin,
#rdwk3bgtuie9hwyaabp5 .post_margin,
#uy8uyyjfmtor14u63lpn .post_margin,
#glzbvxddikv9fd1r6gnz .post_margin,
#jycrjk7v535bq81xe9tv .post_margin,
#l991oynazdo7d3xxzq3d .post_margin,
#mc2i6ceqf7ix7uha8rgw .post_margin {
  margin: 0;
}
#jvdg42oq06k8tvacylk4 .entry_post,
#rdwk3bgtuie9hwyaabp5 .entry_post,
#uy8uyyjfmtor14u63lpn .entry_post,
#glzbvxddikv9fd1r6gnz .entry_post,
#jycrjk7v535bq81xe9tv .entry_post,
#l991oynazdo7d3xxzq3d .entry_post,
#mc2i6ceqf7ix7uha8rgw .entry_post {
  box-sizing: border-box;
}
#jvdg42oq06k8tvacylk4 .entry_post > [class*="title"],
#rdwk3bgtuie9hwyaabp5 .entry_post > [class*="title"],
#uy8uyyjfmtor14u63lpn .entry_post > [class*="title"],
#glzbvxddikv9fd1r6gnz .entry_post > [class*="title"],
#jycrjk7v535bq81xe9tv .entry_post > [class*="title"],
#l991oynazdo7d3xxzq3d .entry_post > [class*="title"],
#mc2i6ceqf7ix7uha8rgw .entry_post > [class*="title"] {
  display: none;
}
#jvdg42oq06k8tvacylk4 .text_box,
#rdwk3bgtuie9hwyaabp5 .text_box,
#uy8uyyjfmtor14u63lpn .text_box,
#glzbvxddikv9fd1r6gnz .text_box,
#jycrjk7v535bq81xe9tv .text_box,
#l991oynazdo7d3xxzq3d .text_box,
#mc2i6ceqf7ix7uha8rgw .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  margin: 0;
}
#jvdg42oq06k8tvacylk4 .post_data,
#rdwk3bgtuie9hwyaabp5 .post_data,
#uy8uyyjfmtor14u63lpn .post_data,
#glzbvxddikv9fd1r6gnz .post_data,
#jycrjk7v535bq81xe9tv .post_data,
#l991oynazdo7d3xxzq3d .post_data,
#mc2i6ceqf7ix7uha8rgw .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
#jvdg42oq06k8tvacylk4 .design_block,
#rdwk3bgtuie9hwyaabp5 .design_block,
#uy8uyyjfmtor14u63lpn .design_block,
#glzbvxddikv9fd1r6gnz .design_block,
#jycrjk7v535bq81xe9tv .design_block,
#l991oynazdo7d3xxzq3d .design_block,
#mc2i6ceqf7ix7uha8rgw .design_block {
  opacity: 0;
}
#jvdg42oq06k8tvacylk4 .design_block[class*="block"].moved,
#rdwk3bgtuie9hwyaabp5 .design_block[class*="block"].moved,
#uy8uyyjfmtor14u63lpn .design_block[class*="block"].moved,
#glzbvxddikv9fd1r6gnz .design_block[class*="block"].moved,
#jycrjk7v535bq81xe9tv .design_block[class*="block"].moved,
#l991oynazdo7d3xxzq3d .design_block[class*="block"].moved,
#mc2i6ceqf7ix7uha8rgw .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;
}

/* 共通ボタン-ブロック内リンク */
/* ※遷移先でのボタン非表示処理はfooter_common.jsで行っています※ */
#jvdg42oq06k8tvacylk4 [class*="_btn"],
#rdwk3bgtuie9hwyaabp5 [class*="_btn"],
#uy8uyyjfmtor14u63lpn [class*="_btn"],
#glzbvxddikv9fd1r6gnz [class*="_btn"] {
  margin: 70px 0 0;
  padding: 0;
  width: fit-content;
  height: fit-content;
}
#jvdg42oq06k8tvacylk4 [class*="_btn"] a,
#rdwk3bgtuie9hwyaabp5 [class*="_btn"] a,
#uy8uyyjfmtor14u63lpn [class*="_btn"] a,
#glzbvxddikv9fd1r6gnz [class*="_btn"] a {
  background: 
  url(../files/link_btn_off.png) no-repeat right center,
  url(../files/link_btn_text.png) no-repeat left center;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 300px;
  height: 71px;
}
#jvdg42oq06k8tvacylk4 [class*="_btn"] a::before,
#rdwk3bgtuie9hwyaabp5 [class*="_btn"] a::before,
#uy8uyyjfmtor14u63lpn [class*="_btn"] a::before,
#glzbvxddikv9fd1r6gnz [class*="_btn"] a::before {
  content: "";
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto;
  position: absolute;
  width: 125px;
  height: 1px;
  background: #000;
  z-index: 10;
  animation: anime-line 2s infinite;
}
@keyframes anime-line {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    width: 140px;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%,
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
    width: 0%;
  }
}
#jvdg42oq06k8tvacylk4 [class*="_btn"] a::after,
#rdwk3bgtuie9hwyaabp5 [class*="_btn"] a::after,
#uy8uyyjfmtor14u63lpn [class*="_btn"] a::after,
#glzbvxddikv9fd1r6gnz [class*="_btn"] a::after {
  content: "";
  width: 71px;
  height: 71px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../files/link_btn_on.png) no-repeat center center / 100%;
  transition: var(--custom_transition);
  transform: scale(1.5);
  opacity: 0;
}
#jvdg42oq06k8tvacylk4 [class*="_btn"] a:hover::after,
#rdwk3bgtuie9hwyaabp5 [class*="_btn"] a:hover::after,
#uy8uyyjfmtor14u63lpn [class*="_btn"] a:hover::after,
#glzbvxddikv9fd1r6gnz [class*="_btn"] a:hover::after {
  transform: none;
  opacity: 1;
}

/* 機器のことはお任せください */
#jvdg42oq06k8tvacylk4 {
  background-image: url(../files/design01_bg.png);
  height: 1330px;
}
#jvdg42oq06k8tvacylk4 .entry_post {
  padding: 366px 550px 0 0;
}
#jvdg42oq06k8tvacylk4 > .design_block.block1 {
  background-image: url(../files/design01_ttl.png);
  width: 530px;
  height: 196px;
  top: 180px;
  left: calc(50% - 550px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#jvdg42oq06k8tvacylk4 > .design_block.block2 {
  background-image: url(../files/design01_img.jpg);
  width: 480px;
  height: 640px;
  top: 180px;
  left: calc(50% + 80px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#jvdg42oq06k8tvacylk4 > .design_block.block3 {
  background-image: url(../files/design01_catch01.png);
  width: 307px;
  height: 151px;
  top: 684px;
  left: calc(50% - 168px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#jvdg42oq06k8tvacylk4 > .design_block.block4 {
  width: 100%;
  height: 86px;
  bottom: 305px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#jvdg42oq06k8tvacylk4 > .design_block.block4::before {
  content: "";
  width: calc(722 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/desgin01_catch02.png) repeat-x left top / auto 100%;
}

/* 現場が証明する、確かな技術力 */
#rdwk3bgtuie9hwyaabp5 {
  background: url(../files/block_bg_01.jpg) repeat left top;
  height: 1040px;
}
#rdwk3bgtuie9hwyaabp5 .entry_post {
  padding: 365px 0 0 570px;
}
#rdwk3bgtuie9hwyaabp5 .post_data {
  color: #fff;
}
#rdwk3bgtuie9hwyaabp5 [class*="_btn"] a {
  background: 
  url(../files/link_btn_off02.png) no-repeat right center,
  url(../files/link_btn_text02.png) no-repeat left center;
}
#rdwk3bgtuie9hwyaabp5 > .design_block.block1 {
  background-image: url(../files/design02_bg.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#rdwk3bgtuie9hwyaabp5 > .design_block.block2 {
  background-image: url(../files/design02_ttl.png);
  width: 530px;
  height: 196px;
  top: 180px;
  left: calc(50% + 20px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#rdwk3bgtuie9hwyaabp5 > .design_block.block3 {
  width: 540px;
  height: 940px;
  top: -180px;
  left: calc(50% - 650px);
  opacity: 1;
  overflow: hidden;
}
#rdwk3bgtuie9hwyaabp5 > .design_block.block3::before {
  content: "";
  height: calc(1480 / 940 * 400%);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: anime-bg_h 40s linear 0s infinite;
  background: url(../files/design02_img.png) repeat-y left top / 100% auto;
}
@keyframes anime-bg_h {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-25%);}
}
#rdwk3bgtuie9hwyaabp5 > .design_block.block4 {
  background-image: url(../files/design02_catch.png);
  width: 380px;
  height: 126px;
  top: 735px;
  left: calc(50% + 230px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}

/* 信頼でつながる、現場力のネットワーク */
#uy8uyyjfmtor14u63lpn {
  background-image: url(../files/design03_bg.png);
  height: 1037px;
}
#uy8uyyjfmtor14u63lpn .entry_post {
  padding: 410px 550px 0 15px;
}
#uy8uyyjfmtor14u63lpn > .design_block.block1 {
  background-image: url(../files/design03_ttl.png);
  width: 560px;
  height: 240px;
  top: 180px;
  left: calc(50% - 550px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#uy8uyyjfmtor14u63lpn > .design_block.block2 {
  background-image: url(../files/design03_img.jpg);
  width: 540px;
  height: 360px;
  top: 180px;
  left: calc(50% + 55px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#uy8uyyjfmtor14u63lpn > .design_block.block3 {
  background-image: url(../files/design03_catch01.png);
  width: 345px;
  height: 115px;
  top: 675px;
  left: calc(50% - 98px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#uy8uyyjfmtor14u63lpn > .design_block.block4 {
  width: 100%;
  height: 86px;
  bottom: 180px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#uy8uyyjfmtor14u63lpn > .design_block.block4::before {
  content: "";
  width: calc(644 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/design03_catch02.png) repeat-x left top / auto 100%;
}

/* 沖縄の現場を支える重設運輸のプロ */
#glzbvxddikv9fd1r6gnz {
  background-image: url(../files/design04_bg.jpg);
  height: 1260px;
}
#glzbvxddikv9fd1r6gnz .entry_post {
  padding: 365px 0 0 570px;
}
#glzbvxddikv9fd1r6gnz .post_data {
  color: #fff;
}
#glzbvxddikv9fd1r6gnz [class*="_btn"] a {
  background: 
  url(../files/link_btn_off02.png) no-repeat right center,
  url(../files/link_btn_text02.png) no-repeat left center;
}
#glzbvxddikv9fd1r6gnz > .design_block.block1 {
  background-image: url(../files/design04_ttl.png);
  width: 530px;
  height: 136px;
  top: 180px;
  left: calc(50% + 20px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#glzbvxddikv9fd1r6gnz > .design_block.block2 {
  background-image: url(../files/design04_img01.jpg);
  width: 540px;
  height: 360px;
  top: 180px;
  left: calc(50% - 640px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#glzbvxddikv9fd1r6gnz > .design_block.block3 {
  background-image: url(../files/design04_img02.png);
  width: 600px;
  height: 280px;
  top: 800px;
  left: calc(50% + 20px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#glzbvxddikv9fd1r6gnz > .design_block.block4 {
  background-image: url(../files/design04_catch.png);
  width: 401px;
  height: 203px;
  top: 940px;
  left: calc(50% - 327px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}

/* 重量物・機械器具設置を一貫対応 */
#jycrjk7v535bq81xe9tv {
  background: url(../files/block_bg_01.jpg) repeat left top;
  height: 1360px;
}
#jycrjk7v535bq81xe9tv .entry_post {
  padding: 800px 570px 0 0;
}
#jycrjk7v535bq81xe9tv .post_data {
  color: #fff;
}
#jycrjk7v535bq81xe9tv > .design_block.block1 {
  background-image: url(../files/design05_ttl.png);
  width: 530px;
  height: 90px;
  top: 720px;
  left: calc(50% - 550px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#jycrjk7v535bq81xe9tv > .design_block.block2 {
  width: 1070px;
  height: 380px;
  top: 180px;
  left: calc(50% - 960px);
  opacity: 1;
  overflow: hidden;
}
#jycrjk7v535bq81xe9tv > .design_block.block2::before {
  content: "";
  width: calc(1830 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite reverse;
  background: url(../files/design05_img01.png) repeat-x left top / auto 100%;
}
#jycrjk7v535bq81xe9tv > .design_block.block3 {
  background-image: url(../files/design05_img02.jpg);
  width: 660px;
  height: 460px;
  top: 720px;
  left: calc(50% + 110px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#jycrjk7v535bq81xe9tv > .design_block.block4 {
  background-image: url(../files/design05_catch.png);
  width: 630px;
  height: 380px;
  top: 180px;
  left: calc(50% + 20px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}

/* 現場で培った、確かな実績と信頼 */
#l991oynazdo7d3xxzq3d {
  background-image: url(../files/design06_bg.png);
  height: 1370px;
}
#l991oynazdo7d3xxzq3d .entry_post {
  padding: 210px 0 0 570px;
}
#l991oynazdo7d3xxzq3d > .design_block.block1 {
  background-image: url(../files/design06_ttl.png);
  width: 630px;
  height: 375px;
  top: 145px;
  left: calc(50% - 650px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#l991oynazdo7d3xxzq3d > .design_block.block2 {
  width: 100%;
  height: 86px;
  bottom: 265px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#l991oynazdo7d3xxzq3d > .design_block.block2::before {
  content: "";
  width: calc(644 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 40s linear 0s infinite;
  background: url(../files/desgin06_catch.png) repeat-x left top / auto 100%;
}
#l991oynazdo7d3xxzq3d > .design_block.block3 {
  background-image: url(../files/design06_img02.jpg);
  width: 600px;
  height: 330px;
  top: 860px;
  left: calc(50% + 140px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}
#l991oynazdo7d3xxzq3d > .design_block.block4 {
  background-image: url(../files/design06_img01.jpg);
  width: 1160px;
  height: 400px;
  top: 520px;
  left: calc(50% - 960px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}

/* 機械運輸のプロとして */
#mc2i6ceqf7ix7uha8rgw {
  height: 860px;
}
#mc2i6ceqf7ix7uha8rgw .entry_post {
  padding: 415px 570px 0 0;
}
#mc2i6ceqf7ix7uha8rgw .post_data {
  color: #fff;
}
#mc2i6ceqf7ix7uha8rgw > .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);
}
#mc2i6ceqf7ix7uha8rgw > .design_block.block1::before {
  content: "";
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left : auto;
  margin-right: auto;
  background: url(../files/design07_para_bg.jpg) no-repeat center center / cover;
  z-index: -1;
}
#mc2i6ceqf7ix7uha8rgw > .design_block.block2 {
  background-image: url(../files/design07_para_cover.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
#mc2i6ceqf7ix7uha8rgw > .design_block.block3 {
  background-image: url(../files/design07_ttl.png);
  width: 532px;
  height: 280px;
  top: 145px;
  left: calc(50% - 550px);
  transform: translateY(calc(var(--custom_fade) * 1px)) rotate3d(-1, -1, 0, -20deg);
}


/*  背景
---------------------------------------------------------------------------------------------------- */
/* 新着情報 */
#mcjm4i1sgutqg0x0egdd {
  /* background: url(../files/block_bg_02.jpg) repeat left top; */
  background-color: #f7f6ef;
  padding-top: var(--custom_padding);
  padding-bottom: var(--custom_padding);
}
