@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */




/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background:#f8ffe2 url(../files/html_bg_01.jpg) repeat left top;
  scroll-padding-top: 0;
  scroll-behavior: smooth;
}
html::after {
  content: "";
  width: 36px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../files/html_bg_02.png) repeat-y left top;
}
body {
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: 1300px;
  max-width: 2000px;
  word-break: break-word;
  background: url(../files/body_bg.png) no-repeat center top / 100%;
}
body,
.wpcf7c-conf {
  color: #333;
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body#page_6 {
  background: none no-repeat center top;
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
  padding-top: 60px;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #b70515;
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: #b70515;
  color: #ffffff;
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  position: relative;
  z-index: 500;
  padding: calc(100% * (720 / 2000)) 0 0;
  height: 0px;
  background: none transparent;
}
#page_6 #branding_box {
  padding-top: calc(100% * (920 / 2000));
  background: url(../files/slide_copy.png) no-repeat center bottom / 100%;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  bottom: 0;
  left: calc(150 / 2000 * 100%);
  width: calc(500 / 2000 * 100%);
  display: flex;
  height: 16%;
  align-items: flex-end;
}
#site-description a {
  display: inline;
  color: #b9a88d;
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/branding_box_bg.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  margin: 0 auto;
  padding: 0;
  width: 960px;
}
#header_information .main_header a {
  display: inline-block;
  padding: 0;
}
#header_information .main_header a img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(510 / 2000 * 100%);
  height: calc(240 / 720 * 100%);
}
#page_6 #header_information .main_header a img {
  height: calc(240 / 920 * 100%);
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
div#access .menu-item a {
  background: url("../files/topnavi.png") no-repeat left top;
  padding: 0;
  height: 60px !important;
  line-height: 60px !important;
  width: 140px !important;
}
div#access .gnavi11 a { background-position-y: top !important;}
div#access .gnavi12 a { background-position-y: -60px !important;}
div#access .gnavi13 a { background-position-y: -120px !important;}
div#access .gnavi14 a { background-position-y: -180px !important;}
div#access .gnavi15 a { background-position-y: -240px !important;}
div#access .gnavi16 a { background-position-y: bottom !important;}
div#access .menu-item a:hover { background-position-x: right !important;}

/* プルダウンメニューのサイズ */
#access ul li:hover > ul {
  display: flex;
}
#access ul.menu ul.sub-menu {
  top: 0;
  left: -100%;
  flex-direction: column;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  min-width: 100%;
  width: auto;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  width: 100% !important;
  background: none rgba(255,255,255,0.75);
  color: #333;
  height: auto !important;
  padding: 15px 10px;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.2em !important;
  white-space: nowrap;
}
#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;
}

/* ハンバーガーメニュー */
#access {
  width: 400px;
  height: 100%;
  transition: .5s;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(209, 192, 165, 0.95);
  overflow: visible;
  opacity: 0;
  pointer-events: none;
}
.opened #access {
  opacity: 1;
  pointer-events: all;
}

#access .menu-header {
  width: 140px;
  height: 360px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#menuTrigger {
  background: url(../files/topnavi_btn.png) no-repeat center top;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 900;
  cursor: pointer;
}
#menuTrigger button {
  background: rgba(0, 0, 0, 0);
  border: none;
  pointer-events: none;
}
.opened #menuTrigger {
  background-image: url(../files/topnavi_btn_on.png);
}

/* 順番にフェードイン */
div#access #menu-gnavi > .menu-item {
  opacity: 0;
  transform: translateX(100px);
  transition: .3s;
}
.opened div#access #menu-gnavi > .menu-item {
  opacity: 1;
  transform: translateX(0px);
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  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;
  background-image: url(../files/widget_title_bg.png);
  color: #fff;
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: #fff;
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  overflow: hidden;
  background-image: url(../files/widget_list_bg.png);
  color: #2c2c2c;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td {
  padding: 5px;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: #000;
  background: none transparent;
  line-height: 2;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: #b70515;
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: #ffffff;
}

/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  position: relative;
  height: 560px;
  /* background: url(../files/footer_bg.png) no-repeat center top; */
  background: none transparent;
}
#footer_box {
  height: 520px;
  background: url(../files/footer_box_bg.png) no-repeat left 30px top;
}

