@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになる@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("/files/xx_bg.png");　など） */


  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

  /* ===================================================================================================================
     ■ 全体
  ------------------------------------------------------------------------------------------------------------------- */
  html {
  
    background: none #ffffff ; 
    scroll-padding-top: 0;
    scroll-behavior: smooth;
  }
  
  /*Safariのみ iPadでフォントサイズが変化しないように対策*/
  _:lang(x) + _:-webkit-full-screen-document,
  body {
            text-size-adjust: none;
    -webkit-text-size-adjust: none;
  }
  
  body {
    background: none transparent;
  
  /* font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif; */
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500; */
    font-family: 'Noto Sans JP', sans-serif;
    color: #111111;
    position: relative;/* 2000pxを超える画面の対策 */
    min-width: 1300px !important;
    max-width: 2000px !important;
    margin: 0 auto;
  }
  body#page_6 {
    background: none transparent;
  }
  
  #wrapper {
    background: none transparent;
  }
  #outer_block {
    background: none transparent;
  }
  
  #page_6 #outer_block,
  #page_9 #outer_block,
  #page_12 #outer_block,
  #page_15 #outer_block,
  #page_81 #outer_block
   {
    padding-top: 0;/*スライダー下の余白を消す*/
  }
  
  a:link, a:visited, a:hover, a:active {
  color: #ff8200;
  }
  
  /* A～Cブロック記事内リンクボタン */
  .main_btn a,
  .sub_text_btn a {
    background-color: #ff8200;
    color: #fff;
  }
  
  
  /* ===================================================================================================================
     ■ ヘッダー
  ------------------------------------------------------------------------------------------------------------------- */
  #branding_box {
    height: 0px;
    background: none transparent;
    padding: 0;
    position: relative;
    z-index: 500;
    padding: calc(100% * (800/2000)) 0 0 0;
    background: url("/files/branding box.png") no-repeat center top/100%;
  }
  #page_6 #branding_box {
    height: 0px;
    padding: calc(100% * (1100/2000)) 0 0 0;
    background: url("/files/branding box.png") no-repeat center top/100%;
  }
  
  
  /*  H1テキスト
  ---------------------------------------------------------------------------------------------------- */
  
  /*自由に位置設定したいとき*/
  #site-description {
    margin: 0 auto;
    width: auto;
    position: absolute;
    top: 20px;
    right: 25px;
    /*位置　レスポンシブ有り*/
    /*
    top: calc(145 / 800 * 100%);
    left: calc(105 / 2000 * 100%);
    */
    }
    
    #page_6 #site-description {
    /* top: h1t;
    left: h1l; */
    /*
    top: calc(145 / 1100 * 100%);
    left: calc(105 / 2000 * 100%);
    */
    }
  
  #site-description a {
    display: inline;
    color: #fff	;
  }
  
  /*  サイトロゴ
  ---------------------------------------------------------------------------------------------------- */
  .main_header, .header_class {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .main_header img, .header_class img {
    position: absolute;
    margin: auto;
    width: 280px;
    height: 100px;
    top: 0;
    left: 0;
    /* レスポ有り */
    /* width: calc(100%*(280/2000));
    height: calc(100%*(100/800));
    top: calc(100%*(0/800));
    left: calc(100%*(0/2000)); */
    background: url("/files/branding_box.png") no-repeat center top;
  }
  
  #page_6 .main_header img, #page_6 .header_class img {
    width: 280px;
    height: 100px;
    top: 0;
    left: 0;
    position: absolute;
    margin: auto;
    /* レスポ有り */
    /* width: calc(100%*(280/2000));
    height: calc(100%*(100/1100));
    top: calc(100%*(0/1100));
    left: calc(100%*(0/2000)); */
  }
  
  
  /*固定時*/
  .main_header img.fixed,
  #page_6 .main_header img.fixed{
    position: fixed;
    top: 0;
    z-index: 600;
    width: 220px !important;
    height: 220px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    /* background: url("/files/branding.box.png") no-repeat center top/100%; */
  }
  
  
  /*  グローバルナビ
  ---------------------------------------------------------------------------------------------------- */
  
  
  #menu_btn {
    position:fixed;
    top:55px;
    right: 35px;
    z-index:1000;
    width:60px;
    height:50px;
    cursor:pointer;
    outline:none;
    background:url(/files/menu_open.png) no-repeat top center;
    transition: 0.1s;
  }
    
  .open #menu_btn:before {
    background:url(/files/menu_close.png) no-repeat bottom center;
  }
  
  #access {
    position:fixed;
    top:0;
    right:0;
    width:500px;
    height:100vh;
    margin:0;
    transition:transform 0.4s;
    transform:translateX(110%);
    background: url(/files/topnavi_bg.png) repeat top center;
  }
  
  .open #access {
    transform:translateX(0%);
  }
  
  
  #access .menu-header {
    width:200px;
    height:350px;
    margin:calc((100vh - 350px) / 2) auto 0;
  }
  
  div#access .menu-item a {
    width:200px;
    height:50px;
    margin:0px;
    padding:0px;
    background:url("/files/topnavi2.png") no-repeat scroll transparent;
  }
  
  div#access li.menu-item { float: none;}
  
  
  div#access .gnavi11 a { background-position: left top; }
  div#access .gnavi12 a { background-position: left top -50px; }
  div#access .gnavi13 a { background-position: left top -100px; }
  div#access .gnavi14 a { background-position: left top -150px; }
  div#access .gnavi15 a { background-position: left top -200px; }
  div#access .gnavi16 a { background-position: left top -250px; }
  div#access .gnavi17 a { background-position: left bottom; }
  
  div#access .gnavi11 a:hover { background-position: right top; }
  div#access .gnavi12 a:hover { background-position: right top -50px; }
  div#access .gnavi13 a:hover { background-position: right top -100px; }
  div#access .gnavi14 a:hover { background-position: right top -150px; }
  div#access .gnavi15 a:hover { background-position: right top -200px; }
  div#access .gnavi16 a:hover { background-position: right top -250px; }
  div#access .gnavi17 a:hover { background-position: right bottom; }
  
  
  /* 親ボタンの背景画像、高さなど　全サイズ共通 */
  div#access .menu-item a, div#access .menu-item a:hover {
    background-color: transparent;
    height: 50px;
    line-height: 50px;
  }
  
  /* プルダウンメニューのサイズ */
  #access ul.menu ul.sub-menu {
    top: 100%;
  }
  #access ul.menu ul.sub-menu,
  #access ul.menu ul.sub-menu li {
    width: 100%;
  }
  /* プルダウンメニューの色　16進数、RGBA両方変更すること */
  div#access ul.sub-menu li.sub-gnavi a,
  div#access ul.sub-menu li.sub-gnavi2 a {
    box-sizing: border-box;
    padding: 15px 10px;
    width: 100%;
    height: auto !important;
    background: none rgba(255,255,255,0.75);
    color: #333333;
    line-height: 1.2em !important;
  }
  #access ul li.current_page_item > a,
  #access ul li.current-menu-ancestor > a,
  #access ul li.current-menu-item > a,
  #access ul li.current-menu-parent > a {
    color: #333333;
  }
  div#access ul.sub-menu li.sub-gnavi a:hover,
  div#access ul.sub-menu li.sub-gnavi2 a:hover {
    background: none rgba(255,255,255,0.75);
    color: #666666;
  }
  #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: #666666;
  }
  
  
  /*  メイン画像
  ---------------------------------------------------------------------------------------------------- */
  #main_teaser,
  #video_teaser,
  #jquery_slider_pc {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  
  #main_teaser,
  #video_teaser #video_teaser_inner,
  #jquery_slider_pc .viewer {
    display: block;
    margin: 0 auto;
    min-width: 1300px;
    max-width: 2000px;
  }
  #main_teaser img,
  #video_teaser #video_teaser_inner video,
  #jquery_slider_pc .viewer img {
    width: 100%;
  }
  
  /* ===================================================================================================================
     ■ サイド
  ------------------------------------------------------------------------------------------------------------------- */
  /* サイドナビ　タイトル */
  .widget-title, .widget-title2 a {
    padding: 0;
    text-align: center;
    color: #ffffff;
    background: url(/files/widget_title_bg.jpg) no-repeat scroll left top transparent;
  }
  .widget-title2 a:link, .widget-title2 a:visited,
  .widget-title2 a:hover, .widget-title2 a:active {
    color: #ffffff;
    background: url(/files/widget_title_bg.jpg) no-repeat scroll left top transparent;
  }
  
  /* サイドナビ　メニュー部分 */
  #blog_main .widget-area ul ul li a {
    background-image: url(/files/widget_list_bg.png);
    color: #111111;
    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-width: 0 0 1px;
    border-style: dotted;
    border-color: #666666;
    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: 500px;
    position: relative;
    background: url(/files/footer_bg.jpg) no-repeat center top;
  }
  #footer_box {
    background: none transparent;
    height: 500px;
    
  }
  
  
  /*  フッターナビ
  ---------------------------------------------------------------------------------------------------- */
  #footer_sitemap_block {
    /* padding: 15px 0 0; */
    /*絶対値指定する時
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin: 0;
    width: auto;
    transform: translateX(-50%);
    */
  }
  /* 中央以外 */
  
  #footer-widget-area .widget-area{
      position: absolute;
      top: 101px;
      left: calc(50% - 140px);
  }
  
  #footer_sitemap_block #footer-widget-area {
    display: block;
    width: 960px;
  }
  #footer_sitemap_block #footer-widget-area .widget-area ul.menu {
    border-color: #ff8200;
  }
  #footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
    border-color: #ff8200;
    color: #ff8200;
  }
  #footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
    background-color: transparent;
  }
  
  /*  フッター情報
  ---------------------------------------------------------------------------------------------------- */
  .footer_infomation {
    display: block;
    margin: 0 auto;
    width: 960px;
  }
  #footer_information .entry-post {
    margin: 250px 0 0 560px;
    width: 100%;
    text-align: left;
  
    /* テキスト左寄せ用
    margin: 40px 0 0 320px;
  */
  }
  /* 中央以外 */
  /*
  #footer_information{
      position: absolute;
      top: 180px;
      left: calc(50% + -474px);
  }
  #footer_information .entry-post {
    width: 450px;
    margin: 0;
    text-align: left;
  }
  */
  
  
  /*  フッター住所
  ---------------------------------------------------------------------------------------------------- */
  #footer_information .entry-post .post-data > p {
    color: #ffffff;
    /*絶対値指定する時
    position: absolute;
    bottom: 110px;
    left: 50%;
    margin: 0;
    width: auto;
    transform: translateX(-50%);
    */
  }
  #footer_information .entry-post .post-data .company_name{
    
    font-size: 18px !important;
  }
  
  /*  フッターSNSボタン
  ---------------------------------------------------------------------------------------------------- */
  #footer_sns_btn {
    margin: 20px auto 0;
    /* 絶対値指定する時
    position: absolute;
    bottom: 130px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    */
  }
  #footer_sns_btn .footer_sns_inner {
    width: 250px;
    height: 25px;
  }
  #footer_sns_btn div {
    width: 25px;
    height: 25px;
  }
  #footer_sns_btn div a:hover {
    opacity: 0.8;
  }
  
  
  
  /*  コピーライト
  ---------------------------------------------------------------------------------------------------- */
  #copyright {
    color: #ffffff;
  }
  /* 中央寄せの時 */
  /*
  #copyright {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }
  */
  /* 中央以外 */
  
  #copyright {
      position: absolute;
      bottom: 30px;
      left: calc(50% - -80px);
  }
  
  
  /*  フッターメニュー
  ---------------------------------------------------------------------------------------------------- */
  .fixed_btn {z-index: 1000;}
  
  .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 a:hover img {
    opacity: 0.8;
  }
  
  /* ===================================================================================================================
     ■ コンテンツ
  ------------------------------------------------------------------------------------------------------------------- */
  #container_top {
    padding: 0;
  }
  #container_top.single_post {
    padding: 0 0 50px;
  }
  
  
  /* ===================================================================================================================
     ■ コンテンツ
  ------------------------------------------------------------------------------------------------------------------- */
  #container_top {
    padding: 0;
  }
  #container_top.single_post {
    padding: 0 0 50px;
  }
  
  /*  見出し
  ---------------------------------------------------------------------------------------------------- */
  .headline_title {
    background-image: url(/files/top_entry_title.png);
    color: #111111;
  }
  h3.entry_title, .entry_title, .entry-title { /* サイズ、背景、余白などはこちら */
    background-image: url(/files/entry_title_bg.png);
    color: #111111;
  }
  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: #111111;
  }
  /* 見出しリンクボタン */
  .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: #111111;
  }
  
  
  /* 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: #111111;}
  
  * .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: #111111;}
  
  
  
  /* B-03など小見出し用 */
  * .sub_entry_title {
    background: url("/files/sub_entry_title_bg.png") no-repeat scroll left top transparent;
    color: #111111;
  }
  * .sub_entry_title a:link, * .sub_entry_title a:visited,
  * .sub_entry_title a:hover, * .sub_entry_title a:active {
    color: #111111;
  }
  /* 小見出しリンクボタン */
  .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: #111111;
  }
  
  
  /* C-01など3列表示インラインタイトル用 */
  * .inline_title {
    background-image: url(/files/column3_title_bg.png);
  }
  * .inline_title a {color: #ffffff;}
  * .inline_title,
  
  
  /* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
  .coupon_data .inline_title,
  .c_04 .inline_title,
  .i_01 .inline_title,
  .j_01 .inline_title {
    background: none #ff8200;
    /* border: 1px solid #4e4e4e; */
    border-radius: 5px;
    height: auto;
    line-height: 1.7;
    padding: 10px;
    text-align: left;
    font-size: 15px;
    color: #fff;
  }
  
  /* 詳細画面の下部「コメント」見出し */
  .indent_border {
    border-color: #ff8200;
    width: 685px;
  }
  
  
  /* 大きな地図で見る */
  small {
    border-color: #ff8200;
  }
  small a {
    width: 100%;
    padding: 5px 0;
    text-align: center !important;
    color: #ff8200 !important;
  }
  
  small a:hover {
    background-color: #ff8200 !important;
    color: #FFF !important;
  }
  
  
  
  
  /*  テーブル
  ---------------------------------------------------------------------------------------------------- */
  .table_area td.td_name, .table_area td.td_value, /* Eブロック、Gブロック等 */
  body.coupon .table_area td.td_name, body.coupon .table_area td.td_value, /* クーポンページ */
  table.iqfm-table th, table.iqfm-table td /* お問合せ */ {
    border-color: #ccc;
  }
  .table_area td.td_name, body.coupon table.table_area td.td_name, .iqfm-table th {
    background: none #eee;
  }
  .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 {
    max-width: 300px;/*firefox 確認画面のはみ出し防止用*/
    background: none transparent;
  }

