@charset "utf-8";

/*
 * PC用スタイルCSS
 */
 @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Noto+Sans+JP&family=Noto+Serif+JP&display=swap');

/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: none transparent;
  background-color: #FFF;
}
body {
  background: none transparent;
  color:#171717  ;/*要変更：基本カラー*/
  min-width: 1300px;
  max-width: 2000px;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  position: relative;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}
body#page_6 {
  background: none transparent;
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
  /* padding: 0; */
}

a:link, a:visited, a:hover, a:active {
color: #418e11/*要変更：リンクカラー*/;
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: #418e11/*要変更：リンクカラー*/;
  color: #fff/*要確認：bgリンクカラーの時に読める任意のカラー*/;
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  height: calc(425px + 100vw * (680 / 2000));
  background: none transparent;
  padding: 0;
  position: relative;
  z-index: 500;
  min-height: calc(425px + 680px * (1300 / 2000));
  max-height: 1105px;
}
#page_6 #branding_box {
  height: 2000px/*要変更*/;
  min-height: initial;
  max-height: initial;
}


#page_6 #branding_box:before {
  content:" ";
  display:block;
  position:absolute;
  top:130px;
  left:0;
  right:0;
  z-index:1;
  width:960px;
  height:545px;
  margin:auto;
  background:url(/files/branding_box_bg_top.png) no-repeat top center;
}


/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {height: 0px/*要変更*/;}
#page_6 #header_information {height: 0px/*要変更*/;}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  width: 100%;
  margin: 0 auto;
}
#site-description a {
  display: inline;
  color: #3f8a0f;
  position: absolute;
  top: 380px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: 100;
}
#page_6 #site-description a {
  top: 450px;
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
.main_header, .header_class {
  width:  100%;
  margin: 0 auto;
  padding: 0;
}
.main_header img, .header_class img {
  width: 350px;
  height: 96px;
  background: url(/files/branding_box_bg.png) no-repeat top center/100%;
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 999;
}

/*ヘッダーマップボタン
---------------------------------------------------------------------------------------------------- */

.head_map{
    position: fixed;
    display: block;
    width:106px;
    height:44px;
    top: 60px;
    right: 196px;
    z-index: 999;
}
.head_map a {
  display: block;
  width:100%;
  height:100%;
  background: url(/files/btn_access.png) no-repeat top center;
  text-indent: -9999px;
}

.head_map a:hover {
  opacity:0.85;
}

/*スクロールボタン
---------------------------------------------------------------------------------------------------- */

#scroll{display: none;}
#page_6 #scroll{
    display: block;
    position: absolute;
    z-index: 590;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 605px;
    width: 150px;
    height: 150px;
}

#page_6 #scroll .scroll-bg {
    width: 100%;
    height: 100%;
    background: url("/files/scroll_down_bg.png")no-repeat center top / 100%;
    animation: circle linear 60s infinite;
    position: relative;
    top: -150px;
    z-index: -1;
}

@keyframes circle {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(-360deg);}
}



/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
/*======ボタン ======*/
#menu_btn {
  position:fixed;
  top:60px;
  right:60px;
  z-index:1000;
  width:115px;
  height:45px;
  overflow:hidden;
  cursor:pointer;
  transition:top 0.3s ease 0s;
  border-radius:50px;
  outline:none;
  background:none;
  background:#275c00;
}
/* ボタンテキストを囲うボックス */
.menu_box {
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  left:50px;
  width:40px;
  height:20px;
  margin:auto;
  overflow:hidden;
    font-size:18px;
  font-family: 'Barlow Condensed', sans-serif;
}
#menu_btn .menu_box:before {
  content:"MENU";
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  width:100%;
  height:100%;
  transition:0.6s ease 0s;
  transform:translateY(0px);
  opacity:1;
  color:#FFFFFF;
}

#menu_btn .menu_box:after {
  content:"MENU";
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  width:100%;
  height:100%;
  transition:0.6s ease 0s;
  transform:translateY(15px);
  opacity:0;
  color:#FFFFFF;
}

#menu_btn:hover .menu_box:before {
  transform:translateY(-15px);
  opacity:0;
}
#menu_btn:hover .menu_box:after {
  transform:translateY(0px);
  opacity:1;
}

#menu_btn span {
  display:inline-block;
  position:absolute;
  left:25px;
  z-index:10;
  width:13px;
  height:1px;
  box-sizing:border-box;
  border-radius:3px;
  background:#FFFFFF;
}

#menu_btn span:nth-of-type(1) {
  top:17px;
}
#menu_btn span:nth-of-type(2) {
  top:22px;
}
#menu_btn span:nth-of-type(3) {
  top:27px;
}
/*=============================
    ボタンON時
=============================*/
.open #menu_btn {
  top:30px;
  background:#FFFFFF;
}
.open #menu_btn .menu_box:before {
  content:"CLOSE";
  color:#275c00;
}

.open #menu_btn .menu_box:after {
  content:"CLOSE";
  color:#275c00;
}

.open #menu_btn span {
  background:#275c00;
}
.open #menu_btn span:nth-of-type(1) {
  top:12px;
  -webkit-transform:translateY(10px) rotate(45deg);
          transform:translateY(10px) rotate(45deg);
}
.open #menu_btn span:nth-of-type(2) {
  width:0;
  opacity:0;
}
.open #menu_btn span:nth-of-type(3) {
  top:40px;
  -webkit-transform:translateY(-18px) rotate(-45deg);
          transform:translateY(-18px) rotate(-45deg);
}

/*======ナビ ======*/
#access {
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  width:100%;
  height:100vh;
  margin:0;
  transition:opacity 0.6s;
  transform:translateY(-110%);
  opacity:0;
  background:#91c61e;
}

.open #access {
  transform:translateY(0);
  opacity:1;
}

#access .menu-header {
  position:relative;
  width: 1200px;
  height: 320px;
  margin:calc((100vh - 410px) / 2) auto 0;
  background:url(/files/branding_box_bg_02.png)no-repeat top center;
}

div#access li.menu-item {
  float:none;
  /* margin: 0 0 20px 0; */
}


/* オープン時動き */
div#access .menu-item {
  display:block;
  transition:0.6s ease 0s;
  transform:translateY(50px);
  opacity:0;
}
.open div#access .menu-item {
  transform:translateY(0);
  opacity:1;
}
.open div#access .gnavi11 {transition-delay:0.2s;}
.open div#access .gnavi12 {transition-delay:0.3s;}
.open div#access .gnavi13 {transition-delay:0.4s;}
.open div#access .gnavi14 {transition-delay:0.5s;}
.open div#access .gnavi15 {transition-delay:0.6s;}
.open div#access .gnavi16 {transition-delay:0.7s;}
.open div#access .gnavi17 {transition-delay:0.8s;}
.open div#access .gnavi18 {transition-delay:0.9s;}


/* ナビ個別設定 */
div#access .menu-item a {
  width: 320px;
  height: 70px;
  margin:0px;
  padding:0px;
  transition:0.6s ease 0s;
}
div#access .gnavi11 a {
  background:url(/files/navi_01.png) no-repeat top center/100%;
}
div#access .gnavi12 a {
  background:url(/files/navi_02.png) no-repeat top center/100%;
}
div#access .gnavi13 a {
  background:url(/files/navi_03.png) no-repeat top center/100%;
}
div#access .gnavi14 a {
  background:url(/files/navi_04.png) no-repeat top center/100%;
}
div#access .gnavi15 a {
  background:url(/files/navi_05.png) no-repeat top center/100%;
}
div#access .gnavi16 a {
  background:url(/files/navi_06.png) no-repeat top center/100%;
}
div#access .gnavi17 a {
  background:url(/files/navi_07.png) no-repeat top center/100%;
}

/* ボタン */
div#access .gnavi18 a {
  position:absolute;
  top: 150px;
  left: 50px;
  width: 323px;
  height: 97px;
  background: url(/files/btn_line.png) no-repeat top center;
}

/* ロゴリンク */
.gnavi19 {
  position:absolute;
  top:0;
  left:0;
  width: 390px;
  height: 115px;
}


div#access .gnavi19 a {
  width: 390px;
  height: 115px;
  background:none transparent;
}

#groupA ,
#groupB {
  position:absolute;
  top:0px;
}
#groupA {left: calc(50%  - 135px);top: 10px;}
#groupB {left: calc(50% + 230px);top: 80px;}


/* ホバー時 */
div#access .menu-item a:hover {
  background-position: center top!important;
}

div#access .gnavi18 a:hover ,
div#access .gnavi19 a:hover {
  opacity: 0.5;
  background-position:center top!important;
}


/* 矢印 */
div#access .menu-item a:after {
  content:" ";
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  z-index:1;
  width:14px;
  height:10px;
  margin:auto;
  background:url(/files/navi_link_arr.png) no-repeat top center/100%;
}

div#access .gnavi18 a:after,
div#access .gnavi19 a:after{display:none!important;}

div#access .menu-item a:hover:after {
  animation:passby 1s cubic-bezier(0.65,0.01,0.3,0.97);
}