#footer_block .design_block {
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 560px;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  opacity: 1;
  z-index: -1;
}
#footer_block .design_block::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: url(/files/footer_bg.png) no-repeat center bottom / auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 375px 0 0;
  margin: 0 0 0 140px;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 100%;
  text-align: left;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: #000;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: #000;
  color: #000;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  width: 100%;
  text-align: left;
  position: absolute;
  top: 300px;
  left: 140px;
}
/* 中央以外 */
/*
#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: #000;
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}

/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}
#footer_sns_btn div {
  width: 25px;
  height: 25px;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: #111e78;
  text-align: left;
  margin-left: 138px;
}
/* 中央寄せの時 */
/*
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
*/
/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  z-index: 1000;
  bottom: 120px;
}

.fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {
  /* height: 150px; */
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  bottom: 20px;
}
#float_top_btn a img {
  transition: .3s;
}
#float_top_btn a:hover img {
  transform: scale(1.1);
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: #000;
  padding-top: 30px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: #000;
}
/*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: #000;
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: #000;
}

/* 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: #000;
}

* .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: #000;
}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: #000;
}
/*
* .sub_entry_title h4 {
  フォントサイズはこちら
}
*/
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: #000;
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: #000;
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: #111e78;
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  padding: 10px;
  height: auto;
  border: 1px solid #b29e7e;
  border-radius: 5px;
  background: none transparent;
  color: #333;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: #b70515;
}


/* 大きな地図で見る */
small {
  border-color: #b70515;
}
small a {
  padding: 5px 0;
  width: 100%;
  color: #b70515 !important;
  text-align: center !important;
}

small a:hover {
  background-color: #b70515 !important;
  color: #ffffff !important;
}


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: #b29e7e;
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: #000 !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: #000;
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px #b29e7e !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}


/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  border-style: solid;
  border-color: #b70515;
  background: none transparent;
  color: #b70515 !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 #ffffff;
  background: none transparent;
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  border-color: #b70515;
  background-color: #b70515;
}
.tablenav .current,
a.page-numbers:hover,
.permalink_in a:hover,
.permalink_in a:active,
.pageback a:hover,
.pageback a:active,
.page_up a:hover,
.page_up a:active {
  border-style: solid;
  border-color: #b70515;
  background: none #b70515;
  color: #ffffff !important;
} 


/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: #000;
}

/* 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 #b70515;
  background-color: transparent;
  color: #b70515;
}
div.link_list a:hover {
  border: 1px solid #b70515;
  background-color: #b70515;
  color: #ffffff;
}


.faq-title {
  background-color: #b70515;
  color: #ffffff;
  font-weight: normal;
}



/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: #b70515;
}
.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: #b29e7e;
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  width: 8em;
  background-color: transparent;
  color: #333;
}
.coupon_box table tr td.coupon_meta {
  background-color: transparent;
  color: #333;
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}



/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: #000000;
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  padding: 15px 20px 15px 20px;
  height: auto;
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  line-height: 1.5;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: #000;
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  margin: 0 0 20px;
  width: 100%;
  height: 450px;
}


/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}


/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  display: block;
  visibility: hidden;
  margin-top: -110px;
  height: 110px;
  content: "";
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/*  flow矢印余白*/
.flow_arr {
  height: 40px;
  margin: 10px auto !important;
}

/* フェードのipad対応 */
div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 背景と余白調整 */
.easys_content.no_margin { margin-bottom: 0px !important;}
.easys_content.no_margin + .easys_content:not(.no_margin) { margin-top: 70px;}
.easys_content.no_margin.nk_01 { padding-bottom: 25px;}
.easys_content.no_margin.nk_01 [class*="title"] {  margin-bottom: 0;}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */
#outer_block .easys_content_inner {
  position: relative;
  top: 100px;
  height: 100%;
  opacity: 0;
  transition: all 1.3s ease 0s;
  /* transform: rotate3d(-1, -1, 0, -10deg); */
  /* transform-origin: center; */
}
#outer_block .easys_content_inner.moved {
  top: 0px;
  opacity: 1;
  /* transform: rotate3d(0, 0, 1, 0); */
}
/* バナーは固定 */
#outer_block .nd_01 .easys_content_inner {
  opacity: 1;
  top: 0px;
}


/* テーマ余白調整 */
.easys_content,
.easys_content_inner > div:last-of-type {
  margin-bottom: 0 !important;
}
.easys_content.no_margin + .easys_content:not(.no_margin),
.easys_content:not(.no_margin):not(.nk_01) + .easys_content:not(.no_margin),
.easys_content:not(.no_margin) + .easys_content.no_margin {
  margin-top: 120px;
}
#content > .easys_content:last-of-type:not(.no_margin) { margin-bottom: 120px !important;}