/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  border-color: #fff;
  border-top: none !important;
  border-right: none !important;
  background: none #f2f2f2 !important;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  border-left: none !important;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr:first-child > * {
  border-top: none !important;
}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr:last-child > * {
border-bottom: none !important;
}


.table_area table tr td {
  border: solid 1px #fff !important;
  border-right: none !important;
  /* border-left: none !important; */
  background: none #f2f2f2;
}

  /*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
  div.wpcf7-mail-sent-ok {
    border-color: #ff8200 !important;
  }
  
  /* Dメニュー下線 */
  .td_cell {
    border-color: #ccc;
    vertical-align: top;
  }
  
  .table_area table tr td {
    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: #ff8200;
    color: #ff8200 !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: #ff8200;
    border-color: #ff8200;
  }
  .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 #ff8200;
    border-style: solid;
    border-color: #ff8200;
    color: #fff !important;
  } 
  
  
  
  /*  ブロック
  ---------------------------------------------------------------------------------------------------- */
  /* 各ブロック点線 */
  .border_margin,
  .anchor_list ul li,
  .cu_mail_block,
  .blog_post,
  .list_block .list_box {
    border-color: #666666;
  }
  
  
  /* Cブロック */
  .c_01,
  .c_02,
  .c_03,
  .c_05,
  .c_06 {
    display: inline-block;
    padding: 0 0 20px;
    width: 100%;
  }
  .c_04 {
    margin: 0 0 20px;
  }
  
  
  /* Dブロック */
  .menu-list table {
    border-collapse: separate;
  }
  
  
  /* Gブロック */
  .g_01 .sub_entry_title a,
  .g_02 .sub_entry_title a {
    text-decoration: underline;
  }
  .g_01 .sub_entry_title a:hover,
  .g_02 .sub_entry_title a:hover {
    text-decoration: none;
  }
  
  
  /* Kブロック */
  .k_03 .date_area {
    font-weight: bold;
    font-size: 13px;
  }
  .k_03 .news_small_text {
    font-size: 12px;
    line-height: 1.7;
  }
  
  
  /* Z-D ブログRSS */
  .z_d1 {
    margin: 0 0 20px;
  }
  
  
  /* Z-E リンクバナー */
  .banner_box {
    text-align: center;
  }
  .banner_box img {
    max-width: 100%;
    width: auto;
  }
  
  
  
  /* Z-I スライドショー */
  .z_j1 {
    margin: 0 0 15px;
  }
  
  
  /* Z_L お知らせブロック */
  .Z_l1 .date_area {
    font-weight: bold;
    font-size: 13px;
  }
  .Z_l1 .news_small_text {
    font-size: 12px;
  }
  
  
  /* Z_M タブブロック */
  .z_m1 .link_list {
    font-size: 13px;
    line-height: 1.5;
  }
  .z_m1 div.link_list {
    margin-bottom: 10px;
  }
  div.link_list a {
    border: 1px solid #ff8200;
    background-color: transparent;
    color: #ff8200;
  }
  div.link_list a:hover {
    border: 1px solid #ff8200;
    background-color: #ff8200;
    color: #ffffff;
  }
  
  
  .faq-title {
    background-color: #ff8200;
    color: #ffffff;
    font-weight: normal;
  }
  
  
  
  /*  メールフォーム
  ---------------------------------------------------------------------------------------------------- */
  .iqfm-table td input[type="text"]:not([size]) {
    width: 75%;
  }
  
  /* 必須項目 */
  .iqfm-req_color {
    color: #ff0000;
  }
  .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: #4e4e4e;
  }
  /* 有効期限の部分 */
  .coupon_box table tr td.coupon_meta_title {
    background-color: #f2f2f2;
    width: 8em;
    color: #0b1834;
  }
  .coupon_box table tr td.coupon_meta {
    background-color: #f2f2f2;
    color: #0b1834;
  }
  .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 20px 15px 20px;
    line-height: 1.5;
  }
  #blog_main .entry-title,
  #blog_main .entry-title a {
      color: #111111;
  }
  
  
  
  /*  ローディング画面
  ---------------------------------------------------------------------------------------------------- */
  .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;
  }
  
  /*  googleカレンダー
  ---------------------------------------------------------------------------------------------------- */
  iframe[src^="https://calendar.google.com"] {
    border: none !important;
  }
  
  
  /*ページ内リンクアンカー位置調整*/
  a[name^="anchor"] {
    content: "";
    display: block;
    height: 110px;
    margin-top: -110px;
    visibility: hidden;
  }
  
  /*contactフォーム用セキュリティマーク　非表示*/
  .grecaptcha-badge { visibility: hidden; }
  
  
  /* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */
  
  /*全体フェードイン　Dブロックは解除*/
  .easys_content_inner:not(.nd_01 .easys_content_inner){
    transition: all 1s ease 0s;
    transform: translate(0px, 100px);
    opacity: 0;
  }
  .easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  
  
  
  
  /*  トップページ
  ---------------------------------------------------------------------------------------------------- */
  
  
  /* バナー＞お問い合わせ
  ---------------------------------------------------------------------------------------------------- */
  #nvql2dy0y7x1u58gtxtr{
    position: relative;
  }
  #nvql2dy0y7x1u58gtxtr [class*="field_"] {
    background: url(/files/banner_contact_movie_on.png) no-repeat center top / 100%;/*セカンドメイン背景画像*/
    padding: calc(750 / 2000 * 100%) 0 0;
    position: relative;/*ボタン位置調整用*/
  }
  #nvql2dy0y7x1u58gtxtr div { margin-bottom: 0; padding-bottom: 0;}
  #nvql2dy0y7x1u58gtxtr .easys_content_inner { width: 100%;transform: none;}
  /*ボタン　管理画面ではなくCSSで入れる場合--------------------------------------------*/
  /*スマホ用画像非表示*/
  #nvql2dy0y7x1u58gtxtr .eyecatch img{display: none;}
  #nvql2dy0y7x1u58gtxtr [class*="field_"] .eyecatch{
    display: block;
    position: absolute;
    width: calc(270 / 2000 * 100%);
    height: calc(50 / 750 * 100%);
    top: calc(447 / 750 * 100%);
    left: calc(1150 / 2000 * 100%);
  }
  #nvql2dy0y7x1u58gtxtr [class*="field_"] .eyecatch a{
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
  }
    
  #nvql2dy0y7x1u58gtxtr .eyecatch a{
      background:none;
  }
  /*オンオフ画像　一瞬消えない*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:before,
  #nvql2dy0y7x1u58gtxtr .eyecatch a:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.3s ease 0s;
    opacity: 0;/*ON画像非表示*/
  }
  /*OFF画像表示*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:after{opacity:1;}
  /*ホバー時*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:hover:before{opacity: 1;}/*ON画像表示*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:hover:after{opacity: 0;}/*Off画像非表示*/
  /*OFF画像*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:after{
     background: url("/files/banner_contact_btn_def.png") no-repeat center top/100%;
    }
  /*ON画像*/
  #nvql2dy0y7x1u58gtxtr .eyecatch a:before{ 
    background: url("/files/banner_contact_btn_hov.png") no-repeat center top/100%;
  }
  
  #nvql2dy0y7x1u58gtxtr video{
    position: absolute;
    top: 0;
  }
  
  /*  デザインブロック共通
  ---------------------------------------------------------------------------------------------------- */
  
  
  #jm11npmepdxdjn5z98lg,
  #bwlgr1n9f5oszmtue3a8,
  #hzjlbfkxhxl177nmqbko,
  #utf2gwrqge42gltfj9m8,
  #x63a0rv3fy4jewev5612,
  #wq0wtwrho8dloaya1b3r,
  #duqpuiuixykiqoq8h7ax,
  #j3voe5wvowb8mrd7k29s,
  #id446gsgj3u07xnl2v6e,
  #mcjm4i1sgutqg0x0egdd,
  #xas2cg9we6f4o2qa07rt,
  #lazbyglhwz1wy5j1wom6,
  #jwg4e1px74evltmq9kbz {
    background-repeat: no-repeat;
    background-position: center top;
    /* margin-bottom: 70px; */
    position: relative;
  }
  #jm11npmepdxdjn5z98lg .easys_content_inner,
  #bwlgr1n9f5oszmtue3a8 .easys_content_inner,
  #hzjlbfkxhxl177nmqbko .easys_content_inner,
  #utf2gwrqge42gltfj9m8 .easys_content_inner,
  #x63a0rv3fy4jewev5612 .easys_content_inner,
  #wq0wtwrho8dloaya1b3r .easys_content_inner,
  #duqpuiuixykiqoq8h7ax .easys_content_inner,
  #j3voe5wvowb8mrd7k29s .easys_content_inner,
  #id446gsgj3u07xnl2v6e .easys_content_inner,
  #xas2cg9we6f4o2qa07rt .easys_content_inner,
  #lazbyglhwz1wy5j1wom6 .easys_content_inner,
  #jwg4e1px74evltmq9kbz .easys_content_inner {
    position: relative;
    /* top: 100px;
    height: 100%;
    opacity: 0; */
    /* transition: all 1.3s ease 0s; */
    
    
    width: 1200px;
    transform: translate(0px, 0px) !important ;
  }
  
   #jm11npmepdxdjn5z98lg .easys_content_inner.moved,
  #bwlgr1n9f5oszmtue3a8 .easys_content_inner.moved,
  #hzjlbfkxhxl177nmqbko .easys_content_inner.moved,
  #utf2gwrqge42gltfj9m8 .easys_content_inner.moved,
  #x63a0rv3fy4jewev5612 .easys_content_inner.moved,
  #wq0wtwrho8dloaya1b3r .easys_content_inner.moved,
  #duqpuiuixykiqoq8h7ax .easys_content_inner.moved,
  #j3voe5wvowb8mrd7k29s .easys_content_inner.moved,
  #id446gsgj3u07xnl2v6e .easys_content_inner.moved,
  #xas2cg9we6f4o2qa07rt .easys_content_inner.moved,
  #lazbyglhwz1wy5j1wom6 .easys_content_inner.moved,
  #jwg4e1px74evltmq9kbz .easys_content_inner.moved {
    transform: translate(0px, 0px) !important;
  } 
  #jm11npmepdxdjn5z98lg .post_margin,
  #bwlgr1n9f5oszmtue3a8 .post_margin,
  #hzjlbfkxhxl177nmqbko .post_margin,
  #utf2gwrqge42gltfj9m8 .post_margin,
  #x63a0rv3fy4jewev5612 .post_margin,
  #wq0wtwrho8dloaya1b3r .post_margin,
  #duqpuiuixykiqoq8h7ax .post_margin,
  #j3voe5wvowb8mrd7k29s .post_margin,
  #id446gsgj3u07xnl2v6e .post_margin,
  #mcjm4i1sgutqg0x0egdd .post_margin,
  #xas2cg9we6f4o2qa07rt .post_margin,
  #lazbyglhwz1wy5j1wom6 .post_margin,
  #jwg4e1px74evltmq9kbz .post_margin {
    margin: 0;
  }
  #jm11npmepdxdjn5z98lg .eyecatch,
  #bwlgr1n9f5oszmtue3a8 .eyecatch,
  #hzjlbfkxhxl177nmqbko .eyecatch,
  #utf2gwrqge42gltfj9m8 .eyecatch,
  #x63a0rv3fy4jewev5612 .eyecatch,
  #wq0wtwrho8dloaya1b3r .eyecatch,
  #duqpuiuixykiqoq8h7ax .eyecatch,
  #j3voe5wvowb8mrd7k29s .eyecatch,
  #id446gsgj3u07xnl2v6e .eyecatch,
  #xas2cg9we6f4o2qa07rt .eyecatch,
  #lazbyglhwz1wy5j1wom6 .eyecatch,
  #jwg4e1px74evltmq9kbz .eyecatch {
    display: none;
    float: none !important;
  }
  #jm11npmepdxdjn5z98lg .entry_post,
  #bwlgr1n9f5oszmtue3a8 .entry_post,
  #hzjlbfkxhxl177nmqbko .entry_post,
  #utf2gwrqge42gltfj9m8 .entry_post,
  #x63a0rv3fy4jewev5612 .entry_post,
  #wq0wtwrho8dloaya1b3r .entry_post,
  #duqpuiuixykiqoq8h7ax .entry_post,
  #j3voe5wvowb8mrd7k29s .entry_post,
  #id446gsgj3u07xnl2v6e .entry_post,
  #mcjm4i1sgutqg0x0egdd .entry_post,
  #xas2cg9we6f4o2qa07rt .entry_post,
  #lazbyglhwz1wy5j1wom6 .entry_post,
  #jwg4e1px74evltmq9kbz .entry_post {
    box-sizing: border-box;
    position: relative;
  }
  #jm11npmepdxdjn5z98lg .entry_post > [class*="title"],
  #bwlgr1n9f5oszmtue3a8 .entry_post > [class*="title"],
  #hzjlbfkxhxl177nmqbko .entry_post > [class*="title"],
  #utf2gwrqge42gltfj9m8 .entry_post > [class*="title"],
  #x63a0rv3fy4jewev5612 .entry_post > [class*="title"],
  #wq0wtwrho8dloaya1b3r .entry_post > [class*="title"],
  #duqpuiuixykiqoq8h7ax .entry_post > [class*="title"],
  #j3voe5wvowb8mrd7k29s .entry_post > [class*="title"],
  #id446gsgj3u07xnl2v6e .entry_post > [class*="title"],
  #mcjm4i1sgutqg0x0egdd .entry_post > [class*="title"],
  #xas2cg9we6f4o2qa07rt .entry_post > [class*="title"],
  #lazbyglhwz1wy5j1wom6 .entry_post > [class*="title"],
  #jwg4e1px74evltmq9kbz .entry_post > [class*="title"] {
    display: none;
  }
  #jm11npmepdxdjn5z98lg .text_box,
  #bwlgr1n9f5oszmtue3a8 .text_box,
  #hzjlbfkxhxl177nmqbko .text_box,
  #utf2gwrqge42gltfj9m8 .text_box,
  #x63a0rv3fy4jewev5612 .text_box,
  #wq0wtwrho8dloaya1b3r .text_box,
  #duqpuiuixykiqoq8h7ax .text_box,
  #j3voe5wvowb8mrd7k29s .text_box,
  #id446gsgj3u07xnl2v6e .text_box,
  #mcjm4i1sgutqg0x0egdd .text_box,
  #xas2cg9we6f4o2qa07rt .text_box,
  #lazbyglhwz1wy5j1wom6 .text_box,
  #jwg4e1px74evltmq9kbz .text_box {
    float: none !important;
    overflow: visible;
    height: auto;
    width: 100%;
    margin: 0;
    opacity: 0;
    transition: all 1.3s ease 0s;
    transform: translate(0px, 100px);
  }

  #jm11npmepdxdjn5z98lg .text_box.moved,
  #bwlgr1n9f5oszmtue3a8 .text_box.moved,
  #hzjlbfkxhxl177nmqbko .text_box.moved,
  #utf2gwrqge42gltfj9m8 .text_box.moved,
  #x63a0rv3fy4jewev5612 .text_box.moved,
  #wq0wtwrho8dloaya1b3r .text_box.moved,
  #duqpuiuixykiqoq8h7ax .text_box.moved,
  #j3voe5wvowb8mrd7k29s .text_box.moved,
  #id446gsgj3u07xnl2v6e .text_box.moved,
  #mcjm4i1sgutqg0x0egdd .text_box.moved,
  #xas2cg9we6f4o2qa07rt .text_box.moved,
  #lazbyglhwz1wy5j1wom6 .text_box.moved,
  #jwg4e1px74evltmq9kbz .text_box.moved{
    transform: translate(0px, 0px);
    opacity: 1;
  }



  #jm11npmepdxdjn5z98lg .post_data,
  #bwlgr1n9f5oszmtue3a8 .post_data,
  #hzjlbfkxhxl177nmqbko .post_data,
  #utf2gwrqge42gltfj9m8 .post_data,
  #x63a0rv3fy4jewev5612 .post_data,
  #wq0wtwrho8dloaya1b3r .post_data,
  #duqpuiuixykiqoq8h7ax .post_data,
  #j3voe5wvowb8mrd7k29s .post_data,
  #id446gsgj3u07xnl2v6e .post_data,
  #mcjm4i1sgutqg0x0egdd .post_data,
  #xas2cg9we6f4o2qa07rt .post_data,
  #lazbyglhwz1wy5j1wom6 .post_data,
  #jwg4e1px74evltmq9kbz .post_data {
    float: none !important;
    overflow: visible;
    display: block;
    margin: 0;
  }
  /* 追加画像 */
  .design_block {
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0;
    position: absolute;
    transition: all 1.3s ease 0s;
  }
  .design_block.moved {
    opacity: 1;
  }
  #jm11npmepdxdjn5z98lg .design_block[class*="block"].moved,
  #bwlgr1n9f5oszmtue3a8 .design_block[class*="block"].moved,
  #hzjlbfkxhxl177nmqbko .design_block[class*="block"].moved,
  #utf2gwrqge42gltfj9m8 .design_block[class*="block"].moved,
  #x63a0rv3fy4jewev5612 .design_block[class*="block"].moved,
  #wq0wtwrho8dloaya1b3r .design_block[class*="block"].moved,
  #duqpuiuixykiqoq8h7ax .design_block[class*="block"].moved,
  #j3voe5wvowb8mrd7k29s .design_block[class*="block"].moved,
  #id446gsgj3u07xnl2v6e .design_block[class*="block"].moved,
  #mcjm4i1sgutqg0x0egdd .design_block[class*="block"].moved,
  #xas2cg9we6f4o2qa07rt .design_block[class*="block"].moved,
  #lazbyglhwz1wy5j1wom6 .design_block[class*="block"].moved,
  #jwg4e1px74evltmq9kbz .design_block[class*="block"].moved {
  transform: translate(0px, 0px);
  }
  
  #jm11npmepdxdjn5z98lg .post_data p,
  #bwlgr1n9f5oszmtue3a8 .post_data p,
  #hzjlbfkxhxl177nmqbko .post_data p,
  #utf2gwrqge42gltfj9m8 .post_data p,
  #x63a0rv3fy4jewev5612 .post_data p,
  #wq0wtwrho8dloaya1b3r .post_data p,
  #duqpuiuixykiqoq8h7ax .post_data p,
  #j3voe5wvowb8mrd7k29s .post_data p,
  #id446gsgj3u07xnl2v6e .post_data p,
  #mcjm4i1sgutqg0x0egdd .post_data p,
  #xas2cg9we6f4o2qa07rt .post_data p,
  #lazbyglhwz1wy5j1wom6 .post_data p,
  #jwg4e1px74evltmq9kbz .post_data p{
    color: #ffffff;
    font-size: 15px;
    line-height: calc(30/15);
    text-align: justify;
    font-feature-settings: "palt";
  }
  
  
  /* 個別ブロック側の例 */
  #y0sel620tvhc6wlgwleb .design_block.block1 {
    background-image: url(/files/00top_block02_bg02.jpg);
    width: 1533px;
    height: 670px;
    top: 517px;
    left: calc(50% - 1000px);
    margin-left: -100px;
  }
  
  /* 共通ボタン-ブロック内リンク */
  
  #jm11npmepdxdjn5z98lg [class*="_btn"],
  #bwlgr1n9f5oszmtue3a8 [class*="_btn"],
  #hzjlbfkxhxl177nmqbko [class*="_btn"],
  #utf2gwrqge42gltfj9m8 [class*="_btn"],
  #x63a0rv3fy4jewev5612 [class*="_btn"],
  #mcjm4i1sgutqg0x0egdd [class*="_btn"] {
    margin: 0;
    padding: 0;
    width: 270px;
    height: 50px;
  }
  
  #jm11npmepdxdjn5z98lg [class*="_btn"] a,
  #bwlgr1n9f5oszmtue3a8 [class*="_btn"] a,
  #hzjlbfkxhxl177nmqbko [class*="_btn"] a,
  #utf2gwrqge42gltfj9m8 [class*="_btn"] a,
  #x63a0rv3fy4jewev5612 [class*="_btn"] a,
  #mcjm4i1sgutqg0x0egdd [class*="_btn"] a {
    display: block;
    font-size: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    z-index: 300;
  }
  
  
  
  /* 2枚切り替え */
  
  #jm11npmepdxdjn5z98lg [class*="_btn"] a::after,
  #bwlgr1n9f5oszmtue3a8 [class*="_btn"] a::after,
  #hzjlbfkxhxl177nmqbko [class*="_btn"] a::after,
  #utf2gwrqge42gltfj9m8 [class*="_btn"] a::after,
  #x63a0rv3fy4jewev5612 [class*="_btn"] a::after,
  #mcjm4i1sgutqg0x0egdd [class*="_btn"] a::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s;
  }
  #jm11npmepdxdjn5z98lg [class*="_btn"] a:hover::after,
  #bwlgr1n9f5oszmtue3a8 [class*="_btn"] a:hover::after,
  #hzjlbfkxhxl177nmqbko [class*="_btn"] a:hover::after,
  #utf2gwrqge42gltfj9m8 [class*="_btn"] a:hover::after,
  #x63a0rv3fy4jewev5612 [class*="_btn"] a:hover::after,
  #mcjm4i1sgutqg0x0egdd [class*="_btn"] a:hover::after{
    opacity: 0;
  }
  
  
  
  /* トップ　鍛治・溶接のプロフェッショナル。誠実な仕事で積み上げた信頼　01
  -----------------------------jm11npmepdxdjn5z98lg----------------------------------------------------------------------- */
  
  #jm11npmepdxdjn5z98lg {
    height: 1300px;
    background-image: url(/files/10top_block01_bg.jpg);
  }
  #jm11npmepdxdjn5z98lg .entry_post {
    padding: 820px 710px 0 100px;
  }
  #jm11npmepdxdjn5z98lg .post_data {
    margin-bottom: 55px;
  }
  #jm11npmepdxdjn5z98lg [class*="_btn"] a{
    background: url(/files/10top_block01_btn_hov.png) no-repeat center top;
  
  }
  #jm11npmepdxdjn5z98lg [class*="_btn"] a::after{
    background: url(/files/10top_block01_btn_def.png) no-repeat center top;
  }
  
  #jm11npmepdxdjn5z98lg .design_block.block1 {
    background-image: url(/files/10top_block01_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  
  /*トップ  高い品質と技術による約束された安定感。　02
  ----------------------------------bwlgr1n9f5oszmtue3a8------------------------------------------------------------------ */
  
  #bwlgr1n9f5oszmtue3a8 {
    height: 1500px;
    background-image: url(/files/10top_block02_bg.jpg);
  }
  #bwlgr1n9f5oszmtue3a8 .entry_post {
    padding: 490px 60px 0 740px;
  }
  #bwlgr1n9f5oszmtue3a8 .post_data {
    margin-bottom: 50px;
  }
  #bwlgr1n9f5oszmtue3a8 .post_data p{
    color: #000;
  }
  #bwlgr1n9f5oszmtue3a8 .sub_post_0{
    position: absolute;
    top: 1200px;
    left: calc(50% - -254px);
    width: 270px;
    height: 50px;
    margin: 0;
  }
  #bwlgr1n9f5oszmtue3a8 .sub_post_0 [class*="_btn"] a{
    background: url(/files/10top_block02_company_btn_hov.png) no-repeat center top;
  
  }
  #bwlgr1n9f5oszmtue3a8 .sub_post_0 [class*="_btn"] a::after{
    background: url(/files/10top_block02_company_btn_def.png) no-repeat center top;
  }
  
  #bwlgr1n9f5oszmtue3a8 .sub_post_1{
    position: absolute;
    top: 1310px;
    left: calc(50% - -254px);
    width: 270px;
    height: 50px;
    margin: 0;
  }
  #bwlgr1n9f5oszmtue3a8 .sub_post_1 [class*="_btn"] a{
    background: url(/files/10top_block02_works_btn_hov.png) no-repeat center top;
  
  }
  #bwlgr1n9f5oszmtue3a8 .sub_post_1 [class*="_btn"] a::after{
    background: url(/files/10top_block02_works_btn_def.png) no-repeat center top;
  
  }
    
  #bwlgr1n9f5oszmtue3a8 .design_block.block1 {
    background-image: url(/files/10top_block02_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  
  
  
  
  /*トップ  どうせやるならしっかり稼ぐ！　03
  --------------------------hzjlbfkxhxl177nmqbko-------------------------------------------------------------------------- */
  
  #hzjlbfkxhxl177nmqbko {
    height: 1300px;
    background-image: url(/files/10top_block03_bg.jpg);
  }
  #hzjlbfkxhxl177nmqbko .entry_post {
    padding: 480px 90px 0 600px;
  }
  #hzjlbfkxhxl177nmqbko .post_data {
    margin-bottom: 0;
  }
  
  #hzjlbfkxhxl177nmqbko .post_data p{
    color: #000;
  }
  
  #hzjlbfkxhxl177nmqbko .sub_post_0{
    position: absolute;
    top: 916px;
    left: calc(50% - -165px);
    width: 270px;
    height: 50px;
    margin: 0;

  }

  #hzjlbfkxhxl177nmqbko .sub_post_0 [class*="_btn"] a{
    background: url(/files/10top_block03_recruit_btn_hov.png) no-repeat center top;
  }
  #hzjlbfkxhxl177nmqbko .sub_post_0 [class*="_btn"] a::after{
    background: url(/files/10top_block03_recruit_btn_def.png) no-repeat center top;
  }
 
  #hzjlbfkxhxl177nmqbko .sub_post_1{
    position: absolute;
    top: 1055px;
    left: calc(50% - -165px);
    width: 270px;
    height: 80px;
    margin: 0;
  }
  #hzjlbfkxhxl177nmqbko .sub_post_1 [class*="_btn"]{
    height: 80px;
  }
  #hzjlbfkxhxl177nmqbko .sub_post_1 [class*="_btn"] a{
    background: url(/files/10top_block03_interview_btn_hov.png) no-repeat center top;
  }
  #hzjlbfkxhxl177nmqbko .sub_post_1 [class*="_btn"] a::after{
    background: url(/files/10top_block03_interview_btn_def.png) no-repeat center top;
  }
  
  #hzjlbfkxhxl177nmqbko .design_block.block1 {
    background-image: url(/files/10top_block03_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  
  
  /*トップ  お問い合わせお待ちしております。　04
  ----------------------------utf2gwrqge42gltfj9m8------------------------------------------------------------------------ */
  
  
  #utf2gwrqge42gltfj9m8 {
    height: 1000px;
    background-image: url(/files/10top_block04_bg.jpg);
  }
  #utf2gwrqge42gltfj9m8 .entry_post {
    padding: 520px 685px 0 110px;
  }
  #utf2gwrqge42gltfj9m8 .post_data {
    margin-bottom: 50px;
  }
  
  #utf2gwrqge42gltfj9m8 .post_data p{
    color: #212020;
  }
  #utf2gwrqge42gltfj9m8 [class*="_btn"] a{
    background: url(/files/10top_block04_btn_hov.png);
  
  }
  #utf2gwrqge42gltfj9m8 [class*="_btn"] a::after{
    background: url(/files/10top_block04_btn_def.png);
  }
  
  #utf2gwrqge42gltfj9m8 .design_block.block1 {
    background-image: url(/files/10top_block04_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  /*　採用情報 経験・年齢などは一切不問！やる気採用！　05
  ------------------------------x63a0rv3fy4jewev5612---------------------------------------------------------------------- */
  #x63a0rv3fy4jewev5612 {
    height: 1300px;
    background-image: url(/files/20_block01_bg.jpg);
    margin-bottom: 70px;
  }
  #x63a0rv3fy4jewev5612 .entry_post {
    padding: 590px 20px 0 690px;
  }
  
  #x63a0rv3fy4jewev5612 .design_block.block1 {
    background-image: url(/files/20_block01_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  
  
  
  /*  業務内容　身軽なフットワーク×柔軟な対応力　06
  -----------------------wq0wtwrho8dloaya1b3r----------------------------------------------------------------------------- */
  #wq0wtwrho8dloaya1b3r {
    height: 1100px;
    background-image: url(/files/30_block01_bg.jpg);
  }
  #wq0wtwrho8dloaya1b3r .entry_post {
    padding: 770px 790px 0 50px;
  }
  #wq0wtwrho8dloaya1b3r .post_data p{
    color: #111;
  }
  #wq0wtwrho8dloaya1b3r .design_block.block1 {
    background-image: url(/files/30_block01_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  /* 業務内容 私たちの主力事業　07
  ---------------------------duqpuiuixykiqoq8h7ax------------------------------------------------------------------------- */
  #duqpuiuixykiqoq8h7ax {
    height: 3000px;
    background: url(/files/30top_block02_ttl.png) center top no-repeat;
  }
  #duqpuiuixykiqoq8h7ax .sub_post{
    transform: translate(0px, 100px);
    opacity: 0;
    transition: all 1.3s ease 0s;
  }

  #duqpuiuixykiqoq8h7ax .sub_post.moved{
    transform: translate(0px, 0px);
    opacity: 1;
  }

  
  #duqpuiuixykiqoq8h7ax .design_block.block1 {
    background-image: url(/files/30_block02_01_img.png);
    width: 2000px;
    height: 1000px;
    background-position: top;
    top: 0;
    left: calc(50% - 1000px);
    transform: translate(100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block2 {
    background-image: url(/files/30_block02_01_ttl.png);
    width: 2000px;
    height: 1000px;
    top: 0;
    left: calc(50% - 1000px);
    transform: translate(-100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block3 {
    background-image: url(/files/30_block02_02_img.png);
    width: 2000px;
    height: 400px;
    top: 1210px;
    background-position-y: -1200px;
    left: calc(50% - 1000px);
    transform: translate(-100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block4 {
    background-image: url(/files/30_block02_02_ttl.png);
    width: 2000px;
    height: 3000px;
    /* top: 0; */
    height: 500px;
    top: 1050px;
    background-position-y: -1040px;
    left: calc(50% - 1000px);
    transform: translate(100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block5 {
    background-image: url(/files/30_block02_03_img.png);
    width: 2000px;
    /* height: 3000px; */
    /* top: 0; */
    height: 390px;
    top: 1850px;
    background-position-y: -1830px;
    left: calc(50% - 1000px);
    transform: translate(100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block6 {
    background-image: url(/files/30_block02_03_ttl.png);
    width: 2000px;
    /* height: 3000px; */
    /* top: 0; */
    height: 450px;
    top: 1680px;
    background-position-y: -1670px;
    left: calc(50% - 1000px);
    transform: translate(-100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block7 {
    background-image: url(/files/30_block02_04_img.png);
    width: 2000px;
    height: 530px;
    bottom: 0;
    background-position: bottom;
    left: calc(50% - 1000px);
    transform: translate(-100px, 0px);
  }
  
  #duqpuiuixykiqoq8h7ax .design_block.block8 {
    background-image: url(/files/30_block02_04_ttl.png);
    width: 2000px;
    height: 700px;
    bottom: 0;
    left: calc(50% - 1000px);
    transform: translate(100px, 0px);
    background-position: bottom;
  }
  #duqpuiuixykiqoq8h7ax .sub_post{
    position: absolute;    
    margin: 0;
  } 


  #duqpuiuixykiqoq8h7ax .sub_post p{
    color: #000;
  }
#duqpuiuixykiqoq8h7ax .sub_post_0{top: 540px;left: calc(50% - 536px);width: 360px;}
#duqpuiuixykiqoq8h7ax .sub_post_1{top: 1200px;left: calc(50% - -110px);width: 370px;}
#duqpuiuixykiqoq8h7ax .sub_post_2{top: 1850px;left: calc(50% - 532px);width: 360px;}
#duqpuiuixykiqoq8h7ax .sub_post_3{top: 2480px;left: calc(50% - -110px);width: 390px;}
#duqpuiuixykiqoq8h7ax .sub_post_4{top: 2090px;left: calc(50% - 550px);width: 450px;}
  
  
  /*　会社概要・施工実績 代表挨拶　08
  ------------------------------j3voe5wvowb8mrd7k29s---------------------------------------------------------------------- */
  #j3voe5wvowb8mrd7k29s {
    height: 1100px;
    background-image: url(/files/50_block01_bg.jpg);
  }
  #j3voe5wvowb8mrd7k29s .entry_post {
    padding: 450px 50px 0 640px;
  }
  #j3voe5wvowb8mrd7k29s .post_data {
    margin-bottom: 50px;
  }
  #j3voe5wvowb8mrd7k29s .post_data p{
color: #111;
  }
  
  #j3voe5wvowb8mrd7k29s .design_block.block1 {
    background-image: url(/files/50_block01_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  #j3voe5wvowb8mrd7k29s .design_block.block2 {
    background-image: url(/files/50_block01_name.png);
    width: 300px;
    height: 70px;
    top: 830px;
    left: calc(50% - -290px);
    transform: translate(0px, 100px);
  }
  
  
  
  /*従業員インタビュー 実際に働く従業員にインタビュー！ 09
  ----------------------------id446gsgj3u07xnl2v6e------------------------------------------------------------------------ */
  #id446gsgj3u07xnl2v6e {
    height: 1900px;
    background-image: url(/files/40_block01_bg.jpg);
  }
  #id446gsgj3u07xnl2v6e .entry_post {
    padding: 430px 650px 0 80px;
  }
  
  #id446gsgj3u07xnl2v6e .design_block.block1 {
    background-image: url(/files/40_block01_img.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }

  #id446gsgj3u07xnl2v6e .design_block.block2 {
    background-image: url(/files/40_block01_ttl.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0px, 100px);
  }
  
  #id446gsgj3u07xnl2v6e .post_data p{
    color: #111;
    font-size: 20px;
    line-height: calc(30/20);

  }

  #id446gsgj3u07xnl2v6e .sub_post{
    transform: translate(0px, 50px);
    opacity: 0;
    transition: all 1.3s ease 0.3s;
  }

  #id446gsgj3u07xnl2v6e .sub_post.moved{
    transform: translate(0px, 0px);
    opacity: 1;
  }

  #id446gsgj3u07xnl2v6e .sub_post_1 .post_data p,
  #id446gsgj3u07xnl2v6e .sub_post_3 .post_data p,
  #id446gsgj3u07xnl2v6e .sub_post_5 .post_data p,
  #id446gsgj3u07xnl2v6e .sub_post_7 .post_data p,
  #id446gsgj3u07xnl2v6e .sub_post_9 .post_data p{
    font-size: 15px;
    line-height: calc(30/15);
  }

  #id446gsgj3u07xnl2v6e .sub_post{
    position: absolute;    
    margin: 0;
  } 