@keyframes passby {
  0% {
    transform:translateX(0);
    opacity:1;
  }
  40% {
    opacity:0;
  }
  49.9% {
    transform:translateX(50%);
    opacity:0;
  }
  50% {
    transform:translateX(-50%);
    opacity:0;
  }
  100% {
    transform:translateX(0);
    opacity:1;
  }
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access02 {
  z-index:590;
  width:100%;
  height:45px;
  min-width: 1320px;
  margin:0 auto;
  position: absolute;
  top: 60px;
  left: 0;
}
#access02 .menu-header {
  width: 610px;
  height:45px;
  margin: 0px 310px 0 auto;
}

div#access02 li.menu-item {
  display:block;
  margin:0;
  float:left;
  list-style:none outside none;
  text-align:center;
  text-indent:0px;
  height: 45px;
}

div#access02 .menu-item a {
  display: block;
  height:45px;
  margin:0px;
  padding:0px;
  color:#171717 !important;
  font-size: 17px;
  background:none transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  position: relative;
}
div#access02 .menu-item a:hover {
  color: #418e11!important;
  text-decoration: none;
}

/*--------------------hover*/

div#access02 .menu-item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  width: 100%;
  height: 1px;
  content: '';
  background-color:#275c00;
}

div#access02 .menu-item a:hover:after { 
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}



/* プルダウンメニューのサイズ */
#access02 ul.menu ul.sub-menu {
  top: 100%;
  width: 100%;
}
#access02 ul.menu ul.sub-menu,
#access02 ul.menu ul.sub-menu li {
  min-width: 100%;
  width: 100%;
}

/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a, div#access ul.sub-menu li.sub-gnavi2 a {
  background: none #fff;
  background: none rgba(255, 255, 255, 0.75);
  filter: alpha(opacity=75); /* ie 6 7 */
  -ms-filter: "alpha(opacity=75)"; /* ie 8 */
  width: 100%;
  color: #333;
}
#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: #333;
}
div#access ul.sub-menu li.sub-gnavi a:hover, div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none #fff;
  background: none rgba(255, 255, 255, 0.75);
  filter: alpha(opacity=75); /* ie 6 7 */
  -ms-filter: "alpha(opacity=75)"; /* ie 8 */
  color: #666;
}
#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: #666;
}

/* IE7 hack */
*:first-child+html div#access ul.sub-menu li.sub-gnavi a,
*:first-child+html div#access ul.sub-menu li.sub-gnavi2 a {
  background-color: #fff;
}
*:first-child+html div#access ul.sub-menu li.sub-gnavi a:hover,
*:first-child+html div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background-color: #fff;
}

/* IE9 hack */
div#access ul.sub-menu li.sub-gnavi a:not(:target),
div#access ul.sub-menu li.sub-gnavi2 a:not(:target),
div#access ul.sub-menu li.sub-gnavi a:not(:target):hover,
div#access ul.sub-menu li.sub-gnavi2 a:not(:target):hover {
  filter: none;
  -ms-filter: none;
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
/* 通常メイン画像 */
 #jquery_slider_pc{
  position: absolute;
  top: 680px/*要変更：中ページティザー画像のページ一番からの位置*/;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
  min-width: 1300px;
  max-width: 2000px;
}
/* フラッシュ選択時 */
.flash_teaser {
  background-repeat: no-repeat;
  background-position: center top;
}


/* 通常メイン画像 */
#main_teaser {
  position:absolute;
  top:0/*要変更：中ページティザー画像のページ一番からの位置*/;
  left:0;
  z-index:99;
  width:100%;
  height: 425px;
  min-width: 1300px;
  max-width: 2000px;
  overflow:hidden;
  text-align:center;
}

#main_teaser img {
  display:block;
  position:absolute;
  top: 140px;
  left: 0;
  right: 0;
  /* left:calc(50% - 960px); */
  width: 960px;
  height: 285px;
  /* min-width:1200px; */
  /* max-width:1920px; */
  margin:0 auto;
}


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title, .widget-title2 a {
  padding: 0;
  text-align: center;
  color: #FFF  /*要変更：widget_title_bgのテキストカラー*/;
  background: url(/files/widget_title_bg.png) no-repeat scroll left top transparent;
}
.widget-title2 a:link, .widget-title2 a:visited,
.widget-title2 a:hover, .widget-title2 a:active {
  color: #FFF  /*要変更：widget_title_bgのテキストカラー*/;
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  color: #171717  /*要変更：widget_list_bgのテキストカラー*/;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: url(/files/widget_list_bg.png)/*要変更：拡張子が合っているか確認*/;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
#wp-calendar thead th {
}
#wp-calendar tbody td {
  background: none transparent;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: #444444/*要変更：ボーダーカラー*/;
  line-height: 2;
  padding: 5px;
}
#wp-calendar tbody td a { text-decoration: underline; }
#wp-calendar tbody td a:hover { text-decoration: none; }




/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  background-position: center top;
  height: 550px;/*要変更：footer_bg画像の高さ*/
  position: relative;
}
#footer_box {
  background: url(/files/footer_box_bg.png) no-repeat center top/*要変更：拡張子が合っているか確認*/;
  height: 390px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 0;
  position: absolute;
  top: 120px;
  width: 100%;
}
#footer-widget-area {
  display: block;
}

#footer-widget-area .widget-area ul.menu {
  border:none;
}
#footer-widget-area .widget-area .menu-item a {
    border:none;
  color: #7e7e7e  ;
}
#footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer-widget-area .widget-area .menu-item {
    margin: 0 10px;
}

/*フッターナビ個別設定 */
#footer-widget-area .widget-area .menu-item a {
  padding: 40px 0 0 0;
  width:190px;
  height: 50px;
  margin:0px;
  text-align: left;
  box-sizing: border-box;
}
.footer01{
  width: 610px!important;
}
.footer01 a {
  background:url(/files/footer_navi_01.png) no-repeat top center/100%;
  width: 610px!important;
}
.footer02 a {
  background:url(/files/footer_navi_02.png) no-repeat top center/100%;
}
.footer03 a {
  background:url(/files/footer_navi_03.png) no-repeat top center/100%;
}
.footer04 a {
  background:url(/files/footer_navi_04.png) no-repeat top center/100%;
}
.footer05 a {
  background:url(/files/footer_navi_05.png) no-repeat top center/100%;
}
.footer06 a {
  background:url(/files/footer_navi_06.png) no-repeat top center/100%;
}
.footer07 a {
  background:url(/files/footer_navi_07.png) no-repeat top center/100%;
}


#groupC,
#groupD,
#groupE {
  position:absolute;
  top:0px;
  left: calc(50% - 67px);
}
#groupC {top: 0px;}
#groupD {top: 90px;}
#groupE {top: 180px;}



/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  width: 1100px;
  margin: 0 auto;
}
#footer_information .entry-post {
  width: 480px;
  margin: 250px 0 0;
  text-align: left;
  color: #7e7e7e  /*要変更：フッター住所のテキストカラー*/;
}



/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}
#footer_sns_btn div {width: 25px;height: 25px;}
#footer_sns_btn div a:hover {opacity: 0.8;}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: #7e7e7e  /*要変更：コピーライトのテキストカラー*/;
  position: absolute;
  bottom: 60px;
  left: calc(50% - 550px);
}


/*  フッターメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  z-index: 1000;
  bottom: 150px;
}
.fixed_btn div,
.fixed_btn div a {height: 50px;width: 55px;}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {height: 150px;}/*ガテン用、ガテンバナーがなければ削除*/

#float_top_btn {
  bottom: 30px;
  position: fixed;
  right: 40px;
  z-index: 999;
}

.open #float_top_btn{
  display:none;
  opacity: 0;
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(/files/top_entry_title.png)/*要変更：拡張子が合っているか確認*/;
  color: #418e11  /*要変更：top_entry_titleのテキストカラー*/;
}
h3.entry_title, .entry_title, .entry-title { /* サイズ、背景、余白などはこちら */
  background-image: url(/files/entry_title_bg.png)/*要変更：拡張子が合っているか確認*/;
  color: #171717  /*要変更：entry_title_bgのテキストカラー*/;
}
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: #171717  /*要変更：entry_title_bgのテキストカラー*/;
}
/* 見出しリンクボタン */
.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;
  color: #171717  /*要変更：entry_title_bg_w570のテキストカラー*/;
  text-align: center;
  padding: 0;
  width: 570px;
}


/* 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: #171717    /*要変更：half_entry_title_bgのテキストカラー*/;}

* .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: #418e11    /*要変更：half_sub_entry_title_bgのテキストカラー*/;}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url("/files/sub_entry_title_bg.png") no-repeat scroll left top transparent/*要変更：拡張子が合っているか確認*/;
  color: #418e11  /*要変更：sub_entry_title_bgのテキストカラー*/;
}
* .sub_entry_title a:link, * .sub_entry_title a:visited,
* .sub_entry_title a:hover, * .sub_entry_title a:active {
  color: #418e11  /*要変更：sub_entry_title_bgのテキストカラー*/;
}
/* 小見出しリンクボタン */
.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;
  color: #418e11  /*要変更：sub_entry_title_bg_w570のテキストカラー*/;
  text-align: center;
  padding: 0;
  width: 570px;
}