/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  position: absolute;
  transition: all 1.3s ease 0s;
}
.design_block.moved {
  opacity: 1;
}


/*  セカンド、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#ulg44lykdkuwmt2mjto5,
#z8h98uuomjfaf0i4a6zy {
  margin-bottom: 70px;
  position: relative;
}
#ulg44lykdkuwmt2mjto5 div,
#z8h98uuomjfaf0i4a6zy div {
  margin-bottom: 0;
  padding-bottom: 0;
}
/* リンク共通 */
#ulg44lykdkuwmt2mjto5 a,
#z8h98uuomjfaf0i4a6zy a {
  display: block;
  position: relative;
}
#ulg44lykdkuwmt2mjto5 a:hover img,
#z8h98uuomjfaf0i4a6zy a:hover img {
  opacity: 1;
}
#ulg44lykdkuwmt2mjto5 a .design_block,
#z8h98uuomjfaf0i4a6zy a .design_block {
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  overflow: hidden;
}
#ulg44lykdkuwmt2mjto5 a .design_block::before,
#z8h98uuomjfaf0i4a6zy a .design_block::before,
#ulg44lykdkuwmt2mjto5 a .design_block::after,
#z8h98uuomjfaf0i4a6zy a .design_block::after {
  content: "";
  position: absolute;
}
#ulg44lykdkuwmt2mjto5 a .design_block::before,
#z8h98uuomjfaf0i4a6zy a .design_block::before {
  background-color: #000;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}
#ulg44lykdkuwmt2mjto5 a .design_block::after,
#z8h98uuomjfaf0i4a6zy a .design_block::after {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(50 / 240 * 100%);
  height: 100%;
  background: url(../files/btn_arrow.png) no-repeat center center;
}
#ulg44lykdkuwmt2mjto5 a:hover .design_block::before,
#z8h98uuomjfaf0i4a6zy a:hover .design_block::before {
  width: 100%;
  animation: hoverElem 0.5s cubic-bezier(0.645, 0.045, 0.175, 1);
}
#ulg44lykdkuwmt2mjto5 a:hover .design_block::after,
#z8h98uuomjfaf0i4a6zy a:hover .design_block::after {
  animation: hoverElem 0.5s ease-in-out;
}
@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility:hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility:hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}

/* お問い合わせ */
#ulg44lykdkuwmt2mjto5 .easys_content_inner {
  width: 1300px;
}
#ulg44lykdkuwmt2mjto5 a .design_block {
  background-image: url(../files/banner_contact_btn.png);
  width: 390px;
  height: 48px;
  top: 250px;
  left: calc(50% + 140px);
}
#ulg44lykdkuwmt2mjto5 a .design_block::before {
  background-color: #fdd117;
}
#ulg44lykdkuwmt2mjto5 a .design_block::after {
  background-image: url(../files/banner_contact_arrow.png);
  width: 45px;
  height: 45px;
}

/* GATEN職/お問い合わせ */
#z8h98uuomjfaf0i4a6zy .easys_content_inner {
  width: calc(1360 / 2000 * 100%);
}
#z8h98uuomjfaf0i4a6zy [class*="field_"] {
  width: calc( 100% / 2 - 10px ) !important;
  height: 100%;
  position: relative;
}
#z8h98uuomjfaf0i4a6zy [class*="field_"] .eyecatch {
  width: 100%;
}
#z8h98uuomjfaf0i4a6zy a .design_block {
  background-image: url(../files/btn_bg.png);
  background-size: 100%;
  width: calc(240 / 670 * 100%);
  height: calc(53 / 280 * 100%);
  bottom: 0;
  right: 0;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#odws2l4o7crasksui0fn,