#id446gsgj3u07xnl2v6e .sub_post_0{top: 510px;left: calc(50% - 370px);width: 440px;}
#id446gsgj3u07xnl2v6e .sub_post_1{top: 604px;left: calc(50% - 310px);width: 710px;/* color: #111; */}
#id446gsgj3u07xnl2v6e .sub_post_2{top: 760px;left: calc(50% - 370px);width: 630px;}
#id446gsgj3u07xnl2v6e .sub_post_3{top: 840px;left: calc(50% - 320px);width: 750px;}
#id446gsgj3u07xnl2v6e .sub_post_4{top: 1013px;left: calc(50% - 370px);width: 450px;}
#id446gsgj3u07xnl2v6e .sub_post_5{top: 1100px;left: calc(50% - 330px);width: 570px;}
#id446gsgj3u07xnl2v6e .sub_post_6{top: 1260px;left: calc(50% - 360px);width: 630px;}
#id446gsgj3u07xnl2v6e .sub_post_7{top: 1350px;left: calc(50% - 322px);width: 750px;}
#id446gsgj3u07xnl2v6e .sub_post_8{top: 1510px;left: calc(50% - 360px);width: 420px;}
#id446gsgj3u07xnl2v6e .sub_post_9{top: 1600px;left: calc(50% - 320px);width: 940px;}


  

  
  /*  ブログデザインブロック
  -------------------mcjm4i1sgutqg0x0egdd--------------------------------------------------------------------------------- */
  #g1tti3n35c1cf5py6q2a{/*見出しブロック削除*/
    display: none;
  }
  #mcjm4i1sgutqg0x0egdd{/*デザイン背景画像*/
    background: url(/files/10top_news_bg.png) no-repeat center top;
    height: 1300px;/*背景画像の高さ*/
    position: relative;
    margin-bottom: 70px;
  }
  #mcjm4i1sgutqg0x0egdd .design_block.block1 {
    background-image: url(/files/10top_news_ttl.png);
    width:2000px;
    height: 100%;
    top: 200px;
    left: calc(50% - 1000px);
    transform: translate(0px, 100px);
  }
    
  
  #mcjm4i1sgutqg0x0egdd .main_btn{
    position: absolute;
    top: 1005px;
    left: calc(50% - 150px);
  }
  #mcjm4i1sgutqg0x0egdd .main_btn a {
    border-radius: 0;
    padding: 0;
    display: block;
    text-indent: -9999px;
    width: 300px;
    height: 50px;
    background: url(/files/10top_news_btn_hov.png) no-repeat center top;
    position: relative;
    margin: 0 auto 0 0;
  }
  
  #mcjm4i1sgutqg0x0egdd .blog_post span{
    color: #333333;/*日付、リード */
  }
  
  #mcjm4i1sgutqg0x0egdd .post_title_list a{
    color: #ff8d3d;
  }
  
  #mcjm4i1sgutqg0x0egdd .main_btn a::after{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 1;
    transition: 0.3s;
    background: url(/files/10top_news_btn_def.png) no-repeat center top;
  }
  #mcjm4i1sgutqg0x0egdd .main_btn a:hover::after{
    opacity: 0;
  }
  
  
  #mcjm4i1sgutqg0x0egdd .easys_content_inner{
    padding-top: 361px;
    width: 890px;
  }
  
  /*  コンテンツ画像
  ------#tfjmqqtxd728hahpbksf---------------------------------------------------------------------------------------------- */
  #tfjmqqtxd728hahpbksf .easys_content_inner{
    width: 1200px;
  }
  #tfjmqqtxd728hahpbksf{
    transform: translate(0px, 100px);
    opacity: 0;
    transition: all 1.3s ease 0s;
  }

  #tfjmqqtxd728hahpbksf.moved{
    transform: translate(0px, 0px);
    opacity: 1;
  }
  #tfjmqqtxd728hahpbksf div{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /*  
  ---------------------------------------------------------------------------------------------------- */
  
  
  
  /*  バナー＞リンク先不明
  ----------------m964fal6r4xvxyb79ih3------------------------------------------------------------------------------------ */
  #m964fal6r4xvxyb79ih3 {
     margin: 0;
    }
  #m964fal6r4xvxyb79ih3 .easys_content_inner {
    width: 100%;
      padding: 0;
    }
    #m964fal6r4xvxyb79ih3 .eyecatch{width: 100%;}
    #m964fal6r4xvxyb79ih3 .eyecatch a{
    display: block;
    position: relative;
    width: 100%;
      padding: calc(750 / 2000 * 100%) 0 0;
    }
    #m964fal6r4xvxyb79ih3 .eyecatch a:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.3s ease 0s;
    }
    /*ホバー時に、beforeに入れてるON画像表示*/
    #m964fal6r4xvxyb79ih3 .eyecatch a:hover:before{opacity: 1;}
    
    /*OFF画像*/
    #m964fal6r4xvxyb79ih3 .eyecatch a{background: url("/files/banner_recruit_def.jpg") no-repeat center bottom/100%;}
    
    /*ON画像*/
    #m964fal6r4xvxyb79ih3 .eyecatch a:before{ background: url("/files/banner_recruit_hov.jpg") no-repeat center top /100%;}
    
    /*固定画面で入れたSPバナー画像非表示*/
    #m964fal6r4xvxyb79ih3 .eyecatch a img{display: none;}
  
  
  #m964fal6r4xvxyb79ih3 div{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /*  バナー＞お問い合わせ
  ---------------nvql2dy0y7x1u58gtxtr------------------------------------------------------------------------------------- */
  
  
  #nvql2dy0y7x1u58gtxtr div{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /*  画像＞パララックス
  ---------rjplq1axxwx8n2iick0x------------------------------------------------------------------------------------------- */
  
  #rjplq1axxwx8n2iick0x div{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #rjplq1axxwx8n2iick0x {
    background: url(/files/parallax_on.png) no-repeat center top / auto scroll,url(/files/parallax_bg.jpg) no-repeat center center / cover fixed;
    height: 500px;/*任意の高さ*/
    margin: 0;
  }
  
  #page_6 #rjplq1axxwx8n2iick0x{
    margin-bottom: 80px;
  }
  /*  ブロック背景
  ---------------nvql2dy0y7x1u58gtxtr---------#f1f1f1---------------------------------------------------------------------------- */
  
  #page_81 #rf8jvyojuils00h86sxy,
  #j4n7906zedfyv9qb66g4{
    background-color: #f1f1f1;
    padding-top: 50px;
  }