/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(/files/column3_title_bg.png)/*要変更：拡張子が合っているか確認*/;
}
* .inline_title,
* .inline_title a {color: #FFF    /*要変更：clom3_sub_entry_titleのテキストカラー*/;}


/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  background: none transparent/*要変更：テーブルのthの背景色*/;
  border: 1px solid #444444/*要変更：テーブルのボーダーカラー*/;
  border-radius: 5px;
  height: auto;
  line-height: 1.7;
  padding: 10px;
  text-align: left;
  font-size: 15px;
  color: #171717  /*要変更：テーブルのthのテキストカラー*/;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  border-color: #418e11/*要変更：リンクテキストカラー*/;
  width: 685px;
}


/* 大きな地図で見る */
small {
  border-color: #418e11/*要変更：リンクテキストカラー*/;
}
small a {
  width: 100%;
  padding: 5px 0;
  text-align: center !important;
  color: #418e11/*要変更：リンクテキストカラー*/ !important;
}

small a:hover {
  background-color: #418e11/*要変更：リンクテキストカラー*/;
  color: #FFF !important;
}



/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
    background: none transparent !important;
    border-color: #444444    ;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
  }
  .easys_content:not(.ne_01) table:not(#wp-calendar) tr:first-child > * {
    border-top: 1px solid #666 !important;
  }
  /*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
  div.wpcf7-mail-sent-ok {
    border-color: #444444    !important;
  }
  /* Dメニュー下線 */
  .td_cell {
    border-color: #444444    ;
    vertical-align: top;
  }



/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.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: #418e11/*要変更：リンクテキストカラー*/;
  color: #418e11/*要変更：リンクテキストカラー*/ !important;
}
.permalink_in a:link, .permalink_in a:visited,
.pageback a:link, .pageback a:visited {
}
.tablenav .next:link, .tablenav .next:visited,
.tablenav .prev:link, .tablenav .prev:visited {
  border: 1px solid #fff;
  background: none transparent;
}
.tablenav .next:hover, .tablenav .next:active,
.tablenav .prev:hover, .tablenav .prev:active {
  background-color: #418e11/*要変更：リンクテキストカラー*/;
  border-color: #418e11/*要変更：リンクテキストカラー*/;
}
.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 #418e11/*要変更：リンクテキストカラー*/;
  border-style: solid;
  border-color: #418e11/*要変更：リンクテキストカラー*/;
  color: #fff !important;
}



/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: #444444/*要変更：ボーダーカラー*/;
}


/* Cブロック */
.c_01, .c_02, .c_03, .c_05, .c_06 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100%;
  padding: 0 0 20px;
  *padding: 0 0 30px;
}
.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-size: 13px;
  font-weight: bold;
}
.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;
  _width: 100%;
}



/* Z-I スライドショー */
.z_j1 { margin: 0 0 15px; }


/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-size: 13px;
  font-weight: bold;
}
.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 #418e11/*要変更：リンクテキストカラー*/;
  color: #418e11/*要変更：リンクテキストカラー*/;
}
div.link_list a:hover {
  background-color: #418e11/*要変更：リンクテキストカラー*/;
  border: 1px solid #418e11/*要変更：リンクテキストカラー*/;
  color: #fff;
}


.faq-title {
  background-color: #418e11/*要変更：リンクテキストカラー*/;
  font-weight: normal;
  color: #fff/*要変更：リンクテキストカラーが淡色の時は文字が読める色に適宜変更*/;
}

/*R-01ブロック追加リンクリストボタン調整
---------------------------------------------------------------------------------------------------- */
.mr_01{
  position: relative;
  display: block;
  margin: 50px auto;
  width: 960px;
}

 div.btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.link_list a {
  background: none transparent;
}




/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
#container_top .iqfm-table td textarea {
  width: 96%;
  height: 15em;
  font-size: 100%;
}
/* 必須項目 */
.iqfm-req_color {
  color: #d7360b  /*要変更：テーブルの必須のテキストカラー*/;
}
.z_c1 button, .z_c1 input[type="reset"], .z_c1 input[type="button"], .z_c1 input[type="submit"] {
  line-height: 1.7;
}
.z_c1 .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: #444444/*要変更：テーブルボーダーカラー*/;
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  background:none transparent/*要変更：テーブルthの背景色*/;
  width: 8em;
  color: #171717  /*要変更：テーブルthのテキストカラー*/;
}
.coupon_box table tr td.coupon_meta {
    background:none transparent/*要変更：テーブルtdの背景色*/;
  color: #171717  /*要変更：テーブルtdのテキストカラー*/;
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  font-size: 120%;
  height:  auto;
}



/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div { border-color: #000; }
#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;
  padding: 15px 10px 15px 20px;
  line-height: 1.5;
  color: #171717  /*要変更：blog_titleのテキストカラー*/;
  text-align: center;
}
#blog_main .entry-title,
#blog_main .entry-title a {color: #171717    ;}/*要変更：blog_titleのテキストカラー*/


/*  ローディング画面
---------------------------------------------------------------------------------------------------- */
.black-screen {
  background-color: #000000;
}

.black-screen > .inner {
  top: calc(50vh - (5vw / 2));
  width: 3vw;
  height: 3vw;
  background-image: url("/files/loading.svg");
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  width: 100%;
  height: 450px;
  margin: 0 0 20px;
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */


/*  その他
---------------------------------------------------------------------------------------------------- */

/*ページ内リンクアンカー位置調整*/
a[name^="anchor"] {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
}

/* メール投稿ブロック画像幅調整 */
.img_size_thumb{
  height: 150px;
}

small {
  box-sizing: border-box;
}

.flow_arr {  height: 40px;}

.grecaptcha-badge { visibility: hidden; }




/*見出し
---------------------------------------------------------------------------------------------------- */
  .widget-title, .widget-title2 a,
  #blog_main .widget-area ul ul li a,
  #blog_main .entry-title,
  .headline_title,
  h3.entry_title, .entry_title, .entry_title h3, .entry-title,
  * .mid_entry_title,
  * .half_entry_title,
  * .short_entry_title,
  * .half_sub_entry_title,
  * .short_sub_entry_title,
  * .sub_entry_title,* .sub_entry_title h4,
  * .mid_sub_entry_title,
  * .inline_title{
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
  }
/*--------------h3以降中央寄せ-----------------------*/ 
/*h3 見出し*/
h3.entry_title, .entry_title{ /* サイズ、背景、余白などはこちら */
 text-align: center;
 padding: 0;
 width: 960px;
} 
/*----リンク有---*/
.entry_title h3 {
 width: 960px;
}
/* h3 見出しリンクボタン */ 
.entry_title span.read_more_btn {
 margin-left: -120px;
}
/* 小見出し用 */ 
.sub_entry_title {
 text-align: center;
  padding: 0;
   width: 960px;
}
/*----リンク有---*/
.sub_entry_title h4 {
 width: 960px;
}
/*-小見出しリンクボタン-*/
.sub_entry_title span.read_more_btn {
 margin-left: -120px;
}

/*全ページ共通余白
---------------------------------------------------------------------------------------------------- */

#content .easys_content:last-child{
  margin-bottom:200px;
}

/*ティザーパララックス
---------------------------------------------------------------------------------------------------- */
.teaser_para,
.teaser_para_blog{
height:calc(100vw * (680 / 2000));
min-height:calc(680px * (1300 / 2000));
max-height:680px;
  width: 100%;
  position: absolute;
  top: 425px;
  left: 0;
}
body#page_6 .teaser_para_blog,
body#page_6 .teaser_para,
body#page_9 .teaser_para_blog,
body#page_12 .teaser_para_blog,
body#page_15 .teaser_para_blog,
body#page_81 .teaser_para_blog,
body#page_18 .teaser_para_blog{
  display: none;
}

body#page_9 .teaser_para {
  background:url("/files/pc_teaser_02_parallax_h680.jpg")no-repeat center center / cover fixed;
}
body#page_12 .teaser_para {
  background:url("/files/pc_teaser_03_parallax_h680.jpg")no-repeat center center / cover fixed;
}
body#page_15 .teaser_para {
  background:url("/files/pc_teaser_04_parallax_h680.jpg")no-repeat center center / cover fixed;
}
body#page_18 .teaser_para {
  background: url("/files/pc_teaser_06_parallax_h680.jpg")no-repeat center center / cover fixed;
}
body#page_81 .teaser_para {
  background:url("/files/pc_teaser_05_parallax_h680.jpg")no-repeat center center / cover fixed;
}
.teaser_para_blog{
  background:url("/files/pc_teaser_07_parallax_h680.jpg")no-repeat center center / cover fixed;
}


/*パララックス
---------------------------------------------------------------------------------------------------- */


#amx9umx22ov7aurm91h9,
#zzxdbn5ikryncawkitpb,
#j0tx649n3hpq7o9kw4y0,
#j9xjrqug97b8ak7m842b{background: url(/files/common_parallax_h860.jpg) no-repeat center center fixed transparent;background-size: cover;height:calc(100vw * (860 / 2000));min-height:calc(860px * (1300 / 2000));max-height:860px;margin: 180px 0 0 0;}

#j9xjrqug97b8ak7m842b,
#amx9umx22ov7aurm91h9{
  margin:0;
}
/*動画バナー
---------------------------------------------------------------------------------------------------- */