#l4bbovl2h4hv0am5x9m2 {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 70px;
  position: relative;
}
#odws2l4o7crasksui0fn .post_margin,
#l4bbovl2h4hv0am5x9m2 .post_margin {
  margin: 0;
}
#odws2l4o7crasksui0fn .eyecatch,
#l4bbovl2h4hv0am5x9m2 .eyecatch {
  display: none;
  float: none !important;
}
#odws2l4o7crasksui0fn .entry_post,
#l4bbovl2h4hv0am5x9m2 .entry_post {
  box-sizing: border-box;
  position: relative;
}
#odws2l4o7crasksui0fn .entry_post > [class*="title"],
#l4bbovl2h4hv0am5x9m2 .entry_post > [class*="title"] {
  display: none;
}
#odws2l4o7crasksui0fn .text_box,
#l4bbovl2h4hv0am5x9m2 .text_box {
  float: none !important;
  height: auto;
  margin: 0;
  overflow: visible;
  width: 100%;
}
#odws2l4o7crasksui0fn .post_data,
#l4bbovl2h4hv0am5x9m2 .post_data {
  display: block;
  float: none !important;
  margin: 0 0 50px;
  overflow: visible;
}
#odws2l4o7crasksui0fn .design_block[class*="block"].moved,
#l4bbovl2h4hv0am5x9m2 .design_block[class*="block"].moved {
  margin: 0px;
}

/* 共通ボタン-ブロック内リンク */
#odws2l4o7crasksui0fn [class*="_btn"],
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] {
  margin: 0;
  padding: 0;
  width: 240px;
  height: 53px;
}
#odws2l4o7crasksui0fn [class*="_btn"] a,
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] a {
  background: url(../files/btn_bg.png) no-repeat center top;
  font-size: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  z-index: 300;
}
#odws2l4o7crasksui0fn [class*="_btn"] a::before,
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] a::before,
#odws2l4o7crasksui0fn [class*="_btn"] a::after,
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] a::after {
  content: "";
  position: absolute;
}
#odws2l4o7crasksui0fn [class*="_btn"] a::before,
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] a::before {
  background-color: #000;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}
#odws2l4o7crasksui0fn [class*="_btn"] a::after,
#l4bbovl2h4hv0am5x9m2 [class*="_btn"] a::after {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../files/btn_arrow.png) no-repeat center center;
}
#odws2l4o7crasksui0fn a:hover::before,
#l4bbovl2h4hv0am5x9m2 a:hover::before {
  width: 100%;
  animation: hoverElem 0.5s cubic-bezier(0.645, 0.045, 0.175, 1);
}
#odws2l4o7crasksui0fn a:hover::after,
#l4bbovl2h4hv0am5x9m2 a:hover::after {
  animation: hoverElem 0.5s ease-in-out;
}

/* 愛知県で舗装工事を行う有限会社エスティ舗装 */
#odws2l4o7crasksui0fn {
  background-image: url(../files/block_d1_bg.png);
  min-height: 770px;
  padding-bottom: 140px;
}
#odws2l4o7crasksui0fn .entry_post {
  padding: 430px 0 0 410px;
}
#odws2l4o7crasksui0fn > .design_block.block1 {
  background-image: url(../files/block_d1_img.png);
  width: 100%;
  height: 540px;
  top: 80px;
  left: 0;
  margin-top: 100px;
}
#odws2l4o7crasksui0fn > .design_block.block2 {
  background-image: url(../files/block_d1_title.png);
  width: 100%;
  height: 280px;
  top: 120px;
  left: 0;
  margin-left: 100px;
}

/* 一緒に働く仲間を大募集！ */
#l4bbovl2h4hv0am5x9m2 {
  background-image: url(../files/block_d2_bg.png);
  background-position-y: 230px;
  min-height: 1200px;
  padding-bottom: 200px;
}
#l4bbovl2h4hv0am5x9m2 .entry_post {
  padding: 590px 400px 0 40px;
}
#l4bbovl2h4hv0am5x9m2 > .design_block.block1 {
  background-image: url(../files/block_d2_img.png);
  width: 100%;
  height: 705px;
  top: 495px;
  left: 0;
  margin-left: -100px;
}
#l4bbovl2h4hv0am5x9m2 > .design_block.block2 {
  background-image: url(../files/block_d2_title.png);
  width: 100%;
  height: 230px;
  top: 335px;
  left: 0;
  margin-top: 100px;
}
#l4bbovl2h4hv0am5x9m2 > .design_block.block3 {
  background: url(../files/block_d2_scroll.png) repeat-x left top;
  width: 100%;
  height: 230px;
  top: 0;
  left: 0;
  opacity: 1;
  animation: anime-bg 40s linear 0s infinite;
}
@keyframes anime-bg {
  to { background-position: left -2000px top;}
}


/*  テーブルを含むブロック（ブログカレンダー除）の背景を変更
    （Jqueryでクラス付与済）
---------------------------------------------------------------------------------------------------- */
.hastable {
  background-color: #fff;
  padding: 70px 0;
}