#tlv2tktow66ne75cdtck,
#wfsr9eciiur1dzx68tjr,
#nqxql2sh82m90su4l9a8 {
  position:relative;
  height:calc(100vw * (680 / 2000));
  min-height:calc(680px * (1300 / 2000));
  max-height:680px;
}

#tlv2tktow66ne75cdtck div,
#wfsr9eciiur1dzx68tjr div,
#nqxql2sh82m90su4l9a8 div {
  margin-bottom:0;
  padding-bottom:0;
}

#tlv2tktow66ne75cdtck .easys_content_inner ,
#wfsr9eciiur1dzx68tjr .easys_content_inner ,
#nqxql2sh82m90su4l9a8 .easys_content_inner ,
.img_display_1012 ,
.img_display_1012 .field_1col ,
.img_display_1012 .eyecatch {
  width:100%;
  height:100%;
}

.img_display_1012 {
  position:relative;
}
.img_display_1012:before {
  content:"";
  display:block;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  width:calc(100%*(1920/2000));
  height:100%;
  background:url(/files/banner_contact.png)no-repeat top center/100%;
}

.img_display_1012  a {
  display:block;
  position:absolute;
  top:calc(100%*(290/680))!important;
  left:calc(100%*(1420/2000))!important;
  width: 110px;
  height: 110px;
}

.img_display_1012  a img {
  display:none;
}

.img_display_1012  .btn_gimmick{
  top:0!important;
  left:0!important;
}


/* 背景動画JSで追加 */
#design_video01 {
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100%;
}

/*ボタンギミック共通
---------------------------------------------------------------------------------------------------- */
.btn_gimmick {
  display:inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  z-index: 1;
}
.btn_gimmick::before {
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
  width:100%;
  height:100%;
  transition:0.5s;
  border-radius:50%;
  background-color:#418e11;
}

.img_display_1012 a:hover .btn_gimmick::before,
#n7qfib3us85fbgokyi08 [class*="read_more_btn"] a:hover .btn_gimmick::before,
.sub_text_btn:hover .btn_gimmick::before,
.main_btn:hover .btn_gimmick::before {
  transform:scale(1.3);
}
.btn_gimmick a span {
  display:block;
  position:absolute;
  top:120px;
  left:845px;
  z-index:2;
  width:25px;
  height:10px;
}
.btn_gimmick span::before ,
.btn_gimmick span::after {
  content:"";
  display:block;
  position:absolute;
  transition:0.3s;
}
.btn_gimmick span::before {
  top: 50px;
  z-index: 1;
  left:unset;
  right: 32px;
  width:10px;
  box-sizing:border-box;
  border-top: 5px solid transparent;
  border-right:5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left:10px solid #FFFFFF;
}
.btn_gimmick span::after {
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  left: 47.5px;
  width:15px;
  height:1px;
  background:none #FFFFFF;
}

.img_display_1012 a:hover .btn_gimmick span::before,
#n7qfib3us85fbgokyi08 [class*="read_more_btn"] a:hover .btn_gimmick span::before,
.sub_text_btn:hover .btn_gimmick span::before,
.main_btn:hover .btn_gimmick span::before {
  right: 45%;
  margin: auto;
  width:10px;
  height:10px;
  box-sizing:border-box;
  border:5px solid #FFFFFF;
  border-radius:50%;
}

.img_display_1012 a:hover .btn_gimmick span::after,
#n7qfib3us85fbgokyi08 [class*="read_more_btn"] a:hover .btn_gimmick span::after,
.sub_text_btn:hover .btn_gimmick span::after,
.main_btn:hover .btn_gimmick span::after {
  left: 50%;
  width:0;
}



/*====================================================
ここからデザインブロック
===================================================== */

/* ＝＝＝親 ＝＝＝ */
#o4o1dhht953ylm6jbma8,
#xlkggdb0t0apie3gjz0p,
#t6rwx4sztykpqgact76t,
#qzc8eboi436vgsagjhww,
#smgfzohg9atx5uhsh3r6,
#mrw6aprrzqvtjf8rc1td,
#fqa3z32yq2p1mfwp1nn9,
#j2rnonxclz16zxbh4klg,
#ctrfouw821wllejlf4hl,
#huyvshv9c6oquhd3b6gw {position: relative;}


  /* ＝＝＝easys_content_inner前面表示設定 ＝＝＝ */
#o4o1dhht953ylm6jbma8 .easys_content_inner,
#xlkggdb0t0apie3gjz0p .easys_content_inner,
#t6rwx4sztykpqgact76t .easys_content_inner,
#qzc8eboi436vgsagjhww .easys_content_inner,
#smgfzohg9atx5uhsh3r6 .easys_content_inner,
#mrw6aprrzqvtjf8rc1td .easys_content_inner,
#fqa3z32yq2p1mfwp1nn9 .easys_content_inner,
#j2rnonxclz16zxbh4klg .easys_content_inner,
#ctrfouw821wllejlf4hl .easys_content_inner,
#huyvshv9c6oquhd3b6gw .easys_content_inner{
    position: relative;
    z-index: 100;
}

/* PC 背景付きブロックの記事画像 非表示  */
#o4o1dhht953ylm6jbma8 .entry_post:first-of-type .eyecatch,
#xlkggdb0t0apie3gjz0p .entry_post:first-of-type .eyecatch,
#t6rwx4sztykpqgact76t .entry_post:first-of-type .eyecatch,
#qzc8eboi436vgsagjhww .entry_post:first-of-type .eyecatch,
#smgfzohg9atx5uhsh3r6 .entry_post:first-of-type .eyecatch,
#mrw6aprrzqvtjf8rc1td .entry_post:first-of-type .eyecatch,
#fqa3z32yq2p1mfwp1nn9 .entry_post:first-of-type .eyecatch,
#j2rnonxclz16zxbh4klg .entry_post:first-of-type .eyecatch,
#ctrfouw821wllejlf4hl .entry_post:first-of-type .eyecatch,
#huyvshv9c6oquhd3b6gw .entry_post:first-of-type .eyecatch {display: none;}
/*  float 解除 */
#o4o1dhht953ylm6jbma8 .entry_post:first-of-type .float_left,
#o4o1dhht953ylm6jbma8 .entry_post:first-of-type .float_right,
#xlkggdb0t0apie3gjz0p .entry_post:first-of-type .float_left,
#xlkggdb0t0apie3gjz0p .entry_post:first-of-type .float_right,
#t6rwx4sztykpqgact76t .entry_post:first-of-type .float_left,
#t6rwx4sztykpqgact76t .entry_post:first-of-type .float_right,
#qzc8eboi436vgsagjhww .entry_post:first-of-type .float_left,
#qzc8eboi436vgsagjhww .entry_post:first-of-type .float_right,
#smgfzohg9atx5uhsh3r6 .entry_post:first-of-type .float_left,
#smgfzohg9atx5uhsh3r6 .entry_post:first-of-type .float_right,
#mrw6aprrzqvtjf8rc1td .entry_post:first-of-type .float_left,
#mrw6aprrzqvtjf8rc1td .entry_post:first-of-type .float_right,
#fqa3z32yq2p1mfwp1nn9 .entry_post:first-of-type .float_left,
#fqa3z32yq2p1mfwp1nn9 .entry_post:first-of-type .float_right,
#j2rnonxclz16zxbh4klg .entry_post:first-of-type .float_left,
#j2rnonxclz16zxbh4klg .entry_post:first-of-type .float_right,
#ctrfouw821wllejlf4hl .entry_post:first-of-type .float_left,
#ctrfouw821wllejlf4hl .entry_post:first-of-type .float_right,
#huyvshv9c6oquhd3b6gw .entry_post:first-of-type .float_left,
#huyvshv9c6oquhd3b6gw .entry_post:first-of-type .float_right{float: none;}
.easys_content .sub_post .float_left {float: left !important;}
.easys_content .sub_post .float_right {float: right !important;}

/* ＝＝＝デザインブロックタイトル消去＝＝＝ */
/* #o4o1dhht953ylm6jbma8 *[class*="title"],
#xlkggdb0t0apie3gjz0p *[class*="title"],
#t6rwx4sztykpqgact76t *[class*="title"],
#qzc8eboi436vgsagjhww *[class*="title"],
#smgfzohg9atx5uhsh3r6 *[class*="title"],
#mrw6aprrzqvtjf8rc1td *[class*="title"],
#fqa3z32yq2p1mfwp1nn9 *[class*="title"],
#j2rnonxclz16zxbh4klg *[class*="title"],
#ctrfouw821wllejlf4hl *[class*="title"],
#huyvshv9c6oquhd3b6gw *[class*="title"]{display: none;} */

#o4o1dhht953ylm6jbma8 *[class*="title"],
#xlkggdb0t0apie3gjz0p *[class*="title"],
#t6rwx4sztykpqgact76t *[class*="title"],
#qzc8eboi436vgsagjhww *[class*="title"],
#smgfzohg9atx5uhsh3r6 *[class*="title"],
#mrw6aprrzqvtjf8rc1td *[class*="title"],
#fqa3z32yq2p1mfwp1nn9 *[class*="title"],
#j2rnonxclz16zxbh4klg *[class*="title"],
#ctrfouw821wllejlf4hl *[class*="title"],
#huyvshv9c6oquhd3b6gw *[class*="title"] {
  position:absolute;
  left:0;
  height:auto;
  margin:0;
  padding:0;
  font-size: 32px;
  line-height:initial;
  text-align:left;
  background:none transparent;
  color: #171717;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}

/* ＝＝＝デザインブロックボタン共通＝＝＝ */
#o4o1dhht953ylm6jbma8 .main_btn,
#xlkggdb0t0apie3gjz0p .main_btn,
#t6rwx4sztykpqgact76t .main_btn,
#qzc8eboi436vgsagjhww .main_btn,
#smgfzohg9atx5uhsh3r6 .main_btn,
#mrw6aprrzqvtjf8rc1td .main_btn,
#fqa3z32yq2p1mfwp1nn9 .main_btn,
#j2rnonxclz16zxbh4klg .main_btn,
#ctrfouw821wllejlf4hl .main_btn,
#huyvshv9c6oquhd3b6gw .main_btn{
 display: block;
 padding: 0;
 margin: 0;
 top: 0;
 left: 0;
position:absolute;
  width:260px;
  height:150px;
  line-height:150px;
}
#o4o1dhht953ylm6jbma8 .main_btn a,
#xlkggdb0t0apie3gjz0p .main_btn a,
#t6rwx4sztykpqgact76t .main_btn a,
#qzc8eboi436vgsagjhww .main_btn a,
#smgfzohg9atx5uhsh3r6 .main_btn a,
#mrw6aprrzqvtjf8rc1td .main_btn a,
#fqa3z32yq2p1mfwp1nn9 .main_btn a,
#j2rnonxclz16zxbh4klg .main_btn a,
#ctrfouw821wllejlf4hl .main_btn a,
#huyvshv9c6oquhd3b6gw .main_btn a{
   width:100%;
  height:100%;
  margin:0;
  padding:0;
  font-size:24px;
  text-decoration:none;
  color:#171717;
  border-radius:0;
  background:none transparent;
}

.hovbtn{
  display: block;
  position: absolute;
  opacity: 0;
}

#o4o1dhht953ylm6jbma8 .main_btn:hover .hovbtn,
#xlkggdb0t0apie3gjz0p .main_btn:hover .hovbtn,
#t6rwx4sztykpqgact76t .main_btn:hover .hovbtn,
#qzc8eboi436vgsagjhww .main_btn:hover .hovbtn,
#smgfzohg9atx5uhsh3r6 .main_btn:hover .hovbtn,
#mrw6aprrzqvtjf8rc1td .main_btn:hover .hovbtn,
#fqa3z32yq2p1mfwp1nn9 .main_btn:hover .hovbtn,
#j2rnonxclz16zxbh4klg .main_btn:hover .hovbtn,
#ctrfouw821wllejlf4hl .main_btn:hover .hovbtn,
#huyvshv9c6oquhd3b6gw .main_btn:hover .hovbtn{
  opacity:1;
}

/* ＝＝＝全体フェードイン共通＝＝＝ */
.easys_content_inner {
  position: relative;
  top: 100px;
  height: 100%;
  opacity: 0;
  transform: rotate3d(-1, -1, 0, -20deg);
  transform-origin: center;
  transition: 1.3s ease 0s;
}
.easys_content_inner.moved {
  top: 0;
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0);
}


/* ＝＝＝デザインブロックスクロールギミック共通＝＝＝ */
.blockimg {
    position: absolute;
/*     opacity: 0; */
    transition: 1s ease 0s;
    pointer-events: none;
    width: 2000px;/*◆ 要変更 */
    top: 0;
    left: calc(50% - 1000px);/* ◆中央、各ブロックで位置調整 */
  }
  .blockimg.moved {
    opacity: 1;
    transform: translate(0px, 0px)rotate3d(0, 0, 1, 0)!important;
  }



/*outer_block
---------------------------------------------------------------------------------------------------- */
#page_6 #outer_block,
#page_9 #outer_block,
#page_12 #outer_block,
#page_15 #outer_block,
#page_81 #outer_block{padding: 0;}

/*北九州市近郊を専門とした防水塗装工事業。
---------------------------------------------------------------------------------------------------- */

#o4o1dhht953ylm6jbma8 {
  height:1565px;
  background:url(/files/top_wwd_bg.jpg) no-repeat center bottom;
}

#o4o1dhht953ylm6jbma8  *[class*="title"] {
  top:470px;
  left:-70px;
  width:430px;
}

#o4o1dhht953ylm6jbma8 .text_box {
  width:540px;
  margin:610px 0 0 -70px;
}

#o4o1dhht953ylm6jbma8 .post_data {
  text-align:left;
}

#o4o1dhht953ylm6jbma8 .main_btn {
  top:0;
  left:0;
}

#o4o1dhht953ylm6jbma8 .sub_text_btn {
  position:absolute;
  left:-70px;
  width:260px;
  height:150px;
  margin:0;
  padding:0;
  line-height:150px;
}

#o4o1dhht953ylm6jbma8 .sub_post_0 .sub_text_btn {
  top:920px;
}

#o4o1dhht953ylm6jbma8 .sub_post_1 .sub_text_btn {
  top:1080px;
}

#o4o1dhht953ylm6jbma8 .sub_text_btn a {
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  font-size:24px;
  text-decoration:none;
  color:#171717;
  border-radius:0;
  background:none transparent;
}
#o4o1dhht953ylm6jbma8 .sub_post_1 .hovbtn{
  top: -120px;
}

#o4o1dhht953ylm6jbma8 .hovbtn {
    top: 40px;
    left: 460px;
    width:110px;
    height:188px;
    animation:anime_01 2s step-end infinite;
    background:url(/files/top_anime_01.png) no-repeat left center;
  }
#o4o1dhht953ylm6jbma8 .sub_text_btn:hover .hovbtn{
  opacity:1;
}

  @keyframes anime_01 {
    0% {background-position:left center;}
    33% {background-position:left -220px center;}
    66% {background-position:left -330px center;}
    100% {background-position:left -440px center;}
  }

#o4o1dhht953ylm6jbma8 .blockimg.img01 {
  top:380px;
  left:calc(50% - 550px);
  width:333px;
  height:76px;
  background:url(/files/top_wwd_ttl.png) no-repeat center top;
}

#o4o1dhht953ylm6jbma8 .blockimg.img02 {
  top:380px;
  left:calc(50% - -110px);
  width:480px;
  height:580px;
  background:url(/files/top_wwd_img_01.jpg) no-repeat center top;
}
#o4o1dhht953ylm6jbma8 .blockimg.img03 {
  top:780px;
  left:calc(50% + 400px);
  width:320px;
  height:410px;
  background:url(/files/top_wwd_img_02.png) no-repeat center top;
}

#o4o1dhht953ylm6jbma8 .blockimg.img04 {
  top:1280px;
  left:calc(50% - 265px);
  width:529px;
  height:123px;
  background:url(/files/top_wwd_catch_01.png) no-repeat center top;
}

#o4o1dhht953ylm6jbma8 .blockimg.img05 {
  top:1400px;
  left:calc(50% + 60px);
  width:474px;
  height:163px;
  background:url(/files/top_wwd_catch_02.png) no-repeat center top;
}


#o4o1dhht953ylm6jbma8 .blockimg.img06 {
    top: 1200px;
    left: calc(50% - 137px);
    width: 39px;
    height: 46px;
    background:url(/files/top_wwd_map_pin.png) no-repeat left center;
    z-index: 1;
  }


  #o4o1dhht953ylm6jbma8 .blockimg.img06:before,
  #o4o1dhht953ylm6jbma8 .blockimg.img06:after {
    position: absolute;
    top: 45%;
    left: 50%;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10.0rem;
    transform: translate(-50%, -50%);
  }
  
  #o4o1dhht953ylm6jbma8 .blockimg.img06:before {
    opacity: 0;
    border: 1px solid #fff;
    -webkit-animation: ripple_line 2s ease-in 0s infinite;
    animation: ripple_line 2s ease-in 0s infinite
  }
  
  #o4o1dhht953ylm6jbma8 .blockimg.img06:after {
    opacity: 0;
    background-color: #fff;
    -webkit-animation: ripple_surface 2s ease-in .75s infinite;
    animation: ripple_surface 2s ease-in .75s infinite
  }


  @-webkit-keyframes ripple_line {
    0% {
      opacity: 0;
      width: 1.0rem;
      height: 1.0rem
    }
    10% {
      opacity: 1
    }
    80% {
      opacity: 1
    }
    100% {
      opacity: 0;
      width: 5.0rem;
      height: 5.0rem
    }
  }
  
  @keyframes ripple_line {
    0% {
      opacity: 0;
      width: 1.0rem;
      height: 1.0rem
    }
    10% {
      opacity: 1
    }
    80% {
      opacity: 1
    }
    100% {
      opacity: 0;
      width: 5.0rem;
      height: 5.0rem
    }
  }
  
  @-webkit-keyframes ripple_surface {
    0% {
      opacity: 0;
      width: 1.0rem;
      height: 1.0rem
    }
    10% {
      opacity: .5
    }
    80% {}
    100% {
      opacity: 0;
      width: 6.0rem;
      height: 6.0rem
    }
  }
  
  @keyframes ripple_surface {
    0% {
      opacity: 0;
      width: 1.0rem;
      height: 1.0rem
    }
    10% {
      opacity: .5
    }
    80% {}
    100% {
      opacity: 0;
      width: 6.0rem;
      height: 6.0rem
    }
  }


/*クオリティを求めた実績
---------------------------------------------------------------------------------------------------- */

#xlkggdb0t0apie3gjz0p {
    background: url(/files/top_projects_bg.jpg) no-repeat center top;
    height: 820px;
}

#xlkggdb0t0apie3gjz0p  *[class*="title"] {
    top: 90px;
    left: 500px;
    width: 540px;
  }

#xlkggdb0t0apie3gjz0p .text_box {
    width: 530px;
    margin: 190px 0 0 500px;
}

#xlkggdb0t0apie3gjz0p .post_data {
    text-align: left;
}

#xlkggdb0t0apie3gjz0p .main_btn{
    top: 420px;
    left: 500px;
}


#xlkggdb0t0apie3gjz0p  .blockimg.img01 {
    background: url(/files/top_projects_ttl.png) no-repeat center top;
    top: 0;
    left: calc(50% + 20px);
    width: 504px;
    height: 79px;
  }

  #xlkggdb0t0apie3gjz0p  .blockimg.img02 {
    background: url(/files/top_projects_img.jpg) no-repeat center top;
    top: 0;
    left: calc(50% - 1000px);
    width: 920px;
    height: 640px;
  }

  #xlkggdb0t0apie3gjz0p .hovbtn {
    top: -20px;
    left: 340px;
    width: 251px;
    height: 187px;
    animation:anime_02 1s step-end infinite;
    background:url(/files/top_anime_02.png) no-repeat left center;
  }
  @keyframes anime_02 {
    0% {background-position:left -251px center;}
    50% {background-position:left 0px center;}
    100% {background-position:left -251px center;}
  }

/*共に働く仲間を募集しています。
---------------------------------------------------------------------------------------------------- */

#t6rwx4sztykpqgact76t {
    background: url(/files/block_bg_01.jpg) repeat;
    height: 1016px;
}


#t6rwx4sztykpqgact76t  *[class*="title"] {
    top: 270px;
    left: -73px;
    width: 540px;
  }

#t6rwx4sztykpqgact76t .text_box {
    width: 490px;
    margin: 360px 0 0 -80px;
}

#t6rwx4sztykpqgact76t .post_data {
    text-align: left;
}



#t6rwx4sztykpqgact76t  .main_btn{
    top: 650px;
    left: -80px;
}


#t6rwx4sztykpqgact76t  .blockimg.img01 {
    background: url(/files/top_careers_ttl.png) no-repeat center top;
    top: 170px;
    left: calc(50% - 550px);
    width: 323px;
    height: 76px;
  }

  #t6rwx4sztykpqgact76t  .blockimg.img02 {
    background: url(/files/top_careers_catch.png) no-repeat center top;
    top: 600px;
    left: calc(50% + 160px);
    width: 519px;
    height: 161px;
    z-index: 1;
  }
  #t6rwx4sztykpqgact76t  .blockimg.img03 {
    background: url(/files/top_careers_img.jpg) no-repeat center top;
    top: 170px;
    left: calc(50% + 60px);
    width: 680px;
    height: 470px;
  }
  #t6rwx4sztykpqgact76t .hovbtn {
    top: -110px;
    left: 510px;
    width: 167px;
    height: 203px;
    animation:anime_03 1s step-end infinite;
    background:url(/files/top_anime_03.png) no-repeat left center;
  }
  @keyframes anime_03 {
    0% {background-position:left -167px center;}
    50% {background-position:left 0px center;}
    100% {background-position:left -167px center;}
  }

/*新着情報
---------------------------------------------------------------------------------------------------- */

/* タイトルリンク */
#n7qfib3us85fbgokyi08 {
  position:relative;
  z-index:1;
}

#n7qfib3us85fbgokyi08 div {
  margin-bottom:0;
  padding-bottom:0;
  background:none transparent;
}


 #n7qfib3us85fbgokyi08 [class*="title"]{
   position: absolute;
   top: 220px;
   left: -80px;
   width: 300px;
   height: 250px;
   margin: 0;
   padding: 0;
   line-height: initial;
   text-align: left;
   background: none transparent;
   color: #FFF;
   font-family: 'Noto Serif JP', serif;
   letter-spacing: 0.1em;
 }

#n7qfib3us85fbgokyi08 h2 ,
#n7qfib3us85fbgokyi08 h3 ,
#n7qfib3us85fbgokyi08 h4 ,
#n7qfib3us85fbgokyi08 img {
  color: #FFF;
  text-align: left;
  font-size: 32px;
}

/* 共通ボタン-READMORE */
#n7qfib3us85fbgokyi08 .entry_post > [class*="title"] {
  margin:0;
  padding:0;
  text-indent:-99999px;
}
#n7qfib3us85fbgokyi08 [class*="read_more_btn"] {
  position:absolute;
  top: 80px;
  left: -20px;
  right:0;
  z-index:1;
  width: 270px;
  height: 150px;
  margin:auto;
}
#n7qfib3us85fbgokyi08 [class*="read_more_btn"] a {
  display:block;
  width:100%;
  height:100%;
  background: none transparent;
  transition:none;
  opacity: 1;
}

#n7qfib3us85fbgokyi08 [class*="read_more_btn"] a::after {
  content:"記事一覧";
  position:absolute;
  top: 60px;
  left:0;
  width:100%;
  height:100%;
  font-family: 'Noto Sans JP', sans-serif;
  color:#FFF;
}


/* ブログ */
#mcjm4i1sgutqg0x0egdd {
  position:relative;
  min-height:390px;
  margin:-60px 0 0 0;
  padding: 180px 0px 180px 0px;
  overflow:hidden;
  background:#90c61e;
}

#mcjm4i1sgutqg0x0egdd:before{
    content:"";
    display: block;
    position:absolute;
    top: 170px;
    left: calc(50% - 560px);
    width: 147px;
    height: 76px;
    z-index: 1;
    background:url(/files/top_blog_title.png) no-repeat center / 100%;
}

#mcjm4i1sgutqg0x0egdd .easys_content_inner {
  width: 1100px;
}
#mcjm4i1sgutqg0x0egdd .post_data {
  padding:0;
}
#mcjm4i1sgutqg0x0egdd .blog_post {
  display:block;
  width: 730px;
  margin: 0px 0px 10px 380px;
  float:left;
  text-align:center;
  color:#FFFFFF;
  background-color:transparent;
  border: none;
  display: flex;
  align-items: center;
  position: relative;
}

#mcjm4i1sgutqg0x0egdd .blog_post:before{
  content:"";
  display:block;
  width: 510px;
  height:1px;
  position:absolute;
  top: 30px;
  left: 210px;
  background:#FFF;
}

#mcjm4i1sgutqg0x0egdd .blog_post a {
  color:#FFFFFF;
}

#mcjm4i1sgutqg0x0egdd .date_area {
    font-size: 13px;
    line-height: 2;
    color: #d7360b;
    position: absolute;
    top: 80px;
    left: 0;
    letter-spacing: 0.1em;
}

#mcjm4i1sgutqg0x0egdd .blog_list_text_size {
  width: 510px;
  height: 160px;
  text-align:left;
  margin: 0 0 0 30px;
  position: relative;
}

#mcjm4i1sgutqg0x0egdd .eyecatch {
  float:none;
}

#mcjm4i1sgutqg0x0egdd .eyecatch img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

#mcjm4i1sgutqg0x0egdd .post_title_list {
  width:100%;
  height:30px;
  margin-bottom:10px;
  box-sizing:border-box;
  line-height:1.5;
  overflow:hidden;
  font-size: 17px;
  position: absolute;
  top: 40px;
  left: 0;
  font-weight: 400;
  letter-spacing: 0.1em;
}

#mcjm4i1sgutqg0x0egdd .blog_thumb {
  width: 180px;
  height: 146px;
  max-height:none;
  margin:0 0 10px;
}

#mcjm4i1sgutqg0x0egdd .news_small_text {
  display:block;
  width:100%;
  height:30px;
  margin:0 auto;
  font-size:14px;
  line-height:1.8;
  overflow:hidden;
  word-break:break-all;
  color:#FFF;
  position:absolute;
  top:120px;
  left:0;
}

#mcjm4i1sgutqg0x0egdd a.blog_link {
  position:absolute;
  top:0px;
  right:0px;
  width:70px;
  height:15px;
  text-indent:-9999px;
  background:url(/files/top_blog_link.png)no-repeat top center;
}

/*丁寧作業とクオリティ
---------------------------------------------------------------------------------------------------- */

#qzc8eboi436vgsagjhww {
  height:898px;
  background:#1E3E06;
}

#qzc8eboi436vgsagjhww .text_box {
  width:530px;
  margin:370px 0 0 490px;
}

#qzc8eboi436vgsagjhww .post_data {
  text-align:left;
  color:#FFFFFF;
}

#qzc8eboi436vgsagjhww .main_btn {
  top:590px;
  left:490px;
  width:320px;
}
#qzc8eboi436vgsagjhww .main_btn a {
  color:#FFFFFF;
}

#qzc8eboi436vgsagjhww  *[class*="title"] {
  top:275px;
  left:483px;
  width:540px;
  color:#FFFFFF;
}
#qzc8eboi436vgsagjhww  .blockimg.img01 {
  top:180px;
  left:calc(50% + 4px);
  width:319px;
  height:76px;
  background:url(/files/top_contact_ttl.png) no-repeat center top;
}

#qzc8eboi436vgsagjhww  .blockimg.img02 {
  top:120px;
  left:calc(50% - 110px);
  z-index:1;
  width:181px;
  height:102px;
  background:url(/files/top_contact_catch.png) no-repeat center top;
}
#qzc8eboi436vgsagjhww  .blockimg.img03 {
  top:180px;
  left:calc(50% - 510px);
  width:420px;
  height:520px;
  background:url(/files/top_contact_img.jpg) no-repeat center top;
}
#qzc8eboi436vgsagjhww .hovbtn {
  top:40px;
  left:380px;
  width:167px;
  height:187px;
  animation:anime_04 1s step-end infinite;
  background:url(/files/top_anime_04.png) no-repeat left center;
}
@keyframes anime_04 {
  0% {
    background-position:left -167px center;
  }
  50% {
    background-position:left 0px center;
  }
  100% {
    background-position:left -167px center;
  }
}


/*会社概要
  ---------------------------------------------------------------------------------------------------- */


 #thgjpocnpnco3w7a4tq6 {
    position:relative;
    z-index:1;
    padding: 460px 0 180px 0;
    margin-bottom: 0!important;
    background:url(/files/top_about_ttl.png) no-repeat center top 180px;
  }

   #thgjpocnpnco3w7a4tq6 .easys_content_inner{
     
   }
  
   #thgjpocnpnco3w7a4tq6 div {
    /* margin-bottom:0; */
    /* padding-bottom:0; */
    background:none transparent;
  }
   #thgjpocnpnco3w7a4tq6 h2 ,
   #thgjpocnpnco3w7a4tq6 h3 ,
   #thgjpocnpnco3w7a4tq6 h4 ,
   #thgjpocnpnco3w7a4tq6 img {
    /* display:none; */
  }
  
  /* 共通ボタン-READMORE */
   #thgjpocnpnco3w7a4tq6 .entry_post > [class*="title"] {
    margin:0;
    padding:0;
    /* text-indent:-99999px; */
    position: absolute;
    top: -180px;
  }
   #thgjpocnpnco3w7a4tq6 [class*="read_more_btn"] {
    position:absolute;
    top:310px;
    left:0;
    right:0;
    z-index:1;
    width:280px;
    height:40px;
    margin:auto;
  }
   #thgjpocnpnco3w7a4tq6 [class*="read_more_btn"] a {
    display:block;
    width:100%;
    height:100%;
    transition:none;
    background:url(/files/top_about_ttl.png) no-repeat center top;
  }
   #thgjpocnpnco3w7a4tq6 [class*="read_more_btn"] a:hover {
    opacity:1;
  }
   #thgjpocnpnco3w7a4tq6 [class*="read_more_btn"] a::after {
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
    transition:0.3s;
    opacity:0;
    background:url(/files/top04_btn_02.jpg) no-repeat center / 100%;
  }
   #thgjpocnpnco3w7a4tq6 [class*="read_more_btn"] a:hover::after {
    opacity:1;
  }
  

/*代表挨拶
---------------------------------------------------------------------------------------------------- */

#smgfzohg9atx5uhsh3r6 {
    background: url(/files/block_bg_01.jpg) repeat;
    height: 1020px;
    margin-bottom: 180px;
}

#smgfzohg9atx5uhsh3r6 .text_box {
    width: 800px;
    margin: 390px auto 0px;
}

#smgfzohg9atx5uhsh3r6 .post_data {
    text-align: center;
}

#smgfzohg9atx5uhsh3r6 .main_btn{
    top: 0;
    left: 0;
}

#smgfzohg9atx5uhsh3r6  *[class*="title"] {
  top:295px;
  left:0;
  right:0;
  width:540px;
  margin:auto;
  text-align:center;
}

#smgfzohg9atx5uhsh3r6  .post_data {
  position:relative;
}
#smgfzohg9atx5uhsh3r6  .post_data:before {
  content:"";
  display:block;
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  width:292px;
  height:33px;
  margin:auto;
  background:url(/files/about_01_sign.png) no-repeat center top;
}



#smgfzohg9atx5uhsh3r6  .blockimg.img01 {
  top:200px;
  left:0;
  right:0;
  width:257px;
  height:76px;
  margin:auto;
  background:url(/files/about_01_ttl.png) no-repeat center top;
}

#smgfzohg9atx5uhsh3r6 .blockimg.img02 {
  top:380px;
  left:0;
  right:0;
  z-index:1;
  width:1102px;
  height:275px;
  margin:auto;
  background:url(/files/about_01_logo.png) no-repeat center top;
}



#smgfzohg9atx5uhsh3r6   .blockimg.img03 {
  top:initial;
  bottom:140px;
  left:calc(50% + 220px);
  width:130px;
  height:183px;
  animation:anime_05 1s step-end infinite;
  background:url(/files/about_anime_01.png) no-repeat left center;
}
@keyframes anime_05 {
  0% {
    background-position:left 0px center;
  }
  25% {
    background-position:left 0px center;
  }
  50% {
    background-position:left -130px center;
  }
  100% {
    background-position:left -260px center;
  }
}
  /* 社屋紹介 */
#rglann2yd7dpnvvkjdu7{
    background:#edf9d5;
    padding: 180px 0;
    box-sizing: border-box;
    margin: 180px 0;
}

#rsyvi7nize43j73f6b02{
      margin: 180px 0;
}

/*防水シーリングをメインとした技術者集団
---------------------------------------------------------------------------------------------------- */

#mrw6aprrzqvtjf8rc1td {
    background: #edf9d5;
    height: 1200px;
    margin-bottom: 180px;
}

#mrw6aprrzqvtjf8rc1td   *[class*="title"] {
    top: 395px;
    left: -60px;
    width:540px;
  }

#mrw6aprrzqvtjf8rc1td .text_box {
    width: 540px;
    margin: 520px 0 0 -60px;
}


#mrw6aprrzqvtjf8rc1td .post_data {
    text-align: left;
}

#mrw6aprrzqvtjf8rc1td  .blockimg.img01 {
  top: 200px;
  left: calc(50% - 540px);
  width: 397px;
  height: 166px;
  background:url(/files/wwd_01_ttl.png) no-repeat center top;
}

/* 背景動画JSで追加 */
#design_video02 {
  display:block;
  position:absolute;
  top: 200px;
  left: calc(50% + 40px);
  z-index: 1;
  width: 680px;
  height: 820px;
}



/*携わった工事をご紹介
---------------------------------------------------------------------------------------------------- */

#fqa3z32yq2p1mfwp1nn9 {
  height:1090px;
  margin-bottom:180px;
  background:#1E3E06;
}

#fqa3z32yq2p1mfwp1nn9   *[class*="title"] {
  top:300px;
  left:490px;
  width:470px;
  color:#FFFFFF;
}

#fqa3z32yq2p1mfwp1nn9 .text_box {
  width:540px;
  margin:440px 0 0 490px;
  color:#FFFFFF;
}


#fqa3z32yq2p1mfwp1nn9 .post_data {
  text-align:left;
}

#fqa3z32yq2p1mfwp1nn9  .blockimg.img01 {
  top:200px;
  left:calc(50% + 10px);
  width:397px;
  height:166px;
  background:url(/files/projects_01_ttl.png) no-repeat center top;
}

/* 背景動画JSで追加 */
#design_video03 {
  display:block;
  position:absolute;
  top:200px;
  left:calc(50% - 650px);
  z-index:1;
  width:680px;
  height:710px;
}

#ssd06ngdaazw3px5818l {
  margin: 180px 0 0 0;
  padding:180px 0;
  box-sizing:border-box;
  background:#EDF9D5;
}

/*モーションロゴアニメ動画
---------------------------------------------------------------------------------------------------- */


#qn6pqdcfxtomux4ko52q div{
  margin-bottom:0;
  padding-bottom:0;
}

#qn6pqdcfxtomux4ko52q .easys_content_inner{
  width:100%;
}

/*信頼できる仲間と共に新しい挑戦を！
---------------------------------------------------------------------------------------------------- */

#j2rnonxclz16zxbh4klg {
    background: url(/files/block_bg_01.jpg) repeat;
    height: 1140px;
    margin-bottom: 180px;
}

#j2rnonxclz16zxbh4klg   *[class*="title"] {
  top: 280px;
  left: 0;
  right: 0;
  margin: auto;
  width: 960px;
  text-align: center;
}


#j2rnonxclz16zxbh4klg .text_box {
    width: 670px;
    margin: 370px auto 0px;
}

#j2rnonxclz16zxbh4klg .post_data {
    text-align: center;
}

#j2rnonxclz16zxbh4klg  .blockimg.img01 {
  top: 180px;
  left: 0;
  right: 0;
  margin: auto;
  width: 407px;
  height:76px;
  background:url(/files/careers_01_ttl.png) no-repeat center top;
}



#j2rnonxclz16zxbh4klg   .blockimg.img02 {
  top: 760px;
  left: calc(50% - 260px);
  width: 194px;
  height:190px;
  animation:anime_06 1s step-end infinite;
  background:url(/files/careers_anime_01.png) no-repeat left center;
}
@keyframes anime_06 {
  0% {
    background-position:left 0px center;
  }
  25% {
      background-position:left -194px center;
    }
  50% {
    background-position:left -388px center;
  }
  100% {
    background-position:left -582px center;
  }
}

#j2rnonxclz16zxbh4klg   .blockimg.img03 {
  top: 760px;
  left: calc(50% - 50px);
  width: 104px;
  height:188px;
  animation:anime_07 1s step-end infinite;
  background:url(/files/careers_anime_02.png) no-repeat left center;
}
@keyframes anime_07 {
  0% {
    background-position:left -104px center;
  }
  50% {
    background-position:left -0px center;
  }
  100% {
    background-position:left -104px center;
  }
}


#j2rnonxclz16zxbh4klg   .blockimg.img04 {
  top: 770px;
  left: calc(50% - -80px);
  width: 144px;
  height:180px;
  animation:anime_08 1s step-end infinite;
  background:url(/files/careers_anime_03.png) no-repeat left center;
}
@keyframes anime_08 {
  0% {
    background-position:left -144px center;
  }
  50% {
    background-position:left 0px center;
  }
  100% {
    background-position:left -144px center;
  }
}

/* 募集要項 */
#kzlkrxntfp5lrn5ofnl5 {
  /* margin-bottom:180px; */
  padding:180px 0;
  box-sizing:border-box;
  background:#edf9d5;
}


/*一日の流れ
---------------------------------------------------------------------------------------------------- */

#ctrfouw821wllejlf4hl {
     padding: 420px 0 0 0;
}

#ctrfouw821wllejlf4hl .post_margin {
    margin-bottom: 0px;
}

#ctrfouw821wllejlf4hl:before{
  content:"";
  display:block;
  height: 76px;
  width: 140px;
  position:absolute;
  top:180px;
  left: calc(50% - 20px);
  background: url(/files/flow_ttl.png)no-repeat top center;
}

#ctrfouw821wllejlf4hl > div > div > h2{
  right: 0;
  margin: auto!important;
  width: 960px;
  text-align: center!important;
  top: -140px;
}

#ctrfouw821wllejlf4hl .easys_content_inner{
  width: 2000px;
  z-index: 0;
  position: relative;
  left: calc(50% - 1000px);
}

#ctrfouw821wllejlf4hl .text_box {
    width: 600px;
    margin: 100px 0 0 0px;
}

#ctrfouw821wllejlf4hl .post_data {
    text-align: left;
}

#ctrfouw821wllejlf4hl .sub_post{position:relative;margin: 0;}

#ctrfouw821wllejlf4hl .sub_post:before{
  content:"";
  display:block;
  height:80%;
  width:1px;
  background:#000;
  position:absolute;
  top:10%;;
  left:0;
  right:0;
  margin:auto;
}

#ctrfouw821wllejlf4hl .sub_post:last-child:before{
  height:60%;
}

#ctrfouw821wllejlf4hl .sub_post:after{
  content:"";
  display:block;
  height:90px;
  width:90px;
  position:absolute;
  top: -45px;
  left:0;
  right:0;
  margin:auto;
  background:url(/files/flow_step_01.png)no-repeat top center;
}

#ctrfouw821wllejlf4hl .sub_post_1:after{
  background:url(/files/flow_step_01.png)no-repeat top center;
}
#ctrfouw821wllejlf4hl .sub_post_2:after{
  background:url(/files/flow_step_02.png)no-repeat top center;
}
#ctrfouw821wllejlf4hl .sub_post_3:after{
  background:url(/files/flow_step_03.png)no-repeat top center;
}
#ctrfouw821wllejlf4hl .sub_post_4:after{
  background:url(/files/flow_step_04.png)no-repeat top center;
}


#ctrfouw821wllejlf4hl .sub_post_1{height: 570px;}
#ctrfouw821wllejlf4hl .sub_post_2{
   background: url(/files/block_bg_01.jpg) repeat;
   height: 573px;
}
#ctrfouw821wllejlf4hl .sub_post_3{
height:577px;
}
#ctrfouw821wllejlf4hl .sub_post_4{
   background: url(/files/block_bg_01.jpg) repeat;
   height: 662px;
}

#ctrfouw821wllejlf4hl .sub_post .text_size_full {

}

#ctrfouw821wllejlf4hl .sub_post *[class*="title"] {position:absolute;font-size: 26px;}
#ctrfouw821wllejlf4hl .sub_post_1 *[class*="title"] {top: 130px;left: calc(50% - 480px);width: 370px;}
#ctrfouw821wllejlf4hl .sub_post_2 *[class*="title"] {top: 130px;left: calc(50% + 20px);width: 480px;}
#ctrfouw821wllejlf4hl .sub_post_3 *[class*="title"] {top: 130px;left: calc(50% - 480px);width: 350px;}
#ctrfouw821wllejlf4hl .sub_post_4 *[class*="title"] {top: 120px;left: calc(50% - -20px );width: 480px;}

#ctrfouw821wllejlf4hl .sub_post .post_data {position:absolute;}


#ctrfouw821wllejlf4hl .sub_post_1 .post_data {width: 370px;top: 210px;left: calc(50% - 480px);}
#ctrfouw821wllejlf4hl .sub_post_2 .post_data {width: 480px;top: 210px;left: calc(50% - -20px);}
#ctrfouw821wllejlf4hl .sub_post_3 .post_data {width: 350px;top: 210px;left: calc(50% - 480px);}
#ctrfouw821wllejlf4hl .sub_post_4 .post_data {width: 480px;top: 200px;left: calc(50% - -20px);}


#ctrfouw821wllejlf4hl .sub_post .post_data:after{
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
}


#ctrfouw821wllejlf4hl .flow_arr {
   display:none;
}


#ctrfouw821wllejlf4hl .blockimg.img01 {
  top: 560px;
  left: calc(50% + 70px);
  width: 460px;
  height: 300px;
  background:url(/files/flow_img_01.png)no-repeat top center;
}
#ctrfouw821wllejlf4hl .blockimg.img02 {
  top: 1120px;
  left: calc(50% - 430px);
  width: 460px;
  height: 300px;
  background:url(/files/flow_img_02.png)no-repeat top center;
  z-index: 1;
}
#ctrfouw821wllejlf4hl .blockimg.img03 {
  top: 1690px;
  left: calc(50% + 70px);
  width: 460px;
  height: 300px;
  background:url(/files/flow_img_03.png)no-repeat top center;
}
#ctrfouw821wllejlf4hl .blockimg.img04 {
  top: 2260px;
  left: calc(50% - 430px);
  width: 460px;
  height: 300px;
  background:url(/files/flow_img_04.png)no-repeat top center;
}


/*皆様からのご応募お待ちしております！
---------------------------------------------------------------------------------------------------- */


#huyvshv9c6oquhd3b6gw {
  background:#1e3e06;
  height: 1030px;
  margin: 0!important;
}

#huyvshv9c6oquhd3b6gw  *[class*="title"] {
  top: 280px;
  left: -60px;
  width: 640px;
  color: #FFF;
}

#huyvshv9c6oquhd3b6gw .text_box {
  width: 530px;
  margin: 420px 0 0 -60px;
}

#huyvshv9c6oquhd3b6gw .post_data {
  text-align: left;
  color: #FFF;
}

#huyvshv9c6oquhd3b6gw .main_btn{
  top: 700px;
  left: -70px;
  width: 330px;
}
#huyvshv9c6oquhd3b6gw .main_btn a{
    color: #FFF;
}

#huyvshv9c6oquhd3b6gw .blockimg.img01 {
  background: url(/files/careers_02_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - 540px);
  width: 347px;
  height: 76px;
}

#huyvshv9c6oquhd3b6gw  .blockimg.img02 {
  background: url(/files/careers_02_catch.png) no-repeat center top;
  top: 550px;
  left: calc(50% + 30px);
  width: 367px;
  height: 166px;
  z-index: 1;
}

#huyvshv9c6oquhd3b6gw  .blockimg.img03 {
  background: url(/files/careers_02_img.jpg) no-repeat center top;
  top: 180px;
  left: calc(50% + 140px);
  width: 420px;
  height: 520px;
}

#huyvshv9c6oquhd3b6gw .hovbtn {
  top: -100px;
  left: 980px;
  width: 194px;
  height: 199px;
  animation:anime_09 1s step-end infinite;
  background: url(/files/careers_anime_04.png) no-repeat left center;
}
@keyframes anime_09 {
  0% {background-position:left -194px center;}
  50% {background-position:left 0px center;}
  100% {background-position:left -194px center;}
}